/* ============================================================
   FLEX LIVE — landing page
   Concept: "gig poster meets boarding pass"
   Palette: midnight navy · sunset orange · warm cream
   ============================================================ */

:root {
  /* surfaces */
  --ink:        #0c2147;   /* darkest */
  --navy:       #1B3A6B;   /* primary dark */
  --navy-2:     #234780;   /* dark card */
  --navy-3:     #2c568f;
  --cream:      #f4f1ea;   /* light bg / text-on-dark */
  --cream-2:    #ece6d8;   /* light alt */
  --paper:      #fbfaf6;   /* lightest card on cream */

  /* ink/text */
  --on-cream:       #15243d;
  --on-cream-soft:  #475571;
  --muted-cream:    rgba(21,36,61,0.62);

  /* accents — neon green family */
  --sun:        #00FF41;   /* neon green accent */
  --sun-rgb:    0, 255, 65;
  --sun-deep:   #0B6E2C;   /* deep green — readable on cream */
  --gold:       #6BFF8E;   /* light neon highlight */
  --coral:      oklch(0.72 0.165 28);    /* warm coral (errors) */

  /* lines & shadow */
  --line-dark:  rgba(244,241,234,0.14);
  --line-cream: rgba(21,36,61,0.12);
  --shadow-card: 0 30px 60px -28px rgba(8,16,30,0.55);
  --shadow-soft: 0 18px 40px -24px rgba(8,16,30,0.35);

  /* type */
  --display: "Bricolage Grotesque", system-ui, sans-serif;
  --body:    "Hanken Grotesk", system-ui, sans-serif;
  --mono:    "Space Mono", ui-monospace, monospace;

  /* layout */
  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 72px);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--body);
  background: var(--navy);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

#root { isolation: isolate; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

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

/* ---------- shared layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }

.section { position: relative; padding-block: clamp(72px, 9vw, 132px); }
.section--cream { background: var(--cream); color: var(--on-cream); }
.section--cream-2 { background: var(--cream-2); color: var(--on-cream); }
.section--navy { background: var(--navy); color: var(--cream); }
.section--ink  { background: var(--ink); color: var(--cream); }

/* ---------- type atoms ---------- */
.kicker {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  color: var(--sun);
}
.kicker--ink { color: var(--sun-deep); }
.kicker::before {
  content: "";
  width: 26px; height: 2px;
  background: currentColor;
  display: inline-block;
}
.kicker--bare::before { display: none; }

.display {
  font-family: var(--display);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin: 0;
}

.lead {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.06;
  margin: 0;
}

.sun { color: var(--sun); }
.coral { color: var(--coral); }

/* ---------- buttons ---------- */
.btn {
  --bg: var(--sun);
  --fg: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 15px 24px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  background: var(--bg);
  color: var(--fg);
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(var(--sun-rgb),0.45); }
.btn:active { transform: translateY(0); }
.btn .arr { transition: transform .2s ease; }
.btn:hover .arr { transform: translateX(3px); }

.btn--ghost {
  --bg: transparent;
  --fg: var(--cream);
  border-color: var(--line-dark);
}
.btn--ghost:hover { background: rgba(244,241,234,0.06); box-shadow: none; border-color: rgba(244,241,234,0.35); }
.section--cream .btn--ghost { --fg: var(--on-cream); border-color: var(--line-cream); }
.section--cream .btn--ghost:hover { background: rgba(21,36,61,0.04); border-color: rgba(21,36,61,0.3); }

.btn--block { width: 100%; justify-content: center; }
.btn--lg { padding: 18px 30px; font-size: 16px; }

