/* ============================================================
   MILION — website design system
   Warm onyx + champagne gold. Mirrors the iOS app's "LUX" tokens.
   ============================================================ */

:root {
  /* Surfaces — warm onyx, never pure black */
  --bg:          #0A0907;
  --bg-rich:     #070605;
  --surface:     #15120D;
  --surface-hi:  #1F1A12;
  --surface-lo:  #0F0C08;

  /* Text — warm ivory */
  --text:        #F6EFE0;
  --text-dim:    #C2B795;
  --text-muted:  rgba(246,239,224,0.50);
  --text-faint:  rgba(246,239,224,0.28);

  /* Gold — matched to the app icon (vivid yellow-gold), like the V2 app */
  --gold-hi:     #FFE89A;
  --gold-light:  #F4CE6E;
  --gold:        #D9A02E;
  --gold-mid:    #E5B348;
  --gold-deep:   #8B6A1F;
  --gold-shadow: #5A3F11;

  --gold-foil:   linear-gradient(135deg, #FFE89A 0%, #F4CE6E 30%, #E5B348 55%, #D9A02E 78%, #8B6A1F 100%);
  --gold-chrome: linear-gradient(180deg, #FFE89A 0%, #F4CE6E 34%, #E5B348 64%, #FFE89A 100%);

  /* Hairlines / borders */
  --hairline:    rgba(217,160,46,0.18);
  --hairline-hi: rgba(217,160,46,0.38);
  --glass-bd:    rgba(217,160,46,0.22);

  /* Glow */
  --gold-glow:   0 0 24px rgba(217,160,46,0.28), 0 0 64px rgba(217,160,46,0.14);

  /* Type — system stack, true to the app */
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", system-ui, sans-serif;
  --mono: ui-monospace, "SF Mono", "Menlo", monospace;

  --maxw: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: var(--bg-rich); }
body {
  margin: 0;
  font-family: var(--font);
  background: transparent;
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: rgba(217,160,46,0.30); color: #fff; }

/* Page background — onyx + vivid gold glows + the app's flowing gold linework */
.bg-wash {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(125% 80% at 50% -8%, rgba(217,160,46,0.16), transparent 56%),
    radial-gradient(120% 90% at 50% 108%, rgba(217,160,46,0.09), transparent 62%),
    radial-gradient(90% 60% at 88% 6%, rgba(255,232,154,0.06), transparent 60%),
    var(--bg-rich);
}
.bg-grain {
  position: fixed; inset: -5%; z-index: 0; pointer-events: none; opacity: 0.62;
  animation: bgdrift 26s ease-in-out infinite alternate;
}
.bg-grain img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* lift all content above the fixed background layers */
.hero, .section, .section-sm, .footer, main, .doc { position: relative; z-index: 1; }
@keyframes bgdrift {
  from { transform: translate(0, 0); }
  to   { transform: translate(-16px, 12px); }
}
@media (prefers-reduced-motion: reduce) { .bg-grain { animation: none; } }

/* ---- Layout helpers ---- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: 110px 0; position: relative; }
.section-sm { padding: 72px 0; }

/* ---- Typography ---- */
.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); opacity: 0.9; margin: 0 0 18px;
}
h1, h2, h3 { font-weight: 800; letter-spacing: -0.02em; line-height: 1.04; margin: 0; }
.display {
  font-size: clamp(44px, 7vw, 92px); font-weight: 850; letter-spacing: -0.035em;
  line-height: 0.98;
}
.h2 { font-size: clamp(32px, 4.4vw, 56px); letter-spacing: -0.03em; }
.h3 { font-size: clamp(21px, 2.2vw, 27px); letter-spacing: -0.02em; }
.lead { font-size: clamp(17px, 1.5vw, 21px); color: var(--text-dim); line-height: 1.55; }
.muted { color: var(--text-muted); }

.foil {
  background: var(--gold-chrome);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  filter: drop-shadow(0 2px 10px rgba(217,160,46,0.30));
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font); font-size: 15.5px; font-weight: 700; letter-spacing: 0.01em;
  padding: 0 26px; height: 52px; border-radius: 999px; cursor: pointer;
  border: none; transition: transform .18s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold-foil); color: #2A1B03;
  box-shadow: var(--gold-glow), inset 0 1px 0 rgba(255,255,255,0.55), inset 0 -2px 0 rgba(0,0,0,0.18);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 0 32px rgba(217,160,46,0.40), 0 0 80px rgba(217,160,46,0.18), inset 0 1px 0 rgba(255,255,255,0.6); }
