@font-face {
  font-family: "Hood Rat Display";
  src: url("/assets/fonts/hoodrat-display.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Hood Rat Sans";
  src: url("/assets/fonts/hoodrat-body.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Hood Rat Sans";
  src: url("/assets/fonts/hoodrat-body-bold.otf") format("opentype");
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #070a09;
  --ink: #0d110f;
  --panel: #111612;
  --panel-2: #171e18;
  --paper: #f0eee4;
  --muted: #9da59e;
  --line: rgba(240, 238, 228, .16);
  --green: #7fae32;
  --green-hot: #a9e34b;
  --cyan: #1ecbe1;
  --gold: #d7a846;
  --display: "Hood Rat Display", "Arial Narrow", sans-serif;
  --body: "Hood Rat Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body { margin: 0; color: var(--paper); background: var(--black); font-family: var(--body); line-height: 1.5; overflow-x: hidden; text-rendering: optimizeLegibility; font-synthesis: none; }
body.cinema-playing { overflow: hidden; }
button, a { font: inherit; }
a { color: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--green); color: #060806; }
.skip-link { position: fixed; top: 8px; left: 8px; transform: translateY(-180%); z-index: 999; background: var(--paper); color: var(--black); padding: 12px 16px; font-weight: 800; }
.skip-link:focus { transform: translateY(0); }

.cinema { position: fixed; inset: 0; z-index: 100; background: #000; opacity: 1; visibility: visible; transition: opacity 1.05s cubic-bezier(.22,.61,.36,1), visibility 1.05s step-end; overflow: hidden; }
.cinema.is-complete { opacity: 0; visibility: hidden; pointer-events: none; }
.cinema::before, .cinema::after { content: ""; position: absolute; z-index: 4; left: 0; right: 0; height: clamp(10px,2.2vh,22px); background: #000; pointer-events: none; }
.cinema::before { top: 0; animation: letterbox-in 1.2s cubic-bezier(.2,.8,.2,1) both; }
.cinema::after { bottom: 0; animation: letterbox-in 1.2s cubic-bezier(.2,.8,.2,1) both; }
.cinema__video, .cinema__video img, .cinema__grain, .cinema__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.cinema__video { object-fit: cover; object-position: center; filter: saturate(.94) contrast(1.04); background: #050706 url('/assets/opener-01.webp') center/cover no-repeat; animation: picture-in 1.35s ease-out both; }
.cinema__video img { object-fit: cover; }
.cinema__grain { opacity: .11; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E"); animation: grain .18s steps(2) infinite; }
.cinema__shade { overflow: hidden; background: linear-gradient(180deg, rgba(0,0,0,.3), transparent 35%, rgba(0,0,0,.7)), linear-gradient(90deg, rgba(0,0,0,.56), transparent 55%); }
.cinema__shade::after { content: ""; position: absolute; inset: -30%; width: 28%; background: linear-gradient(90deg, transparent, rgba(30,203,225,.15), rgba(255,255,255,.08), transparent); filter: blur(18px); transform: translateX(-250%) skewX(-14deg); animation: light-pass 7.2s 1.8s ease-in-out infinite; }
.cinema__topline { position: absolute; z-index: 2; top: clamp(22px,4vw,56px); left: clamp(22px,5vw,80px); right: clamp(22px,5vw,80px); display: flex; justify-content: space-between; font-size: 12px; letter-spacing: .22em; font-weight: 800; color: rgba(255,255,255,.72); }
.cinema__counter b { color: var(--green-hot); }
.cinema__copy { position: absolute; z-index: 2; left: clamp(22px,7vw,110px); bottom: clamp(96px,14vh,160px); max-width: min(760px,82vw); text-shadow: 0 3px 25px #000; transition: opacity .42s ease, transform .42s cubic-bezier(.2,.8,.2,1), filter .42s ease; }
.cinema__copy.is-changing { opacity: .12; transform: translateY(12px); filter: blur(5px); }
.cinema__kicker, .eyebrow { margin: 0 0 14px; font-size: 12px; font-weight: 900; letter-spacing: .2em; color: var(--gold); }
.cinema__copy h1 { margin: 0; font-family: var(--display); font-size: clamp(52px,7.8vw,122px); font-weight: 700; letter-spacing: -.025em; line-height: .92; text-transform: uppercase; }
.cinema__copy > p:last-child { margin: 18px 0 0; font-size: clamp(16px,1.5vw,22px); color: rgba(255,255,255,.82); }
.cinema__controls { position: absolute; z-index: 3; left: clamp(22px,5vw,80px); right: clamp(22px,5vw,80px); bottom: clamp(20px,4vw,54px); display: flex; align-items: center; gap: 28px; }
.cinema__progress { flex: 1; display: grid; grid-template-columns: repeat(5,1fr); gap: 7px; }
.cinema__progress i { display: block; height: 2px; background: rgba(255,255,255,.25); position: relative; overflow: hidden; }
.cinema__progress i::after { content: ""; position: absolute; inset: 0; background: var(--green-hot); transform: scaleX(var(--fill, 0)); transform-origin: left; transition: transform .12s linear; }
.cinema__progress i.is-done { --fill: 1; }
.cinema__skip, .cinema__play, .replay { border: 0; color: var(--paper); background: transparent; cursor: pointer; text-transform: uppercase; font-size: 12px; letter-spacing: .13em; font-weight: 900; white-space: nowrap; }
.cinema__skip, .cinema__play { border-bottom: 1px solid rgba(255,255,255,.45); padding: 8px 0; }
.cinema__skip:hover, .cinema__skip:focus-visible, .cinema__play:hover, .cinema__play:focus-visible, .replay:hover, .replay:focus-visible { color: var(--green-hot); outline: none; }
@keyframes grain { 0%{transform:translate(0)} 25%{transform:translate(1%,-1%)} 50%{transform:translate(-1%,1%)} 75%{transform:translate(1%,1%)} }
@keyframes picture-in { from { opacity: .3; transform: scale(1.025); filter: saturate(.55) contrast(1.1); } to { opacity: 1; transform: scale(1); } }
@keyframes letterbox-in { from { transform: scaleY(2.2); } to { transform: scaleY(1); } }
@keyframes light-pass { 0%,24% { transform: translateX(-250%) skewX(-14deg); opacity: 0; } 45% { opacity: 1; } 72%,100% { transform: translateX(620%) skewX(-14deg); opacity: 0; } }

.site-shell { opacity: 0; transition: opacity .8s ease .3s; }
.site-shell.is-visible { opacity: 1; }
.nav { position: fixed; z-index: 30; top: 0; left: 0; right: 0; height: 76px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 clamp(20px,4vw,64px); border-bottom: 1px solid transparent; background: transparent; transition: background .35s ease, border-color .35s ease, box-shadow .35s ease, backdrop-filter .35s ease; }
.nav.is-scrolled { border-color: var(--line); background: rgba(7,10,9,.78); box-shadow: 0 12px 36px rgba(0,0,0,.18); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.brand { justify-self: start; display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-family: var(--display); font-size: 22px; letter-spacing: .04em; }
.brand img { width: 38px; height: 38px; border-radius: 50%; }
.nav nav { display: flex; gap: 28px; }
.nav nav a { text-decoration: none; text-transform: uppercase; font-size: 12px; letter-spacing: .13em; font-weight: 800; color: #c5cbc5; }
.nav nav a:hover, .nav nav a:focus-visible { color: var(--green-hot); outline: none; }
.replay { justify-self: end; }

.hero { --light-x: 74%; --light-y: 42%; min-height: 100svh; position: relative; display: flex; align-items: center; overflow: hidden; isolation: isolate; border-bottom: 1px solid var(--line); }
.hero::before { content: ""; position: absolute; z-index: 1; inset: 0; pointer-events: none; background: radial-gradient(circle 420px at var(--light-x) var(--light-y), rgba(30,203,225,.13), rgba(169,227,75,.045) 38%, transparent 72%); mix-blend-mode: screen; transition: background-position .2s ease; animation: ambient-breathe 6s ease-in-out infinite; }
.hero__image, .hero__veil { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__image { object-fit: cover; object-position: 58% center; transform: translate3d(0,var(--hero-shift,0px),0) scale(1.065); will-change: transform; transition: transform .1s linear; }
.hero__veil { background: linear-gradient(90deg, rgba(7,10,9,.98) 0%, rgba(7,10,9,.77) 36%, rgba(7,10,9,.15) 66%, rgba(7,10,9,.4) 100%), linear-gradient(0deg, rgba(7,10,9,.94), transparent 35%); }
.hero__content { position: relative; z-index: 2; width: min(1420px,90vw); margin: 0 auto; padding: 130px 0 110px; }
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 30px; height: 2px; background: var(--green-hot); transform-origin: left; animation: signal-pulse 2.8s ease-in-out infinite; }
.hero h1, .section h2 { margin: 0; font-family: var(--display); font-weight: 700; letter-spacing: -.026em; line-height: .92; text-transform: uppercase; }
.hero h1 { font-size: clamp(64px,7.7vw,126px); max-width: 860px; }
.hero h1 em, .section h2 em { font-style: normal; color: var(--green-hot); }
.hero__lede { max-width: 590px; margin: 28px 0 0; color: #c7cdc8; font-size: clamp(17px,1.5vw,21px); line-height: 1.6; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { position: relative; isolation: isolate; overflow: hidden; display: inline-flex; align-items: center; justify-content: center; gap: 28px; min-height: 54px; padding: 0 22px; border: 1px solid rgba(255,255,255,.32); text-decoration: none; text-transform: uppercase; letter-spacing: .1em; font-size: 12px; font-weight: 900; transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .35s ease, box-shadow .35s ease; }
.button::before { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(105deg, transparent 25%, rgba(255,255,255,.24) 50%, transparent 75%); transform: translateX(-140%); transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.button:hover::before, .button:focus-visible::before { transform: translateX(140%); }
.button--solid { background: var(--green-hot); color: #0a0c09; border-color: var(--green-hot); }
.button:hover, .button:focus-visible { transform: translateY(-2px); border-color: var(--cyan); box-shadow: 0 8px 35px rgba(30,203,225,.16); outline: none; }
.hero__stamp { position: absolute; right: clamp(24px,5vw,80px); bottom: 90px; z-index: 2; width: 132px; aspect-ratio: 1; border: 2px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; gap: 8px; transform: rotate(8deg); background: rgba(7,10,9,.72); box-shadow: 0 0 0 1px rgba(215,168,70,.12), 0 14px 38px rgba(0,0,0,.28); animation: stamp-float 4.8s ease-in-out infinite; }
.hero__stamp strong { font-family: var(--display); font-size: 46px; color: var(--green-hot); }
.hero__stamp span { font-size: 10px; line-height: 1.15; letter-spacing: .08em; font-weight: 900; }
.ticker { position: absolute; z-index: 3; bottom: 0; width: 100%; overflow: hidden; border-top: 1px solid rgba(255,255,255,.32); border-bottom: 1px solid rgba(0,0,0,.38); background: linear-gradient(90deg,#92c338,var(--green),#a3d842); color: #080a08; box-shadow: 0 -12px 34px rgba(0,0,0,.24); }
.ticker__track { display: flex; width: max-content; will-change: transform; animation: ticker 28s linear infinite; }
.ticker__group { flex: 0 0 auto; display: flex; align-items: center; gap: 26px; padding: 12px 26px 12px 0; white-space: nowrap; }
.ticker__group span { font-size: 12px; font-weight: 900; letter-spacing: .17em; }
.ticker__group i { color: rgba(8,10,8,.52); font-size: 8px; font-style: normal; transform: rotate(45deg); }
@keyframes ticker { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }
@keyframes ambient-breathe { 0%,100% { opacity: .68; } 50% { opacity: 1; } }
@keyframes signal-pulse { 0%,100% { transform: scaleX(.62); opacity: .72; } 50% { transform: scaleX(1); opacity: 1; } }
@keyframes stamp-float { 0%,100% { translate: 0 0; } 50% { translate: 0 -8px; } }

.section { width: min(1420px,90vw); margin: 0 auto; padding: clamp(90px,11vw,170px) 0; }
.section__label { display: flex; gap: 16px; align-items: center; padding-bottom: 16px; border-bottom: 1px solid var(--line); color: #b5bcb6; font-size: 12px; letter-spacing: .17em; font-weight: 900; }
.section__label span { color: var(--green-hot); }
.intro__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(60px,10vw,170px); padding: 80px 0; }
.section h2 { font-size: clamp(56px,7vw,108px); }
.intro__copy { align-self: end; font-size: 18px; line-height: 1.72; color: #bfc6c0; }
.intro__copy p { margin: 0 0 24px; }
.dropcap::first-letter { float: left; font-family: var(--display); color: var(--green-hot); font-size: 85px; line-height: .7; padding: 12px 12px 0 0; }
blockquote { margin: 44px 0 0; padding: 22px 0 0 30px; border-left: 3px solid var(--gold); color: var(--paper); font-family: var(--display); font-size: clamp(28px,3.2vw,50px); line-height: .98; text-transform: uppercase; }
.portrait-card { display: grid; grid-template-columns: minmax(330px,.68fr) minmax(0,1.32fr); gap: 0; min-height: 660px; overflow: hidden; border: 1px solid var(--line); background: var(--panel); transition: border-color .45s ease, box-shadow .45s ease; }
.portrait-card:hover { border-color: rgba(169,227,75,.42); box-shadow: 0 26px 70px rgba(0,0,0,.24); }
.portrait-card__figure { position: relative; min-width: 0; min-height: 660px; display: flex; align-items: flex-end; justify-content: center; overflow: hidden; isolation: isolate; background: radial-gradient(circle at 50% 54%,rgba(169,227,75,.13),transparent 48%),linear-gradient(135deg,rgba(30,203,225,.035),transparent 56%); }
.portrait-card__figure::after { content: ""; position: absolute; z-index: -1; left: 10%; right: 10%; bottom: -2%; height: 13%; border-radius: 50%; background: rgba(0,0,0,.55); filter: blur(18px); }
.portrait-card__figure img { width: auto; height: 98%; max-width: 100%; object-fit: contain; object-position: center bottom; filter: drop-shadow(20px 24px 28px rgba(0,0,0,.42)); transform: translateY(2%) scale(.98); transform-origin: bottom center; transition: transform .8s cubic-bezier(.16,1,.3,1), filter .8s ease; pointer-events: none; user-select: none; }
.portrait-card:hover .portrait-card__figure img { transform: translateY(0) scale(1.015); filter: drop-shadow(24px 30px 34px rgba(0,0,0,.5)); }
.portrait-card__content { position: relative; min-width: 0; min-height: 660px; padding: clamp(42px,5vw,82px); display: flex; align-items: center; overflow: hidden; isolation: isolate; }
.portrait-card__content::before { content: "001"; position: absolute; z-index: -1; right: -1%; bottom: -13%; color: transparent; font-family: var(--display); font-size: clamp(190px,20vw,340px); line-height: .8; letter-spacing: -.06em; -webkit-text-stroke: 1px rgba(240,238,228,.055); }
.portrait-card__content::after { content: ""; position: absolute; z-index: -1; right: -12%; bottom: -35%; width: 58%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle,rgba(169,227,75,.12),rgba(30,203,225,.035) 48%,transparent 72%); filter: blur(8px); }
.portrait-card__copy { position: relative; z-index: 2; width: 100%; }
.portrait-card > .portrait-card__content .portrait-card__copy > span, .truth span { color: var(--gold); font-size: 12px; letter-spacing: .2em; font-weight: 900; }
.portrait-card strong { display: block; margin: 32px 0 36px; font-family: var(--display); font-size: clamp(56px,5.25vw,96px); line-height: .84; letter-spacing: -.035em; }
.portrait-card strong span { display: block; color: var(--paper); font: inherit; letter-spacing: inherit; }
.portrait-card strong span:nth-child(2) { color: transparent; -webkit-text-stroke: 1.3px rgba(240,238,228,.78); }
.portrait-card strong span:last-child { color: var(--green-hot); }
.portrait-card p { max-width: 720px; margin: 0; padding-top: 24px; border-top: 1px solid rgba(240,238,228,.16); color: #aeb8b0; font-size: clamp(18px,1.45vw,24px); line-height: 1.48; }

.mechanism { width: 100%; max-width: none; padding-left: 5vw; padding-right: 5vw; background: var(--paper); color: var(--ink); }
.mechanism .section__label { border-color: rgba(13,17,15,.2); color: #475047; }
.mechanism__head { max-width: 930px; margin: 80px 0 70px; }
.mechanism__head > p:last-child { max-width: 720px; font-size: 19px; line-height: 1.7; color: #4d574f; }
.flow { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid #b4b8af; border-left: 1px solid #b4b8af; }
.flow__card { position: relative; min-height: 330px; padding: 26px; border-right: 1px solid #b4b8af; border-bottom: 1px solid #b4b8af; transition: transform .38s cubic-bezier(.2,.8,.2,1), background .38s ease, box-shadow .38s ease; }
.flow__card:hover { z-index: 2; transform: translateY(-7px); background: #faf9f2; box-shadow: 0 24px 50px rgba(13,17,15,.12); }
.flow__number { font-size: 11px; letter-spacing: .18em; font-weight: 900; }
.flow__icon { margin: 38px 0 50px; font-family: var(--display); font-size: 74px; color: var(--green); }
.flow__card h3 { margin: 0 0 10px; font-family: var(--display); font-size: 38px; }
.flow__card p { margin: 0; color: #596158; line-height: 1.5; }
.math-card { margin-top: 34px; background: var(--ink); color: var(--paper); transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s ease; }
.math-card:hover { transform: translateY(-5px); box-shadow: 0 24px 54px rgba(13,17,15,.2); }
.math-card__header { display: flex; justify-content: space-between; padding: 16px 24px; border-bottom: 1px solid rgba(255,255,255,.19); color: var(--gold); font-size: 11px; letter-spacing: .14em; font-weight: 900; }
.crumb-calculator { padding: clamp(26px,4.5vw,64px); }
.crumb-calculator__controls { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.crumb-control { padding: 22px; border: 1px solid rgba(255,255,255,.14); background: #121813; transition: border-color .3s ease, background .3s ease; }
.crumb-control:focus-within { border-color: rgba(169,227,75,.7); background: #151d16; }
.crumb-control__top { display: flex; justify-content: space-between; align-items: center; gap: 18px; }
.crumb-control label { color: #c8cec9; font-size: 14px; font-weight: 800; }
.crumb-control__number { display: flex; align-items: baseline; gap: 6px; padding-bottom: 5px; border-bottom: 1px solid rgba(169,227,75,.4); }
.crumb-control__number input { width: 92px; padding: 0; border: 0; outline: 0; color: var(--green-hot); background: transparent; font-family: var(--display); font-size: 29px; font-weight: 700; line-height: 1; text-align: right; appearance: textfield; }
.crumb-control__number input::-webkit-inner-spin-button, .crumb-control__number input::-webkit-outer-spin-button { appearance: none; margin: 0; }
.crumb-control__number span { color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.crumb-range { --range-progress: 0%; width: 100%; height: 22px; margin: 25px 0 4px; appearance: none; background: transparent; cursor: ew-resize; }
.crumb-range::-webkit-slider-runnable-track { height: 3px; border-radius: 10px; background: linear-gradient(90deg,var(--green-hot) var(--range-progress),rgba(255,255,255,.16) var(--range-progress)); }
.crumb-range::-moz-range-track { height: 3px; border-radius: 10px; background: linear-gradient(90deg,var(--green-hot) var(--range-progress),rgba(255,255,255,.16) var(--range-progress)); }
.crumb-range::-webkit-slider-thumb { width: 18px; height: 18px; margin-top: -7.5px; appearance: none; border: 3px solid var(--ink); border-radius: 50%; background: var(--green-hot); box-shadow: 0 0 0 1px var(--green-hot), 0 0 20px rgba(169,227,75,.35); transition: transform .2s ease; }
.crumb-range::-moz-range-thumb { width: 14px; height: 14px; border: 3px solid var(--ink); border-radius: 50%; background: var(--green-hot); box-shadow: 0 0 0 1px var(--green-hot), 0 0 20px rgba(169,227,75,.35); transition: transform .2s ease; }
.crumb-range:hover::-webkit-slider-thumb, .crumb-range:focus-visible::-webkit-slider-thumb { transform: scale(1.18); }
.crumb-range:hover::-moz-range-thumb, .crumb-range:focus-visible::-moz-range-thumb { transform: scale(1.18); }
.crumb-range:focus-visible { outline: 2px solid var(--cyan); outline-offset: 6px; }
.crumb-control__scale { display: flex; justify-content: space-between; color: #707a72; font-size: 11px; font-weight: 700; }
.crumb-calculator__results { display: grid; grid-template-columns: 1fr 1fr; margin-top: 18px; border: 1px solid rgba(255,255,255,.16); }
.crumb-result { min-width: 0; padding: clamp(25px,4vw,48px); background: #0a0e0b; }
.crumb-result + .crumb-result { border-left: 1px solid rgba(255,255,255,.16); }
.crumb-result--wallet { background: linear-gradient(125deg,rgba(169,227,75,.16),rgba(30,203,225,.045)); }
.crumb-result small { display: block; margin-bottom: 12px; color: var(--gold); font-size: 11px; font-weight: 900; letter-spacing: .15em; }
.crumb-result strong { display: flex; align-items: baseline; gap: 9px; min-width: 0; color: var(--green-hot); font-family: var(--display); font-size: clamp(44px,5.6vw,78px); font-weight: 700; line-height: .95; }
.crumb-result output { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.crumb-result strong b { flex: 0 0 auto; color: var(--paper); font-family: var(--body); font-size: .2em; letter-spacing: .08em; }
.crumb-result > span { display: block; margin-top: 13px; color: #8d978f; font-family: ui-monospace,SFMono-Regular,Menlo,monospace; font-size: 12px; overflow-wrap: anywhere; }
.crumb-calculator__footer { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; padding-top: 24px; }
.crumb-calculator__footer p { max-width: 900px; margin: 0; color: #9ca59e; font-size: 14px; line-height: 1.65; }
.crumb-calculator__footer button { flex: 0 0 auto; padding: 7px 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.35); color: var(--paper); background: transparent; cursor: pointer; font-size: 12px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.crumb-calculator__footer button:hover, .crumb-calculator__footer button:focus-visible { color: var(--green-hot); border-color: var(--green-hot); outline: none; }
.truth-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 14px; }
.truth { padding: 34px; min-height: 260px; border: 1px solid #babeb7; background: transparent; transition: transform .38s cubic-bezier(.2,.8,.2,1), box-shadow .38s ease; }
.truth:hover { transform: translateY(-6px); box-shadow: 0 20px 46px rgba(13,17,15,.1); }
.truth--green { background: var(--green); border-color: var(--green); }
.truth--green span { color: #0d110f; }
.truth h3 { margin: 46px 0 18px; font-family: var(--display); font-size: clamp(37px,3.7vw,55px); line-height: .94; letter-spacing: -.02em; }
.truth p { color: #596158; line-height: 1.5; }
.truth--green p { color: #182116; }

.receipts__layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px,8vw,120px); padding-top: 80px; }
.receipts__copy > p:not(.eyebrow) { color: var(--muted); font-size: 18px; line-height: 1.7; max-width: 450px; }
.status { display: inline-flex; align-items: center; gap: 10px; margin-top: 20px; border: 1px solid var(--line); padding: 12px 14px; font-size: 11px; letter-spacing: .14em; font-weight: 900; }
.status i { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 16px var(--gold); }
.receipt { background: #e9e6da; color: #151915; padding: clamp(25px,5vw,60px); transform: rotate(-1deg); box-shadow: 18px 18px 0 #161d17; background-image: repeating-linear-gradient(0deg,transparent,transparent 27px,rgba(0,0,0,.04) 28px); transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s ease; }
.receipt:hover { transform: rotate(-.25deg) translateY(-7px); box-shadow: 24px 28px 0 #161d17; }
.receipt__top { display: flex; justify-content: space-between; border-bottom: 3px solid #151915; padding-bottom: 16px; font-size: 12px; letter-spacing: .12em; font-weight: 900; }
.receipt dl { margin: 28px 0; }
.receipt dl div { display: grid; grid-template-columns: 180px 1fr; gap: 20px; padding: 12px 0; border-bottom: 1px dashed rgba(0,0,0,.35); }
.receipt dt { font-size: 11px; letter-spacing: .1em; font-weight: 900; }
.receipt dd { margin: 0; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-weight: 800; overflow-wrap: anywhere; }
.receipt__address dd { font-size: 12px; }
.receipt > p { margin: 0; font-size: 12px; line-height: 1.5; color: #4f554f; }

.world { width: 100%; max-width: none; padding-left: 5vw; padding-right: 5vw; background: linear-gradient(rgba(7,10,9,.72),rgba(7,10,9,.94)), url('/assets/ledger-alley-world-v2.webp') center/cover fixed; }
.world__head { padding: 80px 0 60px; max-width: 900px; }
.chapters { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.chapter { min-height: 390px; padding: 22px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid rgba(255,255,255,.22); background: rgba(5,8,6,.66); backdrop-filter: blur(8px); transition: transform .3s ease, background .3s ease; }
.chapter:hover { transform: translateY(-8px); border-color: rgba(169,227,75,.48); background: rgba(26,37,25,.9); box-shadow: 0 18px 54px rgba(0,0,0,.28), inset 0 0 32px rgba(169,227,75,.035); }
.chapter > span { color: var(--green-hot); font-size: 12px; font-weight: 900; }
.chapter p { color: var(--gold); font-size: 10px; letter-spacing: .14em; font-weight: 900; }
.chapter h3 { margin: 10px 0; font-family: var(--display); font-size: clamp(42px,4.2vw,64px); line-height: .94; letter-spacing: -.02em; }
.chapter small { color: #aeb5af; font-size: 14px; line-height: 1.5; }

.manifesto { text-align: center; }
.manifesto__line { font-family: var(--display); font-size: clamp(62px,10vw,154px); line-height: .88; letter-spacing: -.025em; }
.manifesto__line--outline { color: transparent; -webkit-text-stroke: 1px rgba(240,238,228,.5); }
.manifesto__line--green { color: var(--green-hot); animation: type-glow 4.4s ease-in-out infinite; }
@keyframes type-glow { 0%,100% { text-shadow: 0 0 0 rgba(169,227,75,0); } 50% { text-shadow: 0 0 38px rgba(169,227,75,.22); } }
.manifesto > p { margin-top: 54px; color: var(--muted); font-size: 17px; letter-spacing: .08em; text-transform: uppercase; }

.faq__layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(50px,9vw,140px); padding-top: 80px; }
.faq__items details { border-top: 1px solid var(--line); }
.faq__items details:last-child { border-bottom: 1px solid var(--line); }
.faq__items summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 25px 0; font-size: 18px; font-weight: 800; }
.faq__items summary::-webkit-details-marker { display: none; }
.faq__items summary span { color: var(--green-hot); font-size: 26px; transition: transform .2s; }
.faq__items details[open] summary span { transform: rotate(45deg); }
.faq__items details p { margin: -5px 50px 28px 0; color: var(--muted); line-height: 1.65; font-size: 16px; }
.final-cta { position: relative; isolation: isolate; overflow: hidden; width: min(1420px,90vw); border: 1px solid rgba(169,227,75,.48); padding: clamp(42px,7vw,96px); background: linear-gradient(122deg,#101a10 0%,#0b110d 58%,#0b1714 100%); }
.final-cta::before { content: ""; position: absolute; z-index: -2; inset: 0; opacity: .18; background-image: linear-gradient(rgba(169,227,75,.18) 1px,transparent 1px),linear-gradient(90deg,rgba(169,227,75,.18) 1px,transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(90deg,#000,transparent 70%); }
.final-cta::after { content: ""; position: absolute; z-index: -1; right: -8%; bottom: -65%; width: min(700px,58vw); aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle,rgba(169,227,75,.24),rgba(30,203,225,.06) 48%,transparent 70%); filter: blur(8px); }
.final-cta__signal { display: flex; align-items: center; gap: 16px; color: var(--gold); font-size: 11px; font-weight: 900; letter-spacing: .19em; }
.final-cta__signal i { width: 42px; height: 1px; background: var(--green-hot); box-shadow: 0 0 12px rgba(169,227,75,.65); }
.final-cta h2 { margin-top: 34px; max-width: 1040px; font-size: clamp(62px,8.5vw,136px); }
.final-cta__lower { display: grid; grid-template-columns: minmax(260px,620px) auto; justify-content: space-between; align-items: end; gap: 50px; margin-top: clamp(38px,6vw,72px); }
.final-cta__lower p { margin: 0; color: #bac3bc; font-size: clamp(16px,1.4vw,19px); line-height: 1.68; }
.final-cta__actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }

footer { width: min(1420px,90vw); margin: 0 auto; padding: 90px 0 40px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 50px; border-top: 1px solid var(--line); }
.footer__brand { display: grid; grid-template-columns: 68px 1fr; align-items: center; column-gap: 16px; }
.footer__brand img { width: 68px; border-radius: 50%; grid-row: 1 / span 2; }
.footer__brand strong { font-family: var(--display); font-size: 34px; }
.footer__brand span, .footer__status span { color: var(--muted); font-size: 10px; letter-spacing: .14em; font-weight: 900; }
.footer__status { justify-self: end; text-align: right; display: flex; flex-direction: column; gap: 5px; }
.footer__status strong { color: var(--gold); font-size: 20px; }
.footer__status small { color: var(--muted); }
.footer__fineprint { grid-column: 1 / -1; display: grid; gap: 9px; padding-top: 24px; border-top: 1px solid var(--line); color: #747d75; font-size: 12px; line-height: 1.62; }
.footer__fineprint p { max-width: 1180px; margin: 0; }
.footer__fineprint strong { color: #909a92; font-weight: 900; }

.reveal { opacity: 0; transform: translateY(38px) scale(.992); filter: blur(7px); transition: opacity .9s ease, transform .9s cubic-bezier(.16,1,.3,1), filter .9s ease; transition-delay: var(--reveal-delay,0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }

@media (max-width: 980px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav nav { display: none; }
  .hero__image { object-position: 68% center; }
  .hero__veil { background: linear-gradient(90deg,rgba(7,10,9,.97),rgba(7,10,9,.55) 70%,rgba(7,10,9,.35)),linear-gradient(0deg,rgba(7,10,9,.94),transparent 45%); }
  .intro__grid, .receipts__layout, .faq__layout { grid-template-columns: 1fr; }
  .portrait-card { grid-template-columns: minmax(280px,.76fr) minmax(0,1.24fr); min-height: 540px; }
  .portrait-card__figure, .portrait-card__content { min-height: 540px; }
  .portrait-card__figure img { height: 92%; }
  .portrait-card__copy { width: 100%; }
  .portrait-card strong { font-size: clamp(48px,5.7vw,66px); }
  .flow { grid-template-columns: repeat(2,1fr); }
  .crumb-calculator__controls { grid-template-columns: 1fr; }
  .truth-grid { grid-template-columns: 1fr; }
  .chapters { grid-template-columns: repeat(2,1fr); }
  .final-cta__lower { grid-template-columns: 1fr; align-items: start; }
  .final-cta__actions { justify-content: flex-start; }
}

@media (max-width: 680px) {
  .nav { height: 66px; }
  .brand img { width: 34px; height: 34px; }
  .replay { font-size: 10px; }
  .cinema__topline > span:first-child { display: none; }
  .cinema__topline { justify-content: flex-end; }
  .cinema__copy { bottom: 120px; max-width: 88vw; }
  .cinema__copy h1 { font-size: clamp(50px,15vw,74px); line-height: .94; }
  .cinema__video { object-position: 56% center; }
  .cinema__progress { gap: 3px; }
  .cinema__controls { gap: 16px; }
  .hero { align-items: flex-end; }
  .hero__content { padding: 130px 0 140px; }
  .hero h1 { font-size: clamp(54px,15.5vw,78px); line-height: .94; }
  .hero__image { object-position: 70% center; }
  .hero__veil { background: linear-gradient(0deg,rgba(7,10,9,.98) 0%,rgba(7,10,9,.68) 65%,rgba(7,10,9,.3)); }
  .hero__stamp { width: 98px; right: 18px; bottom: 70px; opacity: .8; }
  .hero__stamp strong { font-size: 35px; }
  .section { width: min(92vw,1420px); padding: 90px 0; }
  .mechanism, .world { width: 100%; padding-left: 4vw; padding-right: 4vw; }
  .intro__grid { gap: 44px; padding: 58px 0; }
  .section h2 { font-size: clamp(48px,14vw,70px); line-height: .94; }
  .intro__copy { font-size: 16px; }
  .portrait-card { grid-template-columns: 1fr; }
  .portrait-card__figure { min-height: 520px; }
  .portrait-card__figure img { height: 500px; max-width: 100%; }
  .portrait-card__content { min-height: auto; padding: 46px 28px; align-items: flex-start; }
  .portrait-card__content::before { font-size: 190px; bottom: -7%; }
  .portrait-card strong { font-size: clamp(48px,13vw,66px); line-height: .87; }
  .flow { grid-template-columns: 1fr; }
  .flow__card { min-height: 250px; }
  .math-card__header { gap: 20px; }
  .crumb-calculator { padding: 20px; }
  .crumb-calculator__results { grid-template-columns: 1fr; }
  .crumb-result + .crumb-result { border-top: 1px solid rgba(255,255,255,.16); border-left: 0; }
  .crumb-result strong { font-size: clamp(42px,13vw,66px); }
  .crumb-calculator__footer { flex-direction: column; }
  .receipt { box-shadow: 9px 9px 0 #161d17; }
  .receipt dl div { grid-template-columns: 1fr; gap: 6px; }
  .chapters { grid-template-columns: 1fr; }
  .chapter { min-height: 300px; }
  .final-cta { padding: 46px 28px; }
  .final-cta__signal { align-items: flex-start; flex-direction: column; gap: 7px; }
  .final-cta__signal i { width: 28px; }
  .final-cta__actions { flex-direction: column; }
  .final-cta__actions .button { width: 100%; }
  footer { grid-template-columns: 1fr; }
  .footer__status { justify-self: start; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .cinema { display: none; }
  body.cinema-playing { overflow: auto; }
  .site-shell { opacity: 1; }
  .reveal { opacity: 1; transform: none; filter: none; }
  .hero__image { transform: scale(1.02); }
  .world { background-attachment: scroll; }
}
