:root {
  --red: #f81801;
  --teal: #01d591;
  --purple: #7215b6;
  --lime: #a8df22;
  --navy: #100e71;
  --pink: #f01177;
  --yellow: #fbe679;
  --ink: #140b2c;
  --paper: #fff6d8;
  --cream: #fffdf2;
  --muted: rgba(20, 11, 44, .68);
  --line: rgba(20, 11, 44, .16);
  --shadow: 0 24px 80px rgba(16, 14, 113, .18);
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: "Satoshi", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 8% 8%, rgba(248, 24, 1, .20), transparent 30vw),
    radial-gradient(circle at 88% 12%, rgba(168, 223, 34, .26), transparent 28vw),
    radial-gradient(circle at 8% 88%, rgba(114, 21, 182, .22), transparent 34vw),
    radial-gradient(circle at 92% 84%, rgba(1, 213, 145, .22), transparent 30vw),
    var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image: radial-gradient(rgba(20, 11, 44, .2) 1px, transparent 1px);
  background-size: 10px 10px;
  mask-image: linear-gradient(to bottom, #000, transparent 86%);
  z-index: 0;
}

.skip {
  position: absolute;
  left: -999px;
  top: 12px;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  border-radius: 999px;
  z-index: 20;
}
.skip:focus { left: 12px; }

a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 14px;
  width: min(1120px, calc(100% - 28px));
  margin: 14px auto 0;
  padding: 9px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: rgba(255, 253, 242, .78);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(20px);
  box-shadow: 0 16px 50px rgba(16, 14, 113, .10);
  z-index: 10;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -.04em;
}
.brand img {
  display: block;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(20, 11, 44, .16);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
.nav-links a,
.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 16px;
}
.nav-links a:hover { background: rgba(20, 11, 44, .06); color: var(--ink); }
.nav-cta {
  background: var(--ink);
  color: white;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.14);
}

main, footer { position: relative; z-index: 1; }
.hero {
  width: min(1120px, calc(100% - 32px));
  margin: 54px auto 26px;
  min-height: calc(100svh - 120px);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, .78fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .18em;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 780px;
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(58px, 9vw, 124px);
  line-height: .84;
  letter-spacing: -.085em;
  text-wrap: balance;
}
.lede {
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.48;
  text-wrap: pretty;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.primary {
  background: var(--red);
  color: white;
  box-shadow: 0 16px 34px rgba(248, 24, 1, .25);
}
.secondary {
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  color: var(--navy);
}

.contract {
  width: min(100%, 520px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 8px 8px 8px 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 253, 242, .74);
  box-shadow: 0 10px 30px rgba(16, 14, 113, .08);
}
.contract span {
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
}
.contract code {
  overflow: hidden;
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.contract button {
  min-height: 40px;
  border: 0;
  border-radius: 14px;
  padding: 0 14px;
  background: rgba(20, 11, 44, .10);
  color: rgba(20, 11, 44, .45);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
}
.contract button:not(:disabled) {
  cursor: pointer;
  background: var(--navy);
  color: white;
}

.hero-art {
  position: relative;
  isolation: isolate;
  padding: 16px;
  border-radius: 42px;
  background:
    linear-gradient(135deg, var(--red), var(--yellow) 34%, var(--teal) 67%, var(--purple));
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}
.hero-art::before {
  content: "";
  position: absolute;
  inset: -12px;
  z-index: -1;
  border-radius: 52px;
  border: 2px solid rgba(20, 11, 44, .14);
  transform: rotate(-3deg);
}
.hero-art img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 5px solid rgba(255, 253, 242, .95);
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(20, 11, 44, .24);
}
.ad-badge,
.snipe {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  font-weight: 900;
  text-transform: uppercase;
}
.ad-badge {
  top: -20px;
  left: -18px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: .08em;
  transform: rotate(-5deg);
}
.snipe {
  right: -16px;
  bottom: 26px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 16px;
  background: var(--teal);
  font-size: 15px;
  transform: rotate(-2deg);
}

.ticker {
  border-block: 2px solid var(--ink);
  background: var(--ink);
  color: var(--yellow);
  overflow: hidden;
}
.ticker div {
  width: max-content;
  display: flex;
  gap: 24px;
  padding: 12px 0;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: slide 24s linear infinite;
}
.ticker span::after {
  content: "◆";
  margin-left: 24px;
  color: var(--teal);
}
@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.panel,
.budget,
.feed-section,
.sightings,
.runbook,
.mission,
.targeting,
.token,
.faq,
.buy-strip,
.footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.panel { padding: 74px 0 40px; }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, .42fr) minmax(0, .9fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 24px;
}
.section-head h2,
.buy-strip h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(34px, 5vw, 64px);
  line-height: .92;
  letter-spacing: -.06em;
}
.ad-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.ad-grid article,
.token-card,
.buy-strip {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 253, 242, .72);
  box-shadow: 0 18px 50px rgba(16, 14, 113, .08);
}
.ad-grid article {
  min-height: 238px;
  padding: 22px;
}
.ad-grid span {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--red);
  font-weight: 900;
}
.ad-grid h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 24px;
  letter-spacing: -.04em;
}
.ad-grid p,
.mission p,
.faq-grid p,
.buy-strip li,
.footer p { color: var(--muted); line-height: 1.55; }