.btn-ghost {
  background: linear-gradient(135deg, rgba(217,160,46,0.16), rgba(139,106,31,0.07));
  color: var(--gold-hi);
  border: 1.5px solid rgba(217,160,46,0.55);
  backdrop-filter: blur(18px) saturate(200%); -webkit-backdrop-filter: blur(18px) saturate(200%);
  box-shadow: inset 0 1px 0 rgba(255,232,154,0.32), 0 8px 22px rgba(0,0,0,0.42);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: rgba(217,160,46,0.9); background: linear-gradient(135deg, rgba(217,160,46,0.24), rgba(139,106,31,0.12)); }
.btn svg { width: 18px; height: 18px; }

/* ---- Glass card ---- */
.glass {
  position: relative; border-radius: 22px; overflow: hidden;
  background: rgba(20,16,10,0.55);
  backdrop-filter: blur(28px) saturate(200%); -webkit-backdrop-filter: blur(28px) saturate(200%);
  border: 1px solid rgba(217,160,46,0.30);
  box-shadow: inset 0 1px 0 rgba(255,232,154,0.18), 0 18px 40px rgba(0,0,0,0.5);
}
.glass-top-shine::before {
  content: ""; position: absolute; left: 8%; right: 8%; top: 0; height: 1px; z-index: 2;
  background: linear-gradient(90deg, transparent, rgba(255,232,154,0.6), transparent);
}

/* ---- Pills / chips ---- */
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 14px; border-radius: 999px;
  background: rgba(217,160,46,0.16); color: var(--gold-hi);
  border: 1px solid rgba(217,160,46,0.42);
  backdrop-filter: blur(12px) saturate(180%); -webkit-backdrop-filter: blur(12px) saturate(180%);
  box-shadow: inset 0 1px 0 rgba(255,232,154,0.25);
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-hi); box-shadow: 0 0 8px var(--gold); }

/* ---- Divider ---- */
.hr { height: 1px; border: 0; background: linear-gradient(90deg, transparent, var(--hairline-hi), transparent); margin: 0; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7,6,5,0.66);
  backdrop-filter: blur(22px) saturate(200%); -webkit-backdrop-filter: blur(22px) saturate(200%);
  border-bottom: 1px solid rgba(217,160,46,0.18);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 11px; }
.nav-logo img { height: 26px; width: auto; }
.nav-logo .wm { font-weight: 800; font-size: 19px; letter-spacing: 0.14em; color: var(--text); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 14.5px; color: var(--text-dim); font-weight: 500; transition: color .2s; white-space: nowrap; }
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--gold); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-burger { display: none; }

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--hairline); padding: 64px 0 40px; background: var(--bg-rich); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer h4 { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); margin: 0 0 16px; font-weight: 700; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer ul a { font-size: 14.5px; color: var(--text-dim); transition: color .2s; }
.footer ul a:hover { color: var(--gold); }
.footer-brand img { height: 24px; margin-bottom: 16px; }
.footer-brand p { font-size: 13.5px; color: var(--text-muted); max-width: 280px; line-height: 1.6; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--hairline); }
.footer-bottom p { margin: 0; font-size: 13px; color: var(--text-faint); }
.footer-bottom .links { display: flex; gap: 22px; }
.footer-bottom .links a { font-size: 13px; color: var(--text-muted); }
.footer-bottom .links a:hover { color: var(--gold); }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }

/* ============================================================
   STORE BADGES (Coming soon)
   ============================================================ */
