/* ─────────────────────────────────────────────────────
   SceneBuilder Marketing — Layout & Components
   ───────────────────────────────────────────────────── */


/* ── Tab visibility: one section at a time ───────────── */
.scene-section { display: none; }
.scene-section.active { display: block; }
/* ── Reset ───────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ── Base ────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  background: var(--night);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ── Radial gradient glow (body::before) ─────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(34, 211, 238, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(200, 255, 0, 0.025) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 50% 80%, rgba(5, 150, 105, 0.03) 0%, transparent 70%);
}

/* ── Grain overlay (body::after) ─────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* ── Skip link ───────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: 0.5rem 1rem;
  background: var(--cyan);
  color: var(--night);
  font-family: var(--mono-display);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: top 0.2s;
}

.skip-link:focus {
  top: 1rem;
}

/* ── Site wrapper ────────────────────────────────────── */
.site-wrapper {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

/* ══════════════════════════════════════════════════════
   STICKY ANCHOR NAV
   ══════════════════════════════════════════════════════ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(4, 6, 13, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 8vw;
  height: 52px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.site-nav::-webkit-scrollbar { display: none; }

/* Brand mark in nav */
.site-nav__brand {
  font-family: var(--slab);
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  margin-right: 2rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.site-nav__brand span { color: var(--cyan); }

/* Nav links wrapper */
.site-nav__links {
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
  flex: 1;
}

/* Individual nav link */
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0 1.25rem;
  height: 52px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  font-family: var(--mono-display);
  font-weight: 100;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  outline: none;
  position: relative;
  /* underline slide-in on hover */
  transition:
    color 0.25s var(--ease-out),
    border-color 0.25s var(--ease-out);
}

/* Hover state: accent-colored underline slide-in */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 1.25rem;
  right: 1.25rem;
  height: 2px;
  background: var(--nav-accent, var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s var(--ease-out);
}

.nav-link:hover {
  color: var(--text-muted);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: -2px;
}

/* Active state — section in view */
.nav-link.active {
  color: var(--nav-accent, var(--cyan));
  border-bottom-color: var(--nav-accent, var(--cyan));
}

.nav-link.active::after {
  transform: scaleX(1);
}

/* Per-section accent vars for the nav highlight */
.nav-link[data-section="overview"]   { --nav-accent: var(--cyan); }
.nav-link[data-section="artists"]    { --nav-accent: var(--chartreuse); }
.nav-link[data-section="venues"]     { --nav-accent: var(--red); }
.nav-link[data-section="listeners"]  { --nav-accent: var(--pine-text); }
.nav-link[data-section="champions"]  { --nav-accent: var(--amber); }

/* Nav icon tint */
.nav-link.active .nav-icon { color: var(--nav-accent, var(--cyan)); }
.nav-icon { font-size: 0.6rem; }

/* ══════════════════════════════════════════════════════
   SCENE SECTIONS — all render simultaneously
   ══════════════════════════════════════════════════════ */
.scene-section {
  position: relative;
  z-index: 1;
}

/* Section divider */
.scene-section + .scene-section {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* ══════════════════════════════════════════════════════
   DUOTONE HERO BLOCK
   ══════════════════════════════════════════════════════ */
.hero {
  padding: 10vh 8vw 8vh;
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid var(--accent-dim, rgba(34, 211, 238, 0.06));
}

/* Hero with duotone photo */
.hero--duotone {
  overflow: hidden;
}

/* Duotone photo layer */
.hero-duotone {
  position: absolute;
  inset: 0;
  z-index: 0;
  isolation: isolate;
}

/* Grayscale photo — multiply blended over the color layer */
.hero-duotone__photo {
  position: absolute;
  inset: -20px; /* slight overflow for parallax headroom */
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) contrast(1.25);
  mix-blend-mode: multiply;
  opacity: 0.5;
}

/* Solid accent color base under the photo */
.hero-duotone__color {
  position: absolute;
  inset: 0;
  opacity: 0.22;
}

/* Vignette + dark overlay so text stays readable */
.hero-duotone__vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(4,6,13,0.85) 0%, rgba(4,6,13,0.4) 60%, rgba(4,6,13,0.6) 100%),
    radial-gradient(ellipse at center, rgba(4,6,13,0.3) 20%, rgba(4,6,13,0.8) 100%);
  z-index: 1;
}