.mission {
  display: grid;
  grid-template-columns: minmax(280px, .86fr) minmax(0, 1.14fr);
  gap: 14px;
  align-items: stretch;
  padding: 20px 0 14px;
}
.mission-copy,
.mission-steps div,
.targeting,
.faq-grid article {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 253, 242, .72);
  box-shadow: 0 18px 50px rgba(16, 14, 113, .08);
}
.mission-copy {
  padding: 28px;
  background: var(--red);
  color: white;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mission-copy .eyebrow { color: var(--yellow); }
.mission-copy h2,
.targeting h2,
.faq .section-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 5vw, 64px);
  line-height: .92;
  letter-spacing: -.06em;
}
.mission-copy h2 { color: white; }
.mission-copy p:last-child { margin: 22px 0 0; color: rgba(255,255,255,.82); font-size: 19px; }
.mission-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.mission-steps div {
  min-height: 172px;
  padding: 22px;
}
.mission-steps span {
  display: block;
  margin-bottom: 18px;
  color: var(--pink);
  font-weight: 900;
}
.mission-steps strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 24px;
  letter-spacing: -.04em;
}
.mission-steps p { margin: 0; }

.targeting {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: 14px;
  padding: 28px;
  background: rgba(16, 14, 113, .95);
  color: white;
}
.targeting .eyebrow { color: var(--yellow); }
.targeting h2 { color: white; }
.pill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill-cloud span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  padding: 0 15px;
  background: rgba(255,255,255,.10);
  color: white;
  font-size: 14px;
  font-weight: 900;
}

.faq { padding: 0 0 28px; }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.faq-grid article { padding: 22px; }
.faq-grid h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 22px;
  letter-spacing: -.04em;
}
.faq-grid p { margin: 0; }

.budget {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .72fr);
  gap: 16px;
  align-items: stretch;
  padding: 78px 0 18px;
}
.budget-main,
.receipt,
.feed-copy,
.reddit-board,
.sightings,
.runbook,
.faq-poster,
.faq-stack article {
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: 0 18px 50px rgba(16, 14, 113, .09);
}
.budget-main {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  padding: 32px;
  background: var(--navy);
  color: white;
}
.budget-main::after {
  content: "$1K";
  position: absolute;
  right: -24px;
  bottom: -38px;
  color: rgba(255,255,255,.08);
  font-size: clamp(140px, 18vw, 260px);
  font-weight: 900;
  letter-spacing: -.12em;
  line-height: .8;
}
.budget-main .eyebrow { color: var(--yellow); }
.budget-main h2,
.feed-copy h2,
.sightings-title h2,
.runbook h2,
.faq-poster h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 86px);
  line-height: .86;
  letter-spacing: -.075em;
  text-wrap: balance;
}
.budget-main p:last-child {
  position: relative;
  z-index: 1;
  max-width: 590px;
  margin-top: 26px;
  color: rgba(255,255,255,.78);
  font-size: 21px;
  line-height: 1.42;
}
.receipt {
  padding: 22px;
  background: var(--cream);
  transform: rotate(1.2deg);
}
.receipt-head,
.receipt-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px dashed rgba(20, 11, 44, .22);
  padding: 15px 0;
}
.receipt-head { padding-top: 0; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; font-weight: 900; }
.receipt-row span { color: var(--muted); font-weight: 800; }
.receipt-row strong { color: var(--navy); text-align: right; }
.receipt-row.total { border-bottom: 0; }
.receipt-row.total strong { color: var(--red); text-transform: uppercase; }

