:root {
  color-scheme: dark;
  --canvas: #050505;
  --canvas-soft: #090909;
  --panel: #0d0e0f;
  --panel-raised: #121314;
  --paper: #f4f0e8;
  --muted: #aaa49a;
  --faint: #706c65;
  --gold: #e7b65c;
  --gold-bright: #ffd888;
  --line: rgba(255, 255, 255, .1);
  --line-gold: rgba(231, 182, 92, .25);
  --success: #78d6ad;
  --danger: #ef8e82;
  --radius-lg: 28px;
  --radius-md: 18px;
  --page: min(1240px, calc(100% - 40px));
  --font: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 70% -10%, rgba(130, 82, 27, .14), transparent 34%),
    var(--canvas);
  color: var(--paper);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

a { color: inherit; }
button, input { font: inherit; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--paper);
  color: #111;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform .18s ease;
}

.skip-link:focus { transform: translateY(0); }

.faq-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
  pointer-events: none;
}

.faq-header__inner {
  width: min(1280px, calc(100% - 24px));
  margin: 12px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  pointer-events: auto;
  transition: background-color .35s ease, border-color .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}

.faq-header.is-scrolled .faq-header__inner {
  border-color: rgba(242, 191, 104, .14);
  background: rgba(5, 5, 5, .7);
  box-shadow: 0 10px 40px -20px rgba(0, 0, 0, .9);
  backdrop-filter: blur(40px);
}

.faq-header:has(.faq-nav.is-open) .faq-header__inner {
  border-color: rgba(242, 191, 104, .14);
  background: rgba(5, 5, 5, .9);
  backdrop-filter: blur(40px);
}

.brand-link {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-link__mark {
  width: 36px;
  height: 36px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(242, 191, 104, .25);
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
}

.brand-link__mark img { width: 20px; height: 20px; object-fit: contain; filter: invert(1); }

.brand-link__copy { display: flex; min-width: 0; flex-direction: column; line-height: 1; }
.brand-link strong { color: var(--paper); font-size: 15px; font-weight: 600; letter-spacing: .025em; }
.brand-link small { margin-top: 3px; color: var(--faint); font-size: 11px; white-space: nowrap; }

.faq-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.faq-nav a {
  display: block;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: background-color .18s ease, color .18s ease;
}

.faq-nav a:hover { background: rgba(255, 255, 255, .055); color: var(--paper); }
.faq-nav a[aria-current="page"] { color: var(--gold-bright); }

.faq-nav__cta--mobile { display: none !important; }

.header-actions { display: flex; align-items: center; gap: 8px; }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(to bottom, #ffe2a6, #f2bf68);
  color: #050505;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: box-shadow .18s ease, transform .18s ease;
}

.header-cta:hover { box-shadow: 0 8px 30px -8px rgba(242, 191, 104, .7); transform: translateY(-1px); }
.header-cta svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }

.menu-button {
  width: 40px;
  height: 40px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
}

.menu-button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.menu-button__close { display: none; }
.menu-button[aria-expanded="true"] .menu-button__menu { display: none; }
.menu-button[aria-expanded="true"] .menu-button__close { display: block; }

.hero {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(156px, 13vw, 198px) 0 66px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: clamp(44px, 8vw, 110px);
  align-items: end;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 30px;
  color: var(--faint);
  font-size: 12px;
}

.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { color: var(--gold); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: .21em;
  text-transform: uppercase;
}

.eyebrow::before { content: ""; width: 30px; height: 1px; background: currentColor; opacity: .55; }

.hero h1 {
  max-width: 800px;
  margin: 22px 0 0;
  font-size: clamp(46px, 7vw, 88px);
  font-weight: 820;
  letter-spacing: -.065em;
  line-height: .94;
}

.hero h1 span { display: block; color: rgba(244, 240, 232, .28); }

.hero__lead {
  max-width: 700px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.65;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .035);
  color: var(--paper);
  font-size: 13px;
  font-weight: 780;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background-color .18s ease;
}

.button:hover { transform: translateY(-1px); border-color: var(--line-gold); background: rgba(231, 182, 92, .07); }
.button--gold { border-color: var(--gold); background: var(--gold); color: #17120a; }
.button--gold:hover { background: var(--gold-bright); }
.button svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; }

.hero__note {
  position: relative;
  padding: 27px;
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line);
}

.hero__note::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(231, 182, 92, .08);
}

