/* ============================================================
   HEALTHIER SAPIENS - shared stylesheet
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:#0A0A0A; --white:#FFFFFF;
  --g10:#1A1A1A; --g20:#2E2E2E; --g40:#666666;
  --g60:#999999; --g80:#CCCCCC; --g93:#EDEDED; --g97:#F8F8F8;
  --gold:#C9A84C; --gold-l:#F0CE78; --gold-d:#A07830;
  --hero-mid:#C6C6C6;
  --display:'Bebas Neue', sans-serif;
  --body:'DM Sans', sans-serif;
  --maxw:680px;
  --pad:clamp(20px,5vw,40px);
  --nav:52px;
  color-scheme: dark;
}

html { background: var(--black); scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--white);
  color: var(--black);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ── layout ───────────────────────────────────────────────── */
section { padding: clamp(60px,12vw,100px) 0; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

.band--light { background: var(--white); }
.band--off   { background: var(--g97); }
.band--dark  { background: var(--black); color: var(--white); }

/* ── shared type ──────────────────────────────────────────── */
.section-label {
  font-size: 11px; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.section-headline {
  font-family: var(--display); font-size: clamp(44px,12vw,64px);
  line-height: .95; letter-spacing: .02em; text-transform: uppercase;
  color: var(--black); margin-bottom: 22px;
}
.band--dark .section-headline { color: var(--white); }

.lede { font-size: 17px; color: var(--g40); line-height: 1.7; }
.band--dark .lede { color: var(--g60); }

.row-label {
  font-size: 10.5px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold); margin: 46px 0 15px;
}
.hint { font-size: 11.5px; color: var(--g60); letter-spacing: .06em; margin-top: 10px; }

/* ── buttons ──────────────────────────────────────────────── */
.btn {
  display: block; background: var(--gold); color: var(--black);
  font-family: var(--body); font-weight: 700; letter-spacing: .03em;
  border-radius: 3px; text-decoration: none; text-align: center;
  transition: background .2s, transform .15s;
}
.btn:hover { background: var(--gold-l); transform: translateY(-1px); }
.btn--md { font-size: 16px; padding: 18px 30px; }
.btn--lg { font-size: 17px; padding: 20px 36px; width: 100%; }

/* ── horizontal scroll rows ───────────────────────────────── */
.swipe {
  display: flex; gap: 12px; overflow-x: auto;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; align-items: stretch;
  padding: 2px var(--pad) 6px; margin: 0 calc(-1 * var(--pad));
}
.swipe::-webkit-scrollbar { display: none; }
.swipe > * { scroll-snap-align: start; flex: 0 0 auto; }

/* ── nav ──────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--black); border-bottom: 1px solid var(--g20);
  padding: 14px var(--pad);
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--display); font-size: 18px; letter-spacing: .12em;
  color: var(--white); text-transform: uppercase;
}
.nav-logo span { color: var(--gold); }
.nav-right { display: flex; align-items: center; }
.nav-links { display: flex; align-items: center; gap: 4px; margin-right: 14px; }
.nav-link {
  font-family: var(--body); font-size: 13px; font-weight: 500; color: var(--g60);
  text-decoration: none; padding: 8px 11px; border-radius: 3px; transition: color .2s;
  white-space: nowrap; background: none; border: none; cursor: pointer;
}
.nav-link:hover { color: var(--white); }
/* hamburger - base styles first, media query last so it can override */
.burger { display: none; width: 38px; height: 38px; margin-left: 10px; cursor: pointer;
  background: transparent; border: 1px solid var(--g20); border-radius: 3px; position: relative; }
.burger:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.burger span { position: absolute; left: 9px; right: 9px; height: 1.5px; background: var(--white);
  transition: transform .25s ease, opacity .18s ease; }
.burger span:nth-child(1) { top: 12.5px; }
.burger span:nth-child(2) { top: 18px; }
.burger span:nth-child(3) { top: 23.5px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* slide-down menu */
.menu { display: none; position: fixed; top: var(--nav); left: 0; right: 0; z-index: 98;
  background: var(--black); border-bottom: 1px solid var(--g20);
  padding: 6px var(--pad) 20px; transform: translateY(-115%); opacity: 0;
  pointer-events: none; transition: transform .3s ease, opacity .2s ease;
  max-height: calc(100svh - var(--nav)); overflow-y: auto; }
.menu.open { transform: none; opacity: 1; pointer-events: auto; }
.menu-link { display: flex; align-items: center; justify-content: space-between;
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 15px 2px; border-bottom: 1px solid var(--g20); text-decoration: none;
  font-family: var(--display); font-size: 25px; letter-spacing: .05em;
  text-transform: uppercase; color: var(--white); transition: color .18s; }
.menu-link:hover, .menu-link:focus-visible { color: var(--gold); }
.menu-link em { font-style: normal; color: var(--gold); font-size: 16px; }
.menu-link--soon { color: var(--g40); pointer-events: none; cursor: default; }
.menu-link--soon em { color: var(--g40); font-size: 10px; letter-spacing: .14em;
  font-family: var(--body); font-weight: 700; text-transform: uppercase; }
.menu .btn { margin-top: 18px; }
@media (prefers-reduced-motion: reduce) { .menu, .burger span { transition: none; } }

/* show the mobile nav below 700px - must come after the base rules above */
@media (max-width: 700px) {
  .nav-links { display: none; }
  .burger { display: block; }
  .menu { display: block; }
}

/* clear the fixed nav when jumping to a section */
section[id], div[id] { scroll-margin-top: calc(var(--nav) + 6px); }
.nav-cta {
  background: var(--gold); color: var(--black); font-size: 13px; font-weight: 600;
  letter-spacing: .05em; padding: 9px 18px; border-radius: 3px;
  text-decoration: none; white-space: nowrap; transition: background .2s;
}
.nav-cta:hover { background: var(--gold-l); }

/* ── hero ─────────────────────────────────────────────────── */
#hero {
  position: relative; background: var(--black); min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: calc(var(--nav) + 40px) var(--pad) clamp(40px,9vw,64px);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('/img/hero-sm.webp');
  background-size: cover; background-position: 0% 14%; background-repeat: no-repeat;
}
@media (min-width: 700px) { .hero-bg { background-image: url('/img/hero.webp'); } }
#hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to bottom,
    rgba(10,10,10,.55) 0%, rgba(10,10,10,.30) 22%, rgba(10,10,10,.55) 50%,
    rgba(10,10,10,.92) 74%, rgba(10,10,10,.99) 100%);
}
.hero-inner { max-width: var(--maxw); margin: 0 auto; width: 100%; position: relative; z-index: 1; }
.hero-tag {
  display: inline-block; font-size: 9px; font-weight: 600; letter-spacing: .11em;
  text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold-d);
  padding: 5px 10px; border-radius: 2px; margin-bottom: 22px; white-space: nowrap;
  opacity: 0; animation: fadeUp .7s ease .05s forwards;
}
.hero-headline {
  font-family: var(--display); font-size: clamp(52px,16vw,94px);
  line-height: .9; letter-spacing: .005em; text-transform: uppercase;
  margin-bottom: 24px; opacity: 0; animation: fadeUp .8s ease .15s forwards;
  text-shadow: 0 2px 20px rgba(0,0,0,.45);
}
.hero-headline .l1 { color: var(--white); display: block; }
.hero-headline .l2 { color: var(--hero-mid); display: block; }
.hero-headline .l3 { color: var(--gold); display: block; }
.hero-sub {
  font-size: clamp(16px,4.2vw,18.5px); color: var(--g80); max-width: 480px;
  line-height: 1.6; margin-bottom: 12px; opacity: 0; animation: fadeUp .8s ease .32s forwards;
}
.hero-sub strong { color: var(--white); font-weight: 600; }
.hero-who {
  font-size: 14.5px; color: var(--g60); max-width: 480px; line-height: 1.6;
  margin-bottom: 32px; opacity: 0; animation: fadeUp .8s ease .42s forwards;
}
.hero-who b { color: var(--g80); font-weight: 600; }
.hero-cta { display: flex; flex-direction: column; gap: 11px; opacity: 0; animation: fadeUp .8s ease .55s forwards; }
.hero-note { font-size: 13px; color: var(--g60); text-align: center; }
.hero-note b { color: var(--gold); font-weight: 600; }

