/* ============================================================
   CORVAUX — The Access Codes · design system & page styles
   ------------------------------------------------------------
   Rebuilt to the canonical brand spec (the Corvaux intro page):
   the gold button, the --ease curve, the focus ring, the
   cream/ink/gold palette and Fraunces/Inter/IBM Plex Mono roles
   all derive from that single source so the two pages read as
   one hand.

   Light bands  = "the daylight explanation" (cream / ink)
   Dark  bands  = "inside the room"          (vault / cream)
   ============================================================ */
.basic-protect * {
    /* Selection */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body {
    /* Prevents ghost image dragging of text and blocks native choices */
    -webkit-user-drag: none;
    
}
:root {
  /* ---- colour (sampled from the brand mark + intro page) ---- */
  --cream:        #F7F5EC;   /* paper / primary on dark */
  --cream-2:      #D8D4C6;   /* secondary on dark */
  --cream-3:      #A7A294;   /* muted on dark / captions */
  --cream-deep:   #EFEBDE;   /* raised surface on light */
  --cream-edge:   #E6E1D0;   /* hairline on light */

  --ink:          #14120E;   /* primary on light */
  --ink-soft:     #3A362D;   /* body on light */
  --ink-mute:     #6B6555;   /* secondary on light */

  --vault:        #100F0C;   /* dark band ground */
  --vault-raise:  #181610;   /* raised dark surface */
  --vault-edge:   #2A2720;   /* hairline on dark */

  --gold:         #C9A341;
  --gold-bright:  #E8C56A;
  --gold-dim:     #7A6222;    /* AA-safe gold on cream */

  --rule:         rgba(20, 18, 14, .16);
  --rule-dark:    rgba(243, 239, 226, .14);

  /* ---- type ---- */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono:    "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  /* ---- motion ---- */
  --ease: cubic-bezier(.2, .7, .2, 1);

  /* ---- rhythm ---- */
  --w-page:  1120px;
  --w-prose: 660px;
  --pad-x:   clamp(20px, 5vw, 48px);
  --band-y:  clamp(72px, 11vw, 128px);
  --head-h:  68px;
}

/* ---------- reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; }
img { display: block; height: auto; }
figure { margin: 0; }
a { color: inherit; }
::selection { background: var(--gold); color: var(--ink); }
[id] { scroll-margin-top: calc(var(--head-h) + 18px); }

/* ---------- skip link ---------- */
.skip {
  position: absolute; left: 16px; top: -64px; z-index: 100;
  background: var(--ink); color: var(--cream);
  font-family: var(--font-mono); font-size: .78rem;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 12px 18px; text-decoration: none; border-radius: 8px;
  transition: top .2s ease;
}
.skip:focus { top: 12px; }

/* ============================================================
   STRUCTURE — bands & wraps
   Padding lives ONCE on .band; modifiers only touch
   background / colour / border so specificities never fight.
   ============================================================ */
.band { padding: var(--band-y) 0; position: relative; }
.band--dark {
  background-color: var(--vault);
  color: var(--cream);
  background-image:
    radial-gradient(120% 80% at 50% -10%, rgba(232,197,106,.05), rgba(232,197,106,0) 55%);
}
.band--rule-top { border-top: 1px solid var(--rule); }
.band--dark.band--rule-top { border-top-color: var(--rule-dark); }

.wrap {
  width: 100%; max-width: var(--w-page);
  margin-inline: auto; padding-inline: var(--pad-x);
}

/* ---------- prose column ---------- */
.prose { max-width: var(--w-prose); }
.prose.center { margin-inline: auto; text-align: center; }
.prose p { margin: 0 0 1.05em; color: var(--ink-soft); }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose em { font-style: italic; }
.band--dark .prose p { color: var(--cream-2); }
.band--dark .prose strong { color: var(--cream); }

/* ============================================================
   TYPE ROLES
   ============================================================ */
.eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem; font-weight: 500;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold-dim); margin: 0 0 1.1em;
}
.band--dark .eyebrow { color: var(--gold); }

.h2 {
  font-family: var(--font-display); font-optical-sizing: auto;
  font-weight: 560; font-size: clamp(28px, 4.6vw, 46px);
  line-height: 1.04; letter-spacing: -.012em;
  margin: 0 0 .55em; color: var(--ink); text-wrap: balance;
}
.band--dark .h2 { color: var(--cream); }

