:root {
  --hct-bg: #ffffff;
  --hct-surface: #f7f8fb;
  --hct-ink: #202637;
  --hct-muted: #637087;
  --hct-line: #e7ebf1;
  --hct-dark: #0b0f14;
  --hct-dark-2: #151a24;
  --hct-orange: #f59e0b;
  --hct-orange-2: #d88909;
  --hct-blue: #3b82f6;
  --hct-shell: 1400px;
}

* {
  box-sizing: border-box;
}

body.hct-site {
  margin: 0;
  color: var(--hct-ink);
  background: var(--hct-bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.hct-shell {
  width: min(var(--hct-shell), calc(100% - 48px));
  margin: 0 auto;
}

.hct-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 19, 30, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hct-header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.hct-header-right,
.hct-primary-nav,
.hct-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hct-menu-toggle,
.hct-menu-backdrop {
  display: none;
}

.hct-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
}

.hct-logo span span {
  color: var(--hct-orange);
}

.hct-logo-mark {
  display: grid;
  gap: 5px;
  width: 34px;
}

.hct-logo-mark span {
  display: block;
  height: 5px;
  background: linear-gradient(90deg, var(--hct-orange), #b36b16);
  border-radius: 99px;
}

.hct-logo-mark span:nth-child(1) {
  width: 34px;
}

.hct-logo-mark span:nth-child(2) {
  width: 26px;
}

.hct-logo-mark span:nth-child(3) {
  width: 18px;
}

.hct-primary-nav a {
  color: #dbe2ee;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.hct-primary-nav a:hover {
  color: var(--hct-orange);
}

.hct-language-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #d7deea;
}

.hct-language-menu::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 119;
  display: none;
  width: max(180px, 100%);
  height: 10px;
}

.hct-language-menu.is-open::after,
.hct-language-menu:hover::after,
.hct-language-menu:focus-within::after {
  display: block;
}

.hct-language-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 148px;
  height: 42px;
  padding: 0 34px 0 36px;
  color: #f8fafc;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(15, 23, 42, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 10px 24px rgba(0, 0, 0, 0.14);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.hct-language-current {
  display: block;
  max-width: 96px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hct-language-trigger:hover,
.hct-language-trigger:focus,
.hct-language-menu.is-open .hct-language-trigger {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.035)),
    rgba(20, 29, 48, 0.94);
  border-color: rgba(245, 158, 11, 0.52);
  box-shadow:
    inset 0 0 0 1px rgba(245, 158, 11, 0.12),
    0 12px 28px rgba(0, 0, 0, 0.22);
  outline: none;
}

.hct-language-globe {
  position: absolute;
  top: 50%;
  left: 14px;
  width: 14px;
  height: 14px;
  border: 1.4px solid currentColor;
  border-radius: 50%;
  flex: 0 0 auto;
  pointer-events: none;
  transform: translateY(-50%);
}

.hct-language-globe::before,
.hct-language-globe::after {
  content: "";
  position: absolute;
  inset: 2.8px;
  border-left: 1px solid currentColor;
  border-right: 1px solid currentColor;
  border-radius: 50%;
}

.hct-language-globe::after {
  inset: 5.5px 1px;
  border: 0;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
}

.hct-language-chevron {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 5px;
  height: 5px;
  border-right: 1.4px solid currentColor;
  border-bottom: 1.4px solid currentColor;
  transform: translateY(-70%) rotate(45deg);
  flex: 0 0 auto;
  pointer-events: none;
  transition: transform 160ms ease;
}

.hct-language-menu.is-open .hct-language-chevron,
.hct-language-menu:hover .hct-language-chevron,
.hct-language-menu:focus-within .hct-language-chevron {
  transform: translateY(-30%) rotate(225deg);
}

.hct-language-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 120;
  display: none;
  width: max(180px, 100%);
  max-height: min(420px, calc(100vh - 120px));
  overflow: auto;
  padding: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 60%),
    #111722;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  box-shadow:
    0 22px 56px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hct-language-menu.is-open .hct-language-dropdown,