@keyframes fadeUp { from { opacity:0; transform:translateY(18px);} to { opacity:1; transform:none;} }
@media (prefers-reduced-motion: reduce) {
  .hero-tag,.hero-headline,.hero-sub,.hero-who,.hero-cta { animation:none; opacity:1; }
  html { scroll-behavior: auto; }
}

/* ── proof bar ────────────────────────────────────────────── */
#proof { background: var(--g97); padding: 26px var(--pad); border-bottom: 1px solid var(--g93); }
.proof-inner { max-width: var(--maxw); margin: 0 auto; display: flex; justify-content: center;
  gap: clamp(22px,8vw,60px); flex-wrap: wrap; }
.proof-stat { text-align: center; line-height: 1.25; }
.proof-stat .num { font-family: var(--display); font-size: 32px; letter-spacing: .03em;
  color: var(--black); display: block; }
.proof-stat .label { font-size: 11.5px; color: var(--g40); letter-spacing: .05em;
  text-transform: uppercase; font-weight: 500; }

/* ── meet tomas ───────────────────────────────────────────── */
.portrait-wrap { margin-bottom: 40px; }
.portrait { width: 100%; border-radius: 4px; aspect-ratio: 4/5; object-fit: cover; object-position: center 20%; }
.portrait-caption { font-size: 12px; color: var(--g60); margin-top: 10px; }

