@layer reset, base, components, utilities;

@layer reset {
  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body, h1, h2, h3, p, figure, ul, ol { margin: 0; }
  ul, ol { padding: 0; list-style: none; }
  button, a { font: inherit; }
  button { border: 0; }
  img { display: block; max-width: 100%; }
}

@layer base {
  :root {
    --paper: #f5efd9;
    --paper-dark: #e7dec0;
    --ink: #0b0d0b;
    --ink-soft: #171b16;
    --acid: #c9ff2e;
    --red: #ff665e;
    --blue: #4358ff;
    --yellow: #f2d44c;
    --muted: #687062;
    --line: rgba(11, 13, 11, .2);
    --line-light: rgba(245, 239, 217, .22);
    --display: "Space Grotesk", Arial, Helvetica, sans-serif;
    --mono: "DM Mono", "Courier New", monospace;
    --shell: min(1240px, calc(100vw - 72px));
    --ease: cubic-bezier(.16, 1, .3, 1);
    --scroll-y: 0px;
    color-scheme: light;
  }
  ::selection { color: var(--ink); background: var(--acid); }
  body { min-width: 320px; overflow-x: hidden; color: var(--ink); background: var(--paper); font-family: var(--display); font-size: 16px; line-height: 1.45; -webkit-font-smoothing: antialiased; }
  body::before { position: fixed; z-index: -3; inset: 0; content: ""; pointer-events: none; opacity: .45; background-image: linear-gradient(rgba(11,13,11,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(11,13,11,.055) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to bottom, black, transparent 76%); }
  a { color: inherit; text-decoration: none; }
  button { color: inherit; cursor: pointer; }
  button:disabled { cursor: not-allowed; }
  :focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }
  .shell { width: var(--shell); margin-inline: auto; }
  .paper-noise { position: fixed; z-index: 50; inset: 0; pointer-events: none; opacity: .08; mix-blend-mode: multiply; 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='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.72'/%3E%3C/svg%3E"); }
  .cursor-glow { position: fixed; z-index: 1; width: 430px; height: 430px; border-radius: 50%; pointer-events: none; opacity: .09; filter: blur(14px); background: radial-gradient(circle, var(--acid), rgba(201,255,46,.1) 35%, transparent 70%); mix-blend-mode: multiply; transform: translate3d(-215px, -215px, 0); }
  .scroll-meter { position: fixed; z-index: 60; top: 0; right: 0; left: 0; height: 4px; background: rgba(11,13,11,.14); }
  .scroll-meter span { display: block; width: 0; height: 100%; background: var(--blue); box-shadow: 0 0 12px rgba(67,88,255,.38); }
}

@layer components {
  .topbar { position: fixed; z-index: 40; top: 0; right: 0; left: 0; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; min-height: 76px; padding: 0 36px; border-bottom: 2px solid transparent; transition: background .35s ease, border-color .35s ease, min-height .35s var(--ease), box-shadow .35s ease; }
  .topbar.is-scrolled { min-height: 64px; border-color: var(--ink); background: rgba(245,239,217,.88); box-shadow: 0 8px 0 rgba(11,13,11,.04); backdrop-filter: blur(16px); }
  .brand { display: inline-flex; align-items: center; gap: 9px; width: max-content; }
  .brand-mark { display: grid; place-items: center; width: 30px; height: 30px; border: 2px solid var(--ink); border-radius: 50%; color: var(--ink); transform: rotate(-12deg); }
  .brand-mark svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
  .brand-name { font-size: 15px; font-weight: 600; letter-spacing: -.07em; }
  .brand-name strong { color: var(--blue); font-weight: 700; }
  .brand-sub { margin-left: 2px; color: var(--muted); font-family: var(--mono); font-size: 7px; letter-spacing: .07em; text-transform: uppercase; }
  .main-nav { display: flex; align-items: center; gap: 25px; font-family: var(--mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
  .main-nav a { position: relative; transition: color .2s ease; }
  .main-nav a span { margin-right: 4px; color: var(--blue); }
  .main-nav a::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; content: ""; background: var(--blue); transform: scaleX(0); transform-origin: right; transition: transform .3s var(--ease); }
  .main-nav a:hover, .main-nav a:focus-visible { color: var(--blue); }
  .main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
  .topbar-right { display: flex; align-items: center; justify-content: flex-end; gap: 18px; }
  .status { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); font-family: var(--mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
  .status i, .not-live i { width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(255,102,94,.12); }
  .menu-button { display: none; align-items: center; gap: 8px; padding: 8px 0 8px 10px; color: var(--blue); background: transparent; font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
  .menu-button b { font-family: var(--display); font-size: 18px; font-weight: 400; line-height: .7; }

  .hero { position: relative; min-height: min(940px, 100svh); overflow: hidden; border-bottom: 2px solid var(--ink); background: var(--acid); isolation: isolate; }
  .hero::before { position: absolute; z-index: -2; inset: 0; content: ""; opacity: .43; background: repeating-conic-gradient(from 270deg at 75% 55%, rgba(11,13,11,.1) 0 2deg, transparent 2deg 13deg); mask-image: radial-gradient(ellipse at 75% 53%, black 0 38%, transparent 76%); }
  .hero::after { position: absolute; z-index: -1; right: -12vw; bottom: -26vw; width: 63vw; aspect-ratio: 1; content: ""; border: 2px solid rgba(11,13,11,.16); border-radius: 50%; box-shadow: 0 0 0 34px rgba(11,13,11,.04), 0 0 0 68px rgba(11,13,11,.035); }
  .hero-stamp { position: absolute; z-index: 1; top: 26%; left: -34px; padding: 10px 14px; color: var(--paper); border: 2px solid var(--ink); background: var(--red); font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: .06em; line-height: .9; text-align: center; transform: rotate(-11deg); box-shadow: 6px 6px 0 var(--ink); }
  .hero-shell { position: relative; display: flex; min-height: min(940px, 100svh); flex-direction: column; justify-content: center; padding-top: 78px; padding-bottom: 68px; }
  .hero-kicker, .section-top, .hero-facts, .eyebrow, .hero-bottom, .status, .toy-footer, .window-address, .window-number, .toy-copy span, .toy-copy small, .toy-note, .feed-label, .feed-help, .toy-scribble, .poster-top, .poster-bottom, .sticker-tag, .chat-sticker, .section-label, .ca-head, .ca-note, .footer-meta { font-family: var(--mono); letter-spacing: .08em; line-height: 1.35; text-transform: uppercase; }
  .hero-kicker { display: grid; grid-template-columns: max-content max-content 1fr; align-items: center; gap: 16px; padding-bottom: 14px; border-bottom: 2px solid var(--ink); color: rgba(11,13,11,.62); font-size: 9px; }
  .hero-kicker span { color: var(--blue); }
  .hero-kicker b { color: var(--ink); font-weight: 500; }
  .hero-kicker i { justify-self: end; font-style: normal; }
  .hero-grid { display: grid; grid-template-columns: minmax(0, .93fr) minmax(440px, 1.07fr); align-items: center; gap: clamp(45px, 7vw, 110px); padding-top: 68px; }
  .hero-copy { max-width: 610px; }
  .eyebrow { display: flex; align-items: center; gap: 9px; color: var(--blue); font-size: 9px; font-weight: 500; }
  .eyebrow::before { width: 7px; height: 7px; content: ""; border: 2px solid var(--blue); background: var(--red); transform: rotate(45deg); }
  .hero h1 { max-width: 680px; margin-top: 22px; font-size: clamp(52px, 7.3vw, 112px); font-weight: 600; letter-spacing: -.105em; line-height: .83; }
  .hero h1 span, .hero h1 mark, .hero h1 em { display: block; width: max-content; }
  .hero h1 mark { margin-left: 5.5vw; padding: 0 9px 5px; color: var(--paper); background: var(--red); font-style: normal; transform: rotate(-2deg); }
  .hero h1 em { margin-left: 4vw; color: var(--blue); font-style: normal; text-decoration: underline; text-decoration-thickness: 6px; text-underline-offset: 7px; }
  .hero-deck { max-width: 375px; margin-top: 31px; color: rgba(11,13,11,.72); font-size: clamp(17px, 1.4vw, 20px); line-height: 1.35; }
  .hero-actions, .contract-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 31px; }
  .button { display: inline-flex; align-items: center; justify-content: space-between; gap: 22px; min-height: 50px; padding: 0 15px 0 17px; border: 2px solid var(--ink); font-family: var(--mono); font-size: 9px; letter-spacing: .08em; line-height: 1; text-transform: uppercase; transition: transform .25s var(--ease), color .25s ease, background .25s ease, box-shadow .25s var(--ease); }
  .button b { font-family: var(--display); font-size: 17px; font-weight: 400; }
  .button:hover, .button:focus-visible { transform: translate(-3px, -3px); box-shadow: 5px 5px 0 var(--ink); }
  .button-black { color: var(--paper); background: var(--ink); }
  .button-black:hover, .button-black:focus-visible { color: var(--ink); background: var(--paper); }
  .button-outline { color: var(--ink); background: transparent; }
  .button-outline:hover, .button-outline:focus-visible { color: var(--paper); background: var(--blue); }
  .hero-facts { display: flex; flex-wrap: wrap; gap: 13px 22px; margin-top: 50px; color: rgba(11,13,11,.65); font-size: 9px; }
  .hero-facts span { display: inline-flex; align-items: baseline; gap: 5px; }
  .hero-facts b { color: var(--blue); font-weight: 500; }

  .toy-wrap { position: relative; width: 100%; max-width: 650px; justify-self: end; }
  .browser-window { position: relative; padding: 11px; border: 3px solid var(--ink); background: var(--paper); box-shadow: 14px 15px 0 var(--ink); transform: rotate(2deg); }
  .browser-bar { display: flex; align-items: center; gap: 13px; height: 34px; padding: 0 7px 8px; border-bottom: 2px solid var(--ink); }
  .window-dots { display: flex; gap: 5px; }
  .window-dots i { display: block; width: 8px; height: 8px; border: 1px solid var(--ink); border-radius: 50%; background: var(--red); }
  .window-dots i:nth-child(2) { background: var(--yellow); }
  .window-dots i:nth-child(3) { background: var(--acid); }
  .window-address { flex: 1; min-width: 0; padding: 5px 9px; overflow: hidden; color: var(--muted); border: 1px solid var(--line); font-size: 8px; text-overflow: ellipsis; white-space: nowrap; }
  .window-number { color: var(--blue); font-size: 8px; }
  .toy-stage { position: relative; aspect-ratio: 1.22; overflow: hidden; background: var(--blue); }
  .toy-stage::before { position: absolute; inset: 0; content: ""; opacity: .48; background-image: linear-gradient(rgba(245,239,217,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(245,239,217,.18) 1px, transparent 1px); background-size: 32px 32px; }
  .toy-copy { position: absolute; z-index: 2; top: 23px; left: 23px; color: var(--paper); }
  .toy-copy span { display: block; margin-bottom: 11px; color: var(--acid); font-size: 9px; }
  .toy-copy strong { display: block; color: var(--paper); font-size: clamp(30px, 4vw, 53px); font-weight: 600; letter-spacing: -.1em; line-height: .82; }
  .toy-copy small { display: block; max-width: 165px; margin-top: 15px; color: rgba(245,239,217,.68); font-size: 8px; letter-spacing: .04em; text-transform: none; }
  .feed-target { position: absolute; right: 5%; bottom: 9%; width: 44%; aspect-ratio: 1.23; overflow: hidden; border: 3px solid var(--ink); background: var(--red); box-shadow: 8px 9px 0 var(--ink); transform: rotate(-5deg); transition: background .35s ease, transform .35s var(--ease), box-shadow .35s var(--ease); }
  .feed-target::before, .feed-target::after { position: absolute; content: ""; border: 2px solid var(--ink); }
  .feed-target::before { inset: 12px; transform: rotate(4deg); }
  .feed-target::after { inset: 23px 16px; transform: rotate(-7deg); }
  .feed-lines { position: absolute; inset: 0; opacity: .38; background: repeating-linear-gradient(90deg, transparent 0 11px, var(--ink) 11px 14px, transparent 14px 22px); mix-blend-mode: multiply; }
  .feed-label, .feed-help { position: absolute; z-index: 1; left: 14px; color: var(--ink); font-size: 9px; }
  .feed-label { top: 13px; font-weight: 500; }
  .feed-help { right: 12px; bottom: 13px; left: auto; padding: 4px 5px; background: var(--yellow); font-size: 7px; transform: rotate(-4deg); }
  .feed-target.is-hit { background: var(--acid); transform: rotate(0deg) scale(.96); box-shadow: 4px 5px 0 var(--ink); }
  .feed-target.is-hit .feed-label { text-decoration: line-through; }
  .feed-target.is-hit .feed-help { background: var(--ink); color: var(--acid); }
  .hero-sticker { position: absolute; z-index: 4; top: 57%; left: 58%; display: block; width: min(52%, 290px); padding: 0; background: transparent; transform: translate(-50%, -50%) rotate(-10deg); touch-action: none; user-select: none; transition: filter .25s ease, transform .3s var(--ease); }
  .hero-sticker img { width: 100%; pointer-events: none; filter: drop-shadow(8px 9px 0 var(--ink)); }
  .hero-sticker > span { position: absolute; top: 16%; right: 0; padding: 7px 9px; color: var(--ink); border: 2px solid var(--ink); background: var(--yellow); font-family: var(--mono); font-size: 8px; letter-spacing: .06em; transform: rotate(8deg); pointer-events: none; }
  .hero-sticker:hover { filter: saturate(1.15); transform: translate(-50%, -50%) rotate(-6deg) scale(1.03); }
  .hero-sticker.is-dragging { z-index: 10; transition: none; cursor: grabbing; }
  .hero-sticker.is-parked { top: 60%; left: 77%; transform: translate(-50%, -50%) rotate(5deg) scale(.78); }
  .toy-note { position: absolute; z-index: 2; right: 20px; top: 27px; color: var(--paper); font-size: 8px; line-height: 1.18; text-align: right; transform: rotate(5deg); }
  .toy-note b { color: var(--acid); font-weight: 500; }
  .toy-burst { position: absolute; z-index: 1; right: 31%; bottom: 16%; color: var(--yellow); font-size: 64px; line-height: 1; transform: rotate(13deg); }
  .toy-footer { display: flex; justify-content: space-between; gap: 15px; align-items: center; min-height: 43px; padding: 8px 4px 0; color: var(--muted); font-size: 8px; }
  .toy-footer span { color: var(--blue); }
  .toy-footer button { padding: 6px 7px; color: var(--ink); border: 1px solid var(--ink); background: var(--acid); font-family: var(--mono); font-size: 8px; letter-spacing: .04em; text-transform: uppercase; transition: color .2s ease, background .2s ease; }
  .toy-footer button:hover, .toy-footer button:focus-visible { color: var(--paper); background: var(--ink); }
  .toy-scribble { position: absolute; right: 4px; bottom: -38px; color: var(--ink); font-size: 10px; transform: rotate(-4deg); }
  .toy-scribble span { display: inline-block; color: var(--red); font-family: var(--display); font-size: 22px; transform: translateY(5px); }
  .confetti-layer { position: absolute; z-index: 9; inset: 0; pointer-events: none; }
  .confetti { position: absolute; width: 10px; height: 18px; background: var(--acid); animation: confetti-pop .9s var(--ease) forwards; }
  .confetti:nth-child(3n) { background: var(--red); }
  .confetti:nth-child(4n) { background: var(--yellow); }
  @keyframes confetti-pop { 0% { opacity: 1; transform: translate(0, 0) rotate(0); } 100% { opacity: 0; transform: translate(var(--confetti-x), var(--confetti-y)) rotate(540deg); } }
  .hero-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 48px; color: rgba(11,13,11,.62); font-size: 8px; }
  .hero-bottom a { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); }
  .arrow-line { display: inline-block; width: 46px; height: 2px; background: var(--blue); }

  .ticker { overflow: hidden; border-bottom: 2px solid var(--ink); background: var(--ink); color: var(--acid); }
  .ticker-track { display: flex; width: max-content; align-items: center; gap: 28px; padding: 14px 0; animation: ticker 28s linear infinite; font-family: var(--mono); font-size: 10px; letter-spacing: .12em; white-space: nowrap; text-transform: uppercase; }
  .ticker-track i { color: var(--red); font-family: var(--display); font-size: 18px; font-style: normal; }
  .ticker:hover .ticker-track { animation-play-state: paused; }
  @keyframes ticker { to { transform: translateX(-50%); } }

  .section { position: relative; padding: clamp(100px, 12vw, 175px) 0; }
  .section-top { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 15px; border-bottom: 2px solid var(--line); color: var(--muted); font-size: 9px; }
  .section-top span:first-child { color: var(--blue); }
  .section-top-dark { border-color: var(--line-light); color: rgba(245,239,217,.62); }
  .section-top-dark span:first-child { color: var(--yellow); }
  .pitch { background: var(--paper); }
  .pitch-grid { display: grid; grid-template-columns: 1fr .62fr; align-items: end; gap: clamp(50px, 11vw, 180px); padding: 75px 0 80px; }
  .section-label { color: var(--blue); font-size: 9px; }
  .pitch h2, .right-way h2, .kit-heading h2, .contract h2 { margin-top: 18px; font-size: clamp(54px, 8.1vw, 120px); font-weight: 600; letter-spacing: -.11em; line-height: .82; }
  .pitch h2 i, .kit-heading h2 em, .contract h2 em { color: var(--blue); font-style: normal; }
  .pitch-aside { max-width: 360px; padding-bottom: 5px; }
  .pitch-aside p { color: rgba(11,13,11,.66); font-size: 15px; }
  .little-button { display: inline-flex; gap: 14px; align-items: center; margin-top: 28px; padding: 9px 0; color: var(--ink); border-bottom: 2px solid var(--blue); background: transparent; font-family: var(--mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
  .little-button span { color: var(--blue); font-family: var(--display); font-size: 16px; }
  .rules-row { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 2px solid var(--ink); }
  .rules-row article { min-height: 185px; padding: 18px 22px 15px 0; border-right: 2px solid var(--ink); }
  .rules-row article + article { padding-left: 22px; }
  .rules-row article:last-child { border-right: 0; }
  .rules-row span { color: var(--blue); font-family: var(--mono); font-size: 10px; }
  .rules-row strong { display: block; margin-top: 42px; font-size: 17px; font-weight: 600; letter-spacing: -.03em; }
  .rules-row p { max-width: 220px; margin-top: 8px; color: rgba(11,13,11,.58); font-size: 13px; }

  .right-way { color: var(--paper); background: var(--ink); }
  .right-way h2 { max-width: 640px; }
  .right-way h2 em { color: var(--acid); font-style: normal; }
  .right-way-copy > p:not(.section-label) { max-width: 460px; margin-top: 28px; color: rgba(245,239,217,.68); font-size: 16px; }
  .right-way-grid { display: grid; grid-template-columns: .8fr 1fr; align-items: start; gap: clamp(50px, 10vw, 155px); padding-top: 75px; }
  .big-check { display: inline-flex; align-items: center; gap: 15px; margin-top: 65px; padding: 12px 13px 12px 8px; border: 2px solid var(--acid); transform: rotate(-3deg); }
  .big-check span { display: grid; place-items: center; width: 86px; height: 53px; color: var(--ink); background: var(--acid); font-size: 25px; letter-spacing: -.08em; line-height: 1; }
  .big-check small { color: var(--acid); font-family: var(--mono); font-size: 9px; letter-spacing: .08em; line-height: 1.2; }
  .platforms { display: flex; flex-wrap: wrap; gap: 7px; max-width: 520px; margin-top: 38px; }
  .platforms span { padding: 7px 8px; color: var(--acid); border: 1px solid rgba(201,255,46,.42); background: rgba(23,27,22,.62); font-family: var(--mono); font-size: 8px; letter-spacing: .02em; }
  .receipt { padding: 15px; border: 2px solid var(--paper); background: var(--ink-soft); box-shadow: 12px 13px 0 var(--acid); transform: rotate(2deg); }
  .receipt-head, .receipt-foot { display: flex; justify-content: space-between; gap: 15px; padding-bottom: 14px; color: rgba(245,239,217,.6); border-bottom: 1px solid var(--line-light); font-family: var(--mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
  .receipt-head span:first-child { color: var(--acid); }
  .receipt-line { display: grid; grid-template-columns: 32px 1fr 25px; align-items: center; gap: 12px; min-height: 82px; border-bottom: 1px solid var(--line-light); }
  .receipt-line > b { color: var(--yellow); font-family: var(--mono); font-size: 10px; font-weight: 400; }
  .receipt-line strong { display: block; color: var(--paper); font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: .08em; }
  .receipt-line p { margin-top: 4px; color: rgba(245,239,217,.56); font-size: 13px; }
  .receipt-tick { display: grid; place-items: center; width: 23px; height: 23px; border: 1px solid var(--acid); color: var(--acid); font-family: var(--mono); font-size: 11px; }
  .receipt-foot { padding: 14px 0 0; border: 0; font-size: 8px; }
  .receipt-foot span:last-child { color: var(--red); }

  .kit { overflow: hidden; background: var(--yellow); }
  .kit-heading { display: flex; justify-content: space-between; align-items: end; gap: 50px; padding: 70px 0 62px; }
  .kit-heading h2 { margin-top: 0; }
  .kit-heading p { max-width: 330px; color: rgba(11,13,11,.66); font-size: 14px; }
  .kit-grid { display: grid; grid-template-columns: 1.03fr .82fr .95fr; align-items: start; gap: 16px; }
  .kit-card { padding: 10px; border: 2px solid var(--ink); background: var(--paper); box-shadow: 8px 9px 0 var(--ink); transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
  .kit-card:hover { transform: translateY(-7px) rotate(-1deg); box-shadow: 11px 15px 0 var(--ink); }
  .poster-card { transform: rotate(-2deg); }
  .sticker-card { margin-top: 48px; transform: rotate(2deg); }
  .chat-card { margin-top: 90px; transform: rotate(-1deg); }
  .poster-art { position: relative; aspect-ratio: .82; overflow: hidden; padding: 17px; border: 2px solid var(--ink); background: var(--red); }
  .poster-art::before { position: absolute; right: -32%; bottom: -35%; width: 90%; aspect-ratio: 1; content: ""; border: 2px solid var(--ink); border-radius: 50%; box-shadow: 0 0 0 20px rgba(11,13,11,.09), 0 0 0 40px rgba(11,13,11,.09); }
  .poster-top, .poster-bottom { position: relative; z-index: 1; display: block; font-size: 9px; }
  .poster-copy { position: absolute; z-index: 1; top: 28%; left: 15px; color: var(--ink); font-size: clamp(37px, 5vw, 68px); font-weight: 600; letter-spacing: -.12em; line-height: .8; }
  .poster-copy b { color: var(--paper); font-weight: 600; }
  .poster-circle { position: absolute; z-index: 1; bottom: 23%; left: 16px; display: grid; place-items: center; width: 95px; height: 95px; border: 3px solid var(--ink); border-radius: 50%; color: var(--yellow); background: var(--blue); font-family: var(--mono); font-size: 11px; line-height: .9; text-align: center; transform: rotate(12deg); }
  .poster-sock { position: absolute; z-index: 2; right: 12px; bottom: 19px; width: 44%; filter: drop-shadow(6px 7px 0 var(--ink)); transform: rotate(7deg); }
  .poster-bottom { position: absolute; right: 15px; bottom: 16px; left: 15px; color: var(--ink); }
  .sticker-art { position: relative; display: grid; place-items: center; aspect-ratio: .82; overflow: hidden; border: 2px solid var(--ink); background: var(--blue); }
  .sticker-art::before { position: absolute; top: 50%; left: 50%; width: 85%; aspect-ratio: 1; content: ""; border: 2px solid var(--acid); border-radius: 50%; transform: translate(-50%, -50%); }
  .sticker-art img { position: relative; z-index: 1; width: 92%; filter: drop-shadow(7px 8px 0 var(--ink)); transform: rotate(8deg); }
  .sticker-tag { position: absolute; z-index: 2; padding: 7px 8px; color: var(--ink); border: 2px solid var(--ink); background: var(--acid); font-size: 8px; }
  .sticker-tag-a { top: 14px; left: 12px; transform: rotate(-7deg); }
  .sticker-tag-b { right: 11px; bottom: 16px; background: var(--yellow); transform: rotate(5deg); }
  .chat-art { position: relative; display: grid; place-items: center; aspect-ratio: .82; overflow: hidden; border: 2px solid var(--ink); background: var(--paper-dark); }
  .chat-window { width: 85%; overflow: hidden; border: 2px solid var(--ink); background: var(--paper); box-shadow: 7px 8px 0 var(--ink); transform: rotate(-3deg); }
  .chat-bar { display: flex; align-items: center; gap: 4px; padding: 8px; color: var(--muted); border-bottom: 2px solid var(--ink); font-family: var(--mono); font-size: 8px; }
  .chat-bar i { width: 6px; height: 6px; border: 1px solid var(--ink); border-radius: 50%; background: var(--red); }
  .chat-bar i:nth-child(2) { background: var(--yellow); }
  .chat-bar i:nth-child(3) { background: var(--acid); }
  .chat-bar span { margin-left: auto; }
  .chat-message { width: max-content; max-width: 78%; margin: 14px 11px; padding: 8px 9px; border: 1px solid var(--ink); font-size: 13px; }
  .chat-message-muted { color: var(--muted); background: var(--paper-dark); }
  .chat-message-black { margin-left: auto; color: var(--paper); background: var(--ink); }
  .chat-message-acid { color: var(--ink); background: var(--acid); font-weight: 600; }
  .chat-sock { display: block; width: 86px; margin: -1px 0 11px 17px; padding: 0; background: transparent; transform: rotate(8deg); transition: transform .25s var(--ease); }
  .chat-sock:hover { transform: rotate(2deg) scale(1.08); }
  .chat-sock img { width: 100%; }
  .chat-sticker { position: absolute; right: 17px; bottom: 19px; padding: 7px 8px; color: var(--paper); background: var(--ink); font-size: 8px; transform: rotate(5deg); }
  .kit-card-foot { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 14px 2px 2px; }
  .kit-card-foot div { display: flex; flex-direction: column; gap: 3px; }
  .kit-card-foot strong { font-family: var(--mono); font-size: 9px; font-weight: 500; letter-spacing: .08em; }
  .kit-card-foot span { color: var(--muted); font-family: var(--mono); font-size: 8px; text-transform: none; }
  .copy-button { padding: 7px 8px; color: var(--blue); border: 2px solid var(--blue); background: transparent; font-family: var(--mono); font-size: 8px; letter-spacing: .08em; }
  .copy-button:hover, .copy-button:focus-visible { color: var(--paper); background: var(--blue); }

  .lore { overflow: hidden; background: var(--paper-dark); }
  .lore::before { position: absolute; right: -13vw; bottom: -20vw; width: 50vw; aspect-ratio: 1; content: ""; border: 2px solid rgba(11,13,11,.13); border-radius: 50%; box-shadow: 0 0 0 28px rgba(11,13,11,.035), 0 0 0 56px rgba(11,13,11,.03); }
  .lore-heading { position: relative; display: grid; grid-template-columns: 1fr .58fr; align-items: end; gap: clamp(50px, 11vw, 180px); padding: 70px 0 62px; }
  .lore-heading h2 { margin-top: 18px; font-size: clamp(54px, 8.1vw, 120px); font-weight: 600; letter-spacing: -.11em; line-height: .82; }
  .lore-heading h2 em { color: var(--red); font-style: normal; text-decoration: underline; text-decoration-thickness: 6px; text-underline-offset: 8px; }
  .lore-heading > p { max-width: 350px; color: rgba(11,13,11,.66); font-size: 14px; }
  .lore-board { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); align-items: start; gap: 14px; }
  .lore-card { position: relative; min-height: 340px; overflow: hidden; padding: 15px; border: 2px solid var(--ink); background: var(--paper); box-shadow: 8px 9px 0 var(--ink); transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
  .lore-card.reveal.is-visible:nth-child(1) { transform: rotate(-2deg); }
  .lore-card.reveal.is-visible:nth-child(2) { margin-top: 34px; transform: rotate(2deg); }
  .lore-card.reveal.is-visible:nth-child(3) { margin-top: 12px; transform: rotate(-1deg); }
  .lore-card.reveal.is-visible:nth-child(4) { margin-top: 49px; transform: rotate(1.5deg); }
  .lore-card.reveal.is-visible:nth-child(1):hover { transform: translateY(-7px) rotate(-3deg); box-shadow: 11px 15px 0 var(--ink); }
  .lore-card.reveal.is-visible:nth-child(2):hover { transform: translateY(-7px) rotate(3deg); box-shadow: 11px 15px 0 var(--ink); }
  .lore-card.reveal.is-visible:nth-child(3):hover { transform: translateY(-7px) rotate(-2deg); box-shadow: 11px 15px 0 var(--ink); }
  .lore-card.reveal.is-visible:nth-child(4):hover { transform: translateY(-7px) rotate(2.5deg); box-shadow: 11px 15px 0 var(--ink); }
  .lore-card-red { background: var(--red); }
  .lore-card-blue { color: var(--paper); background: var(--blue); }
  .lore-card-acid { background: var(--acid); }
  .lore-card-next { border-style: dashed; }
  .lore-card-next::after { position: absolute; right: -18px; bottom: -38px; content: "?"; color: rgba(67,88,255,.12); font-size: 180px; font-weight: 600; letter-spacing: -.15em; line-height: 1; transform: rotate(8deg); }
  .lore-card-head { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 10px; padding-bottom: 12px; color: var(--muted); border-bottom: 1px solid var(--line); font-family: var(--mono); font-size: 8px; letter-spacing: .08em; line-height: 1.35; text-transform: uppercase; }
  .lore-card-head span:first-child { color: var(--blue); }
  .lore-card-blue .lore-card-head { color: rgba(245,239,217,.64); border-color: var(--line-light); }
  .lore-card-blue .lore-card-head span:first-child { color: var(--acid); }
  .lore-card-acid .lore-card-head span:first-child { color: var(--red); }
  .lore-card-body { position: relative; z-index: 1; display: flex; min-height: 270px; flex-direction: column; padding-top: 27px; padding-bottom: 42px; }
  .lore-kicker { color: var(--blue); font-family: var(--mono); font-size: 8px; letter-spacing: .08em; line-height: 1.35; text-transform: uppercase; }
  .lore-card-blue .lore-kicker { color: var(--acid); }
  .lore-card-acid .lore-kicker { color: var(--red); }
  .lore-card h3 { margin-top: 16px; font-size: clamp(26px, 2.55vw, 41px); font-weight: 600; letter-spacing: -.105em; line-height: .86; }
  .lore-card h3 em { color: var(--blue); font-style: normal; }
  .lore-card-blue h3 em { color: var(--acid); }
  .lore-card-acid h3 em { color: var(--red); }
  .lore-card-body > p:last-child { max-width: 240px; margin-top: auto; color: rgba(11,13,11,.65); font-size: 13px; line-height: 1.35; }
  .lore-card-blue .lore-card-body > p:last-child { color: rgba(245,239,217,.7); }
  .lore-stamp { position: absolute; z-index: 2; right: 14px; bottom: 14px; padding: 6px 7px; color: var(--ink); border: 1px solid var(--ink); background: var(--yellow); font-family: var(--mono); font-size: 7px; letter-spacing: .06em; line-height: 1.2; text-transform: uppercase; transform: rotate(-4deg); }
  .lore-card-blue .lore-stamp { color: var(--ink); background: var(--acid); }
  .lore-card-acid .lore-stamp { background: var(--paper); }
  .lore-card-next .lore-stamp { color: var(--red); border-color: var(--red); background: transparent; transform: rotate(4deg); }
  .lore-note { display: flex; justify-content: space-between; gap: 20px; margin-top: 57px; padding-top: 14px; border-top: 2px solid var(--ink); font-family: var(--mono); font-size: 9px; letter-spacing: .08em; line-height: 1.35; text-transform: uppercase; }
  .lore-note span { color: var(--muted); }
  .lore-note b { color: var(--red); font-weight: 500; }

  .contract { color: var(--paper); background: var(--red); }
  .contract::before { position: absolute; top: -32vw; left: -19vw; width: 58vw; aspect-ratio: 1; content: ""; border: 2px solid rgba(11,13,11,.18); border-radius: 50%; box-shadow: 0 0 0 35px rgba(11,13,11,.05), 0 0 0 70px rgba(11,13,11,.04); }
  .contract-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(50px, 10vw, 155px); }
  .contract h2 { max-width: 620px; }
  .contract h2 em { color: var(--ink); text-decoration: underline; text-decoration-thickness: 6px; text-underline-offset: 8px; }
  .contract-copy > p:not(.section-label) { max-width: 390px; margin-top: 28px; color: rgba(11,13,11,.7); font-size: 15px; }
  .button-paper { color: var(--ink); background: var(--paper); }
  .button-paper:hover, .button-paper:focus-visible { color: var(--paper); background: var(--ink); }
  .under-link { display: inline-flex; align-items: center; gap: 7px; color: var(--ink); font-family: var(--mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
  .under-link span { color: var(--blue); font-family: var(--display); font-size: 16px; }
  .ca-card { padding: 17px; border: 3px solid var(--ink); background: var(--ink); box-shadow: 14px 15px 0 rgba(11,13,11,.23); transform: rotate(1.5deg); }
  .ca-head, .ca-note { display: flex; justify-content: space-between; gap: 18px; color: rgba(245,239,217,.6); font-size: 9px; }
  .not-live { display: inline-flex; align-items: center; gap: 8px; color: var(--red); }
  .not-live i { width: 6px; height: 6px; box-shadow: none; }
  .ca-main { display: flex; align-items: center; gap: 15px; padding: 44px 0; border-block: 1px solid var(--line-light); margin: 17px 0; }
  .ca-main code { flex: 1; min-width: 0; overflow: hidden; color: var(--acid); font-family: var(--mono); font-size: clamp(15px, 2vw, 26px); letter-spacing: -.06em; text-overflow: ellipsis; white-space: nowrap; }
  .ca-main button { flex: 0 0 auto; padding: 9px 10px; color: var(--muted); border: 1px solid var(--line-light); background: transparent; font-family: var(--mono); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
  .ca-main button:not(:disabled):hover { color: var(--ink); background: var(--acid); }
  .ca-main button:disabled { opacity: .6; }
  .ca-note { font-size: 8px; }
  .ca-note strong { color: var(--acid); font-weight: 400; }
  .barcode { display: flex; align-items: end; gap: 4px; height: 48px; margin-top: 28px; opacity: .5; }
  .barcode i { display: block; width: 3px; height: 100%; background: var(--acid); }
  .barcode i:nth-child(2n) { height: 58%; }
  .barcode i:nth-child(3n) { height: 80%; }
  .barcode i:nth-child(5n) { width: 7px; }
  .barcode i:nth-child(7n) { height: 38%; }

  .footer { color: var(--paper); background: var(--ink); }
  .footer-inner { display: grid; grid-template-columns: 1.3fr .8fr 1.2fr; align-items: center; gap: 30px; min-height: 150px; }
  .footer-brand .brand-mark { color: var(--acid); border-color: var(--acid); }
  .footer-brand .brand-name { color: var(--paper); }
  .footer-brand .brand-name strong { color: var(--acid); }
  .footer-inner p { color: var(--muted); font-size: 12px; }
  .footer-meta { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 10px 18px; color: var(--muted); font-size: 8px; }
  .footer-meta span:last-child { color: var(--acid); }
  .toast { position: fixed; z-index: 80; right: 22px; bottom: 22px; max-width: calc(100vw - 44px); padding: 12px 15px; color: var(--ink); background: var(--acid); box-shadow: 7px 8px 0 var(--ink); font-family: var(--mono); font-size: 9px; letter-spacing: .04em; opacity: 0; transform: translateY(12px); pointer-events: none; transition: opacity .25s ease, transform .35s var(--ease); }
  .toast.is-visible { opacity: 1; transform: translateY(0); }
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
  .reveal.is-visible { opacity: 1; transform: translateY(0); }
}

@layer utilities {
  @media (max-width: 1040px) {
    :root { --shell: min(100% - 48px, 760px); }
    .topbar { grid-template-columns: 1fr auto; padding: 0 24px; }
    .main-nav { position: fixed; top: 64px; right: 0; left: 0; display: grid; gap: 0; padding: 10px 24px 18px; border-bottom: 2px solid var(--ink); background: rgba(245,239,217,.96); opacity: 0; pointer-events: none; transform: translateY(-12px); transition: opacity .25s ease, transform .35s var(--ease); }
    .main-nav a { padding: 15px 0; border-bottom: 1px solid var(--line); }
    .main-nav a:last-child { border-bottom: 0; }
    .main-nav a::after { bottom: 0; }
    .menu-open .main-nav { opacity: 1; pointer-events: auto; transform: translateY(0); }
    .topbar-right { gap: 4px; }
    .status { display: none; }
    .menu-button { display: inline-flex; }
    .hero { min-height: 1050px; }
    .hero-shell { min-height: 1050px; }
    .hero-grid { grid-template-columns: 1fr; gap: 75px; }
    .toy-wrap { width: min(100%, 650px); justify-self: end; }
    .right-way-grid, .contract-grid { grid-template-columns: 1fr; gap: 80px; }
    .lore-heading { grid-template-columns: 1fr .7fr; gap: 50px; }
    .lore-board { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .lore-card { min-height: 320px; }
    .right-way-copy { max-width: 650px; }
    .receipt, .ca-card { width: min(100%, 650px); justify-self: end; }
    .kit-heading { display: block; }
    .kit-heading p { margin-top: 25px; }
    .kit-grid { grid-template-columns: repeat(2, 1fr); }
    .poster-card { grid-column: 1; }
    .sticker-card { grid-column: 2; margin-top: 40px; }
    .chat-card { grid-column: 1 / -1; width: 54%; margin: 35px auto 0; }
    .footer-inner { grid-template-columns: 1fr 1fr; padding-block: 28px; }
    .footer-meta { grid-column: 1 / -1; justify-content: flex-start; }
  }

  @media (max-width: 620px) {
    :root { --shell: calc(100% - 36px); }
    .topbar { min-height: 68px; padding: 0 18px; }
    .topbar.is-scrolled { min-height: 60px; }
    .brand-sub { display: none; }
    .main-nav { top: 60px; padding-inline: 18px; }
    .hero { min-height: 940px; }
    .hero-shell { min-height: 940px; padding-top: 95px; padding-bottom: 57px; }
    .hero-stamp { display: none; }
    .hero-kicker { grid-template-columns: max-content 1fr; gap: 9px; font-size: 7px; }
    .hero-kicker b { text-align: right; }
    .hero-kicker i { display: none; }
    .hero-grid { gap: 58px; padding-top: 46px; }
    .eyebrow { font-size: 7px; }
    .hero h1 { margin-top: 17px; font-size: clamp(48px, 15.3vw, 74px); line-height: .84; }
    .hero h1 mark { margin-left: 6vw; padding-inline: 5px; }
    .hero h1 em { margin-left: 0; text-decoration-thickness: 4px; text-underline-offset: 5px; }
    .hero-deck { margin-top: 22px; font-size: 16px; }
    .hero-actions { margin-top: 25px; }
    .hero-actions .button { min-height: 44px; padding-left: 13px; font-size: 8px; }
    .hero-facts { gap: 8px 17px; margin-top: 31px; font-size: 8px; }
    .toy-wrap { width: 100%; }
    .browser-window { padding: 8px; box-shadow: 9px 10px 0 var(--ink); transform: rotate(1.3deg); }
    .browser-bar { height: 30px; padding-bottom: 6px; }
    .toy-stage { aspect-ratio: .94; }
    .toy-copy { top: 17px; left: 17px; }
    .toy-copy span { font-size: 7px; }
    .toy-copy strong { font-size: clamp(27px, 9vw, 40px); }
    .toy-copy small { max-width: 140px; font-size: 7px; }
    .toy-note { top: 20px; right: 12px; font-size: 7px; }
    .feed-target { right: 5%; bottom: 10%; width: 58%; }
    .hero-sticker { top: 60%; left: 45%; width: 62%; }
    .hero-sticker.is-parked { top: 63%; left: 72%; transform: translate(-50%, -50%) rotate(5deg) scale(.72); }
    .toy-burst { right: 19%; bottom: 13%; font-size: 48px; }
    .toy-footer { display: grid; grid-template-columns: 1fr max-content; gap: 8px; font-size: 7px; }
    .toy-footer button { font-size: 7px; }
    .toy-scribble { right: 0; bottom: -30px; font-size: 8px; }
    .toy-scribble span { font-size: 16px; }
    .hero-bottom { padding-top: 38px; font-size: 7px; }
    .hero-bottom a { gap: 7px; }
    .arrow-line { width: 26px; }
    .ticker-track { gap: 18px; padding-block: 12px; font-size: 8px; }
    .section { padding-block: 89px; }
    .section-top { font-size: 8px; }
    .pitch-grid { display: block; padding-block: 52px 64px; }
    .pitch h2, .right-way h2, .kit-heading h2, .contract h2 { font-size: clamp(52px, 16vw, 80px); }
    .pitch-aside { margin-top: 34px; }
    .pitch-aside p { font-size: 14px; }
    .rules-row { display: block; }
    .rules-row article, .rules-row article + article { min-height: 145px; padding: 16px 0; border-right: 0; border-bottom: 2px solid var(--ink); }
    .rules-row article:last-child { border-bottom: 0; }
    .rules-row strong { margin-top: 27px; }
    .right-way-grid { gap: 58px; padding-top: 53px; }
    .right-way-copy > p:not(.section-label) { font-size: 14px; }
    .big-check { margin-top: 42px; }
    .lore-heading { display: block; padding: 52px 0 43px; }
    .lore-heading h2 { font-size: clamp(52px, 16vw, 80px); }
    .lore-heading > p { margin-top: 25px; font-size: 13px; }
    .lore-board { display: block; }
    .lore-card, .lore-card.reveal.is-visible:nth-child(1), .lore-card.reveal.is-visible:nth-child(2), .lore-card.reveal.is-visible:nth-child(3), .lore-card.reveal.is-visible:nth-child(4) { width: 92%; min-height: 300px; margin: 0 0 27px auto; transform: rotate(0); }
    .lore-card.reveal.is-visible:nth-child(1) { transform: rotate(-1deg); }
    .lore-card.reveal.is-visible:nth-child(2) { width: 84%; margin-left: 0; transform: rotate(1deg); }
    .lore-card.reveal.is-visible:nth-child(3) { transform: rotate(-.7deg); }
    .lore-card.reveal.is-visible:nth-child(4) { width: 100%; margin-left: 0; transform: rotate(.7deg); }
    .lore-card h3 { font-size: clamp(34px, 10.5vw, 54px); }
    .lore-note { display: grid; gap: 9px; margin-top: 45px; font-size: 7px; }
    .receipt { padding: 11px; box-shadow: 8px 9px 0 var(--acid); }
    .receipt-line { grid-template-columns: 25px 1fr 22px; gap: 8px; min-height: 76px; }
    .receipt-line p { font-size: 11px; }
    .receipt-line strong { font-size: 9px; }
    .receipt-head, .receipt-foot { font-size: 7px; }
    .kit-heading { padding: 52px 0 43px; }
    .kit-heading p { font-size: 13px; }
    .kit-grid { display: block; }
    .kit-card, .poster-card, .sticker-card, .chat-card { width: 92%; margin: 0 0 27px auto; transform: rotate(0deg); }
    .sticker-card { width: 83%; margin-left: 0; }
    .chat-card { width: 100%; }
    .poster-art, .sticker-art, .chat-art { aspect-ratio: .93; }
    .poster-copy { font-size: clamp(38px, 13vw, 62px); }
    .contract-grid { gap: 57px; }
    .contract-copy > p:not(.section-label) { font-size: 14px; }
    .contract-actions { margin-top: 25px; }
    .ca-card { padding: 12px; box-shadow: 9px 10px 0 rgba(11,13,11,.23); }
    .ca-head, .ca-note { font-size: 7px; }
    .ca-main { gap: 8px; padding-block: 30px; }
    .ca-main code { font-size: 13px; }
    .ca-main button { padding-inline: 7px; font-size: 7px; }
    .footer-inner { display: grid; grid-template-columns: 1fr; gap: 20px; padding-block: 29px; }
    .footer-meta { grid-column: auto; justify-content: flex-start; font-size: 7px; }
    .toast { right: 16px; bottom: 16px; }
  }

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