/* Next Cut — shared styles. Mobile-first. No framework.
   Motion rules live under html.motion (added by an inline script only when
   prefers-reduced-motion is NOT set), so with reduced motion or no JS every
   element is simply visible and static. */
:root {
  --ink: #131211;          /* charcoal background */
  --ink-2: #1c1a18;        /* raised surface */
  --ink-3: #262320;        /* card / input */
  --ink-4: #0c0b0a;        /* deepest */
  --line: #3a3530;
  --line-2: rgba(243,238,229,.12);
  --paper: #f3eee5;        /* warm off-white */
  --paper-2: #e8e1d4;
  --text: #f3eee5;
  --text-2: #c9c0b2;       /* secondary on dark: 10.9:1 */
  --text-3: #a59c90;       /* muted on dark: 7:1 */
  --brass: #c9924e;        /* accent: 7.1:1 on --ink */
  --brass-2: #dba96a;
  --brass-3: #f0c98f;
  --brass-ink: #7a4f1d;    /* accent for text on paper: 6.3:1 */
  --danger: #ffb4a2;
  --ok: #b9d8a8;
  --radius: 16px;
  --max: 1180px;
  --gutter: 16px;
  --ease: cubic-bezier(.2,.7,.1,1);
  --f-display: "Fraunces", Georgia, "Times New Roman", serif;
  --f-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --f-mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Consolas, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 72px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation: none !important; transition: none !important; } }
body {
  margin: 0; background: var(--ink); color: var(--text);
  font: 400 17px/1.6 var(--f-body);
  overflow-x: hidden;
}
@supports (overflow-x: clip) { body { overflow-x: clip; } }
img, svg { max-width: 100%; display: block; }
a { color: var(--brass-2); text-underline-offset: 3px; }
a:hover { color: var(--paper); }
:focus-visible { outline: 3px solid var(--brass-2); outline-offset: 3px; border-radius: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip { position: absolute; left: 8px; top: -60px; background: var(--brass); color: var(--ink); padding: 10px 14px; border-radius: 8px; z-index: 100; font-weight: 700; }
.skip:focus { top: 8px; }
[hidden] { display: none !important; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.wrap.narrow { max-width: 860px; }
@media (min-width: 720px) { :root { --gutter: 28px; } }

h1, h2, h3 { font-family: var(--f-display); font-weight: 600; line-height: 1.06; letter-spacing: -0.02em; margin: 0 0 .5em; font-variation-settings: "opsz" 96; text-wrap: balance; }
h1 { font-size: clamp(2.3rem, 8.4vw, 5rem); }
h2 { font-size: clamp(1.85rem, 5.4vw, 3.3rem); }
h3 { font-size: 1.3rem; line-height: 1.2; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
.eyebrow { font: 500 .76rem/1.4 var(--f-mono); letter-spacing: .16em; text-transform: uppercase; color: var(--brass); margin: 0 0 1rem; }
.lead { font-size: clamp(1.05rem, 2.6vw, 1.22rem); color: var(--text-2); max-width: 44em; }
.muted { color: var(--text-3); }
.small { font-size: .88rem; }
.mono { font-family: var(--f-mono); }
.mt { margin-top: 28px; }
em.accent, .accent { color: var(--brass); font-style: normal; }

/* ---------- scroll progress ---------- */
.progress { position: fixed; inset: 0 0 auto 0; height: 3px; z-index: 60; pointer-events: none; }
.progress span { display: block; height: 100%; width: 100%; transform-origin: 0 50%; transform: scaleX(var(--p, 0)); background: linear-gradient(90deg, var(--brass), var(--brass-3)); }
html:not(.js) .progress { display: none; }

/* ---------- top bar ---------- */
.topbar { position: sticky; top: 0; z-index: 50; background: rgba(19,18,17,.72); backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%); border-bottom: 1px solid transparent; transition: background .3s ease, border-color .3s ease; }
.topbar.scrolled { background: rgba(19,18,17,.92); border-bottom-color: var(--line); }
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 62px; }
.logo { display: inline-flex; align-items: center; gap: 10px; color: var(--text); text-decoration: none; font: 600 1.2rem/1 var(--f-display); letter-spacing: -.01em; white-space: nowrap; }
.logo svg { width: 26px; height: 26px; color: var(--brass); }
.topnav { display: none; gap: 26px; }
.topnav a { color: var(--text-2); text-decoration: none; font-size: .92rem; font-weight: 600; position: relative; }
.topnav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1.5px; background: var(--brass); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.topnav a:hover { color: var(--text); }
.topnav a:hover::after { transform: scaleX(1); }
@media (min-width: 980px) { .topnav { display: flex; } }
.topbar-actions { display: flex; align-items: center; gap: 8px; }
.lang { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; flex: none; }
.lang button { background: none; border: 0; color: var(--text-2); font: 600 .76rem/1 var(--f-mono); padding: 9px 10px; cursor: pointer; min-height: 36px; }
.lang button[aria-pressed="true"] { background: var(--brass); color: var(--ink); }
@media (max-width: 380px) { .topbar .btn-sm { padding: 8px 12px; font-size: .82rem; } .logo { font-size: 1.08rem; gap: 8px; } .logo svg { width: 22px; height: 22px; } }

/* ---------- buttons ---------- */
.btn { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 14px 24px; border-radius: 999px; border: 1px solid transparent; font: 700 1rem/1.2 var(--f-body); text-decoration: none; cursor: pointer; transition: transform .2s var(--ease), background .2s ease, box-shadow .3s ease, border-color .2s ease; text-align: center; overflow: hidden; isolation: isolate; }
.btn:active { transform: translateY(1px) scale(.99); }
.btn .ico { width: 20px; height: 20px; flex: none; transition: transform .3s var(--ease); }
.btn:hover .ico { transform: translateX(4px); }
.btn-primary { background: linear-gradient(180deg, var(--brass-2), var(--brass)); color: var(--ink); box-shadow: 0 10px 30px -12px rgba(201,146,78,.7), inset 0 1px 0 rgba(255,255,255,.35); }
.btn-primary:hover { color: var(--ink); background: linear-gradient(180deg, var(--brass-3), var(--brass-2)); box-shadow: 0 14px 40px -12px rgba(219,169,106,.85), inset 0 1px 0 rgba(255,255,255,.45); }
.btn-ghost { background: rgba(19,18,17,.35); border-color: rgba(243,238,229,.28); color: var(--text); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.btn-ghost:hover { border-color: var(--brass); color: var(--text); background: rgba(19,18,17,.55); }
.btn-sm { min-height: 38px; padding: 8px 16px; font-size: .88rem; }
.btn-lg { min-height: 58px; padding: 16px 28px; font-size: 1.04rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .6; cursor: progress; }
.btn-shine::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.45) 50%, transparent 65%); transform: translateX(-120%); }
html.motion .btn-shine::after { animation: shine 5.5s var(--ease) 2.2s infinite; }
@keyframes shine { 0%, 70% { transform: translateX(-120%); } 100% { transform: translateX(120%); } }