.mod { margin-top: 52px; }
.mod--top { margin-top: 0; }
.mod-head { font-family: var(--display); font-size: 30px; letter-spacing: .04em;
  text-transform: uppercase; color: var(--black); line-height: 1; margin-bottom: 6px; }
.band--dark .mod-head { color: var(--white); }
.mod-sub { font-size: 14px; color: var(--g40); line-height: 1.6; margin-bottom: 24px; }
.band--dark .mod-sub { color: var(--g60); }

.creds { display: flex; flex-direction: column; gap: 2px; }
.cred { background: var(--g97); border-left: 3px solid var(--gold); border-radius: 2px;
  padding: 18px 20px; display: flex; gap: 16px; align-items: flex-start; }
.cred-mark { width: 30px; min-width: 30px; height: 30px; display: flex; align-items: center;
  justify-content: center; color: var(--gold-d); margin-top: 1px; }
.cred-mark svg { width: 24px; height: 24px; }
.cred h4 { font-size: 15px; font-weight: 700; color: var(--black); line-height: 1.35; margin-bottom: 2px; }
.cred p { font-size: 13.5px; color: var(--g40); line-height: 1.55; }
@media (min-width: 620px) { .creds { flex-direction: row; } .cred { flex: 1; flex-direction: column; gap: 10px; } }

.spec { border: 1px solid var(--g80); border-top: 3px solid var(--gold);
  border-radius: 4px; padding: 26px 22px; background: var(--white); }
.spec-title { font-family: var(--display); font-size: 26px; letter-spacing: .05em;
  text-transform: uppercase; color: var(--black); line-height: 1;
  padding-bottom: 16px; margin-bottom: 4px; border-bottom: 1px solid var(--g93); }
.spec-row { display: flex; flex-direction: column; gap: 2px; padding: 14px 0; border-bottom: 1px solid var(--g93); }
.spec-row:last-child { border-bottom: none; padding-bottom: 0; }
.spec-key { font-size: 10.5px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold-d); }
.spec-val { font-size: 15.5px; color: var(--black); line-height: 1.5; }