.hct-language-menu:hover .hct-language-dropdown,
.hct-language-menu:focus-within .hct-language-dropdown {
  display: grid;
  gap: 4px;
}

.hct-language-dropdown a {
  display: block;
  padding: 10px 12px;
  color: #c7d0df;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.hct-language-dropdown a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
}

.hct-language-dropdown a.is-active {
  color: var(--hct-orange);
  background:
    linear-gradient(90deg, rgba(245, 158, 11, 0.17), rgba(245, 158, 11, 0.06)),
    rgba(245, 158, 11, 0.04);
}

.hct-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  white-space: normal;
}

.hct-button-primary {
  color: #111827;
  background: var(--hct-orange);
}

.hct-button-primary:hover {
  background: var(--hct-orange-2);
}

.hct-button-secondary,
.hct-button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.hct-button-ghost {
  color: var(--hct-blue);
  border-color: rgba(59, 130, 246, 0.55);
  background: transparent;
}

.hct-hero {
  padding: 92px 0;
}

.hct-hero-dark {
  color: #fff;
  background:
    radial-gradient(circle at 75% 20%, rgba(245, 158, 11, 0.18), transparent 28%),
    linear-gradient(180deg, #0b0f14, #111827);
}

.hct-support-hero {
  color: #fff;
  background:
    radial-gradient(circle at 50% 0%, rgba(245, 158, 11, 0.12), transparent 36%),
    linear-gradient(180deg, #0b0f14, #121823);
  text-align: center;
}

.hct-support-hero.hct-hero {
  padding: 82px 0 88px;
}

.hct-support-hero .hct-shell {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.hct-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 72px;
}

.hct-eyebrow {
  margin: 0 0 12px;
  color: var(--hct-orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hct-hero h1,
.hct-page-hero h1 {
  margin: 0;
  max-width: 850px;
  font-size: clamp(42px, 5vw, 74px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hct-hero p,
.hct-page-hero p {
  max-width: 720px;
  margin: 20px 0 0;
  color: #a8b3c7;
  font-size: 18px;
}

.hct-support-hero p {
  margin-left: auto;
  margin-right: auto;
}

.hct-support-hero h1,
.hct-support-hero .hct-eyebrow {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hct-hero-panel {
  min-height: 460px;
  padding: 36px;
  background: #090c10;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.hct-pattern-preview {
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  gap: 18px;
  height: 100%;
  align-content: center;
}

.hct-pattern-preview span {
  aspect-ratio: 1;
  background: #2f80ed;
  border-radius: 50%;
}

.hct-404-hero {
  min-height: 620px;
  display: flex;
  align-items: center;
}

.hct-404-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  align-items: center;
  gap: 72px;
}

.hct-404-search {
  width: min(680px, 100%);
  margin: 32px 0 0;
}

.hct-404-actions {
  flex-wrap: wrap;
  margin-top: 24px;
}

.hct-404-panel {
  position: relative;
  min-height: 430px;
  padding: 32px;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 18%, rgba(245, 158, 11, 0.22), transparent 28%),
    #070a0f;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.hct-404-panel strong {
  position: absolute;
  inset: auto 28px 8px auto;
  color: rgba(255, 255, 255, 0.045);
  font-size: 180px;
  line-height: 1;
  letter-spacing: 0;
}

.hct-404-pattern {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  height: 100%;
  align-content: center;
}

.hct-404-pattern span {
  aspect-ratio: 1;
  background: #2f80ed;
  border-radius: 50%;
}

.hct-404-pattern span:nth-child(5n),
.hct-404-pattern span:nth-child(7n) {
  opacity: 0.12;
}

.hct-section,
.hct-page-hero {
  padding: 80px 0;
}

.hct-blog-hero {
  color: #fff;
  background:
    radial-gradient(circle at 80% 10%, rgba(245, 158, 11, 0.14), transparent 30%),
    linear-gradient(180deg, #0b0f14, #141b27);
}

.hct-blog-hero .hct-page-hero p,
.hct-blog-hero p {
  color: #a8b3c7;
}

.hct-section-muted {
  background: var(--hct-surface);
}

.hct-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.hct-section-head h2,
.hct-page-hero h1 {
  margin: 0;
}

.hct-search-results-section .hct-shell {
  max-width: 920px;
}

.hct-search-results-head {
  justify-content: center;
  text-align: center;
}

.hct-search-results-head .hct-eyebrow {
  margin-bottom: 8px;
}

.hct-empty {
  max-width: 640px;
  margin: 0 auto;
  padding: 42px 24px;
  color: #66748a;
  background: #fff;
  border: 1px solid var(--hct-line);
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 14px 34px rgba(24, 32, 48, 0.05);
}

.hct-card-grid {
  display: grid;
  gap: 30px;
}

.hct-card-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hct-card,
.hct-support-card,
.hct-list-item {
  background: #fff;
  border: 1px solid var(--hct-line);
  border-radius: 8px;
  box-shadow: 0 20px 45px rgba(24, 32, 48, 0.06);
  overflow: hidden;
}

.hct-card {
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.hct-card:hover {
  border-color: #d8e1ee;
  box-shadow: 0 24px 58px rgba(24, 32, 48, 0.11);
  transform: translateY(-3px);
}

.hct-card-media {
  display: block;
  aspect-ratio: 16 / 10;
  background: var(--hct-dark);
  overflow: hidden;
}

.hct-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, opacity 220ms ease;
}

.hct-card:hover .hct-card-media img {
  opacity: 0.92;
  transform: scale(1.035);
}

.hct-card-body,
.hct-list-item {
  padding: 26px;
}

.hct-meta {
  color: var(--hct-muted);
  font-size: 13px;
  font-weight: 700;
}

.hct-card-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--hct-orange);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.hct-card h2,
.hct-list-item h2 {
  margin: 10px 0;
  font-size: 23px;
  line-height: 1.2;
}

.hct-card h2 a:hover,
.hct-list-item h2 a:hover {
  color: var(--hct-orange);
}

.hct-card p,
.hct-list-item p {
  color: var(--hct-muted);
}

.hct-inline-link {
  color: var(--hct-orange);
  font-weight: 800;
  text-underline-offset: 3px;
}

.hct-inline-link:hover {
  text-decoration: underline;
}

.hct-pagination {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

.hct-pagination .navigation {
  width: 100%;
}

.hct-pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.hct-pagination .page-numbers {
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  color: #4a5d7a;
  background: #fff;
  border: 1px solid var(--hct-line);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 10px 28px rgba(24, 32, 48, 0.05);
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.hct-pagination a.page-numbers:hover {
  color: #111827;
  border-color: rgba(245, 158, 11, 0.55);
  background: #fff7ed;
  transform: translateY(-1px);
}

.hct-pagination .page-numbers.current {
  color: #111827;
  background: var(--hct-orange);
  border-color: var(--hct-orange);
  box-shadow: 0 14px 30px rgba(245, 158, 11, 0.22);
}

.hct-pagination .page-numbers.dots {
  min-width: 30px;
  padding: 0 4px;
  color: #8b98aa;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.hct-pagination .prev,
.hct-pagination .next {
  font-size: 22px;
}

.hct-support-search {
  display: flex;
  gap: 12px;
  width: min(760px, 100%);
  margin: 34px auto 0;
}

.hct-home-support-search {
  margin: 0 0 30px;
}

.hct-home-support-grid {
  margin-top: 0;
}

.hct-support-search .hct-button {
  width: clamp(176px, 22vw, 260px);
  min-height: 48px;
  padding: 8px 18px;
  line-height: 1.08;
  white-space: normal;
}

.hct-support-search input,
.hct-doc-search input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  color: var(--hct-ink);
  background: #fff;
  border: 1px solid var(--hct-line);
  border-radius: 6px;
}

.hct-support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.hct-support-card {
  display: flex;
  min-height: 282px;
  padding: 24px;
  flex-direction: column;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.hct-support-card:hover {
  border-color: #d8e1ee;
  box-shadow: 0 22px 52px rgba(24, 32, 48, 0.10);
  transform: translateY(-2px);
}

.hct-support-card-top {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 13px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid #edf1f6;
}

.hct-folder-icon {
  position: relative;
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(245, 158, 11, 0.58);
  border-radius: 8px;
  background: #fffaf1;
}

.hct-folder-icon::before,
.hct-folder-icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.hct-doc-icon-getting-started::before {
  top: 8px;
  left: 8px;
  width: 16px;
  height: 16px;
  border: 1.6px solid var(--hct-orange);
  border-radius: 50%;
}

.hct-doc-icon-getting-started::after {
  top: 13px;
  left: 13px;
  width: 7px;
  height: 7px;
  border-right: 1.8px solid var(--hct-orange);
  border-bottom: 1.8px solid var(--hct-orange);
  transform: rotate(-45deg);
}

.hct-doc-icon-workspace::before {
  top: 8px;
  left: 8px;
  width: 6px;
  height: 6px;
  background: var(--hct-orange);
  border-radius: 2px;
  box-shadow: 10px 0 0 var(--hct-orange), 0 10px 0 var(--hct-orange), 10px 10px 0 var(--hct-orange);
}

.hct-doc-icon-canvas-and-preview::before {
  top: 8px;
  left: 6px;
  width: 20px;
  height: 15px;
  border: 1.7px solid var(--hct-orange);
  border-radius: 3px;
}

.hct-doc-icon-canvas-and-preview::after {
  right: 7px;
  bottom: 7px;
  width: 7px;
  height: 7px;
  background: var(--hct-orange);
  border-radius: 50%;
}

.hct-doc-icon-hole-shape-and-style::before {
  top: 8px;
  left: 7px;
  width: 9px;
  height: 9px;
  border: 1.8px solid var(--hct-orange);
  border-radius: 50%;
  box-shadow: 10px 0 0 -1px #fffaf1, 10px 0 0 0 var(--hct-orange), 5px 10px 0 -1px #fffaf1, 5px 10px 0 0 var(--hct-orange);
}

.hct-doc-icon-layout-settings::before {
  top: 9px;
  left: 7px;
  width: 18px;
  height: 2px;
  background: var(--hct-orange);
  border-radius: 99px;
  box-shadow: 0 7px 0 var(--hct-orange), 0 14px 0 var(--hct-orange);
}

.hct-doc-icon-layout-settings::after {
  top: 6px;
  left: 12px;
  width: 6px;
  height: 6px;
  background: #fffaf1;
  border: 1.5px solid var(--hct-orange);
  border-radius: 50%;
  box-shadow: 8px 7px 0 -1px #fffaf1, 8px 7px 0 0 var(--hct-orange), -3px 14px 0 -1px #fffaf1, -3px 14px 0 0 var(--hct-orange);
}

.hct-doc-icon-gradient-and-variation::before {
  top: 8px;
  left: 7px;
  width: 6px;
  height: 6px;
  background: rgba(245, 158, 11, 0.42);
  border-radius: 50%;
  box-shadow: 9px 4px 0 rgba(245, 158, 11, 0.68), 18px 9px 0 var(--hct-orange), 4px 16px 0 rgba(245, 158, 11, 0.54), 15px 18px 0 var(--hct-orange);
}

.hct-doc-icon-templates::before {
  top: 7px;
  left: 9px;
  width: 14px;
  height: 18px;
  border: 1.7px solid var(--hct-orange);
  border-radius: 3px;
}

.hct-doc-icon-templates::after {
  top: 12px;
  left: 12px;
  width: 8px;
  height: 1.5px;
  background: var(--hct-orange);
  box-shadow: 0 5px 0 var(--hct-orange);
}

.hct-doc-icon-projects::before {
  top: 9px;
  left: 9px;
  width: 14px;
  height: 14px;
  border: 1.8px solid var(--hct-orange);
  border-radius: 4px;
  transform: rotate(45deg);
}

.hct-doc-icon-tools::before {
  top: 9px;
  left: 14px;
  width: 4px;
  height: 16px;
  background: var(--hct-orange);
  border-radius: 99px;
  transform: rotate(45deg);
}

.hct-doc-icon-tools::after {
  top: 7px;
  left: 8px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--hct-orange);
  border-left: 2px solid var(--hct-orange);
  transform: rotate(45deg);
}

.hct-support-card h2 {
  margin: 0;
  min-width: 0;
  color: #263449;
  font-size: 20px;
  line-height: 1.25;
}

.hct-support-card h2 a:hover {
  color: var(--hct-orange);
}

.hct-support-card em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 10px;
  color: #1f2937;
  background: #fff7ed;
  border-radius: 50%;
  font-style: normal;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.18);
}

.hct-support-card ul {
  flex: 1;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.hct-support-card li {
  margin: 10px 0;
}

.hct-support-card li a,
.hct-doc-nav-group li a {
  color: #4a5d7a;
}

.hct-support-card .hct-button {
  align-self: flex-start;
  min-height: 40px;
}

.hct-support-card li a:hover,
.hct-doc-nav-group li a:hover {
  color: var(--hct-orange);
}

.hct-doc-layout,
.hct-article-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr) 280px;
  gap: 56px;
  padding-top: 72px;
  padding-bottom: 90px;
}

.hct-article-layout {
  grid-template-columns: minmax(0, 840px) 286px;
  justify-content: center;
  gap: 58px;
}

.hct-doc-sidebar,
.hct-toc {
  position: sticky;
  top: 96px;
  align-self: start;
  max-height: calc(100vh - 116px);
  overflow: auto;
}

.hct-doc-search {
  margin-bottom: 24px;
}

.hct-doc-nav-group {
  margin-bottom: 14px;
}

.hct-doc-nav-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
  min-height: 42px;
  padding: 8px 10px;
  color: #263449;
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-align: left;
}

.hct-doc-nav-title:hover {
  background: #f7f9fc;
}

.hct-doc-nav-title:focus {
  outline: none;
}

.hct-doc-nav-title:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(245, 158, 11, 0.35);
  background: #fffaf1;
}

.hct-doc-nav-title span {
  min-width: 0;
}

.hct-doc-nav-title em {
  min-width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: #edf3fb;
  border-radius: 50%;
  color: #5e6b80;
  font-style: normal;
  font-size: 12px;
  font-weight: 850;
}

.hct-doc-nav-title::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: auto;
  margin-right: 2px;
  border-right: 1.5px solid #8b98aa;
  border-bottom: 1.5px solid #8b98aa;
  transform: rotate(45deg) translateY(-2px);
  transform-origin: 50% 50%;
  transition: transform 160ms ease;
}

.hct-doc-nav-group.is-open .hct-doc-nav-title::after {
  transform: rotate(225deg) translateY(1px);
}

.hct-doc-nav-group ul {
  display: none;
  margin: 0 0 8px 12px;
  padding: 0 0 0 12px;
  border-left: 2px solid #e6edf4;
  list-style: none;
}

.hct-doc-nav-group.is-open ul {
  display: block;
}

.hct-doc-nav-group li a {
  display: block;
  padding: 8px 10px;
  border-radius: 5px;
  font-size: 14px;
  line-height: 1.35;
}

.hct-doc-nav-group li a.is-active {
  color: #153125;
  background: #dcfce7;
}

.hct-article {
  min-width: 0;
}

.hct-article-layout .hct-article {
  width: 100%;
}

.hct-article-header {
  padding-bottom: 8px;
}

.hct-article-categories {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.hct-article-categories a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  color: #9a5f05;
  background: #fff7ed;
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

.hct-article-categories a:hover {
  color: #111827;
  border-color: rgba(245, 158, 11, 0.55);
}

.hct-breadcrumb {
  display: inline-flex;
  max-width: 100%;
  margin-bottom: 18px;
  padding: 8px 14px;
  color: #6b7890;
  background: #f5f7fb;
  border-radius: 999px;
  font-size: 13px;
}

.hct-article h1 {
  margin: 10px 0 18px;
  color: #1f2635;
  font-size: clamp(40px, 4.2vw, 62px);
  line-height: 1.05;
  letter-spacing: 0;
}

.hct-article-dek {
  max-width: 760px;
  margin: 0;
  color: #66748a;
  font-size: 20px;
  line-height: 1.65;
}

.hct-featured-image {
  margin: 34px 0 44px;
}

.hct-featured-image img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border: 1px solid var(--hct-line);
  border-radius: 10px;
  box-shadow: 0 24px 60px rgba(24, 32, 48, 0.10);
}

.hct-prose {
  color: #40506a;
  font-size: 18px;
  line-height: 1.82;
}

.hct-prose h2,
.hct-prose h3 {
  color: #263449;
  line-height: 1.2;
}

.hct-prose h2 {
  margin-top: 44px;
  font-size: 34px;
}

.hct-prose h3 {
  margin-top: 30px;
  font-size: 24px;
}

.hct-prose a {
  color: var(--hct-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hct-prose img {
  border: 1px solid var(--hct-line);
  border-radius: 10px;
}

.hct-prose p {
  margin: 18px 0;
}

.hct-prose ul,
.hct-prose ol {
  margin: 20px 0;
  padding-left: 28px;
}

.hct-prose li {
  margin: 8px 0;
}

.hct-prose blockquote {
  margin: 30px 0;
  padding: 20px 24px;
  color: #2f3b52;
  background: #fff7ed;
  border-left: 4px solid var(--hct-orange);
  border-radius: 0 8px 8px 0;
}

.hct-prose code {
  padding: 2px 6px;
  color: #111827;
  background: #f3f6fb;
  border-radius: 5px;
  font-size: 0.92em;
}

.hct-prose pre {
  overflow: auto;
  padding: 18px;
  color: #dbe2ee;
  background: #111827;
  border-radius: 8px;
}

.hct-prose pre code {
  padding: 0;
  color: inherit;
  background: transparent;
}

.hct-prose table {
  width: 100%;
  margin: 28px 0;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--hct-line);
  border-radius: 8px;
}

.hct-prose th,
.hct-prose td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--hct-line);
  text-align: left;
}