.badges { display: flex; gap: 14px; flex-wrap: wrap; }
.badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 11px 20px 11px 18px; border-radius: 15px;
  background: rgba(246,239,224,0.035);
  border: 1px solid var(--glass-bd);
  position: relative; cursor: default; transition: border-color .2s, background .2s;
}
.badge:hover { border-color: var(--hairline-hi); background: rgba(217,160,46,0.05); }
.badge svg { width: 26px; height: 26px; flex-shrink: 0; color: var(--text); }
.badge .b-txt { display: flex; flex-direction: column; line-height: 1.15; }
.badge .b-small { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.badge .b-name { font-size: 16px; font-weight: 700; color: var(--text); letter-spacing: 0.01em; }
.badge .b-soon {
  position: absolute; top: -8px; right: 10px;
  font-size: 9px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 2px 7px; border-radius: 6px; color: #2A1B03; background: var(--gold-foil);
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .feat-grid { grid-template-columns: 1fr; } }
.feat {
  position: relative; padding: 30px 28px; border-radius: 22px; overflow: hidden;
  background: rgba(20,16,10,0.55);
  backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(217,160,46,0.28);
  box-shadow: inset 0 1px 0 rgba(255,232,154,0.16), 0 14px 34px rgba(0,0,0,0.45);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.feat::before {
  content: ""; position: absolute; left: 10%; right: 10%; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,232,154,0.5), transparent);
}
.feat:hover { transform: translateY(-4px); border-color: rgba(217,160,46,0.55); box-shadow: inset 0 1px 0 rgba(255,232,154,0.22), 0 20px 44px rgba(0,0,0,0.5), 0 0 32px rgba(217,160,46,0.12); }
.feat .ico {
  width: 50px; height: 50px; border-radius: 14px; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(217,160,46,0.12); border: 1px solid rgba(217,160,46,0.32);
  color: var(--gold-hi);
}
.feat .ico svg { width: 24px; height: 24px; }
.feat h3 { font-size: 20px; margin-bottom: 9px; }
.feat p { margin: 0; font-size: 15px; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   STEPS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 22px; }
.step .num {
  font-family: var(--mono); font-size: 13px; font-weight: 700; color: var(--gold);
  letter-spacing: 0.1em; margin-bottom: 14px;
}
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { margin: 0; font-size: 14.5px; color: var(--text-muted); }
.step::before { content: ""; position: absolute; top: 0; left: 0; width: 40px; height: 2px; background: var(--gold-foil); border-radius: 2px; }

/* ============================================================
   PHONE GALLERY
   ============================================================ */
.gallery-rail {
  display: flex; gap: 40px; overflow-x: auto; padding: 26px 28px 40px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; scrollbar-color: var(--hairline-hi) transparent;
}
.gallery-rail::-webkit-scrollbar { height: 8px; }
.gallery-rail::-webkit-scrollbar-thumb { background: var(--hairline-hi); border-radius: 4px; }
.gallery-card {
  flex: 0 0 auto; scroll-snap-align: center; position: relative;
  border-radius: 32px; overflow: hidden;
  box-shadow: 0 26px 54px rgba(0,0,0,0.6), 0 0 0 1px rgba(217,160,46,0.14), 0 0 50px rgba(217,160,46,0.12);
}
.gallery-card img { display: block; width: 232px; height: 487px; }

/* ============================================================
   LOGIN OPTIONS
   ============================================================ */
.login-row { display: flex; flex-direction: column; gap: 12px; max-width: 380px; }
.login-btn {
  display: flex; align-items: center; gap: 13px;
  height: 54px; padding: 0 22px; border-radius: 14px;
  font-size: 15.5px; font-weight: 600; letter-spacing: 0.01em;
  border: 1px solid var(--glass-bd); background: rgba(246,239,224,0.04);
  color: var(--text); transition: border-color .2s, background .2s;
}
.login-btn:hover { border-color: var(--hairline-hi); background: rgba(217,160,46,0.06); }
.login-btn svg { width: 21px; height: 21px; flex-shrink: 0; }
.login-btn .chev { margin-left: auto; color: var(--text-faint); }

/* ============================================================
   HERO (variation-driven)
   ============================================================ */
.hero { position: relative; overflow: hidden; }
.hero-halo {
  position: absolute; left: 50%; top: 8%; transform: translateX(-50%);
  width: min(900px, 120vw); height: 620px; pointer-events: none; z-index: 0;
  background: radial-gradient(closest-side, rgba(217,160,46,0.20), rgba(217,160,46,0.06) 55%, transparent 75%);
  filter: blur(8px);
}
.hero-inner { position: relative; z-index: 1; }