/* ---------- chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid var(--line-dark);
  color: var(--cream);
  display: inline-flex; align-items: center; gap: 0.6em;
  background: rgba(244,241,234,0.03);
}
.chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sun); }

/* ---------- reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---------- placeholder imagery ---------- */
.ph {
  position: relative;
  overflow: hidden;
  background:
    repeating-linear-gradient(135deg,
      rgba(var(--sun-rgb),0.10) 0 2px,
      transparent 2px 11px),
    var(--navy-2);
  border: 1px solid var(--line-dark);
  display: grid;
  place-items: center;
  color: rgba(244,241,234,0.5);
}
.ph--cream {
  background:
    repeating-linear-gradient(135deg,
      rgba(21,36,61,0.07) 0 2px,
      transparent 2px 11px),
    var(--cream-2);
  border-color: var(--line-cream);
  color: rgba(21,36,61,0.42);
}
.ph__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 14px;
  border: 1px dashed currentColor;
  border-radius: 8px;
  max-width: 80%;
  line-height: 1.5;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav.solid {
  background: rgba(13,24,42,0.82);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line-dark);
  box-shadow: 0 10px 30px -22px rgba(0,0,0,0.8);
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__mark {
  width: 30px; height: 30px; border-radius: 50%;
  background: url("logo.svg") center / contain no-repeat;
  box-shadow: 0 0 18px -2px rgba(var(--sun-rgb),0.55);
  flex: none;
}
.brand__name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--cream);
}
.brand__name b { color: var(--sun); font-weight: 800; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__link {
  font-size: 14px; font-weight: 600; color: rgba(244,241,234,0.78);
  position: relative; transition: color .2s ease;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--sun); transition: width .25s ease;
}
.nav__link:hover { color: var(--cream); }
.nav__link:hover::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 16px; }
@media (max-width: 860px) { .nav__links { display: none; } }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg .ph { width: 100%; height: 100%; border: none; }
.hero__photo { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; display: block; }
.hero__glow {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(120% 80% at 78% 8%, rgba(var(--sun-rgb),0.26), transparent 46%),
    radial-gradient(90% 60% at 10% 0%, rgba(var(--sun-rgb),0.12), transparent 50%),
    linear-gradient(180deg, rgba(12,33,71,0.28) 0%, rgba(12,33,71,0.16) 38%, rgba(12,33,71,0.86) 84%, var(--ink) 100%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(48px, 7vw, 92px); padding-top: 120px; }
.hero__kicker { color: var(--gold); }
.hero h1 {
  font-size: clamp(40px, 7vw, 92px);
  margin: 20px 0 0;
  max-width: 20ch;
}
.hero h1 .ln { display: block; }
.hero__tag {
  margin: 20px 0 0;
  font-family: var(--mono);
  font-weight: 700;
  font-size: clamp(12px, 1.3vw, 15px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
}
.hero__tag::before { content: ""; width: 24px; height: 2px; background: currentColor; }
.hero__sub {
  margin: 26px 0 0;
  font-size: clamp(16px, 1.55vw, 20px);
  line-height: 1.5;
  max-width: 50ch;
  color: rgba(244,241,234,0.82);
  font-weight: 400;
}
.hero__actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__chips { margin-top: 30px; }

/* boarding-pass corner detail */
.boardingpass {
  position: absolute; z-index: 2; right: var(--pad); top: 108px;
  width: 250px;
  background: rgba(13,24,42,0.6);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  padding: 16px 18px;
  font-family: var(--mono);
  color: var(--cream);
}
.boardingpass .bp__row { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.boardingpass .bp__lab { font-size: 9.5px; letter-spacing: 0.16em; color: rgba(244,241,234,0.5); text-transform: uppercase; }
.boardingpass .bp__big { font-family: var(--display); font-weight: 800; font-size: 26px; letter-spacing: -0.01em; }
.boardingpass .bp__rule { height: 1px; background: var(--line-dark); margin: 13px 0; }
.boardingpass .bp__dotline { display: flex; align-items: center; gap: 6px; color: var(--sun); font-size: 18px; }
.boardingpass .bp__small { font-size: 10.5px; color: rgba(244,241,234,0.7); letter-spacing: 0.04em; }
@media (max-width: 1040px) { .boardingpass { display: none; } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--sun);
  color: var(--ink);
  overflow: hidden;
  border-block: 1px solid rgba(10,20,34,0.18);
  padding-block: 16px;
  white-space: nowrap;
}
.marquee__track { display: inline-flex; align-items: center; gap: 0; animation: scroll-x 38s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(20px, 2.6vw, 34px);
  letter-spacing: -0.01em;
  padding-inline: 26px;
  display: inline-flex; align-items: center; gap: 26px;
}
.marquee__star { color: rgba(10,20,34,0.55); font-size: 0.7em; }
@keyframes scroll-x { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ============================================================
   PITCH (Why / Who / What)
   ============================================================ */
.pitch__head { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: end; }
.pitch__head--solo { display: block; }
.pitch__lead { font-size: clamp(30px, 4.6vw, 60px); }
.pitch__intro { color: var(--on-cream); opacity: 0.78; font-size: 17px; line-height: 1.6; max-width: 42ch; }
.pillars { margin-top: clamp(48px, 6vw, 84px); display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.pillar { border-top: 2px solid var(--on-cream); padding-top: 22px; }
.pillar__no { font-family: var(--mono); font-size: 13px; letter-spacing: 0.1em; color: var(--sun-deep); font-weight: 700; }
.pillar__title { font-family: var(--display); font-weight: 800; font-size: 26px; margin: 14px 0 12px; letter-spacing: -0.01em; }
.pillar__body { color: var(--on-cream); opacity: 0.82; line-height: 1.62; font-size: 15.5px; }
.pillar__tag { margin-top: 18px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-cream); opacity: 0.55; }
@media (max-width: 880px) {
  .pitch__head { grid-template-columns: 1fr; gap: 22px; }
  .pillars { grid-template-columns: 1fr; gap: 14px; }
  .pillar { border-top-width: 1.5px; padding-top: 18px; }
}

/* ============================================================
   THE TRIP — itinerary + inclusions
   ============================================================ */
.trip__head { display: grid; grid-template-columns: 1.5fr 1fr; align-items: end; gap: clamp(28px, 5vw, 72px); }
.trip__title { font-size: clamp(30px, 4.4vw, 56px); max-width: 22ch; }
@media (max-width: 760px) { .trip__head { grid-template-columns: 1fr; } }

/* itinerary */
.itin { margin-top: clamp(40px, 5vw, 70px); display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border-top: 1px solid var(--line-dark); }
.itin__day { padding: 24px 18px 26px 18px; border-right: 1px solid var(--line-dark); position: relative; }
.itin__day:last-child { border-right: none; }
.itin__day::before {
  content: ""; position: absolute; top: -5px; left: 0; width: 9px; height: 9px; border-radius: 50%;
  background: var(--navy); border: 2px solid var(--sun);
}
.itin__day.is-show::before { background: var(--sun); box-shadow: 0 0 14px -1px var(--sun); }
.itin__no { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; color: rgba(244,241,234,0.55); text-transform: uppercase; }
.itin__day.is-show .itin__no { color: var(--sun); }
.itin__t { font-family: var(--display); font-weight: 700; font-size: 17px; margin: 12px 0 8px; letter-spacing: -0.01em; text-align: center; }
.itin__d { font-size: 13px; line-height: 1.5; color: rgba(244,241,234,0.66); }
@media (max-width: 920px) {
  .itin { grid-template-columns: 1fr 1fr; border-top: none; }
  .itin__day { border-right: none; border-top: 1px solid var(--line-dark); padding: 20px 0; }
  .itin__day::before { display: none; }
}

/* inclusions */
.incl { margin-top: clamp(44px, 5vw, 72px); }
.incl__bar { display: flex; flex-wrap: wrap; align-items: baseline; gap: 16px; justify-content: space-between; }
.incl__lab { font-family: var(--display); font-weight: 800; font-size: clamp(22px,2.6vw,30px); letter-spacing: -0.01em; }
.incl__note { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(244,241,234,0.55); }
.incl__grid { margin-top: 26px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); border-radius: var(--radius); overflow: hidden; }
.incl__item { background: var(--navy); padding: 20px 20px; display: flex; gap: 14px; align-items: flex-start; transition: background .2s ease; }
.incl__item:hover { background: var(--navy-2); }
.incl__check {
  flex: none; width: 22px; height: 22px; border-radius: 50%; margin-top: 1px;
  background: var(--sun); color: var(--ink);
  display: grid; place-items: center; font-size: 12px; font-weight: 800;
}
.incl__name { font-weight: 700; font-size: 15px; }
.incl__sub { font-size: 12.5px; color: rgba(244,241,234,0.6); margin-top: 3px; line-height: 1.45; }
@media (max-width: 880px) { .incl__grid { grid-template-columns: 1fr; } }

/* ============================================================
   PACKAGES
   ============================================================ */
.pkg__head { text-align: center; max-width: 60ch; margin-inline: auto; }
.pkg__title { font-size: clamp(32px, 4.6vw, 58px); margin-top: 18px; }
.pkg__sub { margin-top: 16px; color: var(--on-cream); opacity: 0.78; font-size: 17px; line-height: 1.55; }
.pkg__grid { margin-top: clamp(44px, 5vw, 64px); display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.card {
  background: var(--paper);
  border: 1px solid var(--line-cream);
  border-radius: 22px;
  padding: 30px 28px 32px;
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .3s ease, border-color .25s ease;
  position: relative;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.card.is-selected { border-color: var(--sun); box-shadow: 0 0 0 2px var(--sun), var(--shadow-soft); }
.card--feat {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
  box-shadow: var(--shadow-card);
  transform: translateY(-10px);
}
.card--feat:hover { transform: translateY(-16px); }
.card--feat.is-selected { box-shadow: 0 0 0 2px var(--sun), var(--shadow-card); }
.card__flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--sun); color: var(--ink);
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700;
  padding: 7px 14px; border-radius: 999px; white-space: nowrap;
}
.card__tier { font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; color: var(--sun-deep); }
.card--feat .card__tier { color: var(--sun); }
.card__star { color: var(--sun-deep); letter-spacing: 2px; font-size: 13px; margin-left: 4px; }
.card--feat .card__star { color: var(--gold); }
.card__price { font-family: var(--display); font-weight: 800; letter-spacing: -0.02em; margin: 16px 0 2px; display: flex; align-items: baseline; gap: 7px; flex-wrap: nowrap; white-space: nowrap; }
.card__price .amt { font-size: 44px; }
.card__price .per { font-size: 13.5px; font-family: var(--body); font-weight: 600; opacity: 0.6; white-space: nowrap; }
.card__hotel { font-size: 14px; opacity: 0.72; }
.card__pricenote { font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sun-deep); margin: 16px 0 6px; font-weight: 700; }
.card--feat .card__pricenote { color: var(--sun); }
.card__rule { height: 1px; background: var(--line-cream); margin: 22px 0; }
.card--feat .card__rule { background: var(--line-dark); }
.card__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.card__list li { display: flex; gap: 11px; font-size: 14.5px; line-height: 1.4; align-items: flex-start; }
.card__tick { color: var(--sun-deep); font-weight: 800; flex: none; }
.card--feat .card__tick { color: var(--sun); }
.card__btn { margin-top: 26px; }
.card .btn--ghost { --fg: var(--on-cream); border-color: var(--line-cream); }
.card--feat .btn--ghost { --fg: var(--cream); border-color: var(--line-dark); }

.pkg__foot { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: center; align-items: center; }
.pkg__addons { font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; color: var(--on-cream); opacity: 0.7; }
.pkg__addons b { color: var(--sun-deep); font-weight: 700; }
.pkg__fine { font-size: 13px; color: var(--on-cream); opacity: 0.6; text-align: center; max-width: 70ch; margin: 14px auto 0; line-height: 1.5; }
@media (max-width: 940px) {
  .pkg__grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .card--feat { transform: none; }
  .card--feat:hover { transform: translateY(-6px); }
}

/* ============================================================
   WAITLIST + POLL
   ============================================================ */
.wl { position: relative; overflow: hidden; }
.wl__glow { position: absolute; z-index: 0; inset: 0; pointer-events: none;
  background: radial-gradient(70% 60% at 85% 110%, rgba(var(--sun-rgb),0.18), transparent 55%); }
.wl__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(36px, 5vw, 72px); align-items: start; }