.hct-prose th {
  color: #263449;
  background: #f7f8fb;
}

.hct-toc {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--hct-line);
  border-radius: 10px;
  box-shadow: 0 18px 45px rgba(24, 32, 48, 0.06);
}

.hct-toc h2 {
  margin: 0 0 12px;
  color: #263449;
  font-size: 16px;
}

.hct-toc a {
  display: block;
  padding: 8px 10px;
  color: #60708a;
  border-radius: 6px;
  font-size: 14px;
}

.hct-toc a:hover {
  color: #111827;
  background: #fff7ed;
}

.hct-toc-level-3 {
  padding-left: 14px !important;
}

.hct-list {
  display: grid;
  max-width: 920px;
  gap: 14px;
}

.hct-list-item {
  position: relative;
  padding: 22px 56px 22px 24px;
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(24, 32, 48, 0.05);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.hct-list-item:hover {
  border-color: #d8e1ee;
  box-shadow: 0 18px 42px rgba(24, 32, 48, 0.09);
  transform: translateY(-1px);
}

.hct-list-item::after {
  content: "›";
  position: absolute;
  top: 50%;
  right: 24px;
  color: #9aa6b8;
  font-size: 26px;
  line-height: 1;
  transform: translateY(-50%);
}

.hct-list-item h2 {
  margin: 0 0 8px;
  font-size: 22px;
}

.hct-list-item p {
  max-width: 680px;
  margin: 0;
  line-height: 1.65;
}

.hct-doc-prev-next {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--hct-line);
}

