:root {
  --tomato: #ff3b1f;
  --tomato-hot: #ff5b16;
  --acid: #cfff25;
  --cream: #fff6dc;
  --ink: #120c0a;
  --brown: #2a140e;
  --paper: #f5dcb7;
  --line: rgba(255, 246, 220, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

a { color: inherit; }
img { display: block; width: 100%; }

::selection { background: var(--acid); color: var(--ink); }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99;
  opacity: .055;
  background-image:
    radial-gradient(circle at 20% 20%, #fff 0 1px, transparent 1px),
    radial-gradient(circle at 80% 30%, #fff 0 1px, transparent 1px),
    radial-gradient(circle at 35% 70%, #fff 0 1px, transparent 1px);
  background-size: 13px 13px, 17px 17px, 19px 19px;
  mix-blend-mode: overlay;
}

.topbar {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 28px));
  height: 62px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 8px 10px 8px 12px;
  background: rgba(18, 12, 10, .82);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(18px);
  border-radius: 18px;
  z-index: 50;
  box-shadow: 0 16px 60px rgba(0,0,0,.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  text-decoration: none;
  font-weight: 950;
  letter-spacing: -.03em;
}
.brand-mark {
  width: 38px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: var(--tomato);
  color: var(--cream);
  border-radius: 50% 45% 55% 48%;
  transform: rotate(-4deg);
  box-shadow: inset -5px -7px 0 rgba(92,13,0,.18);
}

.nav-links { display: flex; gap: 24px; }
.nav-links a,
.footer-links a {
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .72;
  transition: opacity .2s ease, color .2s ease;
}
.nav-links a:hover, .footer-links a:hover { opacity: 1; color: var(--acid); }

.mini-cta {
  justify-self: end;
  text-decoration: none;
  background: var(--acid);
  color: var(--ink);
  padding: 13px 17px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .08em;
  transform: rotate(1deg);
}

.panel {
  position: relative;
  min-height: 100svh;
  padding: 120px max(5vw, 24px) 70px;
  overflow: hidden;
  scroll-margin-top: 80px;
}

.hero-panel {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 6vw;
  background:
    linear-gradient(105deg, rgba(18,12,10,.96) 0 48%, rgba(18,12,10,.68) 72%, rgba(18,12,10,.9) 100%),
    radial-gradient(circle at 76% 36%, rgba(255,59,31,.34), transparent 44%);
}

.hero-copy { position: relative; z-index: 2; max-width: 780px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--acid);
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 12px;
}
.eyebrow::before { content: ""; width: 32px; height: 4px; background: currentColor; }

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin: 14px 0 4px;
  font-size: clamp(88px, 13vw, 220px);
  line-height: .76;
  letter-spacing: -.09em;
  font-weight: 1000;
  text-transform: uppercase;
  text-shadow: 8px 8px 0 rgba(255,59,31,.12);
}
h1 span { color: var(--tomato); }

.hero-kicker {
  margin: 28px 0 10px;
  font-size: clamp(26px, 3vw, 46px);
  font-weight: 900;
  letter-spacing: -.04em;
}
.hero-text {
  max-width: 680px;
  margin-bottom: 28px;
  color: rgba(255,246,220,.74);
  font-size: clamp(16px, 1.4vw, 21px);
  line-height: 1.6;
}

.cta-row { display: flex; flex-wrap: wrap; gap: 10px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .09em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-3px) rotate(-1deg); }
.btn-primary { background: var(--tomato); color: white; box-shadow: 0 10px 36px rgba(255,59,31,.26); }
.btn-primary:hover { box-shadow: 0 14px 44px rgba(255,59,31,.42); }
.btn-dark { background: var(--cream); color: var(--ink); }
.btn-ghost { border-color: rgba(255,246,220,.38); background: rgba(255,255,255,.04); }
.btn-ghost:hover { background: rgba(255,255,255,.1); }