.hero__note-label { color: var(--faint); font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.hero__note strong { display: block; margin-top: 15px; font-size: 22px; line-height: 1.25; }
.hero__note p { margin: 13px 0 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

.fact-strip {
  width: var(--page);
  margin: 0 auto 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact-strip > div { min-width: 0; padding: 22px 24px; }
.fact-strip > div + div { border-left: 1px solid var(--line); }
.fact-strip span { display: block; color: var(--faint); font-size: 10px; font-weight: 760; letter-spacing: .12em; text-transform: uppercase; }
.fact-strip strong { display: block; margin-top: 8px; font-size: 14px; line-height: 1.35; }

.faq-search-wrap {
  position: sticky;
  top: 78px;
  z-index: 60;
  width: var(--page);
  margin: 0 auto;
  padding: 14px 0;
  background: rgba(5, 5, 5, .9);
  backdrop-filter: blur(18px);
}

.faq-search {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 7px 8px 7px 20px;
  border: 1px solid var(--line-gold);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .24);
}

.faq-search > svg { width: 20px; height: 20px; fill: none; stroke: var(--gold); stroke-width: 1.8; }

.faq-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--paper);
  font-size: 16px;
}

.faq-search input::placeholder { color: var(--faint); }

.faq-search__count { color: var(--faint); font-size: 11px; font-variant-numeric: tabular-nums; white-space: nowrap; }
.faq-search__clear { min-height: 42px; padding: 0 14px; border: 0; border-radius: 12px; background: rgba(255, 255, 255, .055); color: var(--muted); font-size: 12px; font-weight: 760; cursor: pointer; }
.faq-search__clear[hidden] { display: none; }
.faq-search__clear:hover { color: var(--paper); }

.faq-layout {
  width: var(--page);
  margin: 54px auto 0;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: clamp(46px, 7vw, 92px);
  align-items: start;
}