.hct-site-footer {
  color: #a8b3c7;
  background: var(--hct-dark);
  padding: 64px 0 32px;
}

.hct-footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 56px;
}

.hct-footer-brand p {
  max-width: 360px;
}

.hct-site-footer h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}

.hct-site-footer nav a {
  display: block;
  margin: 10px 0;
  color: #a8b3c7;
}

.hct-site-footer nav a:hover {
  color: var(--hct-orange);
}

.hct-footer-bottom {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #69758a;
}

@media (max-width: 1100px) {
  .hct-header-inner,
  .hct-header-right,
  .hct-primary-nav {
    flex-wrap: wrap;
  }

  .hct-hero-grid,
  .hct-404-grid,
  .hct-doc-layout,
  .hct-article-layout,
  .hct-footer-grid {
    grid-template-columns: 1fr;
  }

  .hct-article-layout {
    justify-content: stretch;
  }

  .hct-doc-sidebar,
  .hct-toc {
    position: static;
    max-height: none;
  }
}

@media (max-width: 780px) {
  .hct-shell {
    width: min(100% - 28px, var(--hct-shell));
  }

  .hct-header-inner {
    min-height: 66px;
    padding: 10px 0;
    align-items: center;
    gap: 14px;
  }

  .hct-logo {
    min-height: 36px;
  }

  .hct-menu-toggle {
    width: 42px;
    height: 42px;
    margin-left: auto;
    display: inline-grid;
    place-content: center;
    gap: 5px;
    color: #d7deea;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    cursor: pointer;
  }

  .hct-menu-toggle span {
    width: 18px;
    height: 2px;
    display: block;
    background: currentColor;
    border-radius: 99px;
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .hct-menu-toggle em {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  body.hct-menu-open .hct-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.hct-menu-open .hct-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.hct-menu-open .hct-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hct-header-right {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    width: min(84vw, 320px);
    height: 100vh;
    padding: 88px 22px 24px;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
    background: #111722;
    border-right: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 28px 0 70px rgba(0, 0, 0, 0.36);
    transform: translateX(-105%);
    transition: transform 220ms ease;
  }

  body.hct-menu-open .hct-header-right {
    transform: translateX(0);
  }

  body.hct-menu-open {
    overflow: hidden;
  }

  .hct-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 70;
    background: rgba(4, 8, 14, 0.56);
    border: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  body.hct-menu-open .hct-menu-backdrop {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }

  .hct-primary-nav {
    align-items: stretch;
    flex-direction: column;
    gap: 6px;
  }

  .hct-primary-nav a {
    padding: 13px 12px;
    color: #eef3fb;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 9px;
    font-size: 14px;
  }

  .hct-language-menu {
    width: 100%;
    min-width: 0;
  }

  .hct-language-trigger {
    width: 100%;
    height: 44px;
    justify-content: flex-start;
    min-width: 0;
  }

  .hct-language-current {
    max-width: none;
  }

  .hct-language-dropdown {
    left: 0;
    right: auto;
    width: 100%;
    max-height: 300px;
  }

  .hct-header-right > .hct-button {
    width: 100%;
    min-height: 44px;
    padding: 0 14px;
    font-size: 14px;
  }

  .hct-card-grid-3,
  .hct-support-grid {
    grid-template-columns: 1fr;
  }

  .hct-hero,
  .hct-404-hero,
  .hct-section,
  .hct-page-hero {
    padding: 56px 0;
  }

  .hct-404-hero {
    min-height: auto;
  }

  .hct-404-panel {
    min-height: 300px;
  }

  .hct-support-search,
  .hct-section-head {
    display: block;
  }

  .hct-support-search .hct-button {
    width: 100%;
    min-width: 0;
    margin-top: 12px;
  }
}

@media (max-width: 520px) {
  .hct-header-right {
    width: min(88vw, 318px);
  }
}