.ticker-card {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px 13px;
  width: fit-content;
  padding: 12px 15px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.045);
  border-radius: 12px;
  font-size: 10px;
  letter-spacing: .12em;
}
.ticker-card strong { color: var(--acid); }
.ticker-card i { width: 5px; height: 5px; background: var(--tomato); border-radius: 50%; }

.hero-art { position: relative; width: min(42vw, 650px); justify-self: end; }
.image-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 26px;
  box-shadow: 0 30px 100px rgba(0,0,0,.35);
}
.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05), inset 0 -80px 100px rgba(18,12,10,.18);
}
.hero-frame { transform: rotate(2deg); }
.hero-frame img { aspect-ratio: 1; object-fit: cover; }
.frame-label {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  background: var(--ink);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--acid);
  padding: 10px 12px;
  border-radius: 9px;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .11em;
}
.stamp {
  position: absolute;
  right: -26px;
  bottom: -20px;
  width: 116px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--acid);
  color: var(--ink);
  border: 8px solid var(--ink);
  border-radius: 50%;
  font-weight: 1000;
  line-height: .95;
  transform: rotate(11deg);
}

.orb { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .75; }
.orb-one { width: 360px; height: 360px; right: -130px; top: 18%; background: rgba(207,255,37,.13); }
.orb-two { width: 520px; height: 520px; left: -280px; bottom: -260px; background: rgba(255,59,31,.11); }

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  text-decoration: none;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .17em;
  opacity: .55;
}

.launch-panel {
  background: var(--tomato);
  color: var(--ink);
  padding-bottom: 110px;
}
.launch-panel .eyebrow { color: var(--ink); }
.launch-panel .eyebrow::before { background: var(--ink); }
.section-heading { margin-bottom: 36px; }
h2 {
  margin: 10px 0 0;
  font-size: clamp(58px, 8.4vw, 150px);
  line-height: .83;
  letter-spacing: -.075em;
  font-weight: 1000;
  text-transform: uppercase;
}
h2 span { color: var(--acid); text-shadow: 5px 5px 0 var(--ink); }
.launch-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}
.launch-grid > .image-frame { min-height: 520px; }
.launch-grid > .image-frame img { height: 100%; object-fit: cover; }
.launch-grid .frame-label { background: var(--acid); color: var(--ink); border-color: var(--ink); }
.steps { display: grid; gap: 12px; align-content: center; }
.step-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  padding: 24px;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 18px;
  box-shadow: 8px 8px 0 var(--ink);
}
.step-card.accent { background: var(--acid); transform: rotate(-1deg); }
.step-no { font-weight: 1000; font-size: 26px; }
.step-card h3 { margin-bottom: 6px; font-size: 28px; letter-spacing: -.04em; }
.step-card p { margin: 0; line-height: 1.5; color: rgba(18,12,10,.68); }
.text-link { margin-top: 12px; font-weight: 1000; text-decoration-thickness: 3px; text-underline-offset: 6px; width: fit-content; }

.marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  overflow: hidden;
  background: var(--acid);
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 30px;
  align-items: center;
  padding: 14px 0;
  min-width: max-content;
  animation: marquee 22s linear infinite;
  font-size: 15px;
  font-weight: 1000;
  letter-spacing: .06em;
}
.marquee-track b { color: var(--tomato); }
@keyframes marquee { to { transform: translateX(-50%); } }