.feed-section {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: 16px;
  align-items: stretch;
  padding: 22px 0 18px;
}
.feed-copy {
  padding: 28px;
  background: var(--lime);
  color: var(--ink);
}
.feed-copy p:last-child {
  margin: 24px 0 0;
  color: rgba(20, 11, 44, .72);
  font-size: 19px;
  line-height: 1.46;
}
.reddit-board {
  min-height: 510px;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(248,24,1,.94), rgba(240,17,119,.82)),
    var(--red);
  position: relative;
  overflow: hidden;
}
.reddit-board::before {
  content: "PROMOTED PROMOTED PROMOTED PROMOTED";
  position: absolute;
  inset: auto -20px 18px -20px;
  color: rgba(255,255,255,.14);
  font-size: 54px;
  font-weight: 900;
  letter-spacing: -.06em;
  white-space: nowrap;
}
.reddit-card {
  position: relative;
  z-index: 1;
  width: min(560px, 88%);
  border: 2px solid var(--ink);
  border-radius: 24px;
  padding: 18px;
  background: var(--cream);
  box-shadow: 9px 9px 0 var(--ink);
}
.reddit-card + .reddit-card { margin-top: 18px; }
.reddit-card.promoted { margin-left: auto; }
.reddit-card.tilt-left { transform: rotate(-2.5deg); }
.reddit-card.tilt-right { margin-left: 10%; transform: rotate(2deg); }
.reddit-top,
.reddit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(20, 11, 44, .58);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.reddit-card h3 {
  margin: 14px 0 8px;
  color: var(--navy);
  font-size: clamp(25px, 3vw, 38px);
  line-height: .95;
  letter-spacing: -.06em;
}
.reddit-card p { margin-bottom: 16px; color: var(--muted); line-height: 1.42; }
.reddit-actions span { border: 1px solid var(--line); border-radius: 999px; padding: 6px 10px; }

.sightings {
  display: grid;
  grid-template-columns: minmax(250px, .62fr) minmax(0, 1.38fr);
  gap: 20px;
  align-items: center;
  margin-top: 22px;
  padding: 30px;
  background: var(--yellow);
  overflow: hidden;
}
.sightings-title h2 { color: var(--navy); }
.note-wall {
  min-height: 330px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}