/* story timeline (dark) */
.timeline { display: flex; flex-direction: column; }
.tl-item { display: flex; gap: 18px; padding-bottom: 30px; position: relative; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item:not(:last-child)::after { content: ''; position: absolute; left: 23px; top: 50px;
  bottom: 0; width: 1px; background: var(--g20); }
.tl-node { width: 48px; height: 48px; min-width: 48px; background: var(--g10);
  border: 1px solid var(--g20); border-radius: 50%; display: flex; align-items: center;
  justify-content: center; color: var(--gold); position: relative; z-index: 1; }
.tl-node svg { width: 23px; height: 23px; }
.tl-item:last-child .tl-node { background: var(--gold); border-color: var(--gold); color: var(--black); }
.tl-body { padding-top: 6px; }
.tl-body h4 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.tl-body p { font-size: 14px; color: var(--g60); line-height: 1.6; }

/* discipline cards + pills */
.disc { min-width: 132px; background: var(--g10); border-radius: 4px;
  padding: 18px 16px 16px; display: flex; flex-direction: column; gap: 10px; }
.disc-mark { color: var(--gold); }
.disc-mark svg { width: 26px; height: 26px; }
.disc h4 { font-family: var(--display); font-size: 21px; letter-spacing: .05em;
  text-transform: uppercase; color: var(--white); line-height: 1; }
.disc p { font-size: 12.5px; color: var(--g60); line-height: 1.45; }

.pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill { display: inline-block; background: var(--g93); color: var(--g40); font-size: 12px;
  font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: 7px 13px; border-radius: 30px; }

/* ── photo band ───────────────────────────────────────────── */
.photoband { height: clamp(220px, 42vw, 380px); background-image: url('/img/band.webp');
  background-size: cover; background-position: center 40%; background-repeat: no-repeat; }

/* ── results ──────────────────────────────────────────────── */
.vid { width: 268px; background: var(--g10); border-radius: 4px; overflow: hidden;
  display: flex; flex-direction: column; }
.vid-thumb { display: block; width: 100%; aspect-ratio: 16/9; position: relative;
  border: none; padding: 0; cursor: pointer; background: var(--g20); overflow: hidden; }
.vid-thumb img { width: 100%; height: 100%; object-fit: cover; }
.vid-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.vid-play::before { content: ''; position: absolute; width: 54px; height: 54px;
  background: var(--gold); border-radius: 50%; transition: transform .18s, background .18s; }
.vid-play svg { width: 26px; height: 26px; color: var(--black); position: relative; z-index: 1; margin-left: 3px; }
.vid-thumb:hover .vid-play::before { transform: scale(1.07); background: var(--gold-l); }
.vid iframe { width: 100%; aspect-ratio: 16/9; border: none; display: block; }
.vid-cap { padding: 12px 14px 14px; border-top: 1px solid var(--g20); flex: 1; }
.vid-quote { font-size: 13px; font-weight: 600; font-style: italic; color: var(--white);
  line-height: 1.5; margin-bottom: 5px; }
.vid-meta { font-size: 11px; color: var(--gold); letter-spacing: .04em; text-transform: uppercase; }

.ba { width: 278px; background: var(--g10); border-radius: 4px; overflow: hidden;
  display: flex; flex-direction: column; }
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.ba-shot { position: relative; aspect-ratio: 3/4; background: var(--g20); overflow: hidden; }
.ba-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.ba-tag { position: absolute; bottom: 8px; left: 8px; font-size: 9.5px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; background: var(--black);
  color: var(--white); padding: 3px 7px; border-radius: 2px; }
.ba-tag--after { background: var(--gold); color: var(--black); }
.ba-cap { padding: 13px 15px 15px; flex: 1; }
.ba-cap strong { display: block; font-size: 13.5px; color: var(--white); margin-bottom: 3px; }
.ba-cap span { font-size: 12.5px; color: var(--g60); }

.tcard { width: 290px; background: var(--g10); padding: 20px; border-radius: 4px;
  border-left: 3px solid var(--gold); display: flex; flex-direction: column; }
.stars { color: var(--gold); font-size: 12px; letter-spacing: 2px; margin-bottom: 10px; }
.tquote { font-size: 14.5px; color: var(--white); line-height: 1.65; font-style: italic;
  margin-bottom: 14px; flex: 1; }
.tname { font-size: 12.5px; font-weight: 700; color: var(--gold); letter-spacing: .05em; }
.trole { font-size: 12px; color: var(--g40); }

/* ── services ─────────────────────────────────────────────── */
.fork { background: var(--white); border-left: 3px solid var(--gold); border-radius: 3px;
  padding: 18px 20px; margin: 14px 0 40px; }
.fork p { font-size: 15px; color: var(--g40); line-height: 1.6; }
.fork p + p { margin-top: 8px; }
.fork strong { color: var(--black); font-weight: 700; }

.cards { display: flex; flex-direction: column; gap: 20px; }
.card { border: 1px solid var(--g80); border-top: 3px solid var(--gold);
  border-radius: 4px; padding: 28px 22px; background: var(--white); }
.card--flag { background: var(--black); border-color: var(--g20); border-top-color: var(--gold); }
.card-tag { display: inline-block; font-size: 10.5px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold-d); border: 1px solid var(--g80);
  border-radius: 2px; padding: 4px 10px; margin-bottom: 18px; }
