/* =====================================================================
   AUR — site styles
   Palette from the brief: charcoal, copper, antique gold, fog, moss,
   ivory, tiny pink accents. Serif display + simple sans body.
   ===================================================================== */
:root {
  --charcoal: #242321;
  --charcoal-deep: #15150f;
  --charcoal-2: #2e2c29;
  --copper: #743d2b;
  --gold: #c29a52;
  --gold-bright: #e0bb74;
  --fog: #b8bec0;
  --moss: #535c4b;
  --ivory: #ece5d5;
  --ivory-dim: #cfc7b6;
  --pink: #d997b5;
  --line: rgba(236, 229, 213, 0.12);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --wrap: 1180px;
  --gutter: clamp(16px, 4vw, 40px);
  --radius: 10px;
  --shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.8);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--charcoal);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
[hidden] { display: none !important; }
a { color: var(--gold-bright); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: #fff; }
:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; border-radius: 3px; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.08; margin: 0 0 0.5em; color: #f4ead9; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.8rem, 7.5vw, 5.6rem); }
h2 { font-size: clamp(2rem, 4.6vw, 3.3rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
.wrap { width: min(100% - 2 * var(--gutter), var(--wrap)); margin-inline: auto; }
.eyebrow {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1em;
  font-weight: 500;
}
.section-lede { font-size: clamp(1.1rem, 1.6vw, 1.3rem); max-width: 720px; color: var(--ivory-dim); margin-bottom: 2.5rem; }
.fineprint { color: var(--fog); font-size: 0.92rem; max-width: 720px; margin-top: 2rem; }
section { position: relative; padding: clamp(72px, 10vw, 140px) 0; }
/* Anchors clear the sticky header. */
[id] { scroll-margin-top: 84px; }

.skip-link { position: absolute; left: 8px; top: -60px; background: var(--gold); color: #000; padding: 8px 14px; border-radius: 6px; z-index: 200; font-weight: 600; }
.skip-link:focus { top: 8px; }

/* Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem; text-decoration: none;
  border: 1px solid transparent; transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: linear-gradient(180deg, var(--gold-bright), var(--gold)); color: #1b1608; border-color: rgba(255, 230, 180, 0.35); box-shadow: 0 8px 24px -10px rgba(194, 154, 82, 0.7); }
.btn-gold:hover { background: linear-gradient(180deg, #f0cd88, var(--gold-bright)); color: #1b1608; }
.btn-ghost { background: rgba(21, 21, 15, 0.45); color: var(--ivory); border-color: rgba(236, 229, 213, 0.3); backdrop-filter: blur(6px); }
.btn-ghost:hover { border-color: var(--gold-bright); color: #fff; }
.btn-sm { padding: 10px 18px; font-size: 0.88rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 1.6rem; }

/* Header ------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: linear-gradient(180deg, rgba(21, 21, 15, 0.92), rgba(21, 21, 15, 0.75));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 66px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ivory); }
.brand-mark { border-radius: 50%; border: 1px solid rgba(194, 154, 82, 0.6); }
.brand-name { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; letter-spacing: 0.08em; color: var(--gold-bright); }
.brand-sub { font-size: 0.8rem; color: var(--fog); letter-spacing: 0.1em; text-transform: uppercase; }
.site-nav { display: flex; gap: clamp(14px, 2vw, 26px); align-items: center; }
.site-nav a { color: var(--ivory-dim); text-decoration: none; font-size: 0.9rem; font-weight: 500; }
.site-nav a:hover { color: #fff; }
.nav-cta { padding: 8px 16px; border-radius: 999px; background: var(--gold); color: #1b1608 !important; font-weight: 600; }
.nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 8px; width: 44px; height: 40px; padding: 8px 10px; flex-direction: column; justify-content: space-between; cursor: pointer; }
.nav-toggle span { display: block; height: 2px; background: var(--ivory); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .brand-sub { display: none; }
  .site-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(21, 21, 15, 0.97); border-bottom: 1px solid var(--line);
    padding: 8px var(--gutter) 18px; display: none;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 4px; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .site-nav .nav-cta { margin-top: 12px; text-align: center; border-bottom: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
}

/* Hero --------------------------------------------------------------- */
.hero {
  min-height: calc(100svh - 66px);
  display: grid; align-items: center;
  padding: clamp(60px, 8vw, 110px) 0 clamp(80px, 10vw, 140px);
  overflow: hidden;
  isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -1; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 42%; }
/* Directional shade: dark behind the text on the left, clear over the
   dragon's eye and the kitten on the right. No uniform veil. */
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(95deg, rgba(36, 35, 33, 0.94) 0%, rgba(36, 35, 33, 0.86) 22%, rgba(30, 29, 27, 0.55) 38%, rgba(21, 21, 15, 0.12) 52%, rgba(21, 21, 15, 0) 64%),
    linear-gradient(180deg, rgba(21, 21, 15, 0.18) 0%, rgba(21, 21, 15, 0) 22%, rgba(21, 21, 15, 0) 70%, var(--charcoal) 100%);
}
.mist {
  position: absolute; inset: -10% -20%;
  pointer-events: none;
  background-repeat: repeat-x;
  opacity: 0.85;
  will-change: transform, opacity;
}
.mist-a {
  background-image: radial-gradient(ellipse 60% 40% at 20% 60%, rgba(184, 190, 192, 0.35), transparent 70%),
                    radial-gradient(ellipse 50% 35% at 70% 30%, rgba(184, 190, 192, 0.22), transparent 70%);
  animation: driftA 26s ease-in-out infinite alternate;
}
.mist-b {
  background-image: radial-gradient(ellipse 55% 45% at 55% 75%, rgba(236, 229, 213, 0.25), transparent 70%),
                    radial-gradient(ellipse 40% 30% at 90% 55%, rgba(184, 190, 192, 0.2), transparent 70%);
  animation: driftB 34s ease-in-out infinite alternate;
}
@keyframes driftA { from { transform: translate3d(-3%, 0, 0); } to { transform: translate3d(3%, -2%, 0); } }
@keyframes driftB { from { transform: translate3d(3%, 1%, 0); } to { transform: translate3d(-3%, -1%, 0); } }
.hero.is-revealed .mist { animation-play-state: running; }
/* The hero text sits further left than the other sections' content column. */
.hero-content { position: relative; width: min(100% - 2 * var(--gutter), 1340px); }
/* Text sits at the left edge of the content column; each block is capped so
   it never runs over the dragon's eye or the kitten. */
.hero-content > * { max-width: 560px; }
/* Local glow behind the text block rather than darkening the whole artwork. */
.hero-content::before {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  top: -12%; bottom: -10%; left: -14%; width: 64%;
  background: radial-gradient(ellipse 70% 60% at 40% 50%, rgba(21, 21, 15, 0.7), rgba(21, 21, 15, 0) 70%);
}
.hero-content .eyebrow { color: var(--gold-bright); }
.hero h1 { font-size: clamp(2.8rem, 6.8vw, 5.2rem); text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6); }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.3rem); line-height: 1.5; color: var(--ivory); font-family: var(--serif); font-style: italic; font-weight: 500; max-width: 520px; text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7); }
.trade-note { margin-top: 0.9rem; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fog); text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7); }
.hero-utility { display: flex; flex-wrap: wrap; gap: 12px 20px; align-items: center; margin-top: 1.6rem; font-size: 0.85rem; }
/* Label on top; full address and copy button together on one line. */
.ca-block {
  display: grid; grid-template-columns: auto auto; justify-content: start; align-items: center; gap: 6px 12px;
  background: rgba(21, 21, 15, 0.62); border: 1px solid var(--line); border-radius: 8px;
  padding: 10px 12px; backdrop-filter: blur(6px); max-width: 100%;
}
.ca-label { grid-column: 1 / -1; letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.68rem; color: var(--gold); white-space: nowrap; }
.ca-value { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 0.78rem; line-height: 1.4; color: var(--ivory-dim); white-space: nowrap; user-select: all; }
@media (max-width: 560px) {
  .ca-block { grid-template-columns: 1fr; }
  .ca-value { white-space: normal; overflow-wrap: anywhere; word-break: break-all; }
  .ca-copy { justify-self: start; }
}
.ca-copy { background: var(--gold); color: #1b1608; border: 0; border-radius: 6px; padding: 6px 12px; font-weight: 600; font-size: 0.78rem; cursor: pointer; min-height: 32px; }
.ca-copy:hover { background: var(--gold-bright); }
.token-link { color: var(--ivory-dim); }
.scroll-cue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); width: 26px; height: 42px; border: 1px solid rgba(236, 229, 213, 0.45); border-radius: 14px; }
.scroll-cue span { position: absolute; left: 50%; top: 8px; width: 3px; height: 8px; margin-left: -1.5px; background: var(--gold-bright); border-radius: 2px; animation: cue 2.2s ease-in-out infinite; }
@keyframes cue { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }

