:root {
  --paper: #f5f5f2;
  --ink: #0a0a0a;
  --soft: #d8d8d2;
  --muted: #6b6b67;
  --max: 1260px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .045;
  z-index: 100;
  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='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

.shell { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ink);
}
.nav {
  height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 15px; width: fit-content; }
.brand-mark { font: 500 16px/1 "DM Mono", monospace; white-space: nowrap; }
.brand-name { font-weight: 900; font-size: 15px; border-left: 1px solid var(--ink); padding-left: 15px; }
.nav-links { display: flex; gap: 30px; font: 500 12px/1 "DM Mono", monospace; letter-spacing: .03em; }
.nav-links a { position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 1px; background: var(--ink); transition: .2s ease; }
.nav-links a:hover::after { right: 0; }
.nav .btn { justify-self: end; }

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  font: 700 12px/1 "DM Mono", monospace;
  letter-spacing: .02em;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.btn:hover:not(:disabled) { transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: var(--paper); }
.btn-dark:hover:not(:disabled) { background: transparent; color: var(--ink); }
.btn-light { background: transparent; color: var(--ink); }
.btn-light:hover { background: var(--ink); color: var(--paper); }
.btn:disabled { cursor: not-allowed; opacity: .85; }
.buy-btn span { font-size: 9px; opacity: .55; padding: 5px 6px; border: 1px solid currentColor; }

.hero {
  min-height: calc(100svh - 76px);
  padding: 66px 0 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.eyebrow {
  font: 500 11px/1 "DM Mono", monospace;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero-mark {
  margin-top: 58px;
  font: 500 clamp(36px, 6.4vw, 88px)/1 "DM Mono", monospace;
  letter-spacing: -.08em;
  white-space: nowrap;
}
.hero h1 {
  margin: 24px 0 0;
  font: 400 clamp(70px, 12.6vw, 178px)/.82 "Archivo Black", sans-serif;
  letter-spacing: -.075em;
}
.hero h1 span {
  display: inline-block;
  -webkit-text-stroke: 2px var(--ink);
  color: transparent;
}
.hero-copy {
  margin: 34px 0 0;
  font-size: clamp(16px, 1.5vw, 21px);
  letter-spacing: -.02em;
}
.hero-copy strong { font-weight: 800; }
.hero-actions { display: flex; gap: 10px; margin-top: 30px; }
.contract {
  width: min(580px, 100%);
  margin-top: 56px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.contract > span { padding: 18px; font: 500 10px/1 "DM Mono", monospace; text-align: left; }
.contract-value {
  min-height: 52px;
  border: 0;
  border-left: 1px solid var(--ink);
  background: transparent;
  padding: 0 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font: 600 11px/1 "DM Mono", monospace;
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ink); animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: .25; transform: scale(.75); } }

.ticker {
  width: 100%;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  overflow: hidden;
}
.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  padding: 16px 0;
  animation: ticker 24s linear infinite;
  will-change: transform;
  font: 500 12px/1 "DM Mono", monospace;
}
.ticker-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 34px;
  padding-right: 34px;
}
.ticker-track span { font-weight: 700; white-space: nowrap; }
.ticker-track i { font-style: normal; opacity: .5; white-space: nowrap; }
@keyframes ticker {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation-duration: 60s; }
}

.statement {
  padding: 120px 0;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 60px;
  border-bottom: 1px solid var(--ink);
}
.statement-number { font: 500 11px/1 "DM Mono", monospace; }
.statement-copy p { margin: 0 0 18px; font-size: clamp(26px, 4vw, 55px); line-height: 1.03; letter-spacing: -.045em; font-weight: 700; }
.statement-copy .muted { color: var(--muted); }
.statement-copy .big { margin-top: 58px; font: 400 clamp(44px, 7vw, 98px)/.92 "Archivo Black", sans-serif; letter-spacing: -.06em; }

.manifesto {
  padding: 34px 0 120px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.manifesto-card {
  min-height: 450px;
  border: 1px solid var(--ink);
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.card-label { font: 500 10px/1 "DM Mono", monospace; letter-spacing: .13em; }
.mini-shrug { margin: auto 0; text-align: center; font: 500 clamp(25px, 3.2vw, 48px)/1 "DM Mono", monospace; white-space: nowrap; }
.manifesto-card p { margin: auto 0 0; max-width: 32ch; font-size: 14px; line-height: 1.5; }
.dark-card { background: var(--ink); color: var(--paper); }
.dark-card h2 { margin: auto 0 20px; font: 400 clamp(48px, 6vw, 82px)/.85 "Archivo Black", sans-serif; letter-spacing: -.06em; }
.dark-card h2 span { -webkit-text-stroke: 1px var(--paper); color: transparent; }
.ticker-symbol { margin: auto 0; text-align: center; font: 400 clamp(80px, 9vw, 125px)/1 "Archivo Black", sans-serif; letter-spacing: -.08em; }

.cta {
  padding: 105px 0 120px;
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 80px;
}
.cta h2 { margin: 24px 0 0; font: 400 clamp(52px, 8vw, 108px)/.88 "Archivo Black", sans-serif; letter-spacing: -.065em; }
.cta-right { align-self: end; }
.cta-question { font: 400 clamp(42px, 6vw, 76px)/.95 "Archivo Black", sans-serif; letter-spacing: -.06em; }
.cta-links { margin-top: 40px; border-top: 1px solid var(--ink); }
.cta-links a { display: flex; justify-content: space-between; padding: 17px 0; border-bottom: 1px solid var(--ink); font: 600 11px/1 "DM Mono", monospace; }
.cta-links a:hover { padding-left: 8px; }

footer { background: var(--ink); color: var(--paper); padding: 28px 0 22px; }
.footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; font: 500 10px/1 "DM Mono", monospace; }
.footer-inner > :last-child { text-align: right; }
.footer-inner span { opacity: .55; }
.footer-shrug { font-size: 16px; }
.disclaimer { margin-top: 28px; opacity: .52; font: 400 9px/1.5 "DM Mono", monospace; text-align: center; }

.reveal { opacity: 0; transform: translateY(16px); animation: rise .7s cubic-bezier(.2,.75,.2,1) forwards; }
.delay-1 { animation-delay: .07s; }
.delay-2 { animation-delay: .14s; }
.delay-3 { animation-delay: .21s; }
.delay-4 { animation-delay: .28s; }
@keyframes rise { to { opacity: 1; transform: none; } }

@media (max-width: 820px) {
  .shell { width: min(100% - 28px, var(--max)); }
  .nav { grid-template-columns: 1fr auto; height: 66px; }
  .nav-links { display: none; }
  .brand-mark { font-size: 13px; }
  .hero { min-height: auto; padding: 92px 0 80px; }
  .hero-mark { margin-top: 42px; font-size: clamp(34px, 10vw, 56px); }
  .hero h1 { margin-top: 30px; font-size: clamp(62px, 20vw, 118px); }
  .hero h1 span { display: block; }
  .hero-actions { width: 100%; flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .contract { margin-top: 42px; grid-template-columns: 1fr; }
  .contract > span { text-align: center; }
  .contract-value { border-left: 0; border-top: 1px solid var(--ink); }
  .statement { grid-template-columns: 1fr; gap: 42px; padding: 80px 0; }
  .manifesto { grid-template-columns: 1fr; padding-bottom: 80px; }
  .manifesto-card { min-height: 360px; }
  .mini-shrug { font-size: 34px; }
  .cta { grid-template-columns: 1fr; gap: 70px; padding: 80px 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 18px; }
  .footer-shrug { display: none; }
}
