/* LFG brand teaser. Single-theme by design: the brand's ink, cream, and gold
   world, painted explicitly. Fonts are self-hosted (SIL OFL faces); the only
   third-party request is the ElevenLabs voice agent, loaded after the gate. */
@font-face {
  font-family: "Anton";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/anton-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Anton";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/anton-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/inter-latin.woff2") format("woff2");
}

:root {
  --ink: #0e0b08;
  --ink-2: #16110c;
  --cream: #f4efe6;
  --cream-2: #ebe4d6;
  --paper: #faf7f1;
  --gold: #c68436;
  --bronze: #905424;
  --gold-light: #eaae60;
  --text-dark: #1b150e;
  --text-dark-muted: #6d6254;
  --text-light: #f4efe6;
  --text-light-muted: rgba(244, 239, 230, 0.66);
  --line-dark: rgba(27, 21, 14, 0.18);
  --line-light: rgba(244, 239, 230, 0.22);
  --display: "Anton", "Arial Narrow", "Impact", sans-serif;
  --sans: "Inter", system-ui, sans-serif;
  --pad-x: 1.5rem;
  --nav-h: 5.5rem;
  --scrim: 0.55;
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--text-light);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.75;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--display); font-weight: 400; margin: 0; text-transform: uppercase; color: inherit; }
:where(a) { color: inherit; text-decoration: none; }
img, video { max-width: 100%; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.container { width: 100%; max-width: 74rem; margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); box-sizing: border-box; }

/* Text color rule (BUILD_SPEC 7.1): eyebrows are text-dark on cream and gold-light on ink.
   Accent spans (.tone) use the gold gradient everywhere. --bronze is never used for text. */
.eyebrow { display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.32em; text-transform: uppercase; color: var(--text-dark); margin-bottom: 1.4rem; }
.band-dark .eyebrow, .hero .eyebrow, .gate .eyebrow { color: var(--gold-light); }
.h1 { font-size: clamp(2.7rem, 10.5vw, 6.2rem); line-height: 0.98; letter-spacing: 0.012em; }
.h2 { font-size: clamp(2.15rem, 7.5vw, 4.35rem); line-height: 1.03; letter-spacing: 0.012em; }
/* Forced two-line headlines: each line stays on one row at every viewport. */
.h-lines > span { white-space: nowrap; }
.hero-headline.h-lines { font-size: clamp(2.5rem, 12vw, 6.2rem); }
.source-heading .tone { display: block; }
.tone { color: var(--gold-light); }
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .tone,
  .gold-gradient-text {
    background: linear-gradient(120deg, #9e6422 0%, #dba34b 28%, #f0cf81 48%, #c78531 70%, #e7b65e 100%);
    -webkit-background-clip: text; background-clip: text;
    color: transparent; -webkit-text-fill-color: transparent;
  }
}
.lede { max-width: 38em; color: var(--text-dark); margin: 1.6rem 0 0; }
.band-dark .lede { color: var(--text-light-muted); }
.gold-line { margin: 2.2rem 0 0; font-family: var(--display); font-size: clamp(1.15rem, 3.4vw, 1.6rem); letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold-light); }
.close-line { margin: 3rem 0 0; max-width: 40em; font-style: italic; color: var(--text-light-muted); }
.band { position: relative; padding: 5.5rem 0; scroll-margin-top: var(--nav-h); }
.band-light { background: var(--cream); color: var(--text-dark); }
.band-dark { background: var(--ink); color: var(--text-light); }

/* Image bands share one construction (BUILD_SPEC 7.3): .band-media > img[data-parallax] + .band-scrim.
   Scrim strength per band is --scrim on the section. */
.image-band { position: relative; overflow: clip; scroll-margin-top: var(--nav-h); }
.band-media { position: absolute; inset: 0; }
.band-media img { position: absolute; left: 0; top: -8%; width: 100%; height: 116%; object-fit: cover; will-change: transform; }
.band-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,11,8,.28) 0%, rgba(14,11,8,0) 38%, rgba(14,11,8,0) 62%, rgba(14,11,8,.32) 100%),
    rgba(14, 11, 8, var(--scrim));
}
.band-content { position: relative; }
.image-band-tall { padding: 9rem 0; }
#source { display: flex; align-items: center; min-height: 60vh; box-sizing: border-box; }
.crack-band { --scrim: 0.72; }
.poll-band { --scrim: 0.10; width: 100%; height: auto; aspect-ratio: 1470 / 1070; max-height: 85vh; min-height: 18rem; margin: 0; padding: 0; overflow-x: clip; overflow-y: visible; z-index: 1; }
.story-band { --scrim: 0.66; }
.moment-band { --scrim: 0.55; }
.launch-band { --scrim: 0.5; }
.closer { --scrim: 0.62; }
.crack-band .band-media img { object-position: center 85%; }
.story-band .band-media img { object-position: center center; filter: saturate(.78) contrast(1.08) brightness(.76); }
.poll-band .band-media img { top: 0; height: 100%; object-fit: cover; object-position: center 30%; transform: none; will-change: auto; }
/* Stack on this band: image (0), scrim (1). Hard bottom edge into the cream section. */
.poll-band .band-media { z-index: 0; }
.poll-band .band-media img { z-index: 0; }
.poll-band .band-scrim { z-index: 1; }
.band.poll-section { padding-top: 96px; box-sizing: border-box; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  padding: 1.05rem 1.7rem; border: 1px solid currentColor; background: transparent; color: inherit;
  font-family: var(--sans); font-size: 0.76rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; line-height: 1; cursor: pointer; white-space: nowrap;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}