.card--flag .card-tag { color: var(--gold); border-color: var(--gold-d); }
.card-name { font-family: var(--display); font-size: clamp(38px,10vw,48px); line-height: .95;
  letter-spacing: .03em; text-transform: uppercase; color: var(--black); margin-bottom: 8px; }
.card--flag .card-name { color: var(--white); }
.card-what { font-size: 15px; color: var(--g40); line-height: 1.6;
  padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid var(--g93); }
.card--flag .card-what { color: var(--g60); border-bottom-color: var(--g20); }
.price { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 4px; }
.price-big { font-family: var(--display); font-size: 46px; line-height: 1; letter-spacing: .02em; color: var(--black); }
.card--flag .price-big { color: var(--gold); }
.price-term { font-size: 14px; font-weight: 600; color: var(--g40); }
.card--flag .price-term { color: var(--g60); }
.price-note { font-size: 13px; color: var(--g60); margin-bottom: 24px; }
.inc { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.inc li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px;
  color: var(--g40); line-height: 1.55; }
.card--flag .inc li { color: var(--g60); }
.inc .dot { width: 7px; height: 7px; min-width: 7px; background: var(--gold);
  border-radius: 50%; margin-top: 8px; }
.inc strong { color: var(--black); font-weight: 600; }
.card--flag .inc strong { color: var(--white); }
.inc-lead { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px; }
.card .btn { margin-top: 26px; }
.card-fine { font-size: 12.5px; color: var(--g60); text-align: center; margin-top: 10px; }
.svc-foot { margin-top: 32px; padding-top: 22px; border-top: 1px solid var(--g93);
  font-size: 14px; color: var(--g40); line-height: 1.7; }
.svc-foot strong { color: var(--black); font-weight: 600; }

/* ── evidence (dark accordion) ────────────────────────────── */
.claims { border-top: 1px solid var(--g20); margin-top: 34px; }
.claim { border-bottom: 1px solid var(--g20); }
.claim summary { list-style: none; cursor: pointer; display: flex; gap: 16px;
  align-items: flex-start; padding: 24px 0; }
.claim summary::-webkit-details-marker { display: none; }
.claim summary:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.claim-txt { font-family: var(--display); font-size: clamp(27px,7.2vw,34px); line-height: 1.02;
  letter-spacing: .02em; text-transform: uppercase; color: var(--white); flex: 1; }
.claim-txt b { color: var(--gold); font-weight: 400; }
.sign { width: 26px; height: 26px; min-width: 26px; border: 1.5px solid var(--g20);
  border-radius: 50%; position: relative; margin-top: 5px;
  transition: background .18s, border-color .18s, transform .25s; }
.sign::before, .sign::after { content: ''; position: absolute; background: var(--g60);
  left: 50%; top: 50%; transition: background .18s, opacity .18s; }
.sign::before { width: 11px; height: 1.5px; transform: translate(-50%,-50%); }
.sign::after  { width: 1.5px; height: 11px; transform: translate(-50%,-50%); }
.claim[open] .sign { background: var(--gold); border-color: var(--gold); transform: rotate(180deg); }
.claim[open] .sign::before { background: var(--black); }
.claim[open] .sign::after { opacity: 0; }
.panel { padding: 0 0 26px 42px; }
.panel p { font-size: 15.5px; color: var(--g80); line-height: 1.7; }
.panel p + p { margin-top: 12px; }
.panel strong { color: var(--white); font-weight: 600; }
.src { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--g20); }
.src-key { font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 5px; }
.src p { font-size: 13px; color: var(--g40); line-height: 1.6; }
.src a { color: var(--g60); }
.chart { background: var(--g10); border: 1px solid var(--g20); border-radius: 4px;
  padding: 22px 20px 18px; margin-top: 18px; }
.chart-title { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--white); margin-bottom: 4px; }
.chart-sub { font-size: 12.5px; color: var(--g60); margin-bottom: 20px; }
.bar-row { margin-bottom: 16px; }
.bar-row:last-of-type { margin-bottom: 0; }
.bar-label { display: flex; justify-content: space-between; align-items: baseline;
  font-size: 13px; color: var(--g60); margin-bottom: 6px; }
