:root {
  --ink: #0a0710;
  --ink-2: #120c18;
  --ink-3: #1a1020;
  --cream: #f4eddf;
  --cream-2: #ebe1d2;
  --paper: #fffaf1;
  --pink: #ff2aa1;
  --pink-hot: #ff0a8f;
  --pink-soft: #ff75c4;
  --pink-pale: #ffd7ed;
  --violet: #8e65ff;
  --lime: #dbff5b;
  --white: #fff;
  --muted: #a79cae;
  --muted-dark: #675d66;
  --line: rgba(255,255,255,.12);
  --line-dark: rgba(12,8,14,.14);
  --display: "Bricolage Grotesque", Arial, sans-serif;
  --body: "Inter", Arial, sans-serif;
  --mono: "DM Mono", monospace;
  --shell: min(1440px, calc(100vw - 72px));
  --ease: cubic-bezier(.2,.8,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body { margin: 0; min-width: 320px; background: var(--ink); color: var(--white); font-family: var(--body); font-size: 16px; line-height: 1.6; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img { display: block; max-width: 100%; }
svg { display: block; }
::selection { background: var(--pink); color: var(--ink); }

.skip-link { position: fixed; left: 16px; top: -80px; z-index: 1000; background: var(--cream); color: var(--ink); padding: 12px 18px; border-radius: 999px; transition: top .2s ease; }
.skip-link:focus { top: 16px; }

.ambient-canvas { position: fixed; inset: 0; width: 100%; height: 100%; pointer-events: none; opacity: .45; z-index: 0; }
.grain { position: fixed; inset: 0; width: 100vw; height: 100vh; z-index: 1; pointer-events: none; opacity: .03; 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='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E"); }
.cursor { position: fixed; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; pointer-events: none; z-index: 110; opacity: 0; transform: translate3d(-100px,-100px,0); transition: width .22s var(--ease), height .22s var(--ease), border-color .22s ease, background .22s ease, opacity .25s ease; mix-blend-mode: difference; }
.cursor span { position: absolute; width: 4px; height: 4px; border-radius: 50%; background: white; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.cursor.is-visible { opacity: 1; }
.cursor.is-active { width: 74px; height: 74px; background: rgba(255,255,255,.13); border-color: #fff; }

.notice-bar { position: relative; z-index: 31; height: 34px; overflow: hidden; background: var(--pink); color: var(--ink); border-bottom: 1px solid rgba(255,255,255,.3); }
.notice-track { min-width: max-content; height: 100%; display: flex; align-items: center; gap: 42px; padding-left: 30px; animation: ticker 34s linear infinite; }
.notice-track span { flex: none; font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.notice-track span::after { content: "✦"; margin-left: 42px; }
.notice-track i { display: inline-block; width: 7px; height: 7px; border-radius: 50%; margin-right: 7px; background: var(--ink); box-shadow: 0 0 0 4px rgba(10,7,16,.14); }

.site-header { position: fixed; left: 0; right: 0; top: 34px; z-index: 30; transition: top .3s ease, background .35s ease, backdrop-filter .35s ease, border-color .35s ease, transform .35s ease; border-bottom: 1px solid transparent; }
.site-header.is-scrolled { top: 0; background: rgba(10,7,16,.88); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-color: rgba(255,255,255,.09); }
.nav-wrap { width: var(--shell); height: 86px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
.brand { display: inline-flex; align-items: center; gap: 10px; width: fit-content; font-family: var(--display); font-size: 19px; line-height: 1; font-weight: 800; letter-spacing: -.05em; }
.brand img { width: 35px; height: 35px; object-fit: contain; }
.brand sup, .footer-brand sup { font-family: var(--mono); font-size: 7px; margin-left: 2px; vertical-align: top; letter-spacing: 0; }
.desktop-nav { display: flex; align-items: center; gap: 32px; padding: 10px 18px; border: 1px solid rgba(255,255,255,.1); border-radius: 999px; background: rgba(255,255,255,.025); }
.desktop-nav a { position: relative; color: rgba(255,255,255,.7); font-size: 12px; font-weight: 600; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -3px; height: 1px; background: var(--pink); transition: right .3s var(--ease); }
.desktop-nav a:hover { color: #fff; }
.desktop-nav a:hover::after { right: 0; }
.nav-actions { display: flex; justify-content: flex-end; align-items: center; gap: 10px; }
.social-button { width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; display: grid; place-items: center; transition: background .25s ease, border-color .25s ease, transform .25s var(--ease); }
.social-button:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.28); transform: translateY(-2px); }
.social-button svg { width: 14px; fill: currentColor; }

.button { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 24px; min-height: 54px; padding: 0 23px; border: 1px solid transparent; border-radius: 999px; font-family: var(--display); font-size: 13px; font-weight: 750; letter-spacing: -.02em; overflow: hidden; isolation: isolate; transition: transform .3s var(--ease), box-shadow .3s ease, border-color .3s ease; }
.button::before { content: ""; position: absolute; z-index: -1; inset: 0; transform: scaleX(0); transform-origin: right; transition: transform .45s var(--ease-out); }
.button:hover::before { transform: scaleX(1); transform-origin: left; }
.button:hover { transform: translateY(-3px); }
.button b { font-size: 17px; line-height: 1; }
.button-nav { min-height: 42px; padding: 0 17px; gap: 13px; font-size: 11px; }
.button-xl { min-height: 66px; padding-inline: 29px; font-size: 14px; }
.button-primary { color: var(--ink); background: var(--pink); box-shadow: 0 12px 40px rgba(255,42,161,.2); }
.button-primary::before { background: var(--cream); }
.button-dark { color: white; background: var(--ink); }
.button-dark::before { background: #25172d; }
.button-outline { color: #fff; border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.025); }
.button-outline::before { background: rgba(255,255,255,.1); }
.menu-button { width: 44px; height: 44px; display: none; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; background: none; cursor: pointer; position: relative; z-index: 101; }
.menu-button span { position: absolute; left: 13px; width: 17px; height: 1px; background: white; transition: transform .25s ease, top .25s ease; }
.menu-button span:first-child { top: 17px; }
.menu-button span:last-child { top: 25px; }
.menu-button[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }
.mobile-menu { position: fixed; inset: 0; z-index: 99; display: none; background: var(--ink); padding: 110px 26px 28px; opacity: 0; visibility: hidden; transform: translateY(-20px); transition: opacity .35s ease, transform .35s var(--ease), visibility .35s; overflow-y: auto; }
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu nav { display: grid; }
.mobile-menu nav a { display: flex; align-items: baseline; gap: 15px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-family: var(--display); font-size: clamp(34px, 10vw, 52px); line-height: 1; letter-spacing: -.055em; }
.mobile-menu nav span { font-family: var(--mono); font-size: 9px; color: var(--pink); letter-spacing: .1em; }
.mobile-menu-bottom { margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; }
.mobile-menu-bottom p { margin: 0; color: var(--muted); font-size: 12px; }

.hero { min-height: 960px; height: max(100svh, 900px); padding-top: 120px; position: relative; overflow: hidden; background: radial-gradient(circle at 72% 46%, rgba(255,42,161,.15), transparent 29%), linear-gradient(180deg, #0a0710, #0c0811); }
.hero-grid, .community-grid { position: absolute; inset: 0; opacity: .25; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 56px 56px; mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%); }
.hero::before { content: ""; position: absolute; width: 62vw; height: 62vw; max-width: 920px; max-height: 920px; right: 2vw; top: 5vh; border: 1px solid rgba(255,42,161,.17); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,42,161,.025), 0 0 0 160px rgba(255,42,161,.016); }
.hero-word { position: absolute; z-index: 0; font-family: var(--display); font-size: clamp(180px, 25vw, 420px); line-height: .72; font-weight: 800; letter-spacing: -.1em; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.05); pointer-events: none; white-space: nowrap; }
.hero-word-pink { left: -4vw; top: 25%; }
.hero-word-shit { left: 28vw; bottom: 2%; }
.hero-shell { width: var(--shell); height: calc(100% - 84px); margin: 0 auto; position: relative; display: grid; grid-template-columns: 1.1fr .9fr; grid-template-rows: 1fr auto; align-items: center; z-index: 2; }
.hero-meta { position: absolute; top: 52px; left: 0; display: flex; gap: 50px; align-items: flex-start; }
.meta-index, .section-code { font-family: var(--mono); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.hero-meta p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.55; text-transform: uppercase; letter-spacing: .08em; }
.hero-meta strong { color: var(--white); font-weight: 500; }
.hero-copy { position: relative; z-index: 3; max-width: 610px; margin-top: 82px; }
.eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 25px; font-family: var(--mono); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; color: #c3b7c6; }
.eyebrow i { width: 31px; height: 1px; background: var(--pink); }
.hero-copy h1 { margin: 0; font-family: var(--display); font-size: clamp(60px, 6.8vw, 118px); font-weight: 750; line-height: .82; letter-spacing: -.075em; }
.hero-copy h1 em, .manifesto-intro h2 em, .buy-intro h2 em { color: var(--pink); font-style: normal; }
.hero-copy > p { max-width: 560px; margin: 30px 0 0; color: #c6bbc9; font-size: clamp(15px, 1.2vw, 18px); line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 38px; }
.text-link { display: inline-flex; align-items: center; gap: 14px; font-size: 12px; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.25); padding-bottom: 5px; transition: color .2s ease, border-color .2s ease; }
.text-link:hover { color: var(--pink); border-color: var(--pink); }
.text-link b { color: var(--pink); }
.hero-art { position: absolute; right: -1%; top: 50%; width: min(44vw, 610px); aspect-ratio: 1; transform: translateY(-48%); transform-style: preserve-3d; perspective: 1200px; z-index: 2; }
.art-glow { position: absolute; inset: 20%; border-radius: 50%; background: var(--pink); filter: blur(80px); opacity: .27; }
.mascot-frame { position: absolute; inset: 10%; border-radius: 45% 45% 46% 46% / 45% 45% 42% 42%; background: linear-gradient(145deg, #ff61bd, #ff1494 60%, #b50767); border: 1px solid rgba(255,255,255,.38); box-shadow: inset 0 2px 0 rgba(255,255,255,.3), 0 50px 120px rgba(255,22,145,.22); overflow: hidden; transform: translateZ(40px); }
.mascot-frame::before { content: ""; position: absolute; inset: 5%; border: 1px solid rgba(255,255,255,.22); border-radius: inherit; }
.mascot-frame img { width: 113%; max-width: none; position: absolute; left: -7%; bottom: -8%; filter: drop-shadow(0 35px 30px rgba(45,0,26,.36)); z-index: 2; }
.frame-label { position: absolute; z-index: 4; left: 50%; width: max-content; transform: translateX(-50%); font-family: var(--mono); font-size: 8px; letter-spacing: .16em; color: rgba(30,0,18,.68); }
.frame-label-top { top: 17px; }
.frame-label-bottom { bottom: 17px; }
.orbit { position: absolute; border: 1px dashed rgba(255,255,255,.18); border-radius: 50%; animation: spin 34s linear infinite; }
.orbit::after { content: ""; position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--pink); left: 50%; top: -4px; box-shadow: 0 0 24px var(--pink); }
.orbit-a { inset: 1%; }
.orbit-b { inset: -5%; animation-direction: reverse; animation-duration: 48s; border-color: rgba(255,42,161,.16); }
.sticker { position: absolute; z-index: 6; display: grid; place-items: center; text-align: center; font-family: var(--display); font-weight: 800; letter-spacing: -.05em; line-height: .8; color: var(--ink); border: 2px solid var(--ink); box-shadow: 5px 5px 0 var(--ink); transform: translateZ(70px) rotate(var(--r)); }
.sticker-one { --r: -9deg; width: 82px; height: 82px; border-radius: 50%; background: var(--cream); left: 3%; top: 21%; font-size: 17px; }
.sticker-two { --r: 8deg; width: 82px; height: 70px; border-radius: 18px; background: var(--lime); right: 1%; top: 27%; font-size: 17px; }
.sticker-three { --r: -4deg; width: 88px; height: 66px; border-radius: 50%; background: var(--violet); color: #fff; right: 8%; bottom: 16%; font-size: 15px; }
.hero-chip { position: absolute; z-index: 8; left: 4%; bottom: 8%; min-width: 162px; height: 54px; display: grid; grid-template-columns: auto 1fr; grid-template-rows: 1fr 1fr; align-items: center; column-gap: 9px; padding: 8px 13px; border: 1px solid rgba(255,255,255,.18); border-radius: 14px; background: rgba(10,7,16,.72); backdrop-filter: blur(12px); box-shadow: 0 16px 40px rgba(0,0,0,.3); }
.hero-chip i { grid-row: 1 / 3; width: 9px; height: 9px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 0 6px rgba(255,42,161,.12); }
.hero-chip span { align-self: end; font-size: 11px; font-weight: 700; }
.hero-chip b { align-self: start; color: var(--muted); font-family: var(--mono); font-size: 7px; letter-spacing: .14em; }
.hero-side-note { position: absolute; right: 0; bottom: 38px; width: 280px; border-top: 1px solid rgba(255,255,255,.15); padding-top: 16px; }
.hero-side-note span { color: var(--pink); font-family: var(--mono); font-size: 8px; letter-spacing: .15em; }
.hero-side-note p { margin: 9px 0 0; color: var(--muted); font-size: 11px; line-height: 1.6; }
.hero-bottom { position: absolute; z-index: 5; left: 0; right: 0; bottom: 0; min-height: 84px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)) .8fr; border-top: 1px solid rgba(255,255,255,.1); background: rgba(10,7,16,.54); backdrop-filter: blur(12px); }
.proof-pill, .proof-link { min-width: 0; padding: 17px 24px; border-right: 1px solid rgba(255,255,255,.1); display: flex; flex-direction: column; justify-content: center; }
.proof-pill span { color: var(--muted); font-family: var(--mono); font-size: 8px; letter-spacing: .13em; }
.proof-pill strong { overflow: hidden; margin-top: 3px; font-size: 12px; font-weight: 600; white-space: nowrap; text-overflow: ellipsis; }
.proof-link { flex-direction: row; align-items: center; justify-content: space-between; border-right: 0; color: var(--pink); font-size: 11px; font-weight: 700; }
.proof-link b { font-size: 18px; }

.section-shell { width: var(--shell); margin: 0 auto; position: relative; z-index: 2; }
.section-light { background: var(--cream); color: var(--ink); }
.section-dark { background: var(--ink); color: white; }
.section-pink { background: var(--pink); color: var(--ink); }
.section-code { display: flex; align-items: center; gap: 16px; color: #796d77; }
.section-code span { min-width: 40px; }
.section-code span::after { content: ""; display: inline-block; width: 25px; height: 1px; margin-left: 12px; vertical-align: middle; background: currentColor; opacity: .4; }
.section-code b { font-weight: 500; }
.section-code.light { color: #9d92a3; }
.section-code.dark { color: rgba(10,7,16,.62); }

.manifesto { padding: clamp(110px, 12vw, 180px) 0 clamp(100px, 11vw, 160px); }
.manifesto-intro { display: grid; grid-template-columns: 1.3fr .7fr; column-gap: 80px; align-items: end; }
.manifesto-intro .section-code { grid-column: 1 / -1; margin-bottom: 42px; }
.manifesto-intro h2, .truth-heading h2, .buy-intro h2, .playbook-heading h2, .faq-intro h2 { margin: 0; font-family: var(--display); font-size: clamp(58px, 7vw, 112px); font-weight: 720; line-height: .86; letter-spacing: -.075em; }
.intro-copy { max-width: 510px; justify-self: end; }
.intro-copy p { color: var(--muted-dark); font-size: 15px; line-height: 1.75; }
.intro-copy p + p { margin-top: 22px; }
.manifesto-statements { margin-top: 78px; display: grid; grid-template-columns: 1.06fr .94fr .94fr; gap: 16px; align-items: stretch; }
.statement-card { min-height: 485px; padding: 26px; border-radius: 34px; position: relative; overflow: hidden; transform-style: preserve-3d; box-shadow: 0 24px 55px rgba(32,18,26,.09); }
.statement-top { display: flex; align-items: center; justify-content: space-between; font-family: var(--mono); font-size: 8px; letter-spacing: .13em; }
.statement-card h3 { max-width: 360px; margin: 118px 0 18px; font-family: var(--display); font-size: clamp(37px, 3.3vw, 55px); line-height: .92; letter-spacing: -.06em; }
.statement-card p { max-width: 340px; margin: 0; font-size: 13px; line-height: 1.7; opacity: .72; }
.statement-dark { color: white; background: var(--ink); }
.statement-pink { background: var(--pink); }
.statement-cream { border: 1px solid rgba(10,7,16,.1); background: var(--paper); }
.statement-mark { position: absolute; right: -24px; bottom: -28px; width: 220px; height: 220px; opacity: .18; transform: rotate(-8deg); pointer-events: none; z-index: 0; }
.statement-mark img { width: 100%; }
.mini-collage { position: absolute; right: 22px; bottom: 26px; width: 180px; height: 130px; }
.mini-collage i { position: absolute; display: grid; place-items: center; width: 90px; height: 55px; border: 2px solid var(--ink); background: var(--cream); box-shadow: 5px 5px 0 var(--ink); font-family: var(--display); font-size: 20px; font-style: normal; font-weight: 800; }
.mini-collage i:nth-child(1) { left: 0; top: 0; transform: rotate(-8deg); }
.mini-collage i:nth-child(2) { right: 0; top: 25px; background: var(--lime); transform: rotate(7deg); }
.mini-collage i:nth-child(3) { left: 35px; bottom: 0; background: var(--violet); color: #fff; transform: rotate(-2deg); }
.verification-seal { position: absolute; right: 24px; bottom: 30px; width: 132px; height: 132px; border: 1px solid var(--line-dark); border-radius: 50%; display: grid; place-items: center; animation: spin 18s linear infinite; }
.verification-seal span { position: absolute; font-family: var(--mono); font-size: 7px; letter-spacing: .17em; }
.verification-seal span:first-child { top: 14px; }
.verification-seal span:last-child { bottom: 14px; transform: rotate(180deg); }
.verification-seal b { font-size: 34px; color: var(--pink); }

.culture-break { position: relative; overflow: hidden; min-height: 840px; color: var(--ink); background: var(--pink); }
.culture-marquee { height: 58px; display: flex; align-items: center; min-width: max-content; gap: 26px; padding-left: 26px; border-block: 1px solid rgba(10,7,16,.24); font-family: var(--display); font-size: 15px; font-weight: 800; letter-spacing: -.02em; animation: ticker 26s linear infinite; }
.culture-marquee span, .culture-marquee i { flex: none; }
.culture-marquee i { font-style: normal; }
.culture-inner { width: var(--shell); min-height: 780px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; position: relative; }
.culture-quote { position: relative; z-index: 3; max-width: 560px; }
.culture-quote > span { font-family: var(--mono); font-size: 10px; letter-spacing: .17em; }
.culture-quote h2 { margin: 10px 0 24px; font-family: var(--display); font-size: clamp(64px, 8vw, 136px); line-height: .76; letter-spacing: -.085em; font-weight: 760; }
.culture-quote p { max-width: 470px; margin: 0; font-size: 16px; line-height: 1.7; }
.culture-visual { position: absolute; right: -2%; bottom: -8%; width: min(48vw, 640px); aspect-ratio: 1; z-index: 2; }
.culture-visual img { position: absolute; z-index: 3; width: 86%; right: 0; bottom: 0; filter: drop-shadow(0 42px 32px rgba(59,0,35,.3)); }
.sunburst { position: absolute; inset: 13% 5% 5% 14%; border-radius: 50%; background: repeating-conic-gradient(from 0deg, rgba(255,255,255,.21) 0 7deg, transparent 7deg 15deg); animation: spin 42s linear infinite; }
.sunburst::before { content: ""; position: absolute; inset: 13%; border-radius: 50%; background: var(--pink); }
.speech { position: absolute; z-index: 5; padding: 14px 18px; border: 2px solid var(--ink); border-radius: 18px; background: var(--cream); box-shadow: 7px 7px 0 var(--ink); font-family: var(--display); font-size: 17px; font-weight: 800; line-height: .88; transform: rotate(var(--r)); }
.speech-a { --r: -7deg; left: 4%; top: 20%; }
.speech-b { --r: 7deg; right: 2%; top: 36%; background: var(--lime); }

.truth { padding: clamp(115px, 12vw, 180px) 0; overflow: hidden; }
.truth::before { content: "TRUTH"; position: absolute; right: -5vw; top: 2%; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.035); font-family: var(--display); font-size: 32vw; line-height: 1; font-weight: 800; letter-spacing: -.1em; }
.truth-heading { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 80px; }
.truth-heading .section-code { grid-column: 1 / -1; margin-bottom: 42px; }
.truth-heading p { max-width: 500px; justify-self: end; margin: 0 0 5px; color: var(--muted); font-size: 15px; line-height: 1.75; }
.truth-terminal { margin-top: 72px; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 28px; background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018)); box-shadow: 0 40px 120px rgba(0,0,0,.28); }
.terminal-bar { height: 52px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 18px; border-bottom: 1px solid rgba(255,255,255,.1); font-family: var(--mono); font-size: 8px; letter-spacing: .13em; color: var(--muted); }
.terminal-bar > div { display: flex; gap: 6px; }
.terminal-bar i { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.22); }
.terminal-bar i:first-child { background: var(--pink); }
.terminal-bar b { justify-self: end; color: var(--lime); font-weight: 500; }
.terminal-grid { padding: 25px; display: grid; grid-template-columns: .7fr 1.3fr; gap: 0; }
.token-id { display: flex; align-items: center; gap: 25px; padding: 20px 28px 28px 10px; border-right: 1px solid rgba(255,255,255,.1); }
.token-logo { width: 132px; height: 132px; flex: none; border-radius: 34px; display: grid; place-items: center; background: radial-gradient(circle at 32% 20%, #ff95d2, var(--pink) 48%, #a60864); box-shadow: 0 20px 55px rgba(255,42,161,.23); }
.token-logo img { width: 112px; }
.token-id span, .address-heading span { color: var(--muted); font-family: var(--mono); font-size: 8px; letter-spacing: .14em; }
.token-id h3 { margin: 6px 0 0; font-family: var(--display); font-size: clamp(38px, 4vw, 60px); line-height: .88; letter-spacing: -.065em; }
.token-id p { margin: 8px 0 0; color: var(--muted); font-size: 12px; }
.token-data { margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); }
.token-data div { padding: 20px; border-bottom: 1px solid rgba(255,255,255,.1); border-right: 1px solid rgba(255,255,255,.1); min-height: 88px; }
.token-data div:nth-child(3n) { border-right: 0; }
.token-data div:nth-last-child(-n+3) { border-bottom: 0; }
.token-data dt { color: var(--muted); font-family: var(--mono); font-size: 8px; letter-spacing: .09em; }
.token-data dd { margin: 10px 0 0; font-size: 12px; font-weight: 600; overflow-wrap: anywhere; }
.status-value { display: flex; align-items: center; gap: 8px; }
.status-value i { width: 7px; height: 7px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 0 5px rgba(255,42,161,.1); }
.address-block { grid-column: 1 / -1; margin-top: 0; padding: 24px 10px 6px; border-top: 1px solid rgba(255,255,255,.1); }
.address-heading { display: flex; align-items: center; justify-content: space-between; }
.address-heading b { color: var(--pink); font-family: var(--mono); font-size: 8px; letter-spacing: .12em; }
.address-block code { display: block; margin-top: 15px; min-height: 56px; padding: 17px 18px; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; background: rgba(0,0,0,.2); color: #ded4df; font-family: var(--mono); font-size: 11px; overflow-wrap: anywhere; }
.address-actions { display: flex; gap: 8px; margin-top: 10px; }
.address-actions button, .address-actions a { min-height: 42px; flex: 1; display: flex; align-items: center; justify-content: space-between; padding: 0 13px; border: 1px solid rgba(255,255,255,.1); border-radius: 12px; background: rgba(255,255,255,.03); color: #fff; font-size: 10px; cursor: pointer; transition: background .2s ease, border-color .2s ease; }
.address-actions button:not(:disabled):hover, .address-actions a:not([aria-disabled="true"]):hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.22); }
.address-actions button:disabled, .address-actions a[aria-disabled="true"] { color: #635c67; cursor: not-allowed; }
.address-actions b { font-family: var(--mono); font-size: 8px; font-weight: 400; }
.truth-rules { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 54px; background: rgba(255,255,255,.1); }
.truth-rules article { min-height: 270px; padding: 30px; background: var(--ink); }
.truth-rules span { color: var(--pink); font-family: var(--mono); font-size: 8px; letter-spacing: .13em; }
.truth-rules h3 { margin: 64px 0 14px; font-family: var(--display); font-size: 27px; line-height: 1; letter-spacing: -.045em; }
.truth-rules p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }

.buy { padding: clamp(110px, 12vw, 180px) 0; overflow: hidden; }
.buy::before { content: "BUY"; position: absolute; right: -2vw; top: 1%; color: transparent; -webkit-text-stroke: 1px rgba(10,7,16,.12); font-family: var(--display); font-size: 36vw; font-weight: 800; line-height: 1; letter-spacing: -.1em; }
.buy-intro { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 80px; }
.buy-intro .section-code { grid-column: 1 / -1; margin-bottom: 42px; }
.buy-intro h2 em { color: var(--cream); }
.buy-intro p { max-width: 500px; justify-self: end; margin: 0 0 5px; font-size: 15px; line-height: 1.75; }
.buy-steps { margin-top: 78px; display: grid; grid-template-columns: repeat(4, 1fr); border: 2px solid var(--ink); border-radius: 30px; overflow: hidden; box-shadow: 12px 12px 0 var(--ink); }
.buy-step { min-height: 430px; position: relative; padding: 24px; border-right: 1px solid rgba(10,7,16,.28); background: rgba(255,255,255,.08); }
.buy-step:last-child { border-right: 0; }
.step-number { font-family: var(--mono); font-size: 9px; letter-spacing: .15em; }
.step-icon { width: 88px; height: 88px; margin: 68px 0 40px; border: 2px solid var(--ink); border-radius: 24px; display: grid; place-items: center; background: var(--cream); box-shadow: 6px 6px 0 var(--ink); transition: transform .35s var(--ease), background .35s ease; }
.buy-step:hover .step-icon { transform: translateY(-7px) rotate(-3deg); background: var(--lime); }
.step-icon svg { width: 43px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.buy-step h3 { margin: 0 0 14px; font-family: var(--display); font-size: 27px; line-height: .96; letter-spacing: -.045em; }
.buy-step p { margin: 0; font-size: 12px; line-height: 1.7; opacity: .7; }
.buy-cta { margin-top: 48px; padding-top: 28px; border-top: 1px solid rgba(10,7,16,.25); display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.buy-cta > div { max-width: 690px; }
.buy-cta span { font-family: var(--mono); font-size: 8px; letter-spacing: .14em; }
.buy-cta p { margin: 10px 0 0; font-size: 12px; line-height: 1.65; }

.playbook { padding: clamp(110px, 12vw, 180px) 0; }
.playbook-heading { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 80px; }
.playbook-heading .section-code { grid-column: 1 / -1; margin-bottom: 42px; }
.playbook-heading p { max-width: 500px; justify-self: end; margin: 0 0 5px; color: var(--muted-dark); font-size: 15px; line-height: 1.75; }
.timeline { position: relative; margin-top: 84px; }
.timeline-line { position: absolute; left: 126px; top: 0; bottom: 0; width: 1px; background: rgba(10,7,16,.17); }
.timeline-line i { position: absolute; left: 0; top: 0; width: 1px; height: 0; background: var(--pink); }
.timeline-item { position: relative; min-height: 220px; display: grid; grid-template-columns: 112px 28px 1fr; gap: 0; border-top: 1px solid rgba(10,7,16,.14); }
.timeline-item:last-child { border-bottom: 1px solid rgba(10,7,16,.14); }
.timeline-index { padding-top: 28px; font-family: var(--mono); font-size: 8px; letter-spacing: .13em; }
.timeline-dot { width: 13px; height: 13px; margin: 27px auto 0; border: 3px solid var(--cream); border-radius: 50%; background: var(--ink); box-shadow: 0 0 0 1px var(--ink); z-index: 2; }
.timeline-item:first-of-type .timeline-dot { background: var(--pink); box-shadow: 0 0 0 1px var(--pink), 0 0 0 7px rgba(255,42,161,.12); }
.timeline-content { padding: 26px 0 42px 48px; display: grid; grid-template-columns: 140px 1fr .7fr; gap: 30px; align-items: start; }
.timeline-content > span { color: #847983; font-family: var(--mono); font-size: 8px; letter-spacing: .14em; }
.timeline-content h3 { margin: -4px 0 0; max-width: 520px; font-family: var(--display); font-size: clamp(27px, 2.6vw, 42px); line-height: .95; letter-spacing: -.055em; }
.timeline-content p { margin: 0; color: var(--muted-dark); font-size: 12px; line-height: 1.7; }

.community { min-height: 850px; overflow: hidden; }
.community::before { content: "PINK"; position: absolute; left: -4vw; bottom: -6%; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.055); font-family: var(--display); font-size: 34vw; line-height: 1; font-weight: 800; letter-spacing: -.1em; }
.community-shell { min-height: 850px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; position: relative; }
.community-copy { position: relative; z-index: 4; max-width: 580px; }
.community-copy .section-code { margin-bottom: 70px; }
.community-pretitle { color: var(--pink); font-family: var(--mono); font-size: 10px; letter-spacing: .17em; }
.community-copy h2 { margin: -6px 0 28px; color: var(--pink); font-family: var(--display); font-size: clamp(100px, 13vw, 220px); line-height: .75; letter-spacing: -.1em; }
.community-copy p { max-width: 500px; margin: 0; color: #c0b4c3; font-size: 15px; line-height: 1.75; }
.community-actions { display: flex; gap: 12px; margin-top: 36px; }
.community-art { position: absolute; right: -2%; bottom: -8%; width: min(46vw, 620px); aspect-ratio: 1; z-index: 2; }
.community-art img { position: absolute; z-index: 3; width: 90%; right: 0; bottom: 0; filter: drop-shadow(0 45px 38px rgba(0,0,0,.42)); }
.community-ring { position: absolute; inset: 11%; border: 1px solid rgba(255,42,161,.2); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,42,161,.025), 0 0 0 140px rgba(255,42,161,.015); }
.community-ring::before { content: ""; position: absolute; inset: 13%; border-radius: 50%; background: radial-gradient(circle, rgba(255,42,161,.34), rgba(255,42,161,.05) 58%, transparent 70%); filter: blur(15px); }
.community-ring span { display: none; }
.community-tag { position: absolute; z-index: 5; width: 115px; min-height: 76px; padding: 15px; border: 2px solid var(--ink); border-radius: 18px; color: var(--ink); background: var(--cream); box-shadow: 7px 7px 0 var(--pink); font-family: var(--display); font-size: 17px; font-weight: 800; line-height: .85; }
.tag-left { left: 2%; top: 22%; transform: rotate(-8deg); }
.tag-right { right: 0; top: 36%; transform: rotate(7deg); background: var(--lime); }

.faq { padding: clamp(110px, 11vw, 165px) 0; }
.faq-shell { display: grid; grid-template-columns: .72fr 1.28fr; gap: 100px; }
.faq-intro { position: sticky; top: 145px; align-self: start; }
.faq-intro .section-code { margin-bottom: 48px; }
.faq-intro p { max-width: 380px; margin: 28px 0 0; color: var(--muted-dark); font-size: 14px; line-height: 1.75; }
.faq-orb { width: 70px; height: 70px; display: grid; place-items: center; margin-top: 38px; border-radius: 50%; color: var(--pink); background: var(--ink); font-family: var(--display); font-size: 32px; box-shadow: 8px 8px 0 var(--pink); }
.faq-list { border-top: 1px solid rgba(10,7,16,.18); }
.faq-list details { border-bottom: 1px solid rgba(10,7,16,.18); }
.faq-list summary { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; font-family: var(--display); font-size: 21px; font-weight: 650; letter-spacing: -.03em; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: relative; width: 28px; height: 28px; flex: none; border: 1px solid rgba(10,7,16,.22); border-radius: 50%; }
.faq-list summary span::before, .faq-list summary span::after { content: ""; position: absolute; left: 8px; right: 8px; top: 13px; height: 1px; background: var(--ink); transition: transform .25s ease; }
.faq-list summary span::after { transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details > div { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
.faq-list details[open] > div { grid-template-rows: 1fr; }
.faq-list details p { overflow: hidden; max-width: 660px; margin: 0; padding: 0 60px 28px 0; color: var(--muted-dark); font-size: 13px; line-height: 1.75; }

.site-footer { position: relative; z-index: 2; padding: 70px max(36px, calc((100vw - min(1440px, calc(100vw - 72px))) / 2)) 24px; background: #07050a; }
.footer-top { display: grid; grid-template-columns: 1.2fr 1fr .8fr .5fr; gap: 40px; align-items: start; padding-bottom: 58px; }
.footer-brand { display: inline-flex; align-items: center; gap: 11px; width: fit-content; font-family: var(--display); font-size: 22px; font-weight: 800; letter-spacing: -.05em; }
.footer-brand img { width: 40px; }
.footer-top > p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
.footer-top nav, .footer-social { display: grid; gap: 9px; }
.footer-top nav a, .footer-social a { color: #b8acbc; font-size: 11px; transition: color .2s ease; }
.footer-top nav a:hover, .footer-social a:hover { color: var(--pink); }
.footer-risk { display: grid; grid-template-columns: 170px 1fr; gap: 40px; padding: 20px; border: 1px solid rgba(255,255,255,.1); border-radius: 16px; background: rgba(255,255,255,.025); }
.footer-risk span { color: var(--pink); font-family: var(--mono); font-size: 8px; letter-spacing: .14em; }
.footer-risk p { margin: 0; color: #756c79; font-size: 9px; line-height: 1.7; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 22px; color: #5f5663; font-family: var(--mono); font-size: 8px; letter-spacing: .08em; }
.footer-bottom a { color: #aca0af; }
.toast { position: fixed; z-index: 200; left: 50%; bottom: 24px; transform: translate(-50%, 25px); padding: 12px 18px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; background: rgba(10,7,16,.9); color: #fff; backdrop-filter: blur(14px); font-size: 11px; opacity: 0; visibility: hidden; transition: opacity .25s ease, transform .25s var(--ease), visibility .25s; }
.toast.is-visible { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .22s; }
.reveal-delay-3 { transition-delay: .32s; }
.no-js .reveal { opacity: 1; transform: none; }

@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes grain { 0% { transform: translate(0,0); } 25% { transform: translate(2%,-3%); } 50% { transform: translate(-3%,2%); } 75% { transform: translate(3%,3%); } 100% { transform: translate(-2%,-2%); } }

@media (max-width: 1180px) {
  :root { --shell: min(100% - 48px, 1180px); }
  .desktop-nav { gap: 20px; }
  .hero-art { width: 55vw; right: -5%; }
  .hero-copy { max-width: 580px; }
  .statement-card h3 { margin-top: 90px; }
  .truth-heading, .buy-intro, .playbook-heading { gap: 45px; }
  .token-id { padding-right: 18px; gap: 16px; }
  .token-logo { width: 104px; height: 104px; }
  .token-logo img { width: 90px; }
  .timeline-content { grid-template-columns: 100px 1fr .7fr; }
  .community-art { width: 69vw; right: -9%; }
}

@media (max-width: 1020px) {
  .desktop-nav, .social-button, .button-nav { display: none; }
  .menu-button, .mobile-menu { display: block; }
  .mobile-menu { display: flex; flex-direction: column; }
  .nav-wrap { grid-template-columns: 1fr auto; }
  .hero { min-height: 980px; height: auto; padding-top: 150px; padding-bottom: 110px; }
  .hero-shell { height: auto; min-height: 790px; grid-template-columns: 1fr; align-items: start; }
  .hero-meta { top: 0; }
  .hero-copy { margin-top: 125px; max-width: 660px; }
  .hero-copy h1 { font-size: clamp(70px, 11vw, 105px); }
  .hero-copy > p { max-width: 520px; }
  .hero-art { width: min(66vw, 620px); right: -12%; top: 58%; }
  .hero-side-note { display: none; }
  .hero-bottom { grid-template-columns: repeat(3, 1fr); }
  .proof-link { display: none; }
  .manifesto-intro, .truth-heading, .buy-intro, .playbook-heading { grid-template-columns: 1fr; }
  .intro-copy, .truth-heading p, .buy-intro p, .playbook-heading p { max-width: 620px; justify-self: start; margin-top: 30px; }
  .manifesto-statements { grid-template-columns: 1fr 1fr; }
  .statement-card:first-child { grid-column: 1 / -1; min-height: 430px; }
  .statement-card:first-child h3 { max-width: 500px; }
  .culture-inner { grid-template-columns: 1fr; align-items: start; padding-top: 110px; }
  .culture-visual { width: min(92vw, 760px); right: -14%; }
  .culture-quote { z-index: 6; }
  .terminal-grid { grid-template-columns: 1fr; }
  .token-id { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .buy-steps { grid-template-columns: 1fr 1fr; }
  .buy-step:nth-child(2) { border-right: 0; }
  .buy-step:nth-child(-n+2) { border-bottom: 1px solid rgba(10,7,16,.28); }
  .timeline-content { grid-template-columns: 1fr 1fr; }
  .timeline-content > span { grid-column: 1 / -1; }
  .community-shell { grid-template-columns: 1fr; align-items: start; padding-top: 110px; }
  .community-art { width: min(92vw, 760px); right: -17%; }
  .community-copy { z-index: 6; }
  .faq-shell { grid-template-columns: 1fr; gap: 70px; }
  .faq-intro { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  :root { --shell: calc(100vw - 32px); }
  .notice-bar { height: 30px; }
  .site-header { top: 30px; }
  .site-header.is-scrolled { top: 0; }
  .nav-wrap { height: 70px; }
  .brand { font-size: 16px; }
  .brand img { width: 31px; height: 31px; }
  .mobile-menu { padding-top: 100px; }
  .hero { min-height: auto; padding-top: 120px; padding-bottom: 88px; }
  .hero::before { width: 110vw; height: 110vw; right: -44vw; top: 31%; }
  .hero-shell { min-height: auto; grid-template-columns: 1fr; }
  .hero-meta { position: relative; top: auto; gap: 22px; }
  .meta-index { max-width: 120px; }
  .hero-copy { margin-top: 36px; max-width: 100%; }
  .eyebrow { font-size: 7px; gap: 8px; margin-bottom: 18px; }
  .eyebrow i { width: 17px; }
  .hero-copy h1 { font-size: clamp(48px, 15vw, 68px); line-height: .84; }
  .hero-copy > p { max-width: 100%; margin-top: 22px; font-size: 13px; line-height: 1.65; }
  .hero-actions { margin-top: 26px; gap: 18px; flex-wrap: wrap; }
  .button-xl { min-height: 58px; padding-inline: 22px; }
  .text-link { font-size: 10px; }
  .hero-art { position: relative; width: min(85vw, 420px); right: auto; top: auto; margin: 36px auto 0; transform: none; opacity: 1; z-index: 2; }
  .sticker { display: none; }
  .frame-label { font-size: 5px; }
  .hero-chip { left: 3%; bottom: 6%; transform: scale(.85); transform-origin: left bottom; }
  .hero-word { font-size: 54vw; }
  .hero-bottom { position: relative; margin-top: 40px; min-height: 68px; grid-template-columns: 1fr 1fr; }
  .proof-pill { padding: 12px 13px; }
  .proof-pill:nth-child(3) { display: none; }
  .proof-pill span { font-size: 6px; }
  .proof-pill strong { font-size: 9px; }
  .manifesto, .truth, .buy, .playbook, .faq { padding: 70px 0; }
  .section-code { font-size: 7px; }
  .manifesto-intro .section-code, .truth-heading .section-code, .buy-intro .section-code, .playbook-heading .section-code { margin-bottom: 28px; }
  .manifesto-intro h2, .truth-heading h2, .buy-intro h2, .playbook-heading h2, .faq-intro h2 { font-size: clamp(42px, 12vw, 64px); }
  .intro-copy, .truth-heading p, .buy-intro p, .playbook-heading p { margin-top: 22px; font-size: 13px; }
  .manifesto-statements { margin-top: 40px; grid-template-columns: 1fr; }
  .statement-card:first-child { grid-column: auto; }
  .statement-card { min-height: 340px; border-radius: 26px; }
  .statement-card h3 { margin-top: 60px; font-size: 34px; }
  .culture-break { min-height: auto; padding-bottom: 60px; }
  .culture-marquee { height: 50px; font-size: 12px; }
  .culture-inner { min-height: auto; padding-top: 60px; grid-template-columns: 1fr; }
  .culture-quote > span { font-size: 8px; }
  .culture-quote h2 { font-size: 18vw; margin-top: 7px; }
  .culture-quote p { max-width: 100%; font-size: 13px; }
  .culture-visual { position: relative; right: auto; bottom: auto; width: min(85vw, 440px); margin: 30px auto 0; opacity: 1; }
  .speech { font-size: 11px; padding: 8px 10px; box-shadow: 4px 4px 0 var(--ink); }
  .speech-a { left: 4%; top: 12%; }
  .speech-b { right: 2%; top: 32%; }
  .truth-terminal { margin-top: 40px; border-radius: 20px; }
  .terminal-bar { grid-template-columns: 1fr auto; }
  .terminal-bar > span { display: none; }
  .terminal-grid { padding: 14px; }
  .token-id { padding: 15px 10px 22px; }
  .token-logo { width: 70px; height: 70px; border-radius: 20px; }
  .token-logo img { width: 58px; }
  .token-id h3 { font-size: 30px; }
  .token-data { grid-template-columns: 1fr 1fr; }
  .token-data div:nth-child(3n) { border-right: 1px solid rgba(255,255,255,.1); }
  .token-data div:nth-child(2n) { border-right: 0; }
  .token-data div:nth-last-child(-n+3) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .token-data div:nth-last-child(-n+2) { border-bottom: 0; }
  .token-data div { padding: 14px; min-height: 75px; }
  .token-data dt { font-size: 6px; }
  .token-data dd { font-size: 10px; }
  .address-block { padding: 18px 0 0; }
  .address-heading { align-items: flex-start; gap: 15px; }
  .address-heading span, .address-heading b { font-size: 6px; }
  .address-block code { font-size: 8px; line-height: 1.6; }
  .address-actions { flex-wrap: wrap; }
  .address-actions button, .address-actions a { flex: 1 1 calc(50% - 4px); font-size: 8px; }
  .truth-rules { grid-template-columns: 1fr; }
  .truth-rules article { min-height: 200px; padding: 22px; }
  .truth-rules h3 { margin-top: 36px; font-size: 22px; }
  .buy-steps { grid-template-columns: 1fr; box-shadow: 6px 6px 0 var(--ink); }
  .buy-step { min-height: 260px; border-right: 0; border-bottom: 1px solid rgba(10,7,16,.28); padding: 20px; }
  .buy-step:last-child { border-bottom: 0; }
  .step-icon { width: 60px; height: 60px; margin: 30px 0 20px; }
  .step-icon svg { width: 30px; }
  .buy-cta { flex-direction: column; align-items: stretch; gap: 20px; }
  .buy-cta .button { align-self: flex-start; }
  .timeline { margin-top: 40px; }
  .timeline-line { left: 60px; }
  .timeline-item { grid-template-columns: 50px 20px 1fr; min-height: 220px; }
  .timeline-content { grid-template-columns: 1fr; padding-left: 16px; gap: 10px; }
  .timeline-content > span { grid-column: auto; }
  .timeline-content h3 { font-size: 24px; }
  .community { min-height: auto; padding-bottom: 60px; }
  .community-shell { min-height: auto; padding-top: 60px; grid-template-columns: 1fr; }
  .community-copy .section-code { margin-bottom: 36px; }
  .community-pretitle { font-size: 8px; }
  .community-copy h2 { font-size: 26vw; }
  .community-copy p { max-width: 100%; font-size: 13px; }
  .community-actions { flex-wrap: wrap; }
  .community-art { position: relative; right: auto; bottom: auto; width: min(85vw, 440px); margin: 30px auto 0; opacity: 1; }
  .community-tag { display: none; }
  .faq-shell { gap: 40px; }
  .faq-intro p { font-size: 13px; }
  .faq-list summary { min-height: 70px; font-size: 16px; }
  .faq-list details p { padding-right: 10px; font-size: 12px; }
  .site-footer { padding: 48px 16px 20px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-risk { grid-template-columns: 1fr; gap: 10px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .cursor { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .ambient-canvas, .cursor { display: none; }
  .reveal { opacity: 1; transform: none; }
}

/* Root clipping prevents decorative off-canvas art and marquees from creating horizontal page overflow. */
html, body { max-width: 100%; overflow-x: clip; }

/* Decorative layers are intentionally clipped inside their sections. */
.notice-bar, .site-header, main > section, .site-footer { overflow-x: clip; }
.grain { inset: 0; width: 100vw; height: 100vh; transform: scale(2); transform-origin: center; }
