:root {
  --bg: oklch(0.91 0.25 124);
  --surface: oklch(0.10 0.01 120);
  --fg: oklch(0.08 0.01 120);
  --muted: oklch(0.38 0.06 122);
  --border: oklch(0.24 0.04 122);
  --accent: oklch(0.91 0.25 124);
  --font-display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --font-body: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "Courier New", Courier, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  content: "";
  opacity: .09;
  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='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.85'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
p, h1, h2, figure { margin: 0; }
p { text-wrap: pretty; }
h1, h2 { font-family: var(--font-display); text-wrap: balance; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }

.container { width: min(100% - 48px, 1320px); margin-inline: auto; }
.section { padding-block: clamp(72px, 9vw, 144px); }
.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-link { position: fixed; top: 12px; left: 12px; z-index: 200; padding: 10px 14px; background: var(--accent); color: var(--fg); transform: translateY(-180%); }
.skip-link:focus { transform: translateY(0); }

.topnav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: color-mix(in oklch, var(--surface) 94%, transparent);
  border-bottom: 1px solid color-mix(in oklch, var(--accent) 36%, var(--surface));
  backdrop-filter: blur(12px);
}
.nav-inner { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { min-height: 44px; display: inline-flex; align-items: center; gap: 11px; color: var(--accent); font-family: var(--font-display); font-size: 22px; letter-spacing: .025em; }
.brand-mark { width: 38px; height: 38px; object-fit: contain; }
.brand small { display: block; color: color-mix(in oklch, var(--accent) 62%, var(--surface)); font-family: var(--font-mono); font-size: 9px; letter-spacing: .16em; }
.main-nav { display: flex; flex: 1; align-items: center; justify-content: flex-end; gap: clamp(22px, 3vw, 50px); }
.nav-sections, .nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-sections { gap: clamp(18px, 2.2vw, 38px); }
.nav-sections a, .footer-links a { color: color-mix(in oklch, var(--accent) 72%, var(--surface)); font-family: var(--font-mono); font-size: 12px; font-weight: 700; letter-spacing: .08em; }
.nav-sections a:hover, .footer-links a:hover { color: var(--accent); }
.menu-toggle { display: none; min-width: 44px; min-height: 44px; padding: 10px; border: 1px solid color-mix(in oklch, var(--accent) 55%, var(--surface)); background: transparent; }
.menu-toggle span:not(.sr-only) { display: block; width: 22px; height: 2px; margin: 4px auto; background: var(--accent); }

.btn, .icon-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 2px solid transparent;
  border-radius: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .065em;
  cursor: pointer;
  transition: transform .16s ease, background-color .16s ease, color .16s ease, border-color .16s ease;
}
.btn { padding: 10px 17px; }
.btn img { width: 22px; height: 22px; object-fit: contain; flex: 0 0 auto; }
[data-link="x"] img, [data-link="dex"] img { padding: 3px; background: var(--accent); }
.btn:hover, .icon-btn:hover { transform: translateY(-2px); }
.btn:active, .icon-btn:active { transform: translateY(1px); }
.btn-buy { background: var(--accent); color: var(--fg); border-color: var(--accent); }
.btn-buy:hover { background: color-mix(in oklch, var(--accent) 82%, var(--surface)); color: var(--fg); border-color: color-mix(in oklch, var(--accent) 82%, var(--surface)); }
.btn-dark { background: var(--surface); color: var(--accent); border-color: color-mix(in oklch, var(--accent) 42%, var(--surface)); }
.btn-dark:hover { background: color-mix(in oklch, var(--surface) 84%, var(--accent)); color: var(--accent); border-color: var(--accent); }
.btn-black { background: var(--fg); color: var(--accent); border-color: var(--fg); margin-top: 30px; }
.btn-black:hover { background: color-mix(in oklch, var(--fg) 86%, var(--bg)); color: var(--accent); }
.btn-outline { background: transparent; color: var(--fg); border-color: var(--fg); }
.btn-outline:hover { background: var(--fg); color: var(--accent); }
.icon-btn { width: 44px; padding: 8px; background: transparent; border-color: color-mix(in oklch, var(--accent) 38%, var(--surface)); }
.icon-btn img { width: 18px; height: 18px; object-fit: contain; }
.is-pending { opacity: .44; cursor: default; }
.is-pending:hover { transform: none; }