.bar-label b { font-family: var(--display); font-size: 19px; letter-spacing: .03em;
  color: var(--white); font-weight: 400; }
.bar-track { height: 12px; background: var(--g20); border-radius: 2px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 2px; }
.bar-fill--good { width: 100%; background: var(--gold); }
.bar-fill--bad  { width: 43%;  background: var(--g40); }
.ev-close { margin-top: 36px; border: 1px solid var(--g20); border-top: 3px solid var(--gold);
  border-radius: 4px; padding: 24px 22px; }
.ev-close p { font-size: 16.5px; color: var(--g80); line-height: 1.65; }
.ev-close strong { color: var(--gold); font-weight: 600; }

/* ── how it works ─────────────────────────────────────────── */
.steps { display: flex; flex-direction: column; margin-top: 36px; }
.step { position: relative; padding-bottom: 16px; }
.step:last-child { padding-bottom: 0; }
.step:not(:last-child)::after { content: ''; position: absolute; left: 21px; top: 52px;
  bottom: 0; width: 1px; background: var(--g80); }
.step summary { list-style: none; cursor: pointer; display: flex; gap: 20px;
  align-items: center; padding: 4px 0; }
.step summary::-webkit-details-marker { display: none; }
.step summary:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; border-radius: 3px; }
.step-num { width: 44px; height: 44px; min-width: 44px; background: var(--black);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 20px; color: var(--gold); position: relative; z-index: 1; }
.step:last-child .step-num { background: var(--gold); color: var(--black); }
.step-head { flex: 1; }
.step-when { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold-d); margin-bottom: 3px; }
.step-head h3 { font-size: 17.5px; font-weight: 700; color: var(--black); line-height: 1.25; }
.step-body { padding: 10px 0 4px 64px; }
.step-body p { font-size: 15px; color: var(--g40); line-height: 1.65; }
.chev { width: 20px; min-width: 20px; color: var(--g60); transition: transform .22s ease, color .18s; }
.chev svg { width: 20px; height: 20px; display: block; }
.step summary:hover .chev { color: var(--black); }
.step[open] .chev { transform: rotate(180deg); color: var(--gold-d); }
.after-note { margin-top: 38px; background: var(--g97); border-left: 3px solid var(--gold);
  border-radius: 3px; padding: 22px; }
.after-note h4 { font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 5px; }
.after-note p { font-size: 14.5px; color: var(--g40); line-height: 1.65; }

/* ── guarantee ────────────────────────────────────────────── */
.g-box { max-width: 560px; }
.g-icon { font-size: 52px; line-height: 1; margin-bottom: 18px; }
.g-body { font-size: 17px; color: var(--g60); line-height: 1.7; margin-bottom: 32px; }
.g-body strong { color: var(--white); font-weight: 600; }
.g-border { border: 1px solid var(--g20); border-top: 3px solid var(--gold);
  border-radius: 4px; padding: 24px; font-size: 14.5px; color: var(--g60);
  line-height: 1.7; text-align: left; }

/* ── final cta ────────────────────────────────────────────── */
#cta { text-align: center; }
.cta-inner { max-width: 540px; margin: 0 auto; }
#cta .section-label { text-align: center; }
#cta .section-headline { font-size: clamp(46px,13vw,68px); }
.cta-sub { font-size: 17px; color: var(--g40); line-height: 1.7; margin-bottom: 30px; }
.places { display: inline-flex; align-items: center; gap: 10px; background: var(--g97);
  border: 1px solid var(--g93); border-radius: 30px; padding: 9px 18px; margin-bottom: 26px; }
.dots { display: flex; gap: 5px; }
.places .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gold); }
.places span { font-size: 13px; font-weight: 600; color: var(--black); letter-spacing: .02em; }
.cta-reassure { font-size: 13px; color: var(--g60); margin-top: 12px; }
.cta-steps { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap;
  margin-top: 26px; font-size: 12.5px; color: var(--g40); }
.cta-steps b { color: var(--black); font-weight: 600; }
.cta-steps .sep { color: var(--gold); }
.faq-link { margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--g93);
  font-size: 14px; color: var(--g40); }
.faq-link a { color: var(--black); font-weight: 600; }