.btn-filled { background: var(--text-dark); border-color: var(--text-dark); color: var(--cream); }
.btn-filled:hover { background: var(--bronze); border-color: var(--bronze); color: var(--cream); }
.band-dark .btn-filled, .hero .btn-filled, .mobile-bar .btn-filled, .gate .btn-filled { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.band-dark .btn-filled:hover, .hero .btn-filled:hover, .mobile-bar .btn-filled:hover, .gate .btn-filled:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-ghost:hover { background: rgba(198,132,54,.12); border-color: var(--gold); }
.btn[disabled] { opacity: 0.6; cursor: default; }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.4rem; }

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40; height: var(--nav-h);
  box-sizing: border-box;
  display: flex; align-items: center; background: transparent; color: var(--cream);
  transition: background-color .35s ease, color .35s ease;
}
.nav.solid { background: rgba(244,239,230,.9); color: var(--text-dark); box-shadow: none; -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; height: 100%; }
.nav-brand { display: inline-flex; align-items: center; justify-content: center; height: 100%; }
.nav-logo { display: block; width: auto; height: 3.9rem; }
.nav-right { display: flex; align-items: center; gap: 2.2rem; }
.nav-link { display: none; font-size: 0.76rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; opacity: .86; transition: opacity .2s ease; }
.nav-link:hover { opacity: 1; }

.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end; overflow: clip; padding-bottom: 3.5rem; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media video, .hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
  filter: saturate(0.35) contrast(1.06) brightness(0.92) sepia(0.18);
}
.ken-burns { animation: kenburns 22s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1) translateY(0); } to { transform: scale(1.12) translateY(-2.5%); } }
.hero-scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(14,11,8,.65) 0%, rgba(14,11,8,.32) 34%, rgba(14,11,8,.52) 66%, var(--ink) 100%); }
.hero-top-eyebrow { position: absolute; top: calc(var(--nav-h) + 1.6rem); left: 0; right: 0; z-index: 2; }
.hero-top-eyebrow .eyebrow { margin-bottom: 0; color: rgba(244,239,230,.82); }
.hero-content { position: relative; z-index: 2; }
.hero-headline { margin-top: 0.4rem; }
.hero-lede { max-width: 34em; color: rgba(244,239,230,.85); margin: 1.2rem 0 0; }
.moments { display: flex; flex-wrap: wrap; column-gap: 0.6rem; row-gap: 0.25rem; align-items: baseline; margin: 1.3rem 0 0; list-style: none; padding: 0; }
.moment-item { display: inline-flex; align-items: baseline; gap: 0.6rem; }
.moment-word { font-family: var(--display); font-size: clamp(0.8rem, 2.2vw, 1.05rem); letter-spacing: 0.06em; text-transform: uppercase; color: rgba(244,239,230,.32); transition: color .6s ease; white-space: nowrap; }
.moment-word.active { color: var(--gold-light); }
.moment-dot { color: rgba(244,239,230,.3); font-size: 0.85rem; }
.hero .cta-row { margin-top: 1.8rem; }

/* The Crack proof row */
.proof-grid { display: grid; grid-template-columns: 1fr; gap: 1.6rem; margin-top: 3.5rem; border-top: 1px solid var(--line-light); padding-top: 2.4rem; }
.proof-label { display: block; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-light); }
.proof-line { margin: 0.7rem 0 0; color: var(--text-light); font-size: 0.98rem; line-height: 1.6; max-width: 24em; }

/* Five-can lineup stage (BUILD_SPEC 7.2) */
.lineup-band { padding-bottom: 0; overflow: clip; }
.lineup-proof { display: flex; align-items: flex-start; gap: 1.75rem; color: var(--gold-light); }
.lineup-proof > div { display: flex; flex-direction: column; align-items: flex-start; }
.stat-number { font-family: var(--display); font-size: clamp(4.5rem, 16vw, 7.5rem); line-height: 0.85; color: var(--gold-light); }
.stat-label { display: block; margin-top: 0.8rem; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.32em; color: var(--text-light-muted); }
.stat-lines { max-width: 21rem; margin: 0; padding: 0; font-family: var(--display); font-size: clamp(1.25rem, 4.5vw, 1.75rem); line-height: 1.25; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-light); }
.stat-lines > .stat-line { display: block; }
.stat-lines .reveal { transform: translateY(8px); transition: opacity .6s ease-out, transform .6s ease-out; }
.stat-line:first-child > .reveal { display: inline-block; }
.stat-line:first-child > .reveal:not(:last-child) { margin-right: .3em; }
.stat-line:first-child > .reveal:nth-child(2) { transition-delay: .3s; }
.stat-line:first-child > .reveal:nth-child(3) { transition-delay: .6s; }
.stat-line.reveal:nth-child(2) { transition-delay: 1s; }
.stat-line.reveal:nth-child(3) { transition-delay: 1.4s; }
.lineup-stage-wrap { position: relative; margin-top: 3rem; padding-bottom: 3.5rem; }
.lineup-glow {
  position: absolute; left: 50%; top: 45%; width: min(120vw, 70rem); aspect-ratio: 1.6; transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(234,174,96,.26) 0%, rgba(198,132,54,.12) 32%, rgba(14,11,8,0) 68%);
  pointer-events: none;
}
.lineup-stage {
  position: relative; display: flex; gap: 0; margin: 0; padding: 0 0 1rem;
  overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.lineup-stage::-webkit-scrollbar { display: none; }
.lineup-can {
  --arc-y: 0%; --arc-scale: 1;
  position: relative; flex: 0 0 100%; scroll-snap-align: center; display: flex; flex-direction: column; align-items: center;
  padding: 0; border: 0; background: transparent; color: var(--text-light); cursor: pointer; font: inherit;
  transform: translateY(var(--arc-y)) scale(var(--arc-scale)); transform-origin: center bottom;
  transition: transform .45s cubic-bezier(.22,1,.36,1), opacity .35s ease;
}
.lineup-can:focus-visible { outline: none; }
.lineup-can-art { position: relative; display: block; width: min(52vw, 13rem); }
.lineup-can-art.reveal { transform: translateY(48px); }
.lineup-can-art.reveal.in { transform: translateY(0); }
.lineup-can-art img {
  display: block; width: 100%; height: auto; -webkit-user-drag: none; user-select: none;
  filter: drop-shadow(0 1.2rem 1.4rem rgba(0,0,0,.45));
  -webkit-box-reflect: below -0.35rem linear-gradient(to bottom, rgba(0,0,0,0) 72%, rgba(0,0,0,.22) 100%);
}
/* Gold rim light, masked to the can silhouette. */
.lineup-can-art::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(100deg, rgba(234,174,96,0) 58%, rgba(240,207,129,.34) 86%, rgba(234,174,96,.55) 100%);
  -webkit-mask-image: var(--can-src); mask-image: var(--can-src);
  -webkit-mask-size: 100% auto; mask-size: 100% auto; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  mix-blend-mode: screen; opacity: .9;
}
.lineup-can-label { display: flex; flex-direction: column; align-items: center; margin-top: 1.1rem; text-align: center; transition: opacity .3s ease, transform .3s ease; }
.lineup-can-name { font-family: var(--display); font-size: 1.15rem; letter-spacing: .05em; text-transform: uppercase; }
.lineup-can-tag { margin-top: .25rem; font-size: .84rem; font-style: italic; color: var(--text-light-muted); }
.lineup-dots { display: flex; justify-content: center; gap: .55rem; margin-top: .5rem; }
.lineup-dot { width: .5rem; height: .5rem; padding: 0; border: 0; border-radius: 50%; background: rgba(244,239,230,.28); cursor: pointer; transition: background-color .25s ease, transform .25s ease; }
.lineup-dot.is-active { background: var(--gold-light); transform: scale(1.25); }