.founder { }
.founder__title { font-size: clamp(30px, 4vw, 52px); margin-top: 18px; }
.founder__note { margin-top: 22px; font-size: 16.5px; line-height: 1.62; color: rgba(244,241,234,0.84); max-width: 44ch; }
.founder__note .hl { color: var(--sun); font-weight: 600; }
.founder__by { margin-top: 22px; display: flex; align-items: center; gap: 14px; }
.founder__pic { width: 52px; height: 52px; border-radius: 50%; overflow: hidden; flex: none; }
.founder__pic .ph { width: 100%; height: 100%; }
.founder__pic .ph__label { display: none; }
.founder__who { font-weight: 700; font-size: 15px; }
.founder__role { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.08em; color: rgba(244,241,234,0.6); margin-top: 2px; }

/* poll */
.poll { margin-top: 38px; border: 1px solid var(--line-dark); border-radius: var(--radius); padding: 22px 22px 24px; background: rgba(244,241,234,0.03); }
.poll__q { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sun); }
.poll__t { font-family: var(--display); font-weight: 700; font-size: 19px; margin: 8px 0 16px; }
.poll__list { display: flex; flex-direction: column; gap: 10px; }
.vote {
  position: relative; width: 100%; text-align: left; overflow: hidden;
  border: 1px solid var(--line-dark); background: rgba(244,241,234,0.02);
  border-radius: 11px; padding: 12px 15px; color: var(--cream);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  transition: border-color .2s ease, background .2s ease;
}
.vote:hover { border-color: rgba(var(--sun-rgb),0.6); }
.vote.voted { cursor: default; }
.vote__fill { position: absolute; inset: 0; width: 0; background: rgba(var(--sun-rgb),0.16); transition: width .8s cubic-bezier(.2,.8,.2,1); z-index: 0; }
.vote.is-pick .vote__fill { background: rgba(var(--sun-rgb),0.32); }
.vote__name { position: relative; z-index: 1; font-weight: 700; font-size: 15px; display: flex; align-items: center; gap: 9px; }
.vote__pct { position: relative; z-index: 1; font-family: var(--mono); font-size: 13px; color: rgba(244,241,234,0.78); }
.vote.voted .vote__pct { color: var(--sun); }
.poll__total { margin-top: 13px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: rgba(244,241,234,0.5); }