/* Short laptop screens: keep the whole hero block, contract card included,
   inside the first screen. */
@media (min-width: 761px) and (max-height: 900px) {
  .hero { padding-top: 36px; padding-bottom: 76px; }
  .hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
}

@media (max-width: 760px) {
  .hero { min-height: 0; padding-top: 0; }
  .hero-media { position: relative; inset: auto; aspect-ratio: 4 / 3; margin-bottom: -18%; z-index: 0; }
  .hero-img { object-position: 64% 30%; }
  .hero-shade { background: linear-gradient(180deg, rgba(21, 21, 15, 0) 40%, var(--charcoal) 100%); }
  .hero-content { max-width: none; padding-top: 0; }
  .hero-content::before { display: none; }
  .hero h1 { font-size: clamp(2.6rem, 12vw, 3.6rem); }
  .cta-row .btn { flex: 1 1 auto; justify-content: center; }
  .scroll-cue { display: none; }
}

/* Story band --------------------------------------------------------- */
.story { background: linear-gradient(180deg, var(--charcoal), var(--charcoal-deep)); padding-top: clamp(40px, 6vw, 80px); }
.story-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(28px, 5vw, 64px); align-items: center; }
.story-text p { color: var(--ivory-dim); font-size: 1.06rem; }
.story-figure { margin: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--charcoal-deep); }
.story-figure img { width: 100%; height: auto; }
figcaption { font-size: 0.85rem; color: var(--fog); padding: 12px 16px; font-style: italic; font-family: var(--serif); font-size: 1rem; }
@media (max-width: 860px) { .story-grid { grid-template-columns: 1fr; } }