.h3 {
  font-family: var(--font-display); font-optical-sizing: auto;
  font-weight: 560; font-size: clamp(18px, 2.4vw, 23px);
  line-height: 1.16; margin: 0 0 .4em; color: var(--ink);
}
.band--dark .h3 { color: var(--cream); }

.kicker-line {
  font-family: var(--font-display); font-weight: 560;
  font-size: clamp(20px, 3vw, 30px); line-height: 1.2;
  letter-spacing: -.01em; color: var(--ink);
  margin: 1.4em 0 0;
}
.band--dark .kicker-line { color: var(--cream); }

.mono-note {
  font-family: var(--font-mono); font-size: .72rem;
  letter-spacing: .08em; color: var(--ink-mute); margin: 0;
}
.band--dark .mono-note { color: var(--cream-3); }

/* ============================================================
   BUTTONS  —  THE unified CTA (canonical intro-page spec)
   Same geometry, shadow physics, hover-lift and focus across
   every placement; only the colourway and size vary.
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: .6em; cursor: pointer;
  font-family: var(--font-display); font-optical-sizing: auto; font-weight: 560;
  font-size: clamp(16px, 2.2vw, 19px); letter-spacing: .004em; line-height: 1;
  color: var(--ink); background: var(--gold);
  padding: .82em 1.55em; border-radius: 10px; text-decoration: none;
  border: 1px solid rgba(0, 0, 0, .18);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .24) inset,
    0 12px 30px -12px rgba(201, 163, 65, .55),
    0 2px 6px rgba(0, 0, 0, .4);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.btn:hover {
  background: var(--gold-bright); transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .32) inset,
    0 18px 36px -12px rgba(232, 197, 106, .6),
    0 3px 8px rgba(0, 0, 0, .45);
}
.btn:active { transform: translateY(0); }
.btn .key { width: .78em; height: 1.06em; fill: currentColor; flex: none; display: block; transition: fill .25s ease, filter .25s ease; }

/* gold — primary (alias of base, kept explicit for the markup) */
.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold:hover { background: var(--gold-bright); }
.btn--gold .key { fill: var(--ink); }

/* ink — for the cream header; dark colourway, identical physics */
.btn--ink {
  background: var(--ink); color: var(--cream);
  border-color: rgba(0, 0, 0, .4);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .06) inset,
    0 12px 30px -14px rgba(0, 0, 0, .55),
    0 2px 6px rgba(0, 0, 0, .35);
}
.btn--ink:hover {
  background: #000; color: var(--cream);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .08) inset,
    0 18px 36px -14px rgba(0, 0, 0, .6),
    0 3px 8px rgba(0, 0, 0, .4);
}
.btn--ink .key { fill: var(--gold); }
.btn--ink:hover .key { fill: var(--gold-bright); filter: drop-shadow(0 0 5px rgba(232,197,106,.85)); }

/* ghost — secondary action on dark; keeps the lift, drops the fill */
.btn--ghost {
  background: transparent; color: var(--cream-2);
  border-color: var(--vault-edge); box-shadow: none;
}
.btn--ghost:hover {
  background: rgba(247, 245, 236, .04); color: var(--cream);
  border-color: var(--cream-3); transform: translateY(-2px);
  box-shadow: 0 12px 30px -16px rgba(0, 0, 0, .6);
}
.btn--ghost .key { fill: currentColor; }

/* size modifier (header) — size may differ; style/hover do not */
.btn--small { padding: .62em 1.05em; font-size: clamp(13px, 1.5vw, 15px); border-radius: 9px; }

.cta-stack { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.center .cta-stack, .prose.center + * .cta-stack { align-items: center; }
.cta-micro {
  font-family: var(--font-mono); font-weight: 400; font-size: .72rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mute);
}
.band--dark .cta-micro { color: var(--cream-3); }
.checkout-pending {
  display: none; font-family: var(--font-mono); font-size: .7rem;
  letter-spacing: .06em; color: var(--gold-bright);
}
.checkout-pending.show { display: block; }

/* ============================================================
   HEADER
   ============================================================ */
.site-head {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 245, 236, .82);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  backdrop-filter: blur(10px) saturate(120%);
  border-bottom: 1px solid transparent;
  transition: background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-head.scrolled {
  background: rgba(247, 245, 236, .95);
  border-bottom-color: var(--rule);
  box-shadow: 0 6px 24px -18px rgba(0, 0, 0, .5);
}
.site-head .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; min-height: var(--head-h); padding-block: 11px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
.brand img { height: 32px; width: auto; }
.brand .word { font-family: var(--font-display); font-weight: 560; font-size: 1.16rem; letter-spacing: .005em; }
.site-foot .brand .word { color: var(--cream); }