/* phone: decorative rounding/shadow/glow live on the WRAPPER; the <img> stays
   plain with explicit dimensions so the raster paints reliably everywhere. */
.hero-stage .ph {
  position: relative; border-radius: 34px; overflow: hidden;
  box-shadow: 0 30px 64px rgba(0,0,0,0.6), 0 0 0 1px rgba(217,160,46,0.16), 0 0 64px rgba(217,160,46,0.14);
}
.hero-stage .ph img { display: block; width: 248px; height: 521px; }

/* Variation A — Spotlight (centered) */
.hero[data-variant="a"] .hero-inner { text-align: center; padding: 88px 0 0; }
.hero[data-variant="a"] .hero-copy { max-width: 760px; margin: 0 auto; }
.hero[data-variant="a"] .hero-actions { justify-content: center; }
.hero[data-variant="a"] .hero-badges { justify-content: center; margin-top: 26px; }
.hero[data-variant="a"] .hero-stage { display: flex; justify-content: center; align-items: flex-start; gap: 0; margin-top: 60px; }
.hero[data-variant="a"] .hero-stage .ph:nth-child(1) { transform: rotate(-8deg) translateY(34px) scale(0.86); margin-right: -28px; z-index: 1; }
.hero[data-variant="a"] .hero-stage .ph:nth-child(2) { transform: scale(1.06); z-index: 3; }
.hero[data-variant="a"] .hero-stage .ph:nth-child(3) { transform: rotate(8deg) translateY(34px) scale(0.86); margin-left: -28px; z-index: 1; }

/* Variation B — Split (text left, phone right) */
.hero[data-variant="b"] .hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 40px; padding: 92px 0 96px; }
.hero[data-variant="b"] .hero-copy { text-align: left; }
.hero[data-variant="b"] .hero-actions { justify-content: flex-start; }
.hero[data-variant="b"] .hero-badges { justify-content: flex-start; margin-top: 26px; }
.hero[data-variant="b"] .hero-stage { display: flex; justify-content: center; position: relative; }
.hero[data-variant="b"] .hero-stage .ph:nth-child(2) { transform: scale(1.18); }
.hero[data-variant="b"] .hero-stage .ph:not(:nth-child(2)) { display: none; }

/* Variation C — Showcase (text top, fanned trio below) */
.hero[data-variant="c"] .hero-inner { text-align: center; padding: 84px 0 0; }
.hero[data-variant="c"] .hero-copy { max-width: 720px; margin: 0 auto; }
.hero[data-variant="c"] .hero-actions { justify-content: center; }
.hero[data-variant="c"] .hero-badges { justify-content: center; margin-top: 26px; }
.hero[data-variant="c"] .hero-stage { display: flex; justify-content: center; align-items: flex-end; gap: 30px; margin-top: 64px; }
.hero[data-variant="c"] .hero-stage .ph:nth-child(1) { transform: translateY(34px) scale(0.9); opacity: 0.92; }
.hero[data-variant="c"] .hero-stage .ph:nth-child(3) { transform: translateY(34px) scale(0.9); opacity: 0.92; }
.hero[data-variant="c"] .hero-stage .ph:nth-child(2) { transform: scale(1.04); }

@media (max-width: 860px) {
  .hero[data-variant="b"] .hero-inner { grid-template-columns: 1fr; text-align: center; padding-top: 72px; }
  .hero[data-variant="b"] .hero-copy { text-align: center; }
  .hero[data-variant="b"] .hero-actions, .hero[data-variant="b"] .hero-badges { justify-content: center; }
  .hero-stage .ph img { width: 210px; height: 441px; }
  .hero[data-variant="a"] .hero-stage .ph:nth-child(1),
  .hero[data-variant="a"] .hero-stage .ph:nth-child(3),
  .hero[data-variant="c"] .hero-stage .ph:nth-child(1),
  .hero[data-variant="c"] .hero-stage .ph:nth-child(3) { display: none; }
}