/* Gold / experiment -------------------------------------------------- */
.gold { background: var(--charcoal-deep); }
.gold::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 80% 20%, rgba(194, 154, 82, 0.12), transparent 70%);
}
.flow { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; position: relative; counter-reset: step; }
.flow-step {
  position: relative; background: linear-gradient(180deg, rgba(46, 44, 41, 0.9), rgba(36, 35, 33, 0.9));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px 22px; overflow: hidden;
}
.flow-step::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 30%, rgba(224, 187, 116, 0.18) 50%, transparent 70%);
  transform: translateX(-120%);
}
.flow.is-visible .flow-step::after { animation: shimmer 2.4s ease-out 1 forwards; }
.flow.is-visible .flow-step:nth-child(2)::after { animation-delay: .25s; }
.flow.is-visible .flow-step:nth-child(3)::after { animation-delay: .5s; }
.flow.is-visible .flow-step:nth-child(4)::after { animation-delay: .75s; }
@keyframes shimmer { to { transform: translateX(120%); } }
.flow-step h3 { font-size: 1.35rem; margin: 10px 0 6px; }
.flow-step p { color: var(--ivory-dim); font-size: 0.95rem; }
/* The reinvestment step is visually distinct while routing is pending:
   dashed frame, muted fill, no shimmer, and a status chip. */
.flow-step-pending { border-style: dashed; border-color: rgba(194, 154, 82, 0.45); background: rgba(21, 21, 15, 0.55); }
.flow-step-pending .flow-num { border-style: dashed; }
.flow.is-visible .flow-step-pending::after { animation: none; }
.flow-chip { display: inline-block; margin-top: 12px; border: 1px solid rgba(194, 154, 82, 0.5); color: var(--gold); border-radius: 999px; padding: 4px 10px; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; }
.flow-step-pending:not(:last-child)::before, .flow-step:has(+ .flow-step-pending)::before { border-color: rgba(194, 154, 82, 0.45); }
.flow-num { font-family: var(--serif); font-size: 1.05rem; color: var(--gold); border: 1px solid rgba(194, 154, 82, 0.5); width: 34px; height: 34px; border-radius: 50%; display: inline-grid; place-items: center; }
.flow-step:not(:last-child)::before {
  content: ""; position: absolute; right: -9px; top: 50%; width: 14px; height: 14px; border-top: 1px solid var(--gold); border-right: 1px solid var(--gold);
  transform: translateY(-50%) rotate(45deg); z-index: 2;
}
@media (max-width: 960px) { .flow { grid-template-columns: repeat(2, minmax(0, 1fr)); } .flow-step:nth-child(2)::before { display: none; } }
@media (max-width: 520px) { .flow { grid-template-columns: 1fr; } .flow-step::before { display: none !important; } }