.hero { position: relative; min-height: min(840px, calc(100svh - 68px)); display: grid; overflow: hidden; background: var(--surface); }
.hero-art { position: absolute; inset: 0; }
.hero-art img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-inner { position: relative; z-index: 2; display: flex; align-items: center; padding-block: 72px; }
.hero-copy { width: min(610px, 52vw); padding: clamp(22px, 3vw, 42px); background: color-mix(in oklch, var(--surface) 88%, transparent); border-left: 8px solid var(--accent); box-shadow: 14px 14px 0 color-mix(in oklch, var(--surface) 58%, transparent); }
.eyebrow { margin-bottom: 18px; color: var(--accent); font-family: var(--font-mono); font-size: 11px; font-weight: 900; letter-spacing: .13em; }
.hero h1 { color: var(--accent); font-family: "Franklin Gothic Heavy", "Franklin Gothic Medium", "Aptos Display", sans-serif; font-size: clamp(64px, 8vw, 132px); font-weight: 900; line-height: .88; letter-spacing: -.012em; }
.hero-shout { margin-top: 22px; color: var(--accent); font-family: var(--font-display); font-size: clamp(18px, 2vw, 27px); line-height: 1.02; letter-spacing: .025em; }
.lead { margin-top: 18px; font-size: clamp(17px, 1.5vw, 21px); line-height: 1.45; }
.hero .lead { color: color-mix(in oklch, var(--accent) 78%, var(--surface)); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }

.section-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head .eyebrow { color: var(--muted); }
h2 { font-size: clamp(52px, 7vw, 108px); line-height: .84; letter-spacing: -.025em; }
.poster-section { background: var(--bg); }
.poster-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.5vw, 36px); align-items: start; }
.poster-card { position: relative; background: var(--surface); box-shadow: 10px 12px 0 color-mix(in oklch, var(--fg) 84%, transparent); transition: transform .2s ease, box-shadow .2s ease; }
.poster-card::after { position: absolute; inset: 0; content: ""; border: 1px solid color-mix(in oklch, var(--accent) 18%, transparent); pointer-events: none; }
.poster-card img { width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; }
.poster-a { transform: rotate(-1.2deg); }
.poster-b { transform: translateY(26px) rotate(.7deg); }
.poster-c { transform: rotate(-.5deg); }
.poster-card:hover { transform: translateY(-8px) rotate(0); box-shadow: 15px 18px 0 var(--fg); }

.about-section, .buy-section { background: var(--surface); color: var(--accent); border-top: 1px solid color-mix(in oklch, var(--accent) 30%, var(--surface)); }
.split-layout { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr); gap: clamp(42px, 7vw, 108px); align-items: center; }
.torn-frame { position: relative; padding: 9px; background: var(--accent); transform: rotate(-.55deg); }
.torn-frame::before, .torn-frame::after { position: absolute; z-index: 2; content: ""; background: var(--surface); }
.torn-frame::before { width: 23%; height: 14px; top: -5px; left: 15%; transform: rotate(2deg); }
.torn-frame::after { width: 18%; height: 12px; right: 10%; bottom: -4px; transform: rotate(-2deg); }
.torn-frame img { width: 100%; height: auto; aspect-ratio: 1586 / 992; object-fit: cover; }
.manifesto h2, .buy-copy h2 { color: var(--accent); }
.manifesto .lead { color: color-mix(in oklch, var(--accent) 76%, var(--surface)); max-width: 36ch; }
.manifesto-lines { margin-top: 34px; font-family: var(--font-display); font-size: clamp(29px, 3.1vw, 49px); line-height: .98; }
.small-copy { margin-top: 32px; color: color-mix(in oklch, var(--accent) 66%, var(--surface)); font-family: var(--font-mono); font-size: 13px; line-height: 1.75; letter-spacing: .035em; }

.strip-section { padding: clamp(12px, 2vw, 28px); background: var(--fg); overflow: hidden; }
.strip-section img { width: 100%; height: auto; aspect-ratio: 3 / 1; object-fit: cover; border: 1px solid color-mix(in oklch, var(--accent) 35%, var(--surface)); }