/* ── footer + sticky cta ──────────────────────────────────── */
footer { background: var(--black); padding: 34px var(--pad) 110px; text-align: center;
  border-top: 1px solid var(--g20); }
footer p { font-size: 12px; color: var(--g40); line-height: 1.7; }
.footer-brand { font-family: var(--display); font-size: 16px; color: var(--white);
  letter-spacing: .1em; margin-bottom: 10px; }
.footer-brand span { color: var(--gold); }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 6px 14px; margin: 14px 0 12px; }
.footer-links a { font-size: 12.5px; color: var(--g60); text-decoration: none; }
.footer-links a:hover { color: var(--white); }

.sticky { position: fixed; bottom: 0; left: 0; right: 0; z-index: 99;
  background: var(--black); border-top: 1px solid var(--g20);
  padding: 12px var(--pad); display: none;
  transform: translateY(120%); opacity: 0; pointer-events: none;
  transition: transform .28s ease, opacity .2s ease; }
.sticky.show { transform: none; opacity: 1; pointer-events: auto; }
@media (prefers-reduced-motion: reduce) { .sticky { transition: none; } }
.sticky a { display: block; background: var(--gold); color: var(--black); text-align: center;
  font-size: 15px; font-weight: 700; padding: 15px; border-radius: 3px;
  text-decoration: none; letter-spacing: .03em; }
@media (max-width: 700px) { .sticky { display: block; } }

/* ── FAQ page ─────────────────────────────────────────────── */
.page-head { padding: calc(var(--nav) + 60px) 0 0; }
.page-head .wrap { max-width: var(--maxw); }
.faq-group { margin-top: 52px; }
.faq-group:first-of-type { margin-top: 40px; }
.faq-group > h2 {
  font-family: var(--display); font-size: 27px; letter-spacing: .04em;
  text-transform: uppercase; color: var(--black); line-height: 1;
  padding-bottom: 12px; border-bottom: 2px solid var(--gold); margin-bottom: 4px;
}
.qa { border-bottom: 1px solid var(--g93); }
.qa summary {
  list-style: none; cursor: pointer; display: flex; gap: 16px;
  align-items: flex-start; padding: 20px 0;
  font-size: 16.5px; font-weight: 600; color: var(--black); line-height: 1.45;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.qa summary:hover { color: var(--gold-d); }
.qa .q { flex: 1; }
.qa .plus {
  width: 22px; height: 22px; min-width: 22px; border: 1.5px solid var(--g80);
  border-radius: 50%; position: relative; margin-top: 2px;
  transition: background .18s, border-color .18s, transform .25s;
}
.qa .plus::before, .qa .plus::after {
  content: ''; position: absolute; background: var(--g40); left: 50%; top: 50%;
  transition: background .18s, opacity .18s;
}
.qa .plus::before { width: 9px; height: 1.5px; transform: translate(-50%,-50%); }
.qa .plus::after  { width: 1.5px; height: 9px; transform: translate(-50%,-50%); }
.qa[open] .plus { background: var(--gold); border-color: var(--gold); transform: rotate(180deg); }
.qa[open] .plus::before { background: var(--black); }
.qa[open] .plus::after { opacity: 0; }
.qa .a { padding: 0 0 22px 38px; }
.qa .a p { font-size: 15.5px; color: var(--g40); line-height: 1.7; }
.qa .a p + p { margin-top: 12px; }
.qa .a strong { color: var(--black); font-weight: 600; }
.qa .a a { color: var(--gold-d); }
.faq-cta { margin-top: 56px; background: var(--black); border-left: 3px solid var(--gold);
  border-radius: 3px; padding: 28px 24px; }
.faq-cta h3 { font-family: var(--display); font-size: 28px; letter-spacing: .04em;
  text-transform: uppercase; color: var(--white); line-height: 1; margin-bottom: 10px; }
.faq-cta p { font-size: 15px; color: var(--g60); line-height: 1.65; margin-bottom: 20px; }
.faq-cta p a { color: var(--gold); }

/* ── blog index ───────────────────────────────────────────── */
.filters { display: flex; gap: 8px; flex-wrap: wrap; margin: 30px 0 8px; }
.filter { font-family: var(--body); font-size: 12px; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; padding: 8px 14px; border-radius: 30px; cursor: pointer;
  background: transparent; border: 1px solid var(--g80); color: var(--g40);
  transition: background .18s, color .18s, border-color .18s; }
.filter:hover { border-color: var(--gold-d); color: var(--black); }
.filter[aria-pressed="true"] { background: var(--black); border-color: var(--black); color: var(--gold); }

.posts { display: flex; flex-direction: column; gap: 2px; margin-top: 26px; }
.post { display: block; text-decoration: none; background: var(--g97);
  border-left: 3px solid transparent; border-radius: 2px; padding: 24px 22px;
  transition: border-color .18s, background .18s; }
.post:hover { border-left-color: var(--gold); background: var(--g93); }
.post[hidden] { display: none; }
.post-cat { font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-d); display: block; margin-bottom: 9px; }
.post-title { font-family: var(--display); font-size: clamp(26px,7vw,32px); line-height: 1;
  letter-spacing: .02em; text-transform: uppercase; color: var(--black); margin-bottom: 9px; }