/* Hero content sits above duotone layers */
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 55vw;
}

/* Legacy hero without duotone */
.hero:not(.hero--duotone)::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 15% 50%, var(--accent-glow, rgba(34,211,238,0.08)) 0%, transparent 65%);
  transition: background 0.4s var(--ease-out);
}

.hero__kicker {
  font-family: var(--mono-display);
  font-weight: 100;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent, var(--cyan));
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  position: relative;
}

.hero__headline {
  font-family: var(--slab);
  text-transform: uppercase;
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 2rem;
  position: relative;
  max-width: 14ch;
}

.hero__headline em {
  color: var(--accent, var(--cyan));
  font-style: normal;
}

.hero__subhead {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 52ch;
  margin-bottom: 3rem;
  position: relative;
}

/* ── CTA Button ───────────────────────────────────────── */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  background: transparent;
  border: 1.5px solid var(--accent, var(--cyan));
  border-radius: var(--radius-sm);
  color: var(--accent, var(--cyan));
  font-family: var(--mono-display);
  font-weight: 100;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.2s var(--ease-out),
    box-shadow 0.2s var(--ease-out),
    color 0.2s var(--ease-out);
  position: relative;
}

.cta-btn:hover {
  background: var(--accent-dim, rgba(34, 211, 238, 0.08));
  box-shadow: 0 0 24px var(--accent-glow, rgba(34, 211, 238, 0.15));
}

.cta-btn:focus-visible {
  outline: 2px solid var(--accent, var(--cyan));
  outline-offset: 3px;
}

/* ══════════════════════════════════════════════════════
   OVERVIEW REVENUE STRIP
   ══════════════════════════════════════════════════════ */
.overview-revenue-strip {
  padding: 7vh 8vw;
  border-bottom: 1px solid var(--accent-dim, rgba(34, 211, 238, 0.06));
  position: relative;
  overflow: hidden;
}

/* Subtle glow behind revenue strip */
.overview-revenue-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(34, 211, 238, 0.04) 0%, transparent 70%);
}

.revenue-strip__header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--night);
  margin-bottom: 3rem;
  position: relative;
}

.revenue-strip__kicker {
  font-family: var(--mono-display);
  font-weight: 100;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
}

.revenue-strip__title {
  font-family: var(--slab);
  text-transform: uppercase;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
    line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--text);
}

.revenue-strip__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}