.head-cta { display: flex; align-items: center; gap: clamp(12px, 2vw, 22px); }
.head-link {
  font-family: var(--font-mono); font-size: .72rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-mute); text-decoration: none; transition: color .2s ease;
}
.head-link:hover { color: var(--ink); }

/* ============================================================
   THE SCENE / opening prose flourish
   ============================================================ */
.scene .kicker-line { border-left: 2px solid var(--gold); padding-left: 18px; }

/* ============================================================
   COMPARE — guessing the room / reading the room
   ============================================================ */
.compare {
  display: grid; gap: clamp(16px, 2.4vw, 22px);
  grid-template-columns: 1fr; margin-top: clamp(36px, 5vw, 56px);
}
@media (min-width: 760px) { .compare { grid-template-columns: 1fr 1fr; } }
.compare > div {
  border-radius: 16px; padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--rule);
}
.compare .col-old { background: var(--cream-deep); }
.compare .col-new { background: var(--ink); color: var(--cream); border-color: var(--vault-edge); }
.compare h3 {
  font-family: var(--font-mono); font-size: .72rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; margin: 0 0 16px;
}
.compare .col-old h3 { color: var(--ink-mute); }
.compare .col-new h3 { color: var(--gold); }
.compare ul { list-style: none; margin: 0; padding: 0; }
.compare li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 14px;
  padding: 11px 0; border-top: 1px solid var(--rule); font-size: .98rem;
}
.compare .col-new li { border-top-color: var(--rule-dark); }
.compare li:first-child { border-top: 0; }
.code-ref {
  flex: none; font-family: var(--font-mono); font-size: .66rem;
  letter-spacing: .08em; text-transform: uppercase; color: var(--gold);
  border: 1px solid var(--gold-dim); border-radius: 999px; padding: 3px 9px;
}

/* ============================================================
   MANIFEST — the five parts
   ============================================================ */
.parts { display: grid; gap: 14px; margin-top: clamp(34px, 5vw, 52px); }
.part {
  display: grid; grid-template-columns: auto auto 1fr; align-items: start;
  gap: clamp(14px, 2.4vw, 28px);
  padding: clamp(20px, 2.6vw, 26px) clamp(20px, 2.6vw, 28px);
  border-radius: 14px; background: var(--vault-raise);
  border: 1px solid var(--vault-edge);
}
.part .num {
  font-family: var(--font-display); font-weight: 560;
  font-size: clamp(26px, 4vw, 40px); line-height: 1; color: var(--gold);
  min-width: 1.4em;
}
.part .range {
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--cream-3); white-space: nowrap;
  padding-top: .5em;
}
.part .h3 { margin-bottom: .25em; }
.part p { margin: 0; color: var(--cream-2); font-size: .98rem; }
@media (max-width: 560px) {
  .part { grid-template-columns: auto 1fr; }
  .part .range { grid-column: 2; order: 3; padding-top: 4px; }
}

/* ============================================================
   THE FREE CODE — vault card
   ============================================================ */
.vault-card {
  margin-top: clamp(34px, 5vw, 52px); max-width: 760px; margin-inline: auto;
  background: var(--vault-raise); border: 1px solid var(--gold-dim);
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 40px 90px -50px rgba(0, 0, 0, .9);
}
.vault-card .card-head {
  display: flex; flex-wrap: wrap; gap: 8px 18px; align-items: center;
  padding: 16px clamp(22px, 3vw, 32px);
  border-bottom: 1px solid var(--vault-edge);
  font-family: var(--font-mono); font-size: .68rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--cream-3);
}
.vault-card .card-head .status { margin-left: auto; color: var(--gold-bright); }
.vault-card .card-body { padding: clamp(24px, 3.4vw, 38px) clamp(22px, 3vw, 38px); }
.code-title {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 560;
  font-size: clamp(22px, 3.2vw, 30px); line-height: 1.1;
  margin: 0 0 22px; color: var(--cream);
}
.code-title .keyglow {
  width: 18px; height: 26px; flex: none; fill: var(--gold-bright);
  filter: drop-shadow(0 0 8px rgba(232, 197, 106, .55));
}
.vault-card dl { margin: 0; display: grid; gap: 4px; }
.vault-card dt {
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); margin: 18px 0 6px;
}
.vault-card dt:first-child { margin-top: 0; }
.vault-card dd { margin: 0; color: var(--cream-2); }
.vault-card dd em { color: var(--cream); font-style: italic; }