/* ---------- dev banner ---------- */
.devbar { background: #5a1f14; color: #ffe3da; border-bottom: 2px solid #ff8a6b; font: 500 .85rem/1.45 var(--f-mono); padding: 10px var(--gutter); text-align: center; }
.devbar strong { color: #fff; }

/* ---------- sections ---------- */
.section { padding: 80px 0; position: relative; }
@media (min-width: 900px) { .section { padding: 120px 0; } }
.section.paper { background: var(--paper); color: #1d1b18; }
.section.paper .eyebrow { color: var(--brass-ink); }
.section.paper .lead, .section.paper .muted { color: #4b453d; }
.section.paper a { color: var(--brass-ink); }
.section-head { max-width: 780px; margin-bottom: 44px; }

/* ---------- HERO ---------- */
.hero { position: relative; overflow: hidden; min-height: min(100svh, 980px); display: flex; align-items: flex-end; padding: 120px 0 56px; isolation: isolate; }
.home .hero { margin-top: -62px; padding-top: 140px; }
.hero-media { position: absolute; inset: -6% 0 0 0; z-index: -3; will-change: transform; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; }
html.motion .hero-media img { animation: kenburns 22s ease-out both; }
@keyframes kenburns { from { transform: scale(1.14) translate3d(1.5%, 1%, 0); } to { transform: scale(1.02) translate3d(0,0,0); } }
.hero-shade { position: absolute; inset: 0; z-index: -2; background:
  linear-gradient(180deg, rgba(19,18,17,.55) 0%, rgba(19,18,17,.35) 30%, rgba(19,18,17,.82) 68%, var(--ink) 100%),
  radial-gradient(80% 60% at 80% 15%, rgba(201,146,78,.28), transparent 60%); }
@media (min-width: 900px) { .hero-shade { background:
  linear-gradient(90deg, rgba(19,18,17,.94) 0%, rgba(19,18,17,.78) 38%, rgba(19,18,17,.25) 70%, rgba(19,18,17,.45) 100%),
  linear-gradient(180deg, transparent 60%, var(--ink) 100%); } }
.hero-shade::after { content: ""; position: absolute; inset: -20%; background: radial-gradient(40% 35% at 30% 70%, rgba(201,146,78,.22), transparent 70%); opacity: .8; }
html.motion .hero-shade::after { animation: glow 12s ease-in-out infinite alternate; }
@keyframes glow { from { transform: translate3d(-6%, 4%, 0) scale(1); } to { transform: translate3d(10%, -6%, 0) scale(1.15); } }
.grain { position: absolute; inset: -50%; z-index: -1; pointer-events: none; opacity: .09; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
html.motion .grain { animation: grain 1.2s steps(6) infinite; }
@keyframes grain { 0% { transform: translate(0,0); } 20% { transform: translate(-4%,3%); } 40% { transform: translate(3%,-5%); } 60% { transform: translate(-6%,-2%); } 80% { transform: translate(5%,4%); } 100% { transform: translate(0,0); } }
.hero-inner { position: relative; width: 100%; }
@media (max-width: 899px) {
  .home .hero { padding-top: 230px; min-height: 0; }
  .hero-media { inset: 0 0 auto 0; height: 78%; }
  .hero-media img { object-position: 50% 20%; }
  .hero-shade { background: linear-gradient(180deg, rgba(19,18,17,.35) 0%, rgba(19,18,17,.05) 14%, rgba(19,18,17,.55) 30%, rgba(19,18,17,.92) 46%, var(--ink) 62%), radial-gradient(90% 40% at 90% 10%, rgba(201,146,78,.25), transparent 70%); }
  .hero .eyebrow { display: none; }
}
.hero-title { max-width: 15.5em; font-size: clamp(2.35rem, 8.6vw, 5.1rem); line-height: 1.02; margin-bottom: .45em; text-shadow: 0 2px 30px rgba(0,0,0,.35); }
.hero-title .l { display: inline; }
.hero-title em { font-style: italic; color: var(--brass-2); font-weight: 500; }
html.motion .hero-title .l { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .08em; margin-bottom: -.08em; }
html.motion .hero-title .l > * { display: inline-block; transform: translateY(105%); animation: rise 1s var(--ease) forwards; }
html.motion .hero-title .l:nth-child(1) > * { animation-delay: .15s; }
html.motion .hero-title .l:nth-child(2) > * { animation-delay: .27s; }
html.motion .hero-title .l:nth-child(3) > * { animation-delay: .39s; }
html.motion .hero-title .l:nth-child(4) > * { animation-delay: .51s; }
@keyframes rise { to { transform: none; } }
html.motion .hero .status-pill, html.motion .hero .eyebrow, html.motion .hero-lead, html.motion .hero-cta, html.motion .hero-meta, html.motion .hero-stat, html.motion .scroll-cue { opacity: 0; animation: fadeup .9s var(--ease) forwards; }
html.motion .hero .status-pill { animation-delay: .05s; }
html.motion .hero .eyebrow { animation-delay: .1s; }
html.motion .hero-lead { animation-delay: .65s; }
html.motion .hero-cta { animation-delay: .78s; }
html.motion .hero-meta { animation-delay: .9s; }
html.motion .hero-stat { animation-delay: 1.1s; }
html.motion .scroll-cue { animation-delay: 1.4s; }
@keyframes fadeup { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.hero-lead { max-width: 36em; color: #ddd4c6; }
.hero-lead strong { color: var(--text); }
.status-pill { display: inline-flex; align-items: center; gap: 10px; padding: 7px 14px 7px 12px; border-radius: 999px; background: rgba(19,18,17,.55); border: 1px solid rgba(201,146,78,.45); font: 600 .74rem/1.2 var(--f-mono); letter-spacing: .08em; text-transform: uppercase; color: var(--brass-3); margin: 0 0 18px; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.status-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brass-2); box-shadow: 0 0 0 0 rgba(219,169,106,.7); flex: none; }
html.motion .status-pill .dot { animation: pulse 2.2s ease-out infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(219,169,106,.7); } 100% { box-shadow: 0 0 0 12px rgba(219,169,106,0); } }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 22px; }
@media (max-width: 559px) { .hero-cta .btn { width: 100%; } }
.hero-meta { display: flex; flex-wrap: wrap; gap: 8px 20px; padding: 0; margin: 0; list-style: none; font: 500 .8rem/1.4 var(--f-mono); color: var(--text-2); }
.hero-meta li::before { content: "— "; color: var(--brass); }
.glass { background: rgba(28,26,24,.55); border: 1px solid rgba(243,238,229,.14); backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%); border-radius: 18px; box-shadow: 0 20px 60px -20px rgba(0,0,0,.6); }
.hero-stat { display: none; }
@media (min-width: 1100px) {
  .hero-stat { display: block; position: absolute; right: max(28px, calc((100vw - var(--max)) / 2 + 28px)); bottom: 120px; width: 250px; padding: 20px 22px; }
  html.motion .hero-stat { animation-name: fadeup, float; animation-duration: .9s, 7s; animation-delay: 1.1s, 2s; animation-timing-function: var(--ease), ease-in-out; animation-iteration-count: 1, infinite; animation-direction: normal, alternate; }
}
@keyframes float { from { transform: translateY(0); } to { transform: translateY(-10px); } }
.hs-num { font: 600 3rem/1 var(--f-display); color: var(--brass-2); margin: 0 0 8px; letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.hs-label { font-weight: 600; font-size: .95rem; margin: 0 0 6px; }
.hs-src { font: 500 .7rem/1.3 var(--f-mono); color: var(--text-3); margin: 0; letter-spacing: .04em; }
.scroll-cue { position: absolute; left: 50%; bottom: 14px; width: 40px; height: 40px; margin-left: -20px; display: none; place-items: center; color: var(--text-2); border: 1px solid var(--line-2); border-radius: 50%; }
.scroll-cue svg { width: 18px; height: 18px; }
html.motion .scroll-cue svg { animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 50% { transform: translateY(4px); } }
@media (min-width: 900px) { .scroll-cue { display: grid; } .hero { padding-bottom: 96px; } }

/* ---------- marquee ---------- */
.marquee { overflow: hidden; border-block: 1px solid var(--line); background: var(--ink-4); padding: 16px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; align-items: center; gap: 26px; width: max-content; padding-left: 26px; }
.marquee-track span { font: 500 clamp(1.25rem, 3.2vw, 1.9rem)/1 var(--f-display); font-style: italic; color: var(--text); white-space: nowrap; }
.marquee-track span:nth-of-type(even) { color: transparent; -webkit-text-stroke: 1px var(--brass-2); }
.marquee-track svg { width: 22px; height: 22px; color: var(--brass); flex: none; }
html.motion .marquee-track { animation: marquee 48s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
html:not(.motion) .marquee-track { flex-wrap: wrap; width: auto; justify-content: center; row-gap: 12px; padding: 0 16px; }
html:not(.motion) .marquee-track .dup { display: none; }

/* ---------- reveal on scroll ---------- */
html.motion [data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
html.motion [data-reveal].in { opacity: 1; transform: none; }
html.motion [data-stagger] > * { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: calc(var(--i, 0) * 80ms); }
html.motion [data-stagger].in > * { opacity: 1; transform: none; }

/* ---------- trend: stats + bars ---------- */
.stat-row { display: grid; gap: 14px; margin-bottom: 40px; }
@media (min-width: 720px) { .stat-row { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
.stat { position: relative; padding: 26px 24px; border-radius: var(--radius); background: linear-gradient(160deg, rgba(201,146,78,.14), rgba(28,26,24,.9) 55%); border: 1px solid rgba(201,146,78,.3); overflow: hidden; }
.stat::after { content: ""; position: absolute; right: -40px; top: -40px; width: 140px; height: 140px; border-radius: 50%; background: radial-gradient(circle, rgba(219,169,106,.25), transparent 70%); }
.stat-num { font: 600 clamp(3rem, 11vw, 4.4rem)/.95 var(--f-display); letter-spacing: -.04em; color: var(--brass-2); margin: 0 0 12px; font-variant-numeric: tabular-nums; }
.stat-term { font-weight: 700; margin: 0 0 4px; }
.stat-map { font: 500 .76rem/1.4 var(--f-mono); color: var(--text-3); margin: 0; }
.chart { margin: 0; padding: 26px 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--ink-2); }
@media (min-width: 720px) { .chart { padding: 36px 36px 30px; } }
.chart .eyebrow { color: var(--text-2); }
.bars { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
@media (min-width: 900px) { .bars { grid-template-columns: 1fr 1fr; gap: 20px 48px; } }
.bar { display: grid; grid-template-columns: 1fr auto; gap: 6px 12px; align-items: baseline; }
.bar-label { font-weight: 600; color: var(--text); }
.bar-label small { display: block; font: 500 .74rem/1.3 var(--f-mono); color: var(--text-3); }
.bar-value { font: 600 1.05rem/1 var(--f-mono); color: var(--brass-2); }
.bar-track { grid-column: 1 / -1; height: 10px; background: var(--ink-3); border-radius: 6px; overflow: hidden; }
.bar-fill { display: block; height: 100%; background: linear-gradient(90deg, var(--brass), var(--brass-3)); border-radius: 6px; width: var(--w); transform-origin: left; }
html.motion .chart .bar-fill { transform: scaleX(0); transition: transform 1.4s var(--ease); }
html.motion .chart.in .bar-fill { transform: scaleX(1); }
html.motion .chart.in .bar:nth-child(2) .bar-fill { transition-delay: .08s; }
html.motion .chart.in .bar:nth-child(3) .bar-fill { transition-delay: .16s; }
html.motion .chart.in .bar:nth-child(4) .bar-fill { transition-delay: .24s; }
html.motion .chart.in .bar:nth-child(5) .bar-fill { transition-delay: .32s; }
html.motion .chart.in .bar:nth-child(6) .bar-fill { transition-delay: .40s; }
html.motion .chart.in .bar:nth-child(7) .bar-fill { transition-delay: .48s; }
html.motion .chart.in .bar:nth-child(8) .bar-fill { transition-delay: .56s; }
.source { margin: 22px 0 0; font: 500 .78rem/1.5 var(--f-mono); color: var(--text-3); }

/* ---------- technique cards ---------- */
.section-tech { background: radial-gradient(70% 40% at 50% 0%, rgba(201,146,78,.08), transparent 70%), var(--ink); }
.tech-grid { list-style: none; margin: 0 auto; padding: 4px var(--gutter) 20px; display: grid; grid-auto-flow: column; grid-auto-columns: min(78%, 320px); gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: var(--gutter); overscroll-behavior-x: contain; scrollbar-width: thin; scrollbar-color: var(--brass) transparent; max-width: var(--max); }
.tech-grid > li { scroll-snap-align: start; }
@media (min-width: 760px) { .tech-grid { grid-auto-flow: row; grid-auto-columns: auto; grid-template-columns: repeat(2, 1fr); overflow: visible; padding-bottom: 0; gap: 18px; } }
@media (min-width: 1040px) { .tech-grid { grid-template-columns: repeat(5, 1fr); gap: 16px; } }
.tcard { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--ink-2); border: 1px solid var(--line); transform-style: preserve-3d; transition: transform .5s var(--ease), border-color .3s ease, box-shadow .5s var(--ease); display: flex; flex-direction: column; }
.tcard:hover { border-color: rgba(201,146,78,.6); box-shadow: 0 30px 60px -30px rgba(0,0,0,.9), 0 0 0 1px rgba(201,146,78,.25); }
.tcard-media { position: relative; margin: 0; aspect-ratio: 4 / 5; overflow: hidden; background: var(--ink-3); }
.tcard-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.75) contrast(1.05); transform: scale(1.02); transition: transform 1.2s var(--ease), filter .6s ease; }
.tcard:hover .tcard-media img, .tcard:focus-within .tcard-media img { transform: scale(1.1); filter: saturate(1) contrast(1.05); }
.tcard-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(19,18,17,.92) 100%); }
.tcard-body { position: relative; padding: 0 18px 20px; margin-top: -86px; z-index: 1; flex: 1; }
.tcard-num { display: block; font: 600 2.6rem/1 var(--f-display); font-style: italic; color: transparent; -webkit-text-stroke: 1px var(--brass-2); margin-bottom: 6px; }
.tcard h3 { font-size: 1.22rem; margin: 0 0 8px; }
.tcard-signal { font: 500 .74rem/1.4 var(--f-mono); color: var(--text-3); margin: 0 0 10px; }
.tcard-signal b { color: var(--brass-2); }
.tcard-desc { font-size: .92rem; color: var(--text-2); margin: 0; }
@media (min-width: 1040px) { .tcard-body { padding: 0 16px 18px; } .tcard h3 { font-size: 1.1rem; } .tcard-desc { font-size: .86rem; } }
.chip { display: inline-block; font: 600 .64rem/1 var(--f-mono); letter-spacing: .08em; text-transform: uppercase; padding: 4px 6px; border-radius: 4px; border: 1px solid var(--brass); color: var(--brass-2); margin-left: 4px; vertical-align: 3px; }
.photo-note { font: 500 .74rem/1.5 var(--f-mono); color: var(--text-3); margin: 22px 0 8px; padding-left: 14px; border-left: 2px solid var(--brass); }

/* curriculum */
.curric { margin-top: 36px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--ink-2); }
.curric > summary { list-style: none; cursor: pointer; padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 12px; font-weight: 700; font-size: 1.05rem; }
.curric > summary::-webkit-details-marker { display: none; }
.curric > summary svg { width: 20px; height: 20px; color: var(--brass); transition: transform .4s var(--ease); flex: none; }
.curric[open] > summary svg { transform: rotate(180deg); }
.curric .module-list { padding: 0 14px 16px; }
.module-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.module { background: var(--ink-3); border: 1px solid var(--line); border-radius: 12px; }
.module summary { list-style: none; cursor: pointer; padding: 16px 48px 16px 16px; position: relative; display: grid; grid-template-columns: auto 1fr; gap: 2px 14px; }
.module summary::-webkit-details-marker { display: none; }
.module summary::after { content: "+"; position: absolute; right: 18px; top: 16px; font: 400 1.4rem/1 var(--f-mono); color: var(--brass); transition: transform .3s var(--ease); }
.module[open] summary::after { transform: rotate(45deg); }
.module .n { font: 600 1.35rem/1 var(--f-display); color: var(--brass); grid-row: span 2; min-width: 2ch; }
.module .t { font-weight: 700; font-size: 1.02rem; }
.module .s { font: 500 .74rem/1.4 var(--f-mono); color: var(--text-3); }
.module .body { padding: 0 18px 18px 18px; color: var(--text-2); font-size: .95rem; }
.module .body ol { margin: 0 0 10px; padding-left: 1.2em; }
.warn-box { border: 1px solid #b07a3b; background: rgba(201,146,78,.08); border-radius: 10px; padding: 10px 12px; font-size: .86rem; color: var(--text); margin-top: 8px; }

/* ---------- inside every lesson ---------- */
.section-lesson { background: var(--ink-4); }
.lesson { display: grid; gap: 36px; margin-bottom: 64px; }
@media (min-width: 900px) { .lesson { grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; margin-bottom: 96px; } }
.lesson-media { position: relative; }
@media (min-width: 900px) { .lesson-media { position: sticky; top: 96px; } }
.lesson-img { margin: 0; border-radius: 22px; overflow: hidden; aspect-ratio: 4 / 5; background: var(--ink-3); }
@media (max-width: 899px) { .lesson-img { aspect-ratio: 16 / 11; } }
.lesson-img img { width: 100%; height: 118%; object-fit: cover; will-change: transform; }
.lesson-badge { position: absolute; left: 14px; bottom: 14px; right: 14px; display: flex; gap: 14px; align-items: center; padding: 14px 16px; }
@media (min-width: 560px) { .lesson-badge { right: auto; max-width: 330px; } }
.lesson-badge svg { width: 34px; height: 34px; color: var(--brass-2); flex: none; }
.lesson-badge p { margin: 0; display: grid; font-size: .86rem; color: var(--text-2); }
.lesson-badge strong { color: var(--text); font-size: 1rem; }
.steps { list-style: none; padding: 0; margin: 28px 0 0; position: relative; }
.steps::before { content: ""; position: absolute; left: 19px; top: 8px; bottom: 8px; width: 2px; background: var(--line); }
.step { position: relative; display: grid; grid-template-columns: 40px 1fr; gap: 18px; padding: 14px 0; }
.step-n { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--ink-2); border: 1px solid var(--line); font: 600 .95rem/1 var(--f-mono); color: var(--text-2); position: relative; z-index: 1; transition: background .5s ease, color .5s ease, border-color .5s ease, box-shadow .5s ease; }
.step.in .step-n, html:not(.motion) .step-n { background: var(--brass); color: var(--ink); border-color: var(--brass); box-shadow: 0 0 0 6px rgba(201,146,78,.15); }
.step h3 { font-size: 1.18rem; margin: 6px 0 4px; }
.step p { margin: 0; color: var(--text-2); }
.features { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
@media (min-width: 640px) { .features { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .features { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
.feature { padding: 24px 22px; border-radius: var(--radius); background: var(--ink-2); border: 1px solid var(--line); transition: border-color .3s ease, transform .4s var(--ease); }
.feature:hover { border-color: rgba(201,146,78,.55); transform: translateY(-3px); }
.feature svg { width: 30px; height: 30px; color: var(--brass-2); margin-bottom: 14px; }
.feature h3 { font-size: 1.15rem; margin-bottom: 6px; }
.feature p { margin: 0; color: var(--text-2); font-size: .95rem; }
.feature-wide { border-color: rgba(201,146,78,.55); background: linear-gradient(135deg, rgba(201,146,78,.16), var(--ink-2) 60%); }
@media (min-width: 640px) { .feature-wide { grid-column: 1 / -1; } }
@media (min-width: 1000px) { .feature-wide { grid-column: span 3; } }

/* ---------- before / after placeholder ---------- */
.ba-wrap { display: grid; gap: 32px; }
@media (min-width: 900px) { .ba-wrap { grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; } }
.ba { position: relative; aspect-ratio: 4 / 3; border-radius: 22px; overflow: hidden; --pos: 50%; border: 1px solid var(--line); user-select: none; touch-action: pan-y; }
.ba-pane { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; padding: 24px; text-align: center; color: var(--text-3); }
.ba-before { background: repeating-linear-gradient(135deg, rgba(201,146,78,.06) 0 12px, transparent 12px 24px), #1a1816; }
.ba-after { background: repeating-linear-gradient(45deg, rgba(201,146,78,.1) 0 12px, transparent 12px 24px), #24201b; clip-path: inset(0 0 0 var(--pos)); }
.ba-before { padding-right: 52%; }
.ba-after { padding-left: 52%; }
.ba-pane svg { width: 48px; height: 48px; color: var(--brass); opacity: .8; }
.ba-pane .ph-note { font: 500 .74rem/1.45 var(--f-mono); max-width: 22em; }
.ba-handle { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px; margin-left: -1px; background: var(--brass-2); pointer-events: none; }
.ba-handle::after { content: "⟷"; position: absolute; top: 50%; left: 50%; width: 44px; height: 44px; margin: -22px 0 0 -22px; border-radius: 50%; background: var(--brass); color: var(--ink); display: grid; place-items: center; font-size: 1.2rem; font-weight: 700; box-shadow: 0 8px 30px rgba(0,0,0,.5); }
.ba-range { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0; }
.ba:has(.ba-range:focus-visible) { outline: 3px solid var(--brass-2); outline-offset: 3px; }

/* ---------- image placeholders ---------- */
.ph { position: relative; border: 1.5px dashed #6b6258; border-radius: var(--radius); background:
  repeating-linear-gradient(135deg, rgba(201,146,78,.07) 0 10px, transparent 10px 20px), var(--ink-2);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; padding: 24px; text-align: center; color: var(--text-3); min-height: 220px; }
.ph svg { width: 72px; height: 72px; color: var(--brass); opacity: .85; }
.ph-tag { font: 600 .7rem/1 var(--f-mono); letter-spacing: .14em; text-transform: uppercase; color: var(--ink); background: var(--brass); padding: 6px 8px; border-radius: 4px; }
.ph .ph-note { font: 500 .82rem/1.45 var(--f-mono); max-width: 26em; }
.ph-portrait { aspect-ratio: 4 / 5; min-height: 0; }
.ph-wide { aspect-ratio: 16 / 9; min-height: 0; }
.section.paper .ph { background: repeating-linear-gradient(135deg, rgba(122,79,29,.08) 0 10px, transparent 10px 20px), var(--paper-2); color: #5a5248; border-color: #a89c8b; }
.section.paper .ph svg { color: var(--brass-ink); }
.placeholder-text { background: rgba(201,146,78,.18); outline: 1px dashed var(--brass); border-radius: 3px; padding: 0 4px; font-family: var(--f-mono); font-size: .92em; }
.pending-flag { display: inline-block; font: 600 .7rem/1.2 var(--f-mono); letter-spacing: .12em; text-transform: uppercase; background: #5a1f14; color: #ffe3da; border: 1px solid #ff8a6b; padding: 6px 8px; border-radius: 4px; margin-bottom: 14px; }

/* ---------- bonuses ---------- */
.pillar { display: grid; border-radius: 22px; overflow: hidden; border: 1px solid rgba(201,146,78,.55); background: linear-gradient(160deg, rgba(201,146,78,.16), var(--ink-2) 55%); margin-bottom: 18px; }
@media (min-width: 820px) { .pillar { grid-template-columns: .85fr 1.15fr; } }
.pillar-media { margin: 0; position: relative; min-height: 240px; overflow: hidden; }
.pillar-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.pillar:hover .pillar-media img { transform: scale(1.06); }
.pillar-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 60%, rgba(28,26,24,.6)); }
.pillar-body { padding: 28px 24px 30px; }
@media (min-width: 820px) { .pillar-body { padding: 44px 44px 46px; } }
.pillar-body h3 { font-size: clamp(1.7rem, 4vw, 2.4rem); }
.pillar-body .checks { margin-top: 18px; }
.tag { font: 600 .7rem/1 var(--f-mono); letter-spacing: .12em; text-transform: uppercase; color: var(--brass); margin-bottom: 14px; display: block; }

/* ---------- cards / grids ---------- */
.grid-2, .grid-3, .grid-4 { display: grid; gap: 16px; }
@media (min-width: 720px) { .grid-2 { grid-template-columns: 1fr 1fr; gap: 18px; } .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 18px; } .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }
.card { background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; transition: border-color .3s ease, transform .4s var(--ease); }
.card:hover { border-color: rgba(201,146,78,.45); }
.card h3 { margin-bottom: .4em; }
.card p:last-child { margin-bottom: 0; }
.card p { color: var(--text-2); }
.card-yes { border-color: rgba(201,146,78,.5); background: linear-gradient(160deg, rgba(201,146,78,.1), var(--ink-2) 50%); }
.checks { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.checks li { padding-left: 28px; position: relative; }
.checks li::before { content: ""; position: absolute; left: 2px; top: .45em; width: 14px; height: 8px; border-left: 2px solid var(--brass); border-bottom: 2px solid var(--brass); transform: rotate(-45deg); }
.checks.no li::before { width: 14px; height: 2px; border: 0; background: var(--text-3); transform: none; top: .75em; }

/* ---------- co-producer ---------- */
.coprod { display: grid; gap: 28px; }
@media (min-width: 820px) { .coprod { grid-template-columns: .8fr 1.2fr; align-items: center; gap: 56px; } }

/* ---------- price ---------- */
.section-price { overflow: hidden; isolation: isolate; }
.price-bg { position: absolute; inset: 0; z-index: -1; }
.price-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .22; filter: saturate(.6); }
.price-bg::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 60% at 75% 50%, rgba(19,18,17,.35), var(--ink) 80%), linear-gradient(180deg, var(--ink), transparent 30%, transparent 70%, var(--ink)); }
.price-wrap { display: grid; gap: 36px; }
@media (min-width: 900px) { .price-wrap { grid-template-columns: 1fr 1fr; align-items: center; gap: 64px; } }
.compare { display: grid; gap: 14px; margin: 26px 0 24px; max-width: 520px; }
.cmp { display: grid; grid-template-columns: 1fr auto; gap: 6px 12px; align-items: baseline; }
.cmp-label { font-weight: 600; font-size: .95rem; }
.cmp-val { font: 600 .9rem/1 var(--f-mono); color: var(--text-2); }
.cmp-bar { grid-column: 1 / -1; grid-row: 2; height: 12px; border-radius: 6px; background: var(--ink-3); overflow: hidden; }
.cmp-val { grid-row: 1; grid-column: 2; }
.cmp-bar span { display: block; height: 100%; border-radius: 6px; transform-origin: left; }
.cmp-them span { width: 100%; background: repeating-linear-gradient(90deg, #5c554c 0 18px, #4a443d 18px 20px); }
.cmp-us span { width: 3.5%; min-width: 10px; background: var(--brass-2); }
html.motion .compare .cmp-bar span { transform: scaleX(0); transition: transform 1.6s var(--ease) .2s; }
html.motion .in .compare .cmp-bar span { transform: scaleX(1); }
.price-card { position: relative; background: rgba(28,26,24,.88); border-radius: 26px; padding: 30px 24px 26px; isolation: isolate; box-shadow: 0 40px 80px -40px rgba(0,0,0,.9); }
@media (min-width: 720px) { .price-card { padding: 38px 36px 30px; } }
.price-card::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px; background: conic-gradient(from var(--ang, 0deg), rgba(201,146,78,.25), var(--brass-3), rgba(201,146,78,.25) 30%, rgba(201,146,78,.25) 60%, var(--brass-2), rgba(201,146,78,.25)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
@property --ang { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
html.motion .price-card::before { animation: spin 8s linear infinite; }
@keyframes spin { to { --ang: 360deg; } }
.price-glow { position: absolute; inset: -30%; z-index: -1; background: radial-gradient(40% 35% at 50% 20%, rgba(201,146,78,.22), transparent 70%); pointer-events: none; }
.price-card .label { font: 600 .74rem/1.3 var(--f-mono); letter-spacing: .12em; text-transform: uppercase; color: var(--brass-2); margin: 0; }
.price-now { font: 600 clamp(3.6rem, 13vw, 5.4rem)/1 var(--f-display); letter-spacing: -.04em; color: var(--text); margin: 10px 0 8px; }
.price-was { font: 500 1rem/1.4 var(--f-mono); color: var(--text-3); }
.price-was s { color: var(--text-2); }
.price-note { font-size: .88rem; color: var(--text-3); }
.anchor { color: var(--text-2); font-size: .95rem; padding: 10px 12px; background: rgba(201,146,78,.08); border: 1px solid rgba(201,146,78,.25); border-radius: 10px; margin: 8px 0 20px; }
.anchor strong { color: var(--text); }
.price-card .checks { margin-bottom: 24px; }
.price-card .btn { margin-bottom: 12px; }
.note { font-size: .86rem; color: var(--text-3); margin: 0 0 8px; }
.countdown { display: flex; gap: 8px; margin: 14px 0 4px; }
.countdown div { background: var(--ink-3); border: 1px solid var(--line); border-radius: 10px; padding: 8px 10px; min-width: 62px; text-align: center; }
.countdown b { display: block; font: 600 1.4rem/1 var(--f-mono); color: var(--text); }
.countdown span { font: 500 .66rem/1 var(--f-mono); letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); }

/* ---------- guarantee ---------- */
.section-guarantee { background: var(--ink-4); }
.guarantee { display: grid; gap: 32px; align-items: center; }
@media (min-width: 820px) { .guarantee { grid-template-columns: .7fr 1.3fr; gap: 64px; } }
.g-media { position: relative; margin: 0; border-radius: 22px; overflow: visible; aspect-ratio: 4 / 5; max-width: 380px; }
@media (max-width: 819px) { .g-media { aspect-ratio: 16 / 10; max-width: none; } }
.g-media img { width: 100%; height: 100%; object-fit: cover; border-radius: 22px; }
.g-seal { position: absolute; right: -14px; bottom: -18px; width: 124px; height: 124px; border-radius: 50%; background: var(--brass); color: var(--ink); display: grid; place-items: center; box-shadow: 0 20px 40px -10px rgba(0,0,0,.7); }
@media (max-width: 819px) { .g-seal { right: 12px; bottom: -22px; width: 108px; height: 108px; } }
.g-seal svg { position: absolute; inset: 0; width: 100%; height: 100%; }
html.motion .g-seal svg { animation: rot 24s linear infinite; }
@keyframes rot { to { transform: rotate(360deg); } }
.g-seal text { font: 600 10px/1 var(--f-mono); fill: var(--ink); }
.g-seal b { font: 600 2.4rem/1 var(--f-display); }
.guarantee h2 { font-size: clamp(1.8rem, 4.6vw, 2.8rem); }

/* ---------- legal quotes ---------- */
.quote-legal { border-left: 3px solid var(--brass); padding: 12px 16px; background: rgba(201,146,78,.08); color: var(--text); font-style: italic; margin: 10px 0 0; border-radius: 0 10px 10px 0; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 10px; max-width: 880px; }
.faq details { background: var(--ink-2); border: 1px solid var(--line); border-radius: 14px; transition: border-color .3s ease, background .3s ease; overflow: hidden; }
.faq details[open] { border-color: rgba(201,146,78,.5); background: #211e1b; }
.faq summary { cursor: pointer; list-style: none; padding: 19px 56px 19px 22px; font-weight: 600; position: relative; min-height: 44px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; position: absolute; right: 22px; top: 50%; width: 22px; height: 22px; margin-top: -11px; border-radius: 50%; border: 1px solid var(--brass); background:
  linear-gradient(var(--brass-2), var(--brass-2)) center / 10px 1.5px no-repeat,
  linear-gradient(var(--brass-2), var(--brass-2)) center / 1.5px 10px no-repeat; transition: transform .35s var(--ease); }
.faq details[open] summary::after { transform: rotate(135deg); }
.faq .answer { padding: 0 22px 20px; color: var(--text-2); }
.faq .answer p:last-child { margin: 0; }

/* ---------- forms ---------- */
.section-join { overflow: hidden; isolation: isolate; background: var(--ink-4); }
.join-bg { position: absolute; inset: 0 auto 0 0; width: 55%; z-index: -1; display: none; }
.join-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .25; filter: grayscale(.4); }
.join-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,11,10,.4), var(--ink-4) 95%), linear-gradient(180deg, var(--ink-4), transparent 25%, transparent 75%, var(--ink-4)); }
@media (min-width: 900px) { .join-bg { display: block; } }
.form-shell { display: grid; gap: 32px; }
@media (min-width: 900px) { .form-shell { grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: start; } }
.form-shell .checks { margin-top: 20px; }
.form-card { background: var(--ink-2); border: 1px solid var(--line); border-radius: 22px; padding: 24px 20px; box-shadow: 0 40px 80px -40px rgba(0,0,0,.9); }
@media (min-width: 720px) { .form-card { padding: 34px; } }
.field { display: grid; gap: 6px; margin-bottom: 16px; }
.field-row { display: grid; gap: 0 14px; }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; align-items: end; } }
label, .legend { font-weight: 600; font-size: .95rem; }
.opt { font-weight: 400; color: var(--text-3); font-size: .85rem; }
input[type=text], input[type=email], select, textarea {
  width: 100%; min-height: 50px; background: var(--ink-3); color: var(--text); border: 1px solid #4a443d; border-radius: 12px; padding: 12px 14px; font: 400 16px/1.3 var(--f-body); transition: border-color .2s ease, box-shadow .2s ease; }
select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--brass) 50%), linear-gradient(135deg, var(--brass) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%; background-size: 6px 6px; background-repeat: no-repeat; padding-right: 40px; }
input:focus, select:focus, textarea:focus { border-color: var(--brass); outline: 2px solid rgba(219,169,106,.5); outline-offset: 1px; box-shadow: 0 0 0 6px rgba(201,146,78,.1); }
input[aria-invalid=true], select[aria-invalid=true] { border-color: var(--danger); }
.hint { font-size: .82rem; color: var(--text-3); }
.error-msg { font-size: .85rem; color: var(--danger); min-height: 0; }
.check { display: flex; gap: 12px; align-items: flex-start; font-weight: 400; font-size: .9rem; color: var(--text-2); margin: 6px 0 18px; }
.check input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--brass); flex: none; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin-top: 14px; padding: 12px 14px; border-radius: 10px; font-size: .92rem; }
.form-status.err { background: rgba(255,138,107,.12); border: 1px solid #ff8a6b; color: #ffe3da; }
.form-status.dev { background: #5a1f14; border: 1px solid #ff8a6b; color: #ffe3da; font-family: var(--f-mono); font-size: .82rem; }
.form-status.ok { background: rgba(185,216,168,.1); border: 1px solid var(--ok); color: #e6f2de; }
.inline-note { background: rgba(201,146,78,.1); border: 1px solid rgba(201,146,78,.4); border-radius: 10px; padding: 10px 12px; font-size: .86rem; color: var(--text-2); margin-top: 8px; }

/* survey */
.survey fieldset { border: 0; padding: 0; margin: 0 0 16px; }
.survey legend { font: 600 1.25rem/1.3 var(--f-display); margin-bottom: 14px; }

/* ---------- disclosures + footer ---------- */
.section-disc { padding: 56px 0; border-top: 1px solid var(--line); }
.section-disc h2 { font-size: 1.3rem; }
.footer { border-top: 1px solid var(--line); padding: 48px 0 96px; font-size: .86rem; color: var(--text-3); }
@media (min-width: 900px) { .footer { padding-bottom: 64px; } }
.footer .cols { display: grid; gap: 28px; }
@media (min-width: 820px) { .footer .cols { grid-template-columns: 1.2fr 1fr; } }
.footer nav ul { list-style: none; padding: 0; margin: 0 0 16px; display: flex; flex-wrap: wrap; gap: 8px 20px; }
.footer a { color: var(--text-2); }
.footer p { margin-bottom: .8em; }
.footer .disclaimers p { font-size: .8rem; }
.link-pending { color: var(--text-3) !important; text-decoration: underline dashed; cursor: not-allowed; }

/* ---------- misc ---------- */
.center { text-align: center; }
.stack-sm > * + * { margin-top: 10px; }
.sticky-cta { position: fixed; left: 10px; right: 10px; bottom: calc(10px + env(safe-area-inset-bottom)); z-index: 40; background: rgba(28,26,24,.82); backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%); border: 1px solid rgba(201,146,78,.4); border-radius: 999px; padding: 8px 8px 8px 18px; display: flex; align-items: center; justify-content: space-between; gap: 12px; transform: translateY(160%); transition: transform .45s var(--ease); box-shadow: 0 20px 40px -12px rgba(0,0,0,.8); }
.sticky-cta.show { transform: none; }
.sticky-cta .p { font: 600 .86rem/1.2 var(--f-mono); }
@media (min-width: 900px) { .sticky-cta { display: none; } }

/* ---------- thank-you page ---------- */
.thanks-hero { position: relative; overflow: hidden; isolation: isolate; padding: 72px 0 80px; }
.thanks-hero .thanks-bg { position: absolute; inset: 0; z-index: -1; }
.thanks-hero .thanks-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .3; }
.thanks-hero .thanks-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(19,18,17,.6), var(--ink) 70%), radial-gradient(60% 50% at 80% 0%, rgba(201,146,78,.25), transparent 70%); }
.thanks-hero h1 { font-size: clamp(2.4rem, 8vw, 4.2rem); }
.thanks-check { width: 64px; height: 64px; border-radius: 50%; background: var(--brass); color: var(--ink); display: grid; place-items: center; margin-bottom: 22px; box-shadow: 0 0 0 10px rgba(201,146,78,.15); }
.thanks-check svg { width: 30px; height: 30px; }
html.motion .thanks-check { animation: pop .8s var(--ease) both; }
html.motion .thanks-check path { stroke-dasharray: 30; stroke-dashoffset: 30; animation: draw .6s .4s var(--ease) forwards; }
@keyframes pop { from { transform: scale(.4); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes draw { to { stroke-dashoffset: 0; } }
.next-steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; counter-reset: s; }
.next-steps li { counter-increment: s; position: relative; padding: 16px 18px 16px 58px; background: var(--ink-2); border: 1px solid var(--line); border-radius: 14px; color: var(--text-2); }
.next-steps li::before { content: counter(s); position: absolute; left: 16px; top: 14px; width: 28px; height: 28px; border-radius: 50%; background: var(--brass); color: var(--ink); display: grid; place-items: center; font: 600 .85rem/1 var(--f-mono); }
.next-steps strong { color: var(--text); }

/* ---------- small-screen refinements ---------- */
@media (max-width: 719px) {
  .stat { padding: 18px 20px; display: grid; grid-template-columns: auto 1fr; gap: 0 16px; align-items: center; }
  .stat-num { font-size: 2.5rem; margin: 0; grid-row: span 2; }
  .stat-term { font-size: .95rem; }
  .ba-pane .ph-note { display: none; }
  .ba { aspect-ratio: 4 / 3.4; }
}