.revenue-card {
  padding: 1.75rem;
  background: rgba(15, 22, 40, 0.6);
  border: 1px solid rgba(34, 211, 238, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.revenue-card--local   { border-color: rgba(200, 255, 0, 0.1); }
.revenue-card--regional { border-color: rgba(96, 165, 250, 0.1); }
.revenue-card--state   { border-color: rgba(251, 191, 36, 0.1); }

.revenue-card__tier {
  font-family: var(--mono-display);
  font-weight: 100;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Proportional bar */
.revenue-card__bar {
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.06);
  display: flex;
  overflow: hidden;
  gap: 1px;
}

.revenue-card__fill {
  height: 100%;
  border-radius: 3px;
  flex-shrink: 0;
}

.revenue-card__splits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-family: var(--mono-display);
  font-weight: 100;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.revenue-card__sb {
  color: var(--text-dim);
}

.revenue-strip__note {
  margin-top: 2rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.55;
  position: relative;
}

.revenue-strip__link {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(34,211,238,0.3);
  transition: border-color 0.2s;
}

.revenue-strip__link:hover {
  border-color: var(--cyan);
}

/* ══════════════════════════════════════════════════════
   SECTION CHROME (shared across all inner sections)
   ══════════════════════════════════════════════════════ */
.section {
  position: relative;
  padding: 8vh 8vw;
  border-top: 1px solid var(--accent-dim, rgba(34, 211, 238, 0.06));
  overflow: hidden;
}

.section__num {
  font-family: var(--slab);
  font-size: clamp(6rem, 12vw, 12rem);
  font-weight: 400;
  position: absolute;
  top: 3vh;
  right: 4vw;
  color: var(--accent-dim, rgba(34, 211, 238, 0.06));
  line-height: 1;
  pointer-events: none;
  text-transform: uppercase;
  user-select: none;
  transition: color 0.4s var(--ease-out);
}

.section__kicker {
  font-family: var(--mono-display);
  font-weight: 100;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent, var(--cyan));
  margin-bottom: 1.25rem;
}

.section__title {
  font-family: var(--slab);
  text-transform: uppercase;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
    line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 3rem;
  max-width: 22ch;
}

/* ══════════════════════════════════════════════════════
   VALUE PROPS — 3-column grid
   ══════════════════════════════════════════════════════ */
.value-props {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.value-prop {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 2rem;
  background: rgba(15, 22, 40, 0.6);
  border: 1px solid var(--accent-dim, rgba(34, 211, 238, 0.06));
  border-radius: var(--radius-md);
  transition: border-color 0.25s var(--ease-out), background 0.25s var(--ease-out);
}

.value-prop:hover {
  background: rgba(15, 22, 40, 0.9);
  border-color: var(--accent-glow, rgba(34, 211, 238, 0.15));
}

.value-prop__icon {
  font-size: 1.4rem;
  color: var(--accent, var(--cyan));
  line-height: 1;
  margin-bottom: 0.25rem;
}

.value-prop__label {
  font-family: var(--slab);
  font-size: 1.05rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.1;
}

.value-prop__desc {
  font-family: var(--sans);
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-muted);
  font-weight: 300;
}

/* ══════════════════════════════════════════════════════
   HOW IT WORKS — 3-step flow
   ══════════════════════════════════════════════════════ */
.how-it-works {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 1rem;
  position: relative;
}

/* Connector line between steps */
.how-it-works::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: calc(33.333% / 2);
  right: calc(33.333% / 2);
  height: 1px;
  background: linear-gradient(
    to right,
    var(--accent-dim, rgba(34,211,238,0.08)),
    var(--accent-glow, rgba(34,211,238,0.15)),
    var(--accent-dim, rgba(34,211,238,0.08))
  );
  pointer-events: none;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0 2rem 0 0;
  position: relative;
}

.step:last-child { padding-right: 0; }

.step__num {
  font-family: var(--slab);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
  color: var(--accent, var(--cyan));
  opacity: 0.5;
  margin-bottom: 0.5rem;
}

.step__verb {
  font-family: var(--slab);
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1;
}

.step__desc {
  font-family: var(--sans);
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-muted);
  font-weight: 300;
}

/* ══════════════════════════════════════════════════════
   PROOF BAND
   ══════════════════════════════════════════════════════ */
.proof {
  padding: 6vh 8vw;
  border-top: 1px solid var(--accent-dim, rgba(34, 211, 238, 0.06));
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.proof__bar {
  width: 3px;
  align-self: stretch;
  min-height: 3rem;
  background: var(--accent, var(--cyan));
  border-radius: 2px;
  flex-shrink: 0;
  opacity: 0.5;
}

.proof__text {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 70ch;
}

.proof__text strong {
  color: var(--accent, var(--cyan));
  font-style: normal;
  font-weight: 400;
}

/* ══════════════════════════════════════════════════════
   CTA FOOTER BAND
   ══════════════════════════════════════════════════════ */
.cta-footer {
  padding: 10vh 8vw;
  border-top: 1px solid var(--accent-dim, rgba(34, 211, 238, 0.06));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}

/* Glow behind CTA footer */
.cta-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 100% at 10% 50%, var(--accent-dim, rgba(34,211,238,0.05)) 0%, transparent 70%);
}