/*
Source - https://stackoverflow.com/a/12308064
Posted by Nope, modified by community. See post 'Timeline' for change history
Retrieved 2026-06-13, License - CC BY-SA 3.0
*/
.hideContent {
  overflow: hidden;
  line-height: 1em;
  height: 1em;
  position: relative;
}
.hideContent::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, var(--vault-bg, #1a1610) 100%);
  pointer-events: none;
}
.showContent {
  line-height: 1em;
  height: auto;
}
.vault-card .card-foot {
  display: flex; flex-wrap: wrap; gap: 16px 22px; align-items: center; justify-content: space-between;
  padding: clamp(18px, 2.6vw, 26px) clamp(22px, 3vw, 38px);
  border-top: 1px solid var(--vault-edge); background: rgba(0, 0, 0, .18);
}
.vault-card .tally { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .08em; color: var(--cream-3); }
/* re-read flash (driven by JS toggling .flash) */
.vault-card.flash { animation: vaultFlash 1.25s var(--ease) both; }
@keyframes vaultFlash {
  0%   { box-shadow: 0 0 0 1px var(--gold-bright), 0 0 60px -6px rgba(232,197,106,.55); }
  100% { box-shadow: 0 40px 90px -50px rgba(0,0,0,.9); }
}

/* ============================================================
   KEYLIST — keyhole bullets (offer + fit)
   ============================================================ */
.keylist { list-style: none; margin: 26px 0 0; padding: 0; }
.keylist li {
  position: relative; padding: 13px 0 13px 30px;
  border-top: 1px solid var(--rule);
}
.band--dark .keylist li { border-top-color: var(--rule-dark); }
.keylist li:first-child { border-top: 0; }
.keylist li::before {
  content: ""; position: absolute; left: 4px; top: 1.25em;
  width: 11px; height: 15px; background: var(--gold);
  -webkit-mask: var(--keyhole-mask) center / contain no-repeat;
          mask: var(--keyhole-mask) center / contain no-repeat;
}
:root {
  --keyhole-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 28'%3E%3Cpath d='M10 1.5a6.5 6.5 0 0 1 2.8 12.4L15 26.5H5l2.2-12.6A6.5 6.5 0 0 1 10 1.5Z'/%3E%3C/svg%3E");
}

/* ============================================================
   FIT — who it's for / not for
   ============================================================ */
.fit-grid { display: grid; gap: clamp(16px, 2.4vw, 24px); grid-template-columns: 1fr; margin-top: clamp(34px, 5vw, 52px); }
@media (min-width: 760px) { .fit-grid { grid-template-columns: 1fr 1fr; } }
.fit-grid .yes, .fit-grid .no {
  border-radius: 16px; padding: clamp(22px, 3vw, 30px); border: 1px solid var(--rule);
  background: var(--cream-deep);
}
.fit-grid h3 {
  font-family: var(--font-mono); font-size: .72rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; margin: 0 0 8px;
}
.fit-grid .yes h3 { color: var(--gold-dim); }
.fit-grid .no h3 { color: var(--ink-mute); }
.fit-grid .keylist { margin-top: 10px; }
.fit-grid .no .keylist li::before { background: var(--ink-mute); }

.candor {
  margin-top: clamp(28px, 4vw, 44px); border-left: 2px solid var(--gold);
  padding: 4px 0 4px 22px; font-size: 1.05rem; line-height: 1.6; color: var(--ink-soft);
  max-width: 60ch;
}
.candor strong { color: var(--ink); }
.band--dark .candor { color: var(--cream-2); }
.band--dark .candor strong { color: var(--cream); }

/* ============================================================
   OFFER — copy + the framed first edition plate
   Grid drives BOTH layouts from one source order:
   desktop  →  [title+keylist] | [plate]   with the act row under the title;
   mobile   →  title+keylist  →  PLATE  →  CTA + note  (plate above CTA, after the list)
   ============================================================ */