.buy-section .split-layout { grid-template-columns: minmax(360px, .82fr) minmax(0, 1.18fr); }
.steps { padding: 0; margin: 40px 0 0; list-style: none; border-top: 1px solid color-mix(in oklch, var(--accent) 32%, var(--surface)); }
.steps li { display: grid; grid-template-columns: 64px 1fr; gap: 18px; padding: 19px 0; border-bottom: 1px solid color-mix(in oklch, var(--accent) 32%, var(--surface)); }
.step-num { font-family: var(--font-mono); font-size: 13px; }
.steps strong { font-family: var(--font-display); font-size: 24px; letter-spacing: .025em; }
.steps p { color: color-mix(in oklch, var(--accent) 65%, var(--surface)); font-size: 14px; }
.buy-controls { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.buy-section .btn-outline { color: var(--accent); border-color: var(--accent); }
.buy-section .btn-outline:hover { background: var(--accent); color: var(--fg); }
.ca-row { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 10px; align-items: center; margin-top: 16px; color: color-mix(in oklch, var(--accent) 64%, var(--surface)); font-family: var(--font-mono); font-size: 11px; }
.ca-row code { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.community-section { background: var(--bg); color: var(--fg); }
.community-copy .eyebrow { color: var(--muted); }
.community-copy .lead { color: var(--muted); }
.community-section .torn-frame { background: var(--fg); }
.community-section .torn-frame::before, .community-section .torn-frame::after { background: var(--bg); }
.manifesto-lines.compact { font-size: clamp(34px, 4vw, 62px); }

.final-cta { position: relative; min-height: min(760px, 76vw); display: grid; place-items: center; overflow: hidden; background: var(--surface); }
.final-art { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.final-cta::after { position: absolute; inset: 0; content: ""; background: color-mix(in oklch, var(--surface) 47%, transparent); }
.final-overlay { position: relative; z-index: 2; width: min(760px, calc(100% - 40px)); padding: clamp(28px, 4vw, 52px); text-align: center; background: color-mix(in oklch, var(--surface) 90%, transparent); border: 2px solid var(--accent); box-shadow: 15px 15px 0 color-mix(in oklch, var(--surface) 68%, transparent); }
.final-overlay h2 { color: var(--accent); }
.final-overlay > p:not(.eyebrow) { margin-top: 22px; color: var(--accent); font-family: var(--font-mono); font-weight: 900; letter-spacing: .08em; }
.final-overlay .hero-actions { justify-content: center; }

.pagefoot { padding-block: 46px; background: var(--surface); color: var(--accent); border-top: 1px solid color-mix(in oklch, var(--accent) 30%, var(--surface)); }
.footer-grid { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; }
.footer-brand strong { display: block; font-family: var(--font-display); font-size: 27px; }
.footer-brand span, .pagefoot p { color: color-mix(in oklch, var(--accent) 55%, var(--surface)); font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; }
.footer-links { display: flex; gap: 28px; }
.pagefoot p { justify-self: end; }

@media (max-width: 1080px) {
  .nav-sections { display: none; }
  .hero-copy { width: min(650px, 66vw); }
  .poster-grid { grid-template-columns: repeat(2, 1fr); }
  .poster-c { grid-column: 1 / -1; width: calc(50% - 18px); justify-self: center; }
}

@media (max-width: 920px) {
  .container { width: min(100% - 32px, 720px); }
  .section { padding-block: 76px; }
  .menu-toggle { display: block; }
  .main-nav { position: fixed; inset: 68px 0 auto; display: none; max-height: calc(100svh - 68px); padding: 24px 20px 32px; overflow-y: auto; background: var(--surface); border-bottom: 1px solid var(--accent); }
  .main-nav.is-open { display: block; }
  .main-nav .nav-sections, .main-nav .nav-actions { display: grid; gap: 8px; }
  .main-nav .nav-sections { margin-bottom: 24px; }
  .main-nav .nav-sections a { min-height: 48px; display: flex; align-items: center; padding: 8px 12px; border-bottom: 1px solid color-mix(in oklch, var(--accent) 25%, var(--surface)); }
  .main-nav .nav-actions { grid-template-columns: 1fr 1fr 48px; }
  .main-nav .btn { width: 100%; }
  body.menu-open { overflow: hidden; }
  .hero { min-height: max(780px, calc(100svh - 68px)); }
  .hero-art img { object-position: center; }
  .hero-inner { align-items: end; }
  .hero-copy { width: 100%; padding: 24px; border-left-width: 5px; }
  .hero h1 { font-size: clamp(58px, 17vw, 88px); }
  .hero-shout { font-size: 19px; }
  .section-head { display: block; }
  .section-head .eyebrow { margin-bottom: 18px; }
  .poster-grid { grid-template-columns: 1fr 1fr; }
  .poster-b { transform: translateY(18px) rotate(.7deg); }
  .poster-c { width: calc(50% - 10px); }
  .split-layout, .buy-section .split-layout { grid-template-columns: 1fr; gap: 48px; }
  .reverse-mobile .buy-copy { order: 1; }
  .reverse-mobile .torn-frame { order: 2; }
  .community-copy { text-align: center; }
  .final-cta { min-height: 760px; }
  .footer-grid { grid-template-columns: 1fr auto; }
  .pagefoot p { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 600px) {
  .container { width: min(100% - 24px, 540px); }
  .brand { font-size: 19px; }
  .brand-mark { width: 34px; height: 34px; }
  .hero-copy { padding: 21px 18px; box-shadow: 8px 8px 0 color-mix(in oklch, var(--surface) 58%, transparent); }
  .hero .lead br { display: none; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-actions .btn-buy { grid-column: 1 / -1; }
  .hero-actions .btn { width: 100%; }
  .poster-grid { grid-template-columns: 1fr; gap: 28px; }
  .poster-a, .poster-b, .poster-c { width: 100%; transform: none; }
  .poster-c { grid-column: auto; }
  .torn-frame { padding: 6px; }
  .final-cta { min-height: 700px; }
  .final-art { object-position: 63% center; }
  .final-overlay { padding: 28px 18px; }
  .final-overlay h2 { font-size: clamp(50px, 17vw, 82px); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
