  :root {
    --ink:        #0A0A1A;
    --ink-soft:   #1F1A3A;
    --cream:      #FFF6EA;
    --cream-deep: #FFEBD2;
    --peach:      #FF6B3D;
    --peach-deep: #E04A1F;
    --lime:       #DEFF47;
    --pink:       #FF4081;
    --sky:        #6ED4FF;
    --shadow:     6px 6px 0 var(--ink);
    --shadow-sm:  3px 3px 0 var(--ink);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'DM Sans', system-ui, sans-serif;
    background: var(--cream);
    color: var(--ink);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* Grain overlay */
  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/></svg>");
    opacity: 0.08;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: multiply;
  }

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

  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: 0; background: none; }

  /* ====== ANNOUNCE BAR ====== */
  .announce {
    background: var(--ink);
    color: var(--cream);
    padding: 8px 0;
    overflow: hidden;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--ink);
  }
  .announce-track {
    display: flex;
    gap: 48px;
    white-space: nowrap;
    animation: scroll-x 30s linear infinite;
    width: max-content;
  }
  .announce-track span { display: inline-flex; align-items: center; gap: 12px; }
  .announce-track .dot { color: var(--peach); }

  @keyframes scroll-x {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* ====== NAV ====== */
  nav.top {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--cream);
    border-bottom: 2px solid var(--ink);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Anton', sans-serif;
    font-size: 28px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }
  .logo-mark {
    width: 36px; height: 36px;
    background: var(--peach);
    border: 2px solid var(--ink);
    border-radius: 50%;
    position: relative;
    display: grid;
    place-items: center;
    transition: transform .3s;
  }
  .logo:hover .logo-mark { transform: rotate(20deg) scale(1.1); }
  .logo-mark::after {
    content: '✓';
    color: var(--ink);
    font-weight: 900;
    font-size: 22px;
    font-family: system-ui;
    line-height: 1;
  }
  .nav-links { display: flex; gap: 28px; align-items: center; font-weight: 500; font-size: 15px; }
  .nav-links a {
    position: relative;
    padding: 4px 0;
    transition: color .2s;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 3px;
    background: var(--peach);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
  }
  .nav-links a:hover::after { transform: scaleX(1); }

  .nav-cta {
    background: var(--ink);
    color: var(--cream);
    padding: 10px 20px;
    border: 2px solid var(--ink);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow: var(--shadow-sm);
    transition: all .15s;
  }
  .nav-cta:hover {
    background: var(--peach);
    color: var(--ink);
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 var(--ink);
  }

  .hamburger {
    display: none;
    width: 44px; height: 44px;
    background: var(--ink);
    color: var(--cream);
    border: 2px solid var(--ink);
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .hamburger span {
    display: block;
    width: 20px; height: 2px;
    background: var(--cream);
    position: relative;
  }
  .hamburger span::before, .hamburger span::after {
    content: '';
    position: absolute;
    width: 20px; height: 2px;
    background: var(--cream);
    left: 0;
  }
  .hamburger span::before { top: -6px; }
  .hamburger span::after  { top: 6px; }

  /* ====== MOBILE MENU ====== */
  .mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--ink);
    color: var(--cream);
    z-index: 200;
    padding: 24px;
    transform: translateY(-100%);
    transition: transform .4s cubic-bezier(.65,0,.35,1);
    display: flex;
    flex-direction: column;
  }
  .mobile-menu.open { transform: translateY(0); }
  .mobile-menu-head {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 48px;
  }
  .mobile-menu-close {
    width: 44px; height: 44px;
    background: var(--peach);
    color: var(--ink);
    border: 2px solid var(--cream);
    border-radius: 50%;
    font-size: 24px; font-weight: 700;
    display: grid; place-items: center;
  }
  .mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
    font-family: 'Anton', sans-serif;
    font-size: 44px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }
  .mobile-menu-links a { display: flex; align-items: baseline; gap: 12px; }
  .mobile-menu-links a span { color: var(--peach); font-size: 18px; font-family: 'JetBrains Mono'; }
  .mobile-menu-cta {
    margin-top: auto;
    background: var(--peach);
    color: var(--ink);
    padding: 18px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border: 2px solid var(--cream);
    border-radius: 12px;
    font-size: 16px;
  }

  /* ====== HERO ====== */
  .hero {
    position: relative;
    padding: 80px 24px 100px;
    overflow: hidden;
    border-bottom: 2px solid var(--ink);
  }
  .hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
    z-index: 0;
    animation: float 18s ease-in-out infinite;
  }
  .hero-blob.a { width: 520px; height: 520px; background: var(--peach); top: -100px; right: -120px; }
  .hero-blob.b { width: 420px; height: 420px; background: var(--lime); bottom: -150px; left: -80px; animation-delay: -6s; }
  .hero-blob.c { width: 300px; height: 300px; background: var(--pink); top: 40%; left: 30%; animation-delay: -12s; opacity: 0.35; }

  @keyframes float {
    0%, 100% { transform: translate(0,0) scale(1); }
    33%      { transform: translate(40px,-30px) scale(1.1); }
    66%      { transform: translate(-30px,20px) scale(0.95); }
  }

  .hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
  }
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--ink);
    color: var(--lime);
    padding: 8px 16px;
    border-radius: 999px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
    border: 2px solid var(--ink);
  }
  .eyebrow .pulse {
    width: 8px; height: 8px; background: var(--lime); border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.5); opacity: 0.6; }
  }

  h1.hero-head {
    font-family: 'Anton', sans-serif;
    font-size: clamp(56px, 11vw, 156px);
    line-height: 0.88;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 24px;
    max-width: 1100px;
  }
  h1.hero-head .italic {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 400;
    text-transform: none;
    letter-spacing: -0.04em;
    color: var(--peach);
  }
  .rotator {
    display: inline-block;
    position: relative;
    color: var(--peach);
    min-width: 5ch;
  }
  .rotator-word {
    display: inline-block;
    animation: flip-in .6s cubic-bezier(.34,1.56,.64,1);
  }
  @keyframes flip-in {
    from { transform: translateY(40%) rotate(-4deg); opacity: 0; }
    to   { transform: translateY(0) rotate(0); opacity: 1; }
  }

  .hero-sub {
    font-size: clamp(18px, 2vw, 22px);
    max-width: 620px;
    margin-bottom: 36px;
    color: var(--ink-soft);
    line-height: 1.5;
  }
  .hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
  }
  .btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 28px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border: 2px solid var(--ink);
    box-shadow: var(--shadow);
    transition: all .15s;
    border-radius: 8px;
  }
  .btn-primary { background: var(--peach); color: var(--ink); }
  .btn-secondary { background: var(--cream); color: var(--ink); }
  .btn-primary:hover, .btn-secondary:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0 var(--ink);
  }
  .btn-primary:active, .btn-secondary:active {
    transform: translate(0,0);
    box-shadow: 2px 2px 0 var(--ink);
  }
  .btn-primary .arrow { transition: transform .2s; }
  .btn-primary:hover .arrow { transform: translateX(4px) rotate(-12deg); }

  /* Sticker badges */
  .stickers {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }
  .sticker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--cream);
    border: 2px solid var(--ink);
    border-radius: 999px;
    font-weight: 500;
    font-size: 13px;
    box-shadow: var(--shadow-sm);
    transform: rotate(var(--r, -2deg));
    transition: transform .3s;
  }
  .sticker:nth-child(2) { --r: 3deg; background: var(--lime); }
  .sticker:nth-child(3) { --r: -1deg; background: var(--pink); color: var(--cream); }
  .sticker:nth-child(4) { --r: 4deg; background: var(--sky); }
  .sticker:hover { transform: rotate(0) scale(1.1); }
  .sticker .check {
    width: 18px; height: 18px;
    background: var(--ink);
    color: var(--cream);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 11px;
  }

  /* Floating decorative stickers */
  .float-sticker {
    position: absolute;
    background: var(--lime);
    border: 2px solid var(--ink);
    padding: 12px 18px;
    border-radius: 16px;
    font-family: 'Anton', sans-serif;
    font-size: 18px;
    letter-spacing: 0.02em;
    box-shadow: var(--shadow);
    z-index: 3;
    text-transform: uppercase;
    animation: wobble 5s ease-in-out infinite;
  }
  .float-sticker.s1 { top: 130px; right: 8%; transform: rotate(8deg); background: var(--pink); color: var(--cream); }
  .float-sticker.s2 { bottom: 100px; right: 14%; transform: rotate(-6deg); background: var(--lime); }
  .float-sticker.s3 { top: 50%; right: 3%; transform: rotate(12deg); background: var(--sky); animation-delay: -2s; }

  @keyframes wobble {
    0%, 100% { transform: rotate(var(--r, 8deg)) translateY(0); }
    50%      { transform: rotate(calc(var(--r, 8deg) + 4deg)) translateY(-8px); }
  }

  /* ====== MARQUEE ====== */
  .marquee {
    background: var(--ink);
    color: var(--cream);
    padding: 22px 0;
    overflow: hidden;
    border-bottom: 2px solid var(--ink);
  }
  .marquee-track {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: scroll-x 25s linear infinite;
    width: max-content;
    font-family: 'Anton', sans-serif;
    font-size: 40px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }
  .marquee-track span { display: inline-flex; align-items: center; gap: 36px; }
  .marquee-track .star { color: var(--peach); font-family: system-ui; font-size: 32px; }

  /* ====== STATS ====== */
  .stats {
    padding: 96px 24px;
    background: var(--cream);
    border-bottom: 2px solid var(--ink);
  }
  .section-head {
    max-width: 1200px;
    margin: 0 auto 56px;
  }
  .section-head .label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--peach-deep);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .section-head .label::before {
    content: '';
    width: 24px; height: 2px;
    background: var(--peach-deep);
  }
  .section-head h2 {
    font-family: 'Anton', sans-serif;
    font-size: clamp(36px, 6vw, 72px);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    max-width: 900px;
  }
  .section-head h2 .italic {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 400;
    text-transform: none;
    color: var(--peach);
  }

  .stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .stat-card {
    background: var(--cream-deep);
    border: 2px solid var(--ink);
    border-radius: 20px;
    padding: 36px 28px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: transform .3s;
  }
  .stat-card:nth-child(2) { background: var(--lime); }
  .stat-card:nth-child(3) { background: var(--peach); color: var(--ink); }
  .stat-card:hover { transform: translate(-4px, -4px) rotate(-1deg); box-shadow: 10px 10px 0 var(--ink); }
  .stat-num {
    font-family: 'Anton', sans-serif;
    font-size: clamp(64px, 9vw, 104px);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
  }
  .stat-label {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
    max-width: 260px;
  }
  .stat-card .corner {
    position: absolute;
    top: 12px; right: 16px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    opacity: 0.5;
    letter-spacing: 0.1em;
  }

  /* ====== WHY ====== */
  .why {
    padding: 96px 24px;
    background: var(--ink);
    color: var(--cream);
    border-bottom: 2px solid var(--ink);
    position: relative;
    overflow: hidden;
  }
  .why .section-head .label { color: var(--lime); }
  .why .section-head .label::before { background: var(--lime); }
  .why .section-head h2 .italic { color: var(--lime); }
  .why-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .why-card {
    background: var(--cream);
    color: var(--ink);
    padding: 32px 28px;
    border-radius: 20px;
    border: 2px solid var(--ink);
    position: relative;
    transition: transform .3s;
  }
  .why-card:nth-child(2) { background: var(--peach); }
  .why-card:nth-child(3) { background: var(--lime); }
  .why-card:hover { transform: translateY(-8px) rotate(1deg); }
  .why-num {
    position: absolute;
    top: -22px; left: 24px;
    width: 44px; height: 44px;
    background: var(--ink);
    color: var(--cream);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: 'Anton', sans-serif;
    font-size: 22px;
    border: 2px solid var(--cream);
  }
  .why-card h3 {
    font-family: 'Anton', sans-serif;
    font-size: 28px;
    text-transform: uppercase;
    line-height: 1.05;
    margin: 12px 0 16px;
    letter-spacing: 0.01em;
  }
  .why-card p { font-size: 15px; line-height: 1.55; }

  /* ====== COUNTDOWN ====== */
  .countdown {
    padding: 96px 24px;
    background: var(--lime);
    border-bottom: 2px solid var(--ink);
    position: relative;
    overflow: hidden;
  }
  .countdown::before {
    content: 'BIRTHDAY • COUNTDOWN • BIRTHDAY • COUNTDOWN • BIRTHDAY • COUNTDOWN • ';
    position: absolute;
    top: 16px; left: 0; right: 0;
    font-family: 'Anton', sans-serif;
    font-size: 18px;
    color: var(--ink);
    opacity: 0.15;
    white-space: nowrap;
    letter-spacing: 0.1em;
  }
  .countdown-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .countdown h2 {
    font-family: 'Anton', sans-serif;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
  }
  .countdown h2 .italic {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 400;
    text-transform: none;
  }
  .countdown p { font-size: 18px; max-width: 460px; margin-bottom: 28px; }
  .countdown-form { display: flex; flex-direction: column; gap: 12px; max-width: 420px; }
  .countdown-form label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
  }
  .countdown-form input {
    padding: 18px 20px;
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    background: var(--cream);
    border: 2px solid var(--ink);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    font-weight: 500;
  }
  .countdown-form input:focus { outline: none; box-shadow: 5px 5px 0 var(--ink); }

  .countdown-result {
    background: var(--ink);
    color: var(--cream);
    border: 2px solid var(--ink);
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: var(--shadow);
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .countdown-result .empty {
    text-align: center;
    color: rgba(255, 246, 234, 0.55);
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 20px;
  }
  .countdown-result h3 {
    font-family: 'Anton', sans-serif;
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--lime);
    letter-spacing: 0.02em;
  }
  .timer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 24px;
  }
  .timer-cell {
    background: var(--ink-soft);
    border: 2px solid var(--lime);
    border-radius: 12px;
    padding: 16px 10px;
    text-align: center;
  }
  .timer-num {
    font-family: 'Anton', sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    color: var(--lime);
    line-height: 1;
    margin-bottom: 4px;
  }
  .timer-lbl {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cream);
    opacity: 0.7;
  }
  .countdown-result .footnote {
    font-size: 14px;
    color: var(--cream);
    opacity: 0.85;
    border-top: 1px dashed rgba(255, 246, 234, 0.3);
    padding-top: 16px;
    line-height: 1.5;
  }
  .countdown-result .footnote strong { color: var(--peach); font-weight: 700; }

  /* ====== STATE LOOKUP ====== */
  .states {
    padding: 96px 24px;
    background: var(--cream);
    border-bottom: 2px solid var(--ink);
  }
  .states-inner { max-width: 1200px; margin: 0 auto; }
  .states-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    margin-top: 40px;
  }
  .states-controls {
    background: var(--cream-deep);
    border: 2px solid var(--ink);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow);
  }
  .states-controls label {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 700;
  }
  .states-controls select {
    width: 100%;
    padding: 16px 18px;
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    background: var(--cream);
    border: 2px solid var(--ink);
    border-radius: 12px;
    font-weight: 500;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%230A0A1A' stroke-width='2' fill='none' stroke-linecap='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
  }
  .states-info-card {
    background: var(--peach);
    border: 2px solid var(--ink);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow);
    color: var(--ink);
    min-height: 280px;
  }
  .states-info-card .state-name {
    font-family: 'Anton', sans-serif;
    font-size: 56px;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 24px;
    display: flex;
    align-items: baseline;
    gap: 12px;
  }
  .states-info-card .state-abbr {
    font-family: 'JetBrains Mono', monospace;
    font-size: 18px;
    background: var(--ink);
    color: var(--cream);
    padding: 4px 10px;
    border-radius: 6px;
  }
  .state-rows { display: grid; gap: 14px; }
  .state-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    border-bottom: 1px dashed var(--ink);
    padding-bottom: 12px;
  }
  .state-row:last-child { border-bottom: 0; }
  .state-row .k {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0.8;
    flex-shrink: 0;
  }
  .state-row .v { font-size: 16px; font-weight: 500; text-align: right; }

  /* ====== PRE-REG ====== */
  .prereg {
    padding: 120px 24px;
    background: var(--pink);
    color: var(--cream);
    border-bottom: 2px solid var(--ink);
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  .prereg-inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 2; }
  .prereg .eyebrow { background: var(--cream); color: var(--ink); border-color: var(--cream); }
  .prereg .eyebrow .pulse { background: var(--peach); }
  .prereg h2 {
    font-family: 'Anton', sans-serif;
    font-size: clamp(48px, 8vw, 104px);
    line-height: 0.9;
    text-transform: uppercase;
    margin: 24px 0 28px;
    letter-spacing: -0.01em;
  }
  .prereg h2 .italic {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    text-transform: none;
    color: var(--lime);
  }
  .prereg p { font-size: 20px; margin-bottom: 36px; opacity: 0.95; max-width: 580px; margin-left: auto; margin-right: auto; }
  .prereg .btn-big {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--lime);
    color: var(--ink);
    padding: 24px 40px;
    border: 3px solid var(--ink);
    border-radius: 16px;
    font-family: 'Anton', sans-serif;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    box-shadow: 8px 8px 0 var(--ink);
    transition: all .15s;
  }
  .prereg .btn-big:hover { transform: translate(-4px, -4px); box-shadow: 12px 12px 0 var(--ink); }
  .prereg .btn-big:active { transform: translate(0,0); box-shadow: 2px 2px 0 var(--ink); }
  .prereg-deco {
    position: absolute;
    font-family: 'Anton', sans-serif;
    color: rgba(255, 246, 234, 0.18);
    text-transform: uppercase;
    pointer-events: none;
    line-height: 0.85;
    letter-spacing: -0.02em;
  }
  .prereg-deco.tl { top: 30px; left: 4%; font-size: 80px; transform: rotate(-8deg); }
  .prereg-deco.br { bottom: 30px; right: 4%; font-size: 80px; transform: rotate(8deg); }

  /* ====== VOICES ====== */
  .voices {
    padding: 96px 24px;
    background: var(--cream);
    border-bottom: 2px solid var(--ink);
  }
  .voices-grid {
    max-width: 1200px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .voice {
    background: var(--cream-deep);
    border: 2px solid var(--ink);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: transform .3s;
    transform: rotate(var(--r));
  }
  .voice:nth-child(1) { --r: -1.5deg; }
  .voice:nth-child(2) { --r: 1deg; background: var(--lime); }
  .voice:nth-child(3) { --r: -0.5deg; background: var(--sky); }
  .voice:hover { transform: rotate(0) scale(1.03); box-shadow: 8px 8px 0 var(--ink); }
  .voice-quote {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 22px;
    line-height: 1.35;
    margin-bottom: 24px;
    font-weight: 400;
  }
  .voice-quote::before { content: '"'; font-size: 64px; line-height: 0; vertical-align: -16px; color: var(--peach); font-family: 'Fraunces', serif; }
  .voice-attr { display: flex; align-items: center; gap: 14px; }
  .voice-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--cream);
    display: grid; place-items: center;
    font-family: 'Anton', sans-serif;
    font-size: 20px;
    border: 2px solid var(--ink);
  }
  .voice-name { font-weight: 700; font-size: 15px; }
  .voice-loc { font-family: 'JetBrains Mono', monospace; font-size: 11px; opacity: 0.7; letter-spacing: 0.05em; }

  /* ====== FOOTER ====== */
  footer {
    background: var(--ink);
    color: var(--cream);
    padding: 80px 24px 32px;
    position: relative;
    overflow: hidden;
  }
  .footer-big {
    font-family: 'Anton', sans-serif;
    font-size: clamp(60px, 12vw, 180px);
    line-height: 0.85;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 56px;
    max-width: 1200px;
  }
  .footer-big .italic {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    text-transform: none;
    color: var(--peach);
  }
  .footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 246, 234, 0.2);
  }
  .footer-brand .logo { color: var(--cream); margin-bottom: 16px; }
  .footer-brand p { font-size: 14px; opacity: 0.7; max-width: 320px; line-height: 1.6; }
  .footer-col h4 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: var(--peach);
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .footer-col a { font-size: 14px; opacity: 0.85; transition: opacity .2s, color .2s; }
  .footer-col a:hover { opacity: 1; color: var(--lime); }
  .footer-bottom {
    max-width: 1200px;
    margin: 32px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    opacity: 0.6;
    flex-wrap: wrap;
    gap: 12px;
  }

  /* Reveal animations */
  [data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s ease, transform .8s cubic-bezier(.22,1,.36,1);
  }
  [data-reveal].in {
    opacity: 1;
    transform: translateY(0);
  }

  /* ====== RESPONSIVE ====== */
  @media (max-width: 900px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .stats-grid, .why-grid, .voices-grid { grid-template-columns: 1fr; }
    .countdown-inner, .states-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .float-sticker { display: none; }
    .hero { padding: 56px 20px 72px; }
    .stats, .why, .countdown, .states, .prereg, .voices { padding: 64px 20px; }
    .marquee-track { font-size: 28px; }
    nav.top { padding: 12px 16px; }
    .logo { font-size: 22px; }
    .logo-mark { width: 30px; height: 30px; }
    .stat-card { padding: 28px 22px; }
    .hero-ctas { flex-direction: column; align-items: stretch; }
    .btn-primary, .btn-secondary { justify-content: center; }
    .prereg-deco { display: none; }
    .footer-big { font-size: 56px; }
    .countdown-result { min-height: 320px; padding: 28px 22px; }
    .states-info-card .state-name { font-size: 40px; }
  }
  @media (max-width: 520px) {
    .footer-grid { grid-template-columns: 1fr; }
    h1.hero-head { font-size: 48px; }
    .timer { gap: 6px; }
    .timer-cell { padding: 12px 6px; }
  }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  }