.cta-footer__headline {
  font-family: var(--slab);
  text-transform: uppercase;
  font-size: clamp(2.2rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 20ch;
  position: relative;
}

.cta-footer__headline em {
  color: var(--accent, var(--cyan));
  font-style: normal;
}

/* ══════════════════════════════════════════════════════
   SITE FOOTER
   ══════════════════════════════════════════════════════ */
.site-footer {
  padding: 3vh 8vw;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono-display);
  font-weight: 100;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  position: relative;
  z-index: 1;
}

.site-footer a {
  color: var(--cyan);
  text-decoration: none;
}

.site-footer a:hover { text-decoration: underline; }

/* ══════════════════════════════════════════════════════
   COSMIC SPECTRUM HERO
   ══════════════════════════════════════════════════════ */

/* ── Cosmic Spectrum Hero ─────────────────────── */
.hero--cosmic {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8vh 6vw;
  overflow: hidden;
  isolation: isolate;
}

.cosmic-spectrum {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.65;
  mix-blend-mode: screen;
  pointer-events: none;
}

.cs-bar {
  transform-origin: bottom;
  transform: scaleY(0.05);
  opacity: 0;
  animation: cs-bar-rise 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Staggered delays per bar */
.cs-bar-0 { animation-delay: 0.3s; }
.cs-bar-1 { animation-delay: 0.38s; }
.cs-bar-2 { animation-delay: 0.46s; }
.cs-bar-3 { animation-delay: 0.54s; }
.cs-bar-4 { animation-delay: 0.62s; }
.cs-bar-5 { animation-delay: 0.70s; }
.cs-bar-6 { animation-delay: 0.78s; }

@keyframes cs-bar-rise {
  0%   { transform: scaleY(0.05); opacity: 0; }
  30%  { opacity: 1; }
  100% { transform: scaleY(1); opacity: 1; }
}

/* Hero content that floats over the spectrum */
.hero--cosmic .hero__content {
  position: relative;
  z-index: 2;
  max-width: 64rem;
  text-align: center;
  padding: 4rem 2rem;
}

.hero--cosmic .hero__kicker {
  justify-content: center;
  color: var(--text);
}

.hero--cosmic .hero__headline {
  font-size: clamp(3rem, 9vw, 9rem);
  max-width: none;
  color: var(--text);
  text-shadow: 0 2px 40px rgba(4, 6, 13, 0.8);
}

.hero--cosmic .hero__subhead {
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
  color: var(--text);
}

/* ── Pillar Cards ─────────────────────────────── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 4vh 6vw 6vh;
  max-width: 1400px;
  margin: 0 auto;
}

.pillar {
  background: var(--deep);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-top: 3px solid var(--pillar-accent);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.pillar:hover {
  border-color: var(--pillar-accent);
  transform: translateY(-4px);
}

.pillar__icon {
  font-size: 2.25rem;
  color: var(--pillar-accent);
}

.pillar__title {
  font-family: var(--slab);
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--text);
}

.pillar__copy {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
  flex: 1;
}

.pillar__link {
  font-family: var(--mono-display);
  font-weight: 100;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pillar-accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.08);
  transition: gap 0.2s ease;
}

.pillar__link:hover {
  gap: 0.75rem;
}

/* Per-pillar accent scoping */
.pillar--listeners { --pillar-accent: var(--pine-text); }
.pillar--artists   { --pillar-accent: var(--chartreuse); }
.pillar--venues    { --pillar-accent: var(--red); }

@media (max-width: 900px) {
  .pillars { grid-template-columns: 1fr; }
  .hero--cosmic { min-height: 78vh; }
  .hero--cosmic .hero__headline { font-size: clamp(2.4rem, 11vw, 5rem); }
}

/* Quieter revenue strip presentation on Overview */
.overview-revenue-strip .revenue-strip__kicker::before {
  content: 'For partners · ';
  opacity: 0.7;
}

.site-footer__version {
  color: var(--text-dim);
  opacity: 0.5;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .value-props {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
  .how-it-works {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .how-it-works::before { display: none; }
  .step { padding-right: 0; }
  .hero__headline { font-size: clamp(3rem, 10vw, 5rem); }
  .hero__content { max-width: 90vw; }
  .revenue-strip__cards { grid-template-columns: 1fr; gap: 1rem; }
}

@media (max-width: 640px) {
  .site-nav { padding: 0 4vw; }
  .site-nav__brand { margin-right: 1.5rem; }
  .nav-link { padding: 0 0.85rem; font-size: 0.6rem; letter-spacing: 0.1em; }
  .nav-link::after { left: 0.85rem; right: 0.85rem; }

  .hero { padding: 8vh 5vw 6vh; min-height: 60vh; }
  .section { padding: 6vh 5vw; }
  .proof { padding: 5vh 5vw; }
  .cta-footer { padding: 8vh 5vw; }
  .site-footer { padding: 3vh 5vw; flex-direction: column; gap: 0.5rem; text-align: center; }
  .overview-revenue-strip { padding: 5vh 5vw; }

  .value-props {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .section__num {
    font-size: clamp(4rem, 20vw, 7rem);
    top: 1vh;
    right: 3vw;
  }
}

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

/* ══════════════════════════════════════════════════════
   SITE KICKER BAR
   ══════════════════════════════════════════════════════ */
.site-kicker-bar {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 1.2rem 8vw 0.4rem;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

/* ══════════════════════════════════════════════════════
   TIER CARDS (Champions section)
   ══════════════════════════════════════════════════════ */
.tier-card__split {
  font-family: var(--sans);
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--text-muted);
  font-weight: 300;
  margin-top: auto;
  padding-top: 0.5rem;
}

.tier-card__note {
  display: block;
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 0.3rem;
}

.tier-card__cta {
  margin-top: 1rem;
  font-size: 0.65rem;
}

.tier-card--local  { border-color: rgba(200, 255, 0, 0.12); }
.tier-card--regional { border-color: rgba(96, 165, 250, 0.12); }
.tier-card--state  { border-color: rgba(251, 191, 36, 0.12); }

/* ══════════════════════════════════════════════════════
   REVENUE SPLIT TABLE
   ══════════════════════════════════════════════════════ */
.tier-table-wrap { padding: 4vh 8vw; max-width: 980px; margin: 0 auto; }
.tier-table-kicker { color: var(--accent); margin-bottom: 1.2rem; }
.tier-table { width: 100%; border-collapse: collapse; font-family: var(--mono-display, var(--sans)); font-size: 0.95rem; }
.tier-table thead th { text-align: left; padding: 0.8rem 0.6rem; border-bottom: 1px solid var(--accent-dim, rgba(148,163,184,0.18)); font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.7rem; color: var(--text-muted); }
.tier-table tbody td { padding: 1rem 0.6rem; border-bottom: 1px solid rgba(148,163,184,0.06); color: var(--text); }
.tier-table tbody tr:last-child td { border-bottom: none; }
.tier-table .t-chartreuse { color: var(--chartreuse); font-weight: 500; }
.tier-table .t-navy { color: var(--navy-text); font-weight: 500; }
.tier-table .t-amber { color: var(--amber); font-weight: 500; }
.tier-table-footnote { color: var(--text-dim); font-size: 0.85rem; margin-top: 1rem; font-style: italic; }

/* Shared color utilities (used in tier cards + table) */
.t-chartreuse { color: var(--chartreuse); font-weight: 500; }
.t-navy       { color: var(--navy-text);  font-weight: 500; }
.t-amber      { color: var(--amber);      font-weight: 500; }