.arc-table { margin-top: 3rem; border-top: 1px solid var(--line-dark); }
.arc-row { display: grid; grid-template-columns: 1fr; gap: 0.3rem; padding: 1.4rem 0; border-bottom: 1px solid var(--line-dark); }
.arc-name { font-family: var(--display); font-size: 1.25rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-dark); }
.arc-desc { color: var(--text-dark); }
.arc-close { margin-top: 2.2rem; font-style: italic; color: var(--text-dark); }

.flavor-experience { margin-top: 3.2rem; border: 1px solid var(--line-light); background: #12100d; }
.flavor-stage {
  --flavor-accent: #30a967;
  display: grid; grid-template-rows: 22rem minmax(0, 1fr); height: 41.5rem; overflow: hidden;
  background: var(--ink-2); border-bottom: 1px solid var(--line-light);
}
.flavor-stage-media { position: relative; z-index: 1; min-width: 0; overflow: hidden; background: #171816; }
.flavor-stage-track {
  position: absolute; inset: 0; display: flex; width: 100%; height: 100%;
  transform: translate3d(0,0,0); transition: transform .82s cubic-bezier(.45,0,.55,1); will-change: transform;
}
.flavor-scene {
  position: relative; isolation: isolate; display: flex; flex: 0 0 100%; align-items: flex-end; justify-content: center;
  gap: clamp(.45rem, 2vw, 1.3rem); width: 100%; min-width: 0; height: 100%; padding: 1rem 1.25rem 0; box-sizing: border-box; overflow: hidden;
}
.flavor-stage-background {
  position: absolute; z-index: -2; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
  filter: brightness(.88) saturate(.94); transform: scale(1.01);
}
.flavor-scene::after { content: ""; position: absolute; z-index: -1; inset: 0; background: rgba(8,9,8,.08); pointer-events: none; }
.flavor-stage-background[hidden] { display: none; }
.flavor-can-frame { position: relative; z-index: 1; display: grid; place-items: end center; width: min(45%, 11.5rem); height: 100%; min-width: 0; }
.flavor-scene.flavor-paired-overlap .flavor-can-frame:first-of-type { z-index: 2; transform: translateX(22%); }
.flavor-scene.flavor-paired-overlap .flavor-can-frame:last-of-type {
  transform: translateX(-26%) translateY(-5px) scale(.96); transform-origin: center bottom;
}
.flavor-can-image { display: block; width: auto; max-width: 100%; height: 100%; object-fit: contain; object-position: center bottom; }
.flavor-can-placeholder {
  position: relative; display: grid; align-content: center; justify-items: center; width: min(100%, 10.5rem); height: 88%;
  box-sizing: border-box; border: 1px solid color-mix(in srgb, var(--flavor-accent) 62%, transparent); border-radius: 4.5rem 4.5rem 2.2rem 2.2rem;
  background: linear-gradient(90deg, rgba(255,255,255,.03), rgba(255,255,255,.09) 48%, rgba(255,255,255,.025));
  color: color-mix(in srgb, var(--flavor-accent) 72%, var(--cream)); font-size: .63rem; font-weight: 700; letter-spacing: .28em;
}
.flavor-can-placeholder[hidden] { display: none; }
.flavor-can-placeholder::before { content: ""; position: absolute; top: -.2rem; left: 7%; right: 7%; height: .72rem; border: 1px solid color-mix(in srgb, var(--gold-light) 62%, transparent); border-radius: 50%; }
.flavor-placeholder-number { display: block; font-family: var(--display); font-size: clamp(4.8rem, 20vw, 8rem); line-height: .9; letter-spacing: 0; color: color-mix(in srgb, var(--flavor-accent) 28%, transparent); }
.flavor-stage-copy {
  position: relative; z-index: 4; display: flex; flex-direction: column; justify-content: center; min-width: 0;
  padding: 1.05rem 1.25rem 1.15rem; box-sizing: border-box; background: var(--ink-2);
  border-top: 3px solid var(--flavor-accent); transition: border-color .24s ease;
}
.flavor-stage-copy-content { opacity: 1; transition: opacity .41s cubic-bezier(.45,0,.55,1); }
.flavor-stage-copy-content.is-fading { opacity: 0; }
.flavor-num { display: block; font-size: 0.64rem; font-weight: 600; letter-spacing: 0.28em; color: var(--text-light-muted); margin-bottom: 0.7rem; }
.flavor-name { font-size: clamp(1.55rem, 6vw, 2.6rem); line-height: 1.03; }
.flavor-expression { display: block; margin-top: 0.65rem; font-size: 0.7rem; line-height: 1.35; font-weight: 600; letter-spacing: 0.21em; text-transform: uppercase; color: var(--gold-light); }
.flavor-copy { margin: 0.7rem 0 0; max-width: 34em; color: var(--text-light-muted); font-size: 0.9rem; line-height: 1.5; }
.flavor-tag { display: block; margin-top: 0.6rem; font-size: 0.86rem; font-style: italic; color: var(--gold-light); }
.flavor-meta { display: block; margin-top: 0.85rem; font-size: 0.64rem; font-weight: 600; letter-spacing: 0.26em; color: rgba(244,239,230,.4); }
.flavor-selectors {
  display: grid; grid-auto-flow: column; grid-auto-columns: 9.25rem; overflow-x: auto; overscroll-behavior-inline: contain;
  scrollbar-width: thin; scrollbar-color: rgba(234,174,96,.45) transparent;
}
.flavor-selector {
  --selector-accent: var(--gold-light);
  position: relative; display: flex; flex-direction: column; justify-content: space-between; width: 100%; height: 7rem; min-width: 0;
  padding: .85rem 1rem; box-sizing: border-box; border: 0; border-right: 1px solid var(--line-light); border-radius: 0;
  background: transparent; color: var(--cream); text-align: left; cursor: pointer; overflow: hidden;
  transition: background-color .25s ease, color .25s ease;
}
.flavor-selector:last-child { border-right: 0; }
.flavor-selector::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: .25rem; background: var(--selector-accent); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.flavor-selector:hover { background: rgba(255,255,255,.035); }
.flavor-selector.is-active { background: color-mix(in srgb, var(--selector-accent) 10%, transparent); }
.flavor-selector.is-active::after { transform: scaleX(1); }
.flavor-selector-index { font-family: var(--display); font-size: 1.25rem; line-height: .9; color: color-mix(in srgb, var(--selector-accent) 72%, var(--cream)); }
.flavor-selector-name { font-family: var(--display); font-size: .88rem; line-height: 1.03; letter-spacing: .035em; text-transform: uppercase; }
.abv-note { display: block; margin-top: 1.6rem; font-size: 0.8rem; letter-spacing: 0.06em; color: rgba(244,239,230,.45); }

/* Have a Say (poll) */
.poll-grid { display: grid; gap: 3rem; }
.poll-grid > * { min-width: 0; }
.poll-support { margin: 1.4rem 0 0; max-width: 34em; font-size: 0.92rem; color: var(--text-dark); }
.poll-widget { --widget-offset: 48px; position: relative; box-sizing: border-box; min-width: 0; padding: calc(var(--widget-offset) + 1.6rem) 0 0; color: var(--text-dark); }
.poll-widget .poll-progress { top: var(--widget-offset); }
.poll-progress { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: rgba(27,21,14,.14); }
.poll-progress-fill { display: block; height: 100%; width: 20%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); transition: width .45s cubic-bezier(.22,1,.36,1); }
.poll-widget .poll-title { color: var(--gold); margin-bottom: 1rem; }
.poll-step { display: none; margin: 0; padding: 0; border: 0; min-width: 0; min-inline-size: 0; max-width: 100%; }
.poll-step.is-active { display: block; }
.poll-question { display: block; padding: 0; margin-bottom: 1.4rem; font-family: var(--display); font-size: clamp(1.35rem, 4.5vw, 1.9rem); line-height: 1.12; letter-spacing: .02em; text-transform: uppercase; color: var(--text-dark); }
.poll-cans { display: flex; gap: .75rem; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding: .5rem 0 .75rem; }
.poll-cans::-webkit-scrollbar { display: none; }
.poll-can {
  flex: 0 0 5.6rem; scroll-snap-align: center; display: grid; grid-template-rows: 110px auto; justify-items: center; gap: .6rem; padding: .4rem .2rem .5rem; border: 0;
  background: transparent; color: var(--text-dark); font: inherit; text-align: center; cursor: pointer;
  transition: transform .3s cubic-bezier(.22,1,.36,1);
}
.poll-can img { align-self: end; width: auto; height: 110px; filter: drop-shadow(0 .7rem .8rem rgba(27,21,14,.28)); transition: filter .3s ease; }
.poll-can-name { position: relative; align-self: start; padding-bottom: .35rem; font-family: var(--display); font-size: .78rem; line-height: 1.1; letter-spacing: .04em; text-transform: uppercase; }
.poll-can-name::after { content: ""; position: absolute; left: 10%; right: 10%; bottom: 0; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); transform: scaleX(0); transition: transform .3s ease; }
.poll-can:hover, .poll-can:focus-visible, .poll-can.is-selected { transform: translateY(-8px); }
.poll-can:hover img, .poll-can.is-selected img { filter: drop-shadow(0 1.1rem 1rem rgba(27,21,14,.32)); }
.poll-can.is-selected .poll-can-name::after { transform: scaleX(1); }
.poll-options { display: grid; gap: .55rem; }
.poll-option {
  display: block; width: 100%; padding: .85rem 1.2rem; border: 1px solid var(--text-dark); border-radius: 999px; background: transparent;
  color: var(--text-dark); font-family: var(--sans); font-size: .92rem; font-weight: 500; text-align: left; cursor: pointer;
  transition: border-color .25s ease, background-color .25s ease, color .25s ease;
}
.poll-option:hover, .poll-option:focus-visible { border-color: var(--gold); background: rgba(198,132,54,.1); }
.poll-option.is-selected { border-color: var(--gold); background: var(--gold); color: var(--ink); }
.poll-elsewhere { display: grid; gap: .6rem; margin-top: .8rem; }
.poll-fields { display: grid; gap: .7rem; }
.poll-back { margin-top: 1.2rem; padding: 0; border: 0; background: none; color: var(--text-dark-muted); font-family: var(--sans); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; }
.poll-back:hover { color: var(--gold); }
.poll-result { text-align: left; }
.poll-result .eyebrow { margin-bottom: .6rem; }
.poll-result-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }
.poll-card { display: block; width: min(100%, 14rem); height: auto; aspect-ratio: 4 / 5; margin: 1.4rem 0 0; background: var(--ink); box-shadow: 0 1.2rem 2.4rem rgba(27,21,14,.22); }
.poll-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.3rem; }
.poll-survey-link { display: inline-block; margin-top: 1.2rem; color: var(--gold); font-size: .88rem; font-weight: 600; letter-spacing: .04em; text-decoration: underline; text-underline-offset: .2em; }
.poll-widget .form-error { margin-top: 1rem; }
.poll-widget .form-disclosure { color: var(--text-dark-muted); }
.poll-widget .form-disclosure a { color: var(--gold); }
.city-tally { margin-top: 1.6rem; padding-top: 1.3rem; border-top: 1px solid var(--line-dark); }
.tally-title { display: block; margin-bottom: .8rem; font-size: .66rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); }
.tally-row { display: grid; grid-template-columns: minmax(7.5rem, 2fr) minmax(0, 5fr) auto; align-items: center; gap: .7rem; padding: .3rem 0; font-size: .82rem; }
.tally-label { color: var(--text-dark); }
.tally-bar { display: block; height: 6px; background: rgba(27,21,14,.12); overflow: hidden; }
.tally-fill { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%); transition: width .9s cubic-bezier(.22,1,.36,1); }
.tally-value { color: var(--text-dark-muted); font-variant-numeric: tabular-nums; white-space: nowrap; }