.post-ex { font-size: 15px; color: var(--g40); line-height: 1.6; margin-bottom: 12px; }
.post-meta { font-size: 12px; color: var(--g60); letter-spacing: .04em; }
.post--lead { background: var(--black); border-left-color: var(--gold); padding: 30px 24px; }
.post--lead:hover { background: var(--g10); }
.post--lead .post-cat { color: var(--gold); }
.post--lead .post-title { color: var(--white); font-size: clamp(32px,9vw,44px); }
.post--lead .post-ex { color: var(--g60); }
.empty { font-size: 15px; color: var(--g60); padding: 30px 0; display: none; }
.empty.show { display: block; }

/* ── article ──────────────────────────────────────────────── */
.article { max-width: 640px; margin: 0 auto; padding: 0 var(--pad); }
.article-head { padding-top: calc(var(--nav) + 56px); }
.article h1 { font-family: var(--display); font-size: clamp(38px,11vw,58px); line-height: .97;
  letter-spacing: .02em; text-transform: uppercase; color: var(--black); margin: 12px 0 16px; }
.article-meta { font-size: 12.5px; color: var(--g60); letter-spacing: .04em;
  padding-bottom: 26px; border-bottom: 1px solid var(--g93); }
.article-body { padding-top: 30px; }
.article-body p { font-size: 17.5px; color: var(--g20); line-height: 1.75; margin-bottom: 20px; }
.article-body h2 { font-family: var(--display); font-size: 30px; letter-spacing: .03em;
  text-transform: uppercase; color: var(--black); line-height: 1.05; margin: 42px 0 14px; }
.article-body h3 { font-size: 18px; font-weight: 700; color: var(--black); margin: 30px 0 10px; }
.article-body ul, .article-body ol { margin: 0 0 20px 0; padding-left: 20px; }
.article-body li { font-size: 17px; color: var(--g20); line-height: 1.7; margin-bottom: 9px; }
.article-body strong { color: var(--black); font-weight: 700; }
.article-body a { color: var(--gold-d); }
.article-body blockquote { border-left: 3px solid var(--gold); padding: 4px 0 4px 20px;
  margin: 28px 0; font-size: 19px; line-height: 1.55; color: var(--black); font-style: italic; }
.keyfact { background: var(--g97); border-left: 3px solid var(--gold); border-radius: 2px;
  padding: 22px; margin: 30px 0; }
.keyfact strong { display: block; font-family: var(--display); font-size: 24px;
  letter-spacing: .03em; text-transform: uppercase; color: var(--black); margin-bottom: 6px; }
.keyfact p { font-size: 15px; color: var(--g40); line-height: 1.65; margin: 0; }
.sources { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--g93); }
.sources h4 { font-size: 10.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-d); margin-bottom: 12px; }
.sources p { font-size: 13px; color: var(--g60); line-height: 1.65; margin-bottom: 9px; }
.authorbox { margin-top: 44px; background: var(--g97); border-radius: 4px; padding: 24px 22px;
  border-left: 3px solid var(--gold); }
.authorbox h4 { font-family: var(--display); font-size: 22px; letter-spacing: .04em;
  text-transform: uppercase; color: var(--black); margin-bottom: 8px; }
.authorbox p { font-size: 14.5px; color: var(--g40); line-height: 1.65; margin-bottom: 16px; }