/* form */
.form-card {
  background: var(--cream); color: var(--on-cream);
  border-radius: 24px; padding: clamp(26px, 3vw, 40px);
  box-shadow: var(--shadow-card);
}
.form-card__head { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.form-card__title { font-family: var(--display); font-weight: 800; font-size: 26px; letter-spacing: -0.01em; }
.form-card__count { font-family: var(--mono); font-size: 12px; color: var(--sun-deep); white-space: nowrap; }
.field { margin-top: 18px; }
.field label { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-cream); opacity: 0.7; margin-bottom: 7px; }
.field .req { color: var(--coral); }
.input, .select {
  width: 100%; font-family: var(--body); font-size: 15.5px; color: var(--on-cream);
  background: var(--paper); border: 1.5px solid var(--line-cream); border-radius: 12px;
  padding: 13px 15px; transition: border-color .2s ease, box-shadow .2s ease;
}
.input::placeholder { color: rgba(21,36,61,0.4); }
textarea.input { resize: vertical; min-height: 60px; line-height: 1.5; }
.checkrow--err .checkbox { border-color: var(--coral); }
.input:focus, .select:focus { outline: none; border-color: var(--sun-deep); box-shadow: 0 0 0 3px rgba(var(--sun-rgb),0.25); }
.input.err { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(220,90,60,0.14); }
.field__err { color: var(--coral); font-size: 12.5px; margin-top: 6px; font-weight: 600; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.tierpick { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.tierpick button {
  font-family: var(--body); font-weight: 700; font-size: 13.5px;
  padding: 11px 6px; border-radius: 10px; border: 1.5px solid var(--line-cream);
  background: var(--paper); color: var(--on-cream); transition: all .18s ease;
}
.tierpick button:hover { border-color: var(--sun); }
.tierpick button.on { background: var(--navy); color: var(--cream); border-color: var(--navy); }

.checkrow { margin-top: 18px; display: flex; align-items: flex-start; gap: 11px; cursor: pointer; }
.checkrow input { position: absolute; opacity: 0; width: 0; height: 0; }
.checkbox { flex: none; width: 20px; height: 20px; border-radius: 6px; border: 1.5px solid var(--line-cream); background: var(--paper); display: grid; place-items: center; transition: all .18s ease; margin-top: 1px; }
.checkrow input:checked + .checkbox { background: var(--sun); border-color: var(--sun); }
.checkbox svg { opacity: 0; transition: opacity .15s ease; }
.checkrow input:checked + .checkbox svg { opacity: 1; }
.checkrow span.lbl { font-size: 14px; line-height: 1.45; color: var(--on-cream); opacity: 0.85; }
.form-submit { margin-top: 24px; }
.form-fine { margin-top: 14px; font-size: 12px; color: var(--on-cream); opacity: 0.6; text-align: center; line-height: 1.5; }

/* success */
.success { text-align: center; padding: clamp(20px, 3vw, 40px) 6px; }
.success__mark { width: 66px; height: 66px; border-radius: 50%; margin: 0 auto; background: var(--sun); color: var(--ink); display: grid; place-items: center; font-size: 30px; animation: pop .5s cubic-bezier(.2,1.4,.4,1); }
@keyframes pop { from { transform: scale(0); } }
.success__t { font-family: var(--display); font-weight: 800; font-size: 30px; margin: 20px 0 0; letter-spacing: -0.01em; }
.success__num { color: var(--sun-deep); }
.success__p { margin: 14px auto 0; max-width: 36ch; line-height: 1.55; opacity: 0.8; font-size: 15.5px; }
.success__hand { margin-top: 22px; font-family: var(--mono); font-size: 13px; color: var(--sun-deep); font-weight: 700; }

@media (max-width: 940px) { .wl__grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .row2 { grid-template-columns: 1fr; } .tierpick { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.foot { padding-block: clamp(54px, 6vw, 84px) 36px; }
.foot__top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 36px; }
.foot__brand { max-width: 30ch; }
.foot__tag { margin-top: 16px; color: rgba(244,241,234,0.66); line-height: 1.55; font-size: 15px; }
.foot__cols { display: flex; gap: clamp(36px, 6vw, 84px); flex-wrap: wrap; }
.foot__col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(244,241,234,0.5); margin: 0 0 16px; font-weight: 700; }
.foot__col a { display: block; font-size: 14.5px; color: rgba(244,241,234,0.82); margin-bottom: 11px; transition: color .2s ease; }
.foot__col a:hover { color: var(--sun); }
.foot__bottom { margin-top: clamp(40px, 5vw, 64px); padding-top: 24px; border-top: 1px solid var(--line-dark); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; align-items: center; }
.foot__fine { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.04em; color: rgba(244,241,234,0.5); }
.foot__ig { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: 14.5px; color: var(--cream); }
.foot__ig:hover { color: var(--sun); }

/* generic section header used in a couple places */
.shead { max-width: 60ch; }