.category-nav { position: sticky; top: 170px; }
.category-nav__label { margin-bottom: 16px; color: var(--faint); font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.category-nav a { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 44px; padding: 0 10px; border-bottom: 1px solid rgba(255, 255, 255, .065); color: var(--muted); font-size: 13px; text-decoration: none; }
.category-nav a::after { content: attr(data-count); color: var(--faint); font-size: 10px; font-variant-numeric: tabular-nums; }
.category-nav a:hover { color: var(--gold-bright); }
.category-nav .button { width: 100%; margin-top: 18px; border-bottom: 1px solid var(--line); }

.faq-content { min-width: 0; }

.faq-section { margin-bottom: 76px; }
.faq-section[hidden] { display: none; }

.faq-section__heading { display: grid; grid-template-columns: 54px minmax(0, 1fr); gap: 18px; align-items: start; margin-bottom: 22px; }
.faq-section__index { color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: .14em; }
.faq-section h2 { margin: 0; font-size: clamp(27px, 3vw, 38px); letter-spacing: -.035em; line-height: 1.05; }
.faq-section__heading p { max-width: 620px; margin: 10px 0 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

.faq-list { border-top: 1px solid var(--line); }

.faq-item { border-bottom: 1px solid var(--line); }
.faq-item[hidden] { display: none; }

.faq-item summary {
  min-height: 82px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 38px;
  align-items: center;
  gap: 20px;
  padding: 18px 4px;
  color: var(--paper);
  font-size: clamp(16px, 1.55vw, 20px);
  font-weight: 690;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  font-size: 22px;
  font-weight: 400;
  transition: transform .18s ease, background-color .18s ease;
}

.faq-item[open] summary::after { content: "−"; background: rgba(231, 182, 92, .08); }
.faq-item summary:hover { color: var(--gold-bright); }

.faq-answer {
  max-width: 820px;
  padding: 0 66px 26px 4px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.faq-answer p { margin: 0; }
.faq-answer p + p { margin-top: 12px; }
.faq-answer strong { color: var(--paper); font-weight: 720; }
.faq-answer a { color: var(--gold-bright); text-underline-offset: 3px; }
.faq-answer ul { margin: 12px 0 0; padding-left: 20px; }
.faq-answer li + li { margin-top: 7px; }

.faq-empty {
  padding: 68px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.faq-empty[hidden] { display: none; }
.faq-empty strong { display: block; font-size: 22px; }
.faq-empty p { margin: 10px auto 0; max-width: 540px; color: var(--muted); line-height: 1.55; }

.contact-panel {
  width: var(--page);
  margin: 10px auto 90px;
  padding: clamp(28px, 5vw, 54px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-lg);
  background: var(--panel);
}

.contact-panel .eyebrow::before { display: none; }
.contact-panel h2 { max-width: 720px; margin: 13px 0 0; font-size: clamp(28px, 4vw, 48px); letter-spacing: -.045em; line-height: 1.05; }
.contact-panel p { max-width: 700px; margin: 16px 0 0; color: var(--muted); line-height: 1.6; }
.contact-panel__actions { display: grid; gap: 10px; min-width: 190px; }

.faq-footer { padding: 54px 0 36px; border-top: 1px solid var(--line); }
.faq-footer__inner { width: var(--page); margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 44px; }
.faq-footer h2 { margin: 0; font-size: 16px; letter-spacing: .05em; }
.faq-footer p { margin: 12px 0 0; color: var(--faint); font-size: 12px; line-height: 1.6; }
.faq-footer h3 { margin: 0 0 14px; color: var(--gold); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }
.faq-footer ul { margin: 0; padding: 0; list-style: none; }
.faq-footer li + li { margin-top: 10px; }
.faq-footer a { color: var(--muted); font-size: 13px; text-decoration: none; }
.faq-footer a:hover { color: var(--gold-bright); }

.faq-legal-note { width: var(--page); margin: 34px auto 0; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .06); color: var(--faint); font-size: 11px; line-height: 1.5; }

.consent {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 500;
  width: min(760px, calc(100% - 28px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 17px 18px;
  border: 1px solid var(--line-gold);
  border-radius: 22px;
  background: rgba(13, 14, 15, .96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .52);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.consent strong { display: block; font-size: 14px; }
.consent p { margin: 4px 0 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.consent a { color: var(--gold-bright); text-underline-offset: 2px; }
.consent__actions { display: flex; flex: 0 0 auto; gap: 8px; }
.consent button { min-height: 42px; padding: 0 14px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255, 255, 255, .05); color: var(--paper); font-weight: 760; font-size: 12px; cursor: pointer; }
.consent button.is-primary { border-color: var(--gold); background: var(--gold); color: #17120a; }
.consent button:hover { border-color: var(--gold); }

:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 4px; }

@media (max-width: 1023px) {
  .menu-button { display: grid; }
  .faq-header__inner { position: relative; }
  .header-cta { display: none; }
  .faq-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    padding: 8px;
    border: 1px solid rgba(242, 191, 104, .14);
    border-radius: 24px;
    background: rgba(5, 5, 5, .94);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
    backdrop-filter: blur(40px);
  }
  .faq-nav.is-open { display: grid; }
  .faq-nav a { min-height: 46px; display: flex; align-items: center; padding: 12px 16px; border-radius: 16px; font-size: 15px; }
  .faq-nav__cta--mobile { display: flex !important; justify-content: center; margin-top: 4px; background: linear-gradient(to bottom, #ffe2a6, #f2bf68); color: #050505 !important; font-weight: 600 !important; }
  .hero { grid-template-columns: 1fr; gap: 48px; padding-top: 154px; }
  .hero__note { max-width: 650px; }
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .category-nav { position: static; overflow-x: auto; display: flex; gap: 8px; padding-bottom: 6px; scrollbar-width: none; }
  .category-nav::-webkit-scrollbar { display: none; }
  .category-nav__label, .category-nav .button { display: none; }
  .category-nav a { min-height: 42px; flex: 0 0 auto; padding: 0 14px; border: 1px solid var(--line); border-radius: 999px; }
  .category-nav a::after { margin-left: 3px; }
}

@media (max-width: 700px) {
  :root { --page: min(100% - 24px, 1240px); }
  html { scroll-padding-top: 98px; }
  .faq-header__inner { padding: 8px 12px 8px 16px; }
  .hero { padding: 126px 0 46px; }
  .breadcrumbs { margin-bottom: 24px; }
  .hero h1 { font-size: clamp(42px, 14vw, 64px); }
  .hero__lead { font-size: 16px; }
  .hero__actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .hero__note { padding: 24px 18px; }
  .fact-strip { grid-template-columns: 1fr; }
  .fact-strip > div { padding: 17px 4px; }
  .fact-strip > div + div { border-left: 0; border-top: 1px solid var(--line); }
  .faq-search-wrap { top: 66px; padding: 10px 0; }
  .faq-search { grid-template-columns: auto minmax(0, 1fr) auto; min-height: 56px; padding-left: 15px; }
  .faq-search__count { display: none; }
  .faq-search__clear { width: 42px; padding: 0; font-size: 0; }
  .faq-search__clear::before { content: "×"; font-size: 20px; }
  .faq-layout { margin-top: 28px; }
  .faq-section { margin-bottom: 56px; }
  .faq-section__heading { grid-template-columns: 1fr; gap: 8px; }
  .faq-section h2 { font-size: 28px; }
  .faq-item summary { min-height: 74px; grid-template-columns: minmax(0, 1fr) 34px; gap: 13px; font-size: 16px; }
  .faq-item summary::after { width: 32px; height: 32px; }
  .faq-answer { padding: 0 44px 23px 0; font-size: 14px; }
  .contact-panel { grid-template-columns: 1fr; gap: 26px; margin-bottom: 64px; }
  .contact-panel__actions { min-width: 0; }
  .faq-footer__inner { grid-template-columns: 1fr; gap: 34px; }
  .consent { align-items: stretch; flex-direction: column; gap: 14px; bottom: 12px; padding: 16px; }
  .consent__actions { display: grid; grid-template-columns: 1fr 1fr; }
  .consent button { width: 100%; }
}

@media (max-width: 360px) {
  .hero h1 { font-size: 42px; }
  .faq-answer { padding-right: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