.fee-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 14px; margin-top: 28px; align-items: stretch; }
.fee-box { padding: 20px 22px; border-radius: var(--radius); border: 1px solid var(--line); background: rgba(236, 229, 213, 0.035); }
.fee-total { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; color: #f4ead9; margin-bottom: 4px; }
.fee-total span { font-size: 1.9rem; color: var(--gold-bright); }
.fee-split { color: var(--ivory-dim); font-size: 0.95rem; margin-bottom: 4px; }
.fee-commit { color: var(--ivory); font-size: 0.95rem; }
@media (max-width: 860px) { .fee-grid { grid-template-columns: 1fr; } }

.routing {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 22px; border-radius: var(--radius);
  border: 1px solid rgba(194, 154, 82, 0.35); background: rgba(194, 154, 82, 0.06);
}
.routing-dot { flex: 0 0 12px; width: 12px; height: 12px; border-radius: 50%; margin-top: 7px; background: var(--fog); box-shadow: 0 0 0 4px rgba(184, 190, 192, 0.15); }
.routing[data-status="pending"] .routing-dot { background: var(--gold); box-shadow: 0 0 0 4px rgba(194, 154, 82, 0.2); }
.routing[data-status="manual"] .routing-dot { background: var(--gold-bright); box-shadow: 0 0 0 4px rgba(224, 187, 116, 0.25); }
.routing[data-status="automatic"] .routing-dot { background: #9cc27a; box-shadow: 0 0 0 4px rgba(156, 194, 122, 0.25); }
.routing-title { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; margin-bottom: 4px; color: #f4ead9; }
.routing-text { color: var(--ivory-dim); margin-bottom: 0; }

/* Hoard / bundle panel ----------------------------------------------- */
.hoard { overflow: hidden; isolation: isolate; background: var(--charcoal-deep); }
.hoard-bg { position: absolute; inset: 0; z-index: -1; }
.hoard-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 40% 60%; opacity: 0.55; }
.hoard-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, var(--charcoal-deep) 0%, rgba(21, 21, 15, 0.55) 30%, rgba(21, 21, 15, 0.55) 70%, var(--charcoal-deep) 100%); }
.hoard-inner { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(28px, 5vw, 64px); align-items: center; }
.hoard-copy p { color: var(--ivory); text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7); max-width: 440px; }
.panel {
  background: rgba(21, 21, 15, 0.82); backdrop-filter: blur(12px);
  border: 1px solid rgba(194, 154, 82, 0.4); border-radius: 14px; padding: clamp(20px, 3vw, 32px);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(236, 229, 213, 0.08);
}
.panel-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; border-bottom: 1px solid var(--line); padding-bottom: 16px; margin-bottom: 18px; }
.panel-pair { font-family: var(--serif); font-size: 1.9rem; font-weight: 700; color: var(--gold-bright); letter-spacing: 0.02em; }
.panel-venue { color: var(--fog); font-size: 0.9rem; }
.panel-status { font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px; color: var(--ivory-dim); white-space: nowrap; }
.panel-source p { color: var(--ivory); font-size: 1.05rem; max-width: 520px; }
.panel-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin: 0; }
.stat { background: rgba(236, 229, 213, 0.04); border: 1px solid var(--line); border-radius: 10px; padding: 16px 16px 14px; }
.stat dt { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.stat dd { margin: 0; font-family: var(--serif); font-size: 1.7rem; font-weight: 600; color: #f4ead9; line-height: 1.1; overflow-wrap: anywhere; }
.stat dd.is-unavailable { font-size: 1rem; font-family: var(--sans); color: var(--fog); font-weight: 500; }
.panel-live.is-stale .stat dd { color: var(--fog); }
.stat-def { font-size: 0.8rem; color: var(--fog); margin: 8px 0 0; }
.panel-meta { font-size: 0.82rem; color: var(--fog); margin: 14px 0 0; }
.panel-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
@media (max-width: 960px) { .hoard-inner { grid-template-columns: 1fr; } .panel-stats { grid-template-columns: 1fr; } }

/* Pit ---------------------------------------------------------------- */
.pit { background: var(--charcoal); }
.pit-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(28px, 5vw, 64px); align-items: center; }
.pit-copy p { color: var(--ivory-dim); font-size: 1.08rem; max-width: 520px; }
.pit-eligibility { color: var(--ivory); border-left: 2px solid var(--gold); padding-left: 14px; margin-top: 1.2rem; }
.pit-eligibility strong { color: var(--gold-bright); font-weight: 600; }
.pit-figure { margin: 0; }
/* The reference sits on a flat studio grey. Feather its edges into the
   stone background so the character reads as part of the page. */
.pit-figure picture { display: block; width: min(100%, 460px); margin-inline: auto; position: relative; }
.pit-figure img {
  width: 100%;
  -webkit-mask-image: radial-gradient(ellipse 50% 50% at 50% 48%, #000 52%, rgba(0, 0, 0, 0.55) 70%, transparent 88%);
          mask-image: radial-gradient(ellipse 50% 50% at 50% 48%, #000 52%, rgba(0, 0, 0, 0.55) 70%, transparent 88%);
  filter: contrast(1.04) saturate(1.05);
}
.pit-figure picture::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 50% 50% at 50% 48%, rgba(36, 35, 33, 0) 48%, rgba(36, 35, 33, 0.35) 70%, var(--charcoal) 90%); }
.pit-figure figcaption { text-align: center; }
@media (max-width: 860px) { .pit-grid { grid-template-columns: 1fr; } .pit-figure { order: -1; } }

/* Create with AUR ---------------------------------------------------- */
.create { background: linear-gradient(180deg, var(--charcoal), var(--charcoal-deep)); }
.create-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.card {
  background: rgba(236, 229, 213, 0.035); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.card p { color: var(--ivory-dim); font-size: 0.98rem; }
.card .btn { margin-top: auto; align-self: flex-start; }
.card-num { font-family: var(--serif); color: var(--gold); font-size: 1.1rem; letter-spacing: 0.1em; }
.rules { margin: 0; padding-left: 18px; color: var(--ivory-dim); font-size: 0.92rem; }
.rules li + li { margin-top: 8px; }
.rules strong { color: var(--ivory); }
@media (max-width: 900px) { .create-grid { grid-template-columns: 1fr; } }

/* FAQ ---------------------------------------------------------------- */
.faq { background: var(--charcoal-deep); }
.faq-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(28px, 5vw, 64px); align-items: start; }
.qa { border-bottom: 1px solid var(--line); padding: 4px 0; }
.qa summary { cursor: pointer; list-style: none; padding: 16px 40px 16px 0; font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: #f4ead9; position: relative; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); color: var(--gold); font-size: 1.5rem; font-weight: 400; transition: transform .2s ease; }
.qa[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.qa p { color: var(--ivory-dim); padding-bottom: 16px; max-width: 640px; }
.official { position: sticky; top: 86px; background: rgba(236, 229, 213, 0.035); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.official h3 { margin-bottom: 12px; }
.official-list { list-style: none; margin: 0; padding: 0; }
.official-list li { display: grid; grid-template-columns: 96px minmax(0, 1fr); gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 0.92rem; align-items: baseline; }
@media (max-width: 400px) { .official-list li { grid-template-columns: 1fr; gap: 2px; } }
.official-list li > span:first-child { color: var(--gold); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; }
.official-list li > span:last-child, .official-list a { overflow-wrap: anywhere; }
.official-list code, #official-ca { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 0.82rem; }
.official-warn { margin-top: 14px; font-size: 0.85rem; color: var(--ivory-dim); }
@media (max-width: 860px) { .faq-grid { grid-template-columns: 1fr; } .official { position: static; } }

/* Footer ------------------------------------------------------------- */
.site-footer { background: #0f0f0b; border-top: 1px solid var(--line); padding: 48px 0 36px; color: var(--fog); font-size: 0.88rem; }
.footer-inner { display: grid; gap: 20px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-mark { border-radius: 50%; border: 1px solid rgba(194, 154, 82, 0.5); }
.footer-name { font-family: var(--serif); font-size: 1.3rem; color: var(--gold-bright); font-weight: 700; margin: 0; }
.footer-tag { margin: 0; font-style: italic; font-family: var(--serif); font-size: 1rem; }
.footer-legal { max-width: 820px; }
.footer-copy { margin: 0; }
.footer-copy a { white-space: nowrap; }

/* Toast -------------------------------------------------------------- */
.toast { position: fixed; left: 50%; bottom: 24px; transform: translate(-50%, 20px); background: var(--gold); color: #1b1608; padding: 10px 18px; border-radius: 999px; font-weight: 600; font-size: 0.9rem; opacity: 0; pointer-events: none; transition: opacity .25s ease, transform .25s ease; z-index: 300; }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

/* Reveal on scroll --------------------------------------------------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s ease, transform .8s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* Reduced motion ----------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .mist, .scroll-cue span, .flow-step::after { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover { transform: none; }
}