.offer-grid { display: grid; grid-template-columns: 1fr; gap: clamp(26px, 4vw, 38px); align-items: start; }
@media (min-width: 920px) {
  .offer-grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(330px, .96fr);
    grid-template-areas: "head plate" "act plate";
    column-gap: clamp(40px, 5vw, 72px); row-gap: clamp(22px, 3vw, 30px);
  }
  .offer-head  { grid-area: head; }
  .offer-act   { grid-area: act; align-self: start; }
  .offer-plate { grid-area: plate; align-self: center; }
}
.offer .price-line {
  font-family: var(--font-display); font-weight: 560;
  font-size: clamp(30px, 5vw, 50px); line-height: 1.02; letter-spacing: -.015em;
  margin: 0; color: var(--cream);
}
.offer-act { display: flex; flex-direction: column; gap: 14px; }
.edition-note {
  font-size: .92rem; line-height: 1.55; color: var(--cream-3); max-width: 52ch; margin: 4px 0 0;
}
.edition-note strong { color: var(--cream-2); }

/* the plate — cream-matted (seamless with the cover's recoloured ground),
   gold-hairline framed, lifted off the dark band with a faint gold halo */
.offer-plate { position: relative; width: 100%; max-width: 520px; margin-inline: auto; }
.offer-plate::before {
  content: ""; position: absolute; inset: -7% -7% -11%; z-index: 0; border-radius: 26px;
  background: radial-gradient(60% 55% at 50% 42%, rgba(232,197,106,.18), rgba(232,197,106,0) 70%);
  filter: blur(7px); pointer-events: none;
}
.offer-plate img {
  position: relative; z-index: 1; width: 100%; height: auto;
  border-radius: 14px; background: var(--cream);
  border: 1px solid var(--gold-dim);
  box-shadow: 0 30px 70px -28px rgba(0,0,0,.8), 0 8px 22px -12px rgba(0,0,0,.6);
}
.plate-cap {
  position: relative; z-index: 1; margin: 14px 0 0; text-align: center;
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--cream-3);
}

/* ============================================================
   LADDER — the three rungs
   ============================================================ */
.ladder { display: grid; gap: 12px; margin-top: clamp(34px, 5vw, 52px); }
.rung {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  gap: clamp(14px, 2.4vw, 26px);
  padding: clamp(18px, 2.6vw, 24px) clamp(20px, 2.8vw, 28px);
  border-radius: 14px; border: 1px solid var(--rule); background: var(--cream-deep);
}
.rung .step {
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--ink-mute);
}
.rung .h3 { margin: 0; display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px; }
.rung p { margin: 6px 0 0; color: var(--ink-soft); font-size: .96rem; max-width: 52ch; }
.rung .price {
  font-family: var(--font-mono); font-size: .8rem; letter-spacing: .04em;
  color: var(--ink); white-space: nowrap;
}
.rung.here { border-color: var(--gold-dim); background: #fff; box-shadow: 0 18px 40px -30px rgba(0,0,0,.4); }
.rung.here .step { color: var(--gold-dim); }
.you-are-here {
  font-family: var(--font-mono); font-size: .6rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink); background: var(--gold); border-radius: 999px; padding: 3px 9px;
}
.rung.locked { opacity: .82; }
.rung.locked .h3, .rung.locked .price { color: var(--ink-mute); }
@media (max-width: 620px) {
  .rung { grid-template-columns: 1fr auto; }
  .rung .step { grid-column: 1 / -1; }
}

/* ============================================================
   FAQ — accordion
   ============================================================ */
.faq { margin-top: clamp(30px, 4.5vw, 48px); max-width: 760px; margin-inline: auto; }
.faq details { border-top: 1px solid var(--rule); }
.faq details:last-child { border-bottom: 1px solid var(--rule); }
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 40px 20px 4px; position: relative;
  font-family: var(--font-display); font-weight: 560; font-size: clamp(17px, 2.1vw, 20px);
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .twist {
  position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-mono); font-size: 1.1rem; color: var(--gold-dim);
  transition: transform .25s var(--ease);
}
.faq details[open] summary .twist { transform: translateY(-50%) rotate(45deg); }
.faq .answer { padding: 0 4px 24px; color: var(--ink-soft); max-width: 62ch; }
.faq .answer p { margin: 0; }

/* ============================================================
   CLOSE — two roads + P.S.
   ============================================================ */