.hero-copy .display { margin: 18px 0 0; }
.hero-copy .lead { margin: 24px auto 0; max-width: 560px; }
.hero[data-variant="b"] .hero-copy .lead { margin-left: 0; }
.hero-actions { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }

/* ---- Hero variant switcher (review control) ---- */
.variant-switch {
  position: fixed; bottom: 22px; right: 22px; z-index: 200;
  display: flex; align-items: center; gap: 4px; padding: 7px;
  border-radius: 16px; background: rgba(10,9,7,0.82);
  backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--hairline-hi);
  box-shadow: 0 14px 38px rgba(0,0,0,0.55);
}
.variant-switch .vs-label { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); font-weight: 700; padding: 0 9px 0 6px; }
.variant-switch button {
  font-family: var(--font); font-size: 13px; font-weight: 600; color: var(--text-dim);
  background: transparent; border: none; cursor: pointer; padding: 8px 13px; border-radius: 10px;
  transition: all .18s ease;
}
.variant-switch button:hover { color: var(--text); }
.variant-switch button.active { background: var(--gold-foil); color: #2A1B03; box-shadow: inset 0 1px 0 rgba(255,255,255,0.5); }
@media (max-width: 560px) { .variant-switch .vs-label { display: none; } .variant-switch { bottom: 14px; right: 14px; } }

/* ---- reveal on scroll ---- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   LEGAL / DOC PAGES
   ============================================================ */
.doc { max-width: 820px; margin: 0 auto; padding: 64px 28px 120px; }
.doc-head { padding-bottom: 36px; margin-bottom: 44px; border-bottom: 1px solid var(--hairline); }
.doc-head h1 { font-size: clamp(34px, 5vw, 52px); letter-spacing: -0.03em; }
.doc-head .updated { margin-top: 18px; font-size: 14px; color: var(--text-muted); font-family: var(--mono); }
.doc-toc {
  margin: 0 0 44px; padding: 24px 26px; border-radius: 18px;
  background: rgba(31,26,18,0.4); border: 1px solid var(--hairline);
}
.doc-toc h4 { margin: 0 0 14px; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.doc-toc ol { margin: 0; padding-left: 20px; columns: 2; column-gap: 36px; }
.doc-toc li { margin-bottom: 9px; font-size: 14.5px; }
.doc-toc a { color: var(--text-dim); }
.doc-toc a:hover { color: var(--gold); }
@media (max-width: 600px) { .doc-toc ol { columns: 1; } }

.doc-body h2 {
  font-size: 25px; letter-spacing: -0.02em; margin: 52px 0 16px;
  scroll-margin-top: 90px; display: flex; align-items: baseline; gap: 12px;
}
.doc-body h2 .n { font-family: var(--mono); font-size: 15px; color: var(--gold); font-weight: 700; }
.doc-body h3 { font-size: 18px; margin: 30px 0 10px; color: var(--text); }
.doc-body p { margin: 0 0 16px; color: var(--text-dim); font-size: 16px; line-height: 1.72; }
.doc-body ul { margin: 0 0 18px; padding-left: 22px; color: var(--text-dim); }
.doc-body li { margin-bottom: 9px; font-size: 16px; line-height: 1.66; }
.doc-body li::marker { color: var(--gold-deep); }
.doc-body strong { color: var(--text); font-weight: 700; }
.doc-body a.inline { color: var(--gold); border-bottom: 1px solid var(--hairline-hi); }
.doc-body table { width: 100%; border-collapse: collapse; margin: 8px 0 26px; font-size: 14.5px; }
.doc-body th, .doc-body td { text-align: left; padding: 13px 14px; border-bottom: 1px solid var(--hairline); vertical-align: top; }
.doc-body th { color: var(--gold); font-weight: 700; font-size: 12.5px; letter-spacing: 0.06em; text-transform: uppercase; }
.doc-body td { color: var(--text-dim); }
.doc-callout {
  margin: 24px 0; padding: 18px 22px; border-radius: 14px;
  background: rgba(217,160,46,0.06); border: 1px solid var(--hairline);
}
.doc-callout p:last-child { margin-bottom: 0; }