.note {
  min-height: 142px;
  border: 2px solid var(--ink);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 7px 7px 0 var(--ink);
  color: var(--ink);
}
.note strong { display: block; margin-bottom: 10px; font-size: 25px; letter-spacing: -.04em; }
.note span { color: rgba(20, 11, 44, .72); font-weight: 700; line-height: 1.42; }
.note.red { background: #ff7a68; transform: rotate(-2deg); }
.note.yellow { background: #fffdf2; transform: rotate(2.2deg); }
.note.teal { background: var(--teal); transform: rotate(1deg); }
.note.purple { background: #cda8ff; transform: rotate(-1.4deg); }

.runbook {
  margin-top: 22px;
  padding: 34px;
  background: rgba(16, 14, 113, .96);
  color: white;
}
.runbook .eyebrow { color: var(--yellow); }
.runbook h2 { max-width: 780px; color: white; }
.runway {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.runway div {
  min-height: 180px;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 24px;
  padding: 18px;
  background: rgba(255,255,255,.08);
}
.runway span { color: var(--teal); font-weight: 900; }
.runway strong { display: block; margin: 28px 0 8px; font-size: 24px; letter-spacing: -.04em; }
.runway p { margin: 0; color: rgba(255,255,255,.72); line-height: 1.45; }

.faq {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  gap: 16px;
  padding: 0 0 28px;
}
.faq-poster {
  padding: 28px;
  background: var(--pink);
  color: white;
}
.faq-poster .eyebrow { color: var(--yellow); }
.faq-stack {
  display: grid;
  gap: 12px;
}
.faq-stack article {
  padding: 22px;
  background: rgba(255, 253, 242, .74);
}
.faq-stack h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 24px;
  letter-spacing: -.04em;
}
.faq-stack p { margin: 0; color: var(--muted); line-height: 1.5; }

.token {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, .64fr);
  gap: 14px;
  padding: 28px 0 72px;
}
.token-card {
  min-height: 176px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.token-card.big {
  min-height: 220px;
  background: var(--navy);
  color: white;
  box-shadow: 0 22px 70px rgba(16, 14, 113, .24);
}
.token-card.big .eyebrow { color: var(--yellow); }
.token-card.big h2 {
  margin: 0 0 10px;
  color: white;
  font-size: clamp(54px, 8vw, 100px);
  line-height: .82;
  letter-spacing: -.08em;
}
.token-card.big p:last-child { max-width: 520px; color: rgba(255,255,255,.72); line-height: 1.5; }
.token-card p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}
.token-card strong {
  color: var(--red);
  font-size: clamp(34px, 4vw, 52px);
  line-height: .9;
  letter-spacing: -.06em;
}

.buy-strip {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 54px;
  padding: 28px;
}
.buy-strip ol {
  margin: 0;
  padding-left: 22px;
}
.buy-strip li + li { margin-top: 12px; }
.buy-strip strong { color: var(--navy); }

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
}
.footer p { max-width: 580px; margin: 0; text-align: right; }

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

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

@media (max-width: 880px) {
  .site-header { top: 8px; width: min(100% - 16px, 640px); }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; margin-top: 42px; }
  .hero-art { width: min(100%, 480px); margin: 0 auto; }
  .section-head,
  .budget,
  .feed-section,
  .sightings,
  .faq,
  .mission,
  .targeting,
  .buy-strip { grid-template-columns: 1fr; }
  .ad-grid,
  .mission-steps,
  .note-wall,
  .runway,
  .faq-grid,
  .token { grid-template-columns: 1fr; }
  .receipt,
  .reddit-card.tilt-left,
  .reddit-card.tilt-right,
  .note.red,
  .note.yellow,
  .note.teal,
  .note.purple { transform: none; }
  .reddit-card,
  .reddit-card.promoted,
  .reddit-card.tilt-right { width: 100%; margin-left: 0; }
  .budget-main,
  .reddit-board { min-height: auto; }
  .note-wall { min-height: auto; }
  .ad-grid article { min-height: auto; }
  .ad-grid span { margin-bottom: 24px; }
  .footer { align-items: flex-start; flex-direction: column; }
  .footer p { text-align: left; }
}

@media (max-width: 520px) {
  h1 { font-size: clamp(54px, 18vw, 78px); }
  .hero { width: min(100% - 24px, 480px); margin-top: 32px; }
  .actions { flex-direction: column; }
  .button { width: 100%; }
  .contract { grid-template-columns: auto minmax(0, 1fr); }
  .contract button { grid-column: 1 / -1; }
  .nav-cta { display: none; }
  .hero-art { transform: none; }
  .hero-art::before { display: none; }
  .reddit-card,
  .note { box-shadow: 4px 4px 0 var(--ink); }
  .receipt-row { flex-direction: column; gap: 4px; }
  .receipt-row strong { text-align: left; }
  .ad-badge { left: 4px; top: -18px; }
  .snipe { right: 4px; bottom: 18px; }
  .panel { padding-top: 54px; }
}