.close-band { overflow: hidden; }
.close-band .wing-ghost {
  position: absolute; right: -6%; bottom: -10%; width: min(560px, 60%);
  opacity: .05; pointer-events: none; z-index: 0;
}
.close-band .wrap { position: relative; z-index: 1; }
.two-roads { display: grid; gap: clamp(16px, 2.6vw, 26px); grid-template-columns: 1fr; margin-top: clamp(30px, 4.5vw, 48px); }
@media (min-width: 800px) { .two-roads { grid-template-columns: 1fr 1fr; } }
.road {
  border-radius: 16px; padding: clamp(24px, 3.4vw, 34px);
  border: 1px solid var(--vault-edge); background: var(--vault-raise);
  display: flex; flex-direction: column; gap: 14px; align-items: flex-start;
}
.road p { margin: 0; color: var(--cream-2); flex: 1 1 auto; }
.road.right { border-color: var(--gold-dim); background: linear-gradient(180deg, rgba(232,197,106,.06), rgba(232,197,106,0)); }
.ps-block {
  margin-top: clamp(34px, 5vw, 56px); max-width: 720px; margin-inline: auto;
  display: grid; gap: 14px;
}
.ps-block p { margin: 0; color: var(--cream-2); font-size: .98rem; }
.ps-block strong { color: var(--gold-bright); font-family: var(--font-mono); font-size: .82rem; letter-spacing: .06em; }

/* ============================================================
   SECTION MEDIA SLOTS  (issue #3)
   Drop an <svg>, <video>, <iframe> or <img> straight inside any
   [data-media]. Empty slots collapse (clean page); a filled slot
   reserves a fixed 16:9 box and forces the child to fit it, so
   adding media later never reflows or skews the section.
   ?slots=1  (or  body.dev-media)  reveals labelled placeholders.
   ============================================================ */
.section-media {
  width: 100%; max-width: 900px; margin-inline: auto;
  margin-top: clamp(40px, 6vw, 72px);
  aspect-ratio: 16 / 9; border-radius: 14px; overflow: hidden;
}
.section-media:empty { display: none; }
.section-media > svg,
.section-media > img,
.section-media > video,
.section-media > iframe {
  display: block; width: 100%; height: 100%;
  object-fit: contain; border: 0; background: transparent;
}
/* opt-out of the fixed ratio for media that must define its own height */
.section-media--auto { aspect-ratio: auto; }
.section-media--auto > svg,
.section-media--auto > img,
.section-media--auto > video,
.section-media--auto > iframe { height: auto; }
/* wider cinematic slot, still skew-proof */
.section-media--wide { max-width: 1040px; aspect-ratio: 21 / 9; }

/* dev scaffold — reveal empty slots to verify the reserved space */
body.dev-media .section-media:empty {
  display: flex; align-items: center; justify-content: center;
  border: 1px dashed var(--rule); color: var(--ink-mute);
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
}
body.dev-media .band--dark .section-media:empty { border-color: var(--rule-dark); color: var(--cream-3); }
body.dev-media .section-media:empty::after { content: "media · " attr(data-label) " · 16:9"; }
body.dev-media .section-media--wide:empty::after { content: "media · " attr(data-label) " · 21:9"; }
body.dev-media .section-media--auto:empty { min-height: 120px; }
body.dev-media .section-media--auto:empty::after { content: "media · " attr(data-label) " · auto"; }

/* ============================================================
   REVEAL ON SCROLL  (JS toggles .in)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-foot { background: var(--vault); color: var(--cream-2); padding: clamp(40px, 6vw, 64px) 0 clamp(30px, 4vw, 44px); border-top: 1px solid var(--rule-dark); }
.site-foot .top { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 24px; margin-bottom: 22px; }
.site-foot .brand img { height: 30px; }
.site-foot .tagline { font-family: var(--font-display); font-size: 1.02rem; color: var(--cream-2); }
.site-foot .legal {
  font-family: var(--font-mono); font-size: .72rem; line-height: 1.7;
  letter-spacing: .02em; color: var(--cream-3); max-width: 92ch; margin: 0 0 20px;
}
.foot-links {
  display: flex; flex-wrap: wrap; gap: .5em 1.3em; align-items: center;
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .05em; color: var(--cream-3);
}
.foot-links a { color: var(--cream-2); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .2s ease; }
.foot-links a:hover { border-color: var(--gold); }

/* ============================================================
   FOCUS + REDUCED MOTION  (quality floor)
   ============================================================ */
a:focus-visible, .btn:focus-visible, summary:focus-visible, [data-action]:focus-visible {
  outline: 2px solid var(--gold-bright); outline-offset: 3px; border-radius: 10px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE TRIMS
   ============================================================ */
@media (max-width: 720px) {
  .head-link { display: none; }
}
@media (max-width: 420px) {
  body { font-size: 1rem; }
  .vault-card .card-head { font-size: .62rem; }
}