/* The Story */
.story-band { min-height: 46rem; box-sizing: border-box; display: grid; align-items: center; }
.story-grid { display: flex; justify-content: center; container-type: inline-size; }
.story-copy { max-width: 60ch; text-align: center; }
.story-heading { font-size: min(7.4cqw, 4.35rem); }
.story-quote { margin: 2rem auto 0; max-width: 60ch; color: var(--text-light); font-size: clamp(1.05rem, 2.1vw, 1.3rem); line-height: 1.7; text-wrap: balance; }
.story-quote p { margin: 0; }
.story-attribution { margin: 1.4rem 0 0; color: var(--gold-light); font-size: .78rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; }
.story-disclosure { margin-top: 2rem; }
.story-disclosure summary { display: inline-block; cursor: pointer; color: var(--text-light-muted); font-size: .8rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; text-decoration: underline; text-underline-offset: .22em; list-style: none; }
.story-disclosure summary::-webkit-details-marker { display: none; }
.story-disclosure summary:hover { color: var(--gold-light); }
.story-full { margin-top: 1.4rem; color: var(--text-light-muted); font-size: .95rem; line-height: 1.75; }
.story-full p { margin: 0; }
.story-full p + p { margin-top: 1rem; }

.launch-band { padding: 7.5rem 0 6.5rem; }
.launch-band .band-media img { object-position: center center; filter: saturate(.84) contrast(1.04) brightness(.92); }
.launch-copy { max-width: 42rem; }
.launch-copy-center { max-width: 46rem; margin: 0 auto; text-align: center; }
.launch-copy-center .lede { margin-left: auto; margin-right: auto; }
.launch-map-wrap { width: 100%; margin: 3.5rem auto 0; text-align: center; }
.map-row { --gap: 2.5rem; --fig-h: 300px; display: grid; grid-template-columns: 1fr; justify-items: center; align-items: center; gap: calc(var(--gap) + 2.6rem); padding-bottom: 2.6rem; }
.map-figure { position: relative; display: flex; align-items: center; justify-content: center; margin: 0; width: calc(var(--w) * 78%); height: var(--fig-h); cursor: default; outline: none; transition: transform .25s ease; }
.map-figure:hover, .map-figure:focus-visible { transform: translateY(-6px); }
.map-state-svg { display: block; width: 100%; max-height: 100%; height: auto; overflow: visible; }
.map-state { fill: rgba(198,132,54,.12); stroke: rgba(198,132,54,.8); stroke-width: 1; stroke-linejoin: round; vector-effect: non-scaling-stroke; filter: drop-shadow(0 0 6px rgba(198,132,54,.4)); transition: fill .25s ease, filter .25s ease; }
.map-figure:hover .map-state, .map-figure:focus-visible .map-state { fill: rgba(198,132,54,.28); filter: drop-shadow(0 0 14px rgba(198,132,54,.4)); }
.map-launch-texture { fill: url(#contour-california); pointer-events: none; }
[data-state="nevada"] .map-launch-texture { fill: url(#contour-nevada); }
[data-state="arizona"] .map-launch-texture { fill: url(#contour-arizona); }
.map-contour { stroke: rgba(198,132,54,.08); stroke-width: 1; }
.map-dot { fill: var(--gold); r: 5; }
.map-label { font-family: var(--sans); font-size: 16px; font-weight: 600; letter-spacing: .16em; fill: var(--cream); paint-order: stroke; stroke: rgba(14,11,8,.75); stroke-width: 4px; stroke-linejoin: round; transition: fill .25s ease; }
.map-figure:hover .map-label, .map-figure:focus-visible .map-label { fill: #fff; }
.map-caption { position: absolute; left: 0; right: 0; top: calc(100% + .9rem); margin: 0; font-family: var(--display); font-size: 1rem; letter-spacing: .08em; color: var(--gold-light); }
.state-launch { width: min(100%, 60rem); margin-top: 5rem; }
.state-group { min-width: 0; }
.launch-phase { display: block; margin-bottom: 1.8rem; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.3em; color: var(--text-light-muted); }
.state-pair { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(.65rem, 2vw, 1.5rem); }
.state-card { min-width: 0; text-align: center; transition: transform .35s ease; }
.state-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 0.55rem; }
.state-art { display: grid; place-items: center; height: 10.5rem; }
.state-art img { display: block; width: auto; max-width: 7.25rem; height: auto; max-height: 100%; object-fit: contain; transition: transform .35s ease, filter .35s ease, opacity .35s ease; }
.state-card h3 { margin-top: 1rem; font-size: clamp(.82rem, 3.35vw, 1.85rem); letter-spacing: 0.05em; }
.state-card-active h3 { color: var(--gold-light); }
.state-card-active .state-art img { filter: brightness(0) saturate(100%) invert(72%) sepia(44%) saturate(647%) hue-rotate(351deg) brightness(97%) contrast(92%); }
.state-card:hover, .state-card:focus-visible { transform: translateY(-0.55rem); }
.state-card-active:hover .state-art img, .state-card-active:focus-visible .state-art img { filter: brightness(0) saturate(100%) invert(72%) sepia(44%) saturate(647%) hue-rotate(351deg) brightness(1.08) contrast(92%) drop-shadow(0 0 0.75rem rgba(234,174,96,.42)); }

.notify-form { display: flex; flex-direction: column; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.4rem; max-width: 34rem; }
.input, .select {
  width: 100%; padding: 1.05rem 1.1rem; background: transparent; border: 1px solid var(--line-dark);
  color: inherit; font-family: var(--sans); font-size: 0.95rem; letter-spacing: 0.04em; border-radius: 0;
  appearance: none; box-sizing: border-box;
}
.band-dark .input, .band-dark .select { border-color: var(--line-light); }
.input::placeholder { color: var(--text-dark-muted); text-transform: uppercase; font-size: 0.78rem; letter-spacing: 0.22em; }
.band-dark .input::placeholder { color: rgba(244,239,230,.45); }
.input:focus, .select:focus { outline: none; border-color: var(--gold); }
.select { text-transform: uppercase; font-size: 0.78rem; letter-spacing: 0.22em; }
.select:invalid { color: var(--text-dark-muted); }
.band-dark .select:invalid { color: rgba(244,239,230,.45); }
.select option { color: var(--text-dark); background: var(--cream); }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 0.9rem; margin-top: 2.4rem; max-width: 44rem; }
.form-success { margin-top: 1.4rem; font-family: var(--display); font-size: 1.3rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold-light); }
.form-error { margin-top: 1rem; font-size: 0.85rem; color: #c96a4a; }
.form-disclosure { margin: 0.25rem 0 0; color: var(--text-light-muted); font-size: 0.72rem; line-height: 1.6; letter-spacing: 0.01em; }
.form-disclosure a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 0.18em; }
.closer-form .form-disclosure { flex-basis: 100%; text-align: center; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; margin: 0; }
.trust-line { margin: 1.4rem 0 0; max-width: 44rem; font-size: .84rem; color: var(--text-light-muted); }

.trade-layout { display: grid; grid-template-areas: "head" "copy" "venues" "form"; }
.trade-head { grid-area: head; container-type: inline-size; }
.trade-copy { grid-area: copy; }
.trade-copy .lede { margin-top: 2rem; }
/* Line one measures 13.3x the font size in Anton, so size the heading to the full container width. */
.trade-heading { font-size: min(7.3cqw, 4.35rem); }
.trade-form { grid-area: form; }
.trade-form .form-grid { margin-top: 3.5rem; }
.venue-list { grid-area: venues; margin-top: 3.75rem; }
.venue-list-title {
  display: block; margin-bottom: 1.5rem; color: var(--gold-light); font-size: 0.72rem;
  font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase;
}
.venue-list-viewport { position: relative; }
.venue-list-items { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.venue-list-viewport { height: 22rem; overflow: hidden; }
.venue-list-viewport::before, .venue-list-viewport::after { content: ""; position: absolute; left: 0; right: 0; height: 60px; z-index: 1; pointer-events: none; }
.venue-list-viewport::before { top: 0; background: linear-gradient(to bottom, var(--ink), rgba(14,11,8,0)); }
.venue-list-viewport::after { bottom: 0; background: linear-gradient(to top, var(--ink), rgba(14,11,8,0)); }
.venue-list.is-looping .venue-list-items { animation: venueLoop 30s linear infinite; will-change: transform; backface-visibility: hidden; transform: translate3d(0,0,0); }
.venue-list.is-looping .venue-item, .venue-list.is-looping .venue-item::before { transform: translateZ(0); backface-visibility: hidden; }
.venue-list.is-looping .venue-list-items:hover { animation-play-state: paused; }
@keyframes venueLoop { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(0, calc(-50% - .35rem), 0); } }
.venue-item {
  display: grid; grid-template-columns: 1.65rem minmax(0, 1fr); gap: 0.9rem; align-items: center;
  color: rgba(244,239,230,.84); font-family: var(--display); font-size: clamp(1.15rem, 4.6vw, 1.5rem);
  line-height: 1.2; letter-spacing: 0.035em; text-transform: uppercase;
  opacity: 0; transform: translateY(14px);
  transition: opacity .68s ease-out, transform .68s cubic-bezier(.22, 1, .36, 1);
}
.venue-item::before { content: ""; width: 1.65rem; height: 1px; background: var(--gold); }
.venue-list.in .venue-item { opacity: 1; transform: translateY(0); }
.venue-list.in .venue-item:nth-child(2) { transition-delay: .12s; }
.venue-list.in .venue-item:nth-child(3) { transition-delay: .24s; }
.venue-list.in .venue-item:nth-child(4) { transition-delay: .36s; }
.venue-list.in .venue-item:nth-child(5) { transition-delay: .48s; }
.venue-list.in .venue-item:nth-child(6) { transition-delay: .6s; }
.venue-list.in .venue-item:nth-child(7) { transition-delay: .72s; }
.venue-list.in .venue-item:nth-child(8) { transition-delay: .84s; }
.venue-list.in .venue-item:nth-child(9) { transition-delay: .96s; }
.venue-list.in .venue-item:nth-child(10) { transition-delay: 1.08s; }

.closer { text-align: center; padding: 8rem 0; }
.closer .cta-row { justify-content: center; }
.closer .lede, .closer-form { margin-left: auto; margin-right: auto; }
.closer .form-success, .closer .form-error { text-align: center; }
.social-row { display: flex; justify-content: center; align-items: center; gap: 40px; margin: 2.2rem 0 0; padding: 0; list-style: none; }
.social-row a { display: inline-flex; color: var(--text-light); opacity: .85; transition: opacity .2s ease, color .2s ease; }
.social-row svg { display: block; width: 28px; height: 28px; }
.social-row a:hover, .social-row a:focus-visible { opacity: 1; color: var(--gold-light); }
.closer-line { margin-top: 2.6rem; }

.footer { background: var(--paper); color: var(--text-dark); padding: 4.5rem 0 8.5rem; }
.footer-grid { display: grid; gap: 3rem; }
.footer-brand img { width: 7.5rem; height: auto; }
.footer-tagline { display: block; margin-top: 1.4rem; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.32em; text-transform: uppercase; color: var(--text-dark-muted); line-height: 2; }
.footer-cols { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 2.4rem; }
.footer-col-title { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.32em; text-transform: uppercase; color: var(--text-dark-muted); margin-bottom: 1.2rem; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.85rem; font-size: 0.98rem; }
.footer-links a { color: var(--text-dark); opacity: 0.82; transition: opacity .2s ease, color .2s ease; }
.footer-links a:hover { opacity: 1; color: var(--gold); }
.footer-legal { margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid var(--line-dark); font-size: 0.82rem; color: var(--text-dark-muted); display: grid; gap: 0.4rem; }

.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 45; display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.7rem; padding: 0.8rem var(--pad-x) calc(0.8rem + env(safe-area-inset-bottom));
  background: rgba(14,11,8,.92); backdrop-filter: blur(10px); border-top: 1px solid var(--line-light);
  transform: translateY(105%); transition: transform .45s ease;
}
.mobile-bar.visible { transform: translateY(0); }
.mobile-bar .btn { padding: 1rem 0.5rem; }
.mobile-bar .btn-ghost { color: var(--cream); }

.intro {
  position: fixed; inset: 0; z-index: 55; display: grid; place-items: center;
  background: var(--ink); pointer-events: none; opacity: 1; transition: opacity .8s ease-in-out;
}
.intro.out { opacity: 0; }
.intro-logo { width: min(52vw, 17rem); height: auto; opacity: 0; transform: scale(.96); transition: opacity .7s ease-out, transform .7s ease-out; }
.intro.play .intro-logo { opacity: 1; transform: scale(1); }

.gate { position: fixed; inset: 0; z-index: 60; display: grid; place-items: center; background: var(--ink); padding: var(--pad-x); text-align: center; }
.gate[hidden] { display: none; }
.gate-inner { max-width: 30rem; display: flex; flex-direction: column; align-items: center; }
.gate-mark { width: 4.5rem; height: auto; margin-bottom: 2rem; }
.gate .eyebrow { margin-bottom: 1rem; }
.gate-title { font-size: clamp(2rem, 8vw, 3rem); line-height: 1.05; }
.gate-question { margin: 1.2rem 0 0; color: var(--text-light-muted); }
.gate-buttons { display: flex; gap: 0.9rem; margin-top: 2.4rem; flex-wrap: wrap; justify-content: center; }
.gate-declined { margin-top: 2rem; color: var(--text-light-muted); font-style: italic; }

.legal-body { background: var(--cream); color: var(--text-dark); }
.legal-body .nav { position: fixed; }
.legal-page { min-height: 70vh; padding: calc(var(--nav-h) + 5rem) 0 6rem; }
.legal-shell { max-width: 52rem; }
.legal-kicker { display: block; margin-bottom: 1.2rem; color: var(--text-dark); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.32em; text-transform: uppercase; }
.legal-title { font-size: clamp(3rem, 10vw, 5.75rem); line-height: 0.98; }
.legal-date { margin: 1.4rem 0 0; color: var(--text-dark-muted); font-size: 0.86rem; }
.legal-copy { margin-top: 3.5rem; }
.legal-copy h2 { margin-top: 3rem; font-size: clamp(1.7rem, 5vw, 2.4rem); line-height: 1.1; }
.legal-copy h3 { margin-top: 2rem; font-family: var(--sans); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.legal-copy p, .legal-copy li { color: var(--text-dark-muted); }
.legal-copy p { margin: 1rem 0 0; }
.legal-copy ul { margin: 1rem 0 0; padding-left: 1.25rem; }
.legal-copy li + li { margin-top: 0.55rem; }
.legal-copy a { color: var(--text-dark); text-decoration: underline; text-underline-offset: 0.18em; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease-out, transform .7s ease-out; }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (min-width: 640px) {
  .notify-form { flex-direction: row; }
  .notify-form .input { flex: 1; }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .grid-wide { grid-column: 1 / -1; }
  .proof-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; }
  .poll-cans { justify-content: space-between; overflow: visible; scroll-snap-type: none; }
  .poll-can { flex: 1 1 0; }
  .poll-can { grid-template-rows: 140px auto; }
  .poll-can img { height: 140px; }
  .poll-options { grid-template-columns: 1fr 1fr; }
  .poll-elsewhere { grid-template-columns: minmax(0, 1fr) auto; }
  .poll-fields { grid-template-columns: 1fr 1fr; }
  .poll-fields .btn { grid-column: 1 / -1; }
}
@media (min-width: 768px) {
  :root { --pad-x: 2.5rem; }
  .band { padding: 7.5rem 0; }
  .lineup-band { padding-bottom: 0; }
  .lineup-proof { gap: 2.5rem; }
  .lineup-proof > div { flex: 0 0 11rem; }
  .lineup-proof .stat-lines { max-width: 38rem; font-size: clamp(1.6rem, 2.15vw, 2rem); }
  /* Desktop arc: hero center 8% larger, neighbors stepped back, outer smallest. */
  .lineup-stage-wrap { margin-top: 4rem; padding-bottom: 5rem; }
  .lineup-stage { justify-content: center; align-items: flex-end; gap: clamp(.5rem, 2vw, 2rem); padding: 2.5rem 0 1.5rem; overflow: visible; scroll-snap-type: none; }
  .lineup-can { flex: 0 0 auto; }
  .lineup-can:nth-child(1), .lineup-can:nth-child(5) { --arc-y: -3.5rem; --arc-scale: .84; }
  .lineup-can:nth-child(2), .lineup-can:nth-child(4) { --arc-y: -1.6rem; --arc-scale: .94; }
  .lineup-can-hero { --arc-scale: 1.08; z-index: 2; }
  .lineup-can-art { width: clamp(8rem, 14vw, 12.5rem); }
  .lineup-can:nth-child(1) .lineup-can-art.reveal { transition-delay: .32s; }
  .lineup-can:nth-child(2) .lineup-can-art.reveal { transition-delay: .16s; }
  .lineup-can:nth-child(3) .lineup-can-art.reveal { transition-delay: 0s; }
  .lineup-can:nth-child(4) .lineup-can-art.reveal { transition-delay: .16s; }
  .lineup-can:nth-child(5) .lineup-can-art.reveal { transition-delay: .32s; }
  .lineup-can-label { position: absolute; left: 50%; top: 100%; width: 14rem; transform: translate(-50%, .2rem); opacity: 0; pointer-events: none; }
  .lineup-can:hover, .lineup-can:focus-visible { transform: translateY(calc(var(--arc-y) - 12px)) scale(var(--arc-scale)); z-index: 3; }
  .lineup-can:hover .lineup-can-label, .lineup-can:focus-visible .lineup-can-label { opacity: 1; transform: translate(-50%, 0); }
  .lineup-stage:hover .lineup-can:not(:hover), .lineup-stage:focus-within .lineup-can:not(:focus-visible) { opacity: .7; }
  .lineup-stage:hover .lineup-can:hover, .lineup-stage:focus-within .lineup-can:focus-visible { opacity: 1; }
  .lineup-dots { display: none; }
  .launch-band { padding: 9rem 0 8rem; }
  .map-row { --fig-h: 380px; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--gap); }
  .map-figure { width: calc(var(--w) * 88%); }
  .map-figure[data-state="california"] { justify-self: end; margin-right: -3rem; }
  .map-state-svg { max-height: 420px; }
  .state-art { height: 11.5rem; }
  .state-art img { max-width: 10rem; }
  .flavor-stage { grid-template-columns: minmax(0, 7fr) minmax(20rem, 5fr); grid-template-rows: 1fr; height: 36.5rem; }
  .flavor-scene { padding: 1.5rem 2rem 0; }
  .flavor-can-frame { width: min(46%, 15rem); height: 92%; }
  .flavor-scene.flavor-paired-overlap .flavor-can-frame:last-of-type { transform: translateX(-26%) translateY(-8px) scale(.96); }
  .flavor-stage-copy { padding: clamp(1.8rem, 3.5vw, 3rem); border-top: 0; border-left: 3px solid var(--flavor-accent); }
  .flavor-selectors { grid-auto-flow: row; grid-auto-columns: auto; grid-template-columns: repeat(5, minmax(0, 1fr)); overflow: visible; }
  .flavor-selector { width: 100%; height: 9rem; padding: clamp(.9rem, 1.7vw, 1.25rem); }
  .flavor-selector-index { font-size: clamp(1.3rem, 1.9vw, 1.7rem); }
  .flavor-selector-name { font-size: clamp(.82rem, 1.25vw, 1.02rem); }
  .poll-band { max-height: 85vh; }
  .band.poll-section { padding-top: 104px; }
  .trade-layout {
    grid-template-columns: minmax(0, 7fr) minmax(17rem, 5fr);
    grid-template-areas: "head head" "copy venues" "form venues";
    column-gap: 5rem;
    align-items: start;
  }
  .venue-list { align-self: center; margin-top: 1.5rem; }
  .venue-item { font-size: clamp(1.08rem, 2vw, 1.42rem); }
}
@media (max-width: 767px) {
  .hero-top-eyebrow .eyebrow { font-size: 0.62rem; letter-spacing: 0.22em; }
  .map-label { font-size: 22px; stroke-width: 6px; }
  .map-dot { r: 6; }
  .map-dot { r: 7; }
  .map-dot-glow { r: 14; }
  .flavor-stage-media { touch-action: pan-y; }
  .flavor-stage-media img { -webkit-user-drag: none; user-select: none; }
  .lineup-can-art.reveal { transition-delay: 0s; }
}
@media (min-width: 1024px) {
  :root { --pad-x: 3.5rem; --nav-h: 6.5rem; }
  .nav-logo { height: 4.5rem; }
  .nav-link { display: inline-block; }
  .band { padding: 8.5rem 0; }
  .lineup-band { padding-bottom: 0; }
  .image-band-tall { padding: 13rem 0; }
  .closer { padding: 11rem 0; }
  .mobile-bar { display: none; }
  .split-grid { display: grid; grid-template-columns: minmax(0,7fr) minmax(0,5fr); gap: 5rem; align-items: start; }
  .poll-grid { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 5rem; align-items: start; }
  .poll-widget { --widget-offset: 96px; }
  .poll-widget.is-result { display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 2fr); column-gap: 2.5rem; align-items: start; }
  .poll-widget.is-result .poll-result .eyebrow { white-space: nowrap; }
  .poll-widget.is-result .tally-row { grid-template-columns: minmax(0, 1fr) auto; grid-template-areas: "label value" "bar bar"; row-gap: .35rem; padding: .45rem 0; }
  .poll-widget.is-result .tally-label { grid-area: label; }
  .poll-widget.is-result .tally-value { grid-area: value; }
  .poll-widget.is-result .tally-bar { grid-area: bar; }
  .poll-widget.is-result .poll-title, .poll-widget.is-result .form-error { grid-column: 1 / -1; }
  .poll-widget.is-result .poll-result { grid-column: 1; }
  .poll-widget.is-result .city-tally { grid-column: 2; margin-top: 3.4rem; padding-top: 0; border-top: 0; }
  .split-grid-flip > :first-child { order: 2; text-align: right; }
  .split-grid-flip > :last-child .lede { margin-top: 0; }
  .story-band { min-height: 57rem; }
  .story-copy { max-width: none; }
  .arc-row { grid-template-columns: minmax(0,4fr) minmax(0,8fr); gap: 2rem; padding: 1.7rem 0; }
  .flavor-stage { grid-template-columns: minmax(0, 7.2fr) minmax(24rem, 4.8fr); height: 38.5rem; }
  .flavor-can-frame { width: min(45%, 16.5rem); height: 94%; }
  .footer-grid { grid-template-columns: minmax(0,5fr) minmax(0,7fr); gap: 5rem; }
  .footer-cols { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .footer { padding-bottom: 4.5rem; }
  .footer-legal { grid-template-columns: 1fr auto; align-items: baseline; }
  .launch-band { min-height: 54rem; padding: 10.5rem 0 8.5rem; box-sizing: border-box; }
  .state-launch { margin-top: 5.5rem; }
  .state-pair { gap: 1rem; }
  .state-art { height: 12rem; }
  .state-art img { max-width: 12rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ken-burns { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .venue-item { opacity: 1; transform: none; transition: none; }
  .moment-word, .mobile-bar, .intro, .intro-logo { transition: none; }
  .lineup-can, .lineup-can-label, .tally-fill, .stat-lines .reveal, .poll-can, .poll-progress-fill, .map-figure, .map-state { transition: none; }
  .venue-list.is-looping .venue-list-items { animation: none; }
  .venue-list-viewport { height: auto; overflow: visible; }
  .venue-list-viewport::before, .venue-list-viewport::after { display: none; }
  .flavor-stage-track, .flavor-stage-copy-content, .flavor-stage-copy, .flavor-selector, .flavor-selector::after { transition: none; }
  .flavor-stage-copy-content { opacity: 1; }
}