.world-panel {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 6vw;
  align-items: center;
  background:
    linear-gradient(rgba(18,12,10,.91), rgba(18,12,10,.91)),
    radial-gradient(circle at 20% 20%, rgba(207,255,37,.25), transparent 32%),
    #17100e;
}
.world-copy p { max-width: 680px; color: rgba(255,246,220,.7); font-size: 18px; line-height: 1.65; }
.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
  margin: 28px 0;
}
.manifesto-grid div {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  border-radius: 14px;
  padding: 18px;
}
.manifesto-grid strong { display: block; color: var(--acid); font-size: 14px; letter-spacing: .08em; margin-bottom: 7px; }
.manifesto-grid span { color: rgba(255,246,220,.62); font-size: 13px; line-height: 1.45; }
.world-art { position: relative; }
.world-frame { transform: rotate(-2deg); }
.world-frame img { aspect-ratio: 1; object-fit: cover; }
.big-type {
  position: absolute;
  right: -4vw;
  bottom: -10px;
  z-index: -1;
  color: var(--tomato);
  font-size: clamp(120px, 18vw, 330px);
  line-height: .7;
  font-weight: 1000;
  letter-spacing: -.1em;
  opacity: .22;
}

.chart-panel {
  background:
    radial-gradient(circle at 80% 10%, rgba(255,59,31,.17), transparent 38%),
    radial-gradient(circle at 18% 85%, rgba(207,255,37,.08), transparent 34%),
    #0d0908;
}
.chart-head { display: flex; justify-content: space-between; gap: 28px; align-items: end; margin-bottom: 30px; }
.chart-head h2 { font-size: clamp(62px, 9vw, 150px); }
.chart-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }
.chart-shell {
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 20px;
  background: #090707;
  overflow: hidden;
  box-shadow: 0 32px 100px rgba(0,0,0,.45);
}
.chart-topline {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255,255,255,.11);
  font-size: 10px;
  letter-spacing: .12em;
  font-weight: 900;
  color: rgba(255,246,220,.62);
}
.live-dot { color: var(--acid); display: flex; align-items: center; gap: 8px; }
.live-dot::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 16px var(--acid); }
.chart-shell iframe { width: 100%; height: min(64vh, 720px); min-height: 520px; border: 0; display: block; background: #080808; }

.footer {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}
.footer-brand { font-size: 34px; font-weight: 1000; letter-spacing: -.05em; color: var(--tomato); }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; justify-content: flex-end; }
.footer p { grid-column: 1 / -1; margin: 0; color: rgba(255,246,220,.42); font-size: 11px; line-height: 1.5; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 960px) {
  .topbar { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .hero-panel, .world-panel { grid-template-columns: 1fr; gap: 34px; padding-top: 112px; }
  .hero-art { width: min(82vw, 640px); justify-self: center; }
  .launch-grid { grid-template-columns: 1fr; }
  .launch-grid > .image-frame { min-height: 0; }
  .launch-grid > .image-frame img { aspect-ratio: 1; }
  .chart-head { align-items: flex-start; flex-direction: column; }
  .chart-actions { justify-content: flex-start; }
  .footer { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 620px) {
  .panel { padding-left: 18px; padding-right: 18px; }
  .topbar { top: 8px; width: calc(100% - 16px); height: 58px; }
  .brand { font-size: 14px; }
  .brand-mark { width: 34px; }
  .mini-cta { padding: 11px 12px; font-size: 9px; }
  h1 { font-size: clamp(72px, 25vw, 118px); }
  h2 { font-size: clamp(50px, 16vw, 86px); }
  .hero-kicker { font-size: 28px; }
  .hero-art { width: 94vw; }
  .stamp { right: -8px; width: 90px; border-width: 6px; font-size: 13px; }
  .ticker-card { width: 100%; }
  .step-card { grid-template-columns: 48px 1fr; padding: 18px; box-shadow: 5px 5px 0 var(--ink); }
  .manifesto-grid { grid-template-columns: 1fr; }
  .chart-shell iframe { min-height: 430px; height: 58vh; }
  .footer-links { gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .marquee-track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
@media (pointer: fine) {
  .image-frame { transform-style: preserve-3d; }
  .hero-frame { transform: perspective(1000px) rotate(2deg) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); transition: transform .18s ease-out; }
  .world-frame { transform: perspective(1000px) rotate(-2deg) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); transition: transform .18s ease-out; }
  .launch-grid > .image-frame { transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); transition: transform .18s ease-out; }
}
