/* ============================================================
   American Target Network — Editorial Broadcast
   Tokens, type, motion utilities, custom components
   ============================================================ */

:root {
  --ink: #0E1420;
  --ink-2: #161E2D;
  --ink-3: #1E2A3D;
  --paper: #F2F5FA;
  --paper-2: #E2E8F2;
  --line: rgba(14, 20, 32, 0.12);
  --line-on-dark: rgba(255, 255, 255, 0.14);
  --muted: rgba(14, 20, 32, 0.60);
  --muted-on-dark: rgba(255, 255, 255, 0.62);

  --red: #C8334A;
  --red-deep: #9F2838;
  --blue: #2E6FC4;
  --blue-deep: #1F4F9C;
  --blue-light: #7AA8FF;
  --accent-on-dark: #7AA8FF;

  --serif: 'Instrument Serif', 'Times New Roman', serif;
  --sans: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;
}

* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

html { scroll-behavior: smooth; }

a { color: inherit; text-decoration: none; }
button { font: inherit; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-feature-settings: "ss01", "ss02", "cv11";
}

/* Subtle film grain over the whole page */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.06;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ===================== TYPE ===================== */

.h-display {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.92;
}
.h-display em {
  font-style: italic;
  font-weight: 400;
}
.h-sans {
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}
.eyebrow {
  font-family: var(--mono);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 500;
}
.mono { font-family: var(--mono); }
.serif { font-family: var(--serif); }

/* ===================== HEADER ===================== */

.atn-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  transition: padding 0.35s ease, background 0.35s ease, backdrop-filter 0.35s ease;
}
.atn-header.scrolled {
  padding: 2px 28px;
  background: rgba(14, 20, 32, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.atn-header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.atn-header__logo {
  height: 100px;
  width: auto;
  display: block;
  transition: height 0.45s cubic-bezier(.2,.7,.2,1);
}
.atn-header.scrolled .atn-header__logo {
  height: 60px;
}
@media (max-width: 768px) {
  .atn-header__logo { height: 70px; }
  .atn-header.scrolled .atn-header__logo { height: 48px; }
}
.atn-header__brand .dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(230, 57, 70, 0); }
  100% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0); }
}
.atn-header__nav {
  display: none;
  gap: 28px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
@media (min-width: 900px) {
  .atn-header__nav { display: flex; }
}
.atn-header__nav a {
  position: relative;
  color: currentColor;
}
.atn-header__nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.atn-header__nav a:hover::after { transform: scaleX(1); }

.atn-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.atn-header__cta .arr { transition: transform 0.25s ease; }
.atn-header__cta:hover .arr { transform: translateX(3px); }

/* ===================== HERO ===================== */

.hero {
  position: relative;
  min-height: 100vh;
  background: var(--ink);
  color: white;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: -8%;
  z-index: 0;
  background-size: cover;
  background-position: center;
  filter: contrast(1.05) saturate(0.85) brightness(0.55);
  transform: scale(1.05);
  will-change: transform;
}
.hero__bg--canvas {
  inset: 0;
  filter: none;
  transform: none;
  overflow: hidden;
  background: radial-gradient(ellipse 120% 80% at 50% 100%, #1A2438 0%, #0E1420 70%), #0E1420;
}
.hero__bg--canvas::before {
  /* Vertical grid lines — TV channel divisions */
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 120px 100%, 100% 120px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%);
}

/* Animated drifting blurred spotlights — brand red + brand blue */
.spot {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 1;
  pointer-events: none;
  will-change: transform, opacity;
  mix-blend-mode: screen;
}
.spot--1 {
  width: 55vw; height: 55vw;
  background: radial-gradient(circle, #C8334A 0%, rgba(200, 51, 74, 0) 60%);
  top: -15%; left: -10%;
  animation: drift1 12s ease-in-out infinite alternate;
}
.spot--2 {
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, #2E6FC4 0%, rgba(46, 111, 196, 0) 60%);
  bottom: -20%; right: -15%;
  animation: drift2 14s ease-in-out infinite alternate;
}
.spot--3 {
  width: 38vw; height: 38vw;
  background: radial-gradient(circle, #5B9CFF 0%, rgba(91, 156, 255, 0) 60%);
  top: 25%; right: 15%;
  animation: drift3 16s ease-in-out infinite alternate;
}
.spot--4 {
  width: 42vw; height: 42vw;
  background: radial-gradient(circle, #9F2838 0%, rgba(159, 40, 56, 0) 60%);
  bottom: 5%; left: 20%;
  animation: drift4 18s ease-in-out infinite alternate;
}
@keyframes drift1 {
  0%   { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(30vw, 15vh) scale(1.1); }
  50%  { transform: translate(55vw, 35vh) scale(1.25); }
  75%  { transform: translate(35vw, 55vh) scale(1.1); }
  100% { transform: translate(15vw, 20vh) scale(0.95); }
}
@keyframes drift2 {
  0%   { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(-20vw, -10vh) scale(1.15); }
  50%  { transform: translate(-45vw, -30vh) scale(1.3); }
  75%  { transform: translate(-30vw, -55vh) scale(1.15); }
  100% { transform: translate(-5vw, -25vh) scale(0.9); }
}
@keyframes drift3 {
  0%   { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(-20vw, 20vh) scale(1.2); }
  50%  { transform: translate(-50vw, 30vh) scale(1.4); }
  75%  { transform: translate(-30vw, -10vh) scale(1.2); }
  100% { transform: translate(-10vw, -30vh) scale(1.1); }
}
@keyframes drift4 {
  0%   { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(20vw, -10vh) scale(1.1); }
  50%  { transform: translate(45vw, -25vh) scale(1.25); }
  75%  { transform: translate(25vw, -45vh) scale(1.1); }
  100% { transform: translate(5vw, -25vh) scale(0.95); }
}

.hero__bg--canvas .spot--vignette,
.hero__bg--canvas + .hero__scan {
  /* nothing */
}
.hero__bg:not(.hero__bg--canvas)::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(230, 57, 70, 0.22), transparent 55%),
    radial-gradient(ellipse at 80% 70%, oklch(0.4 0.15 245 / 0.35), transparent 55%),
    linear-gradient(180deg, rgba(11, 11, 15, 0.2) 0%, rgba(11, 11, 15, 0.85) 100%);
}
/* Scanlines */
.hero__scan {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.04) 0px,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px,
    transparent 3px
  );
  mix-blend-mode: overlay;
}
.hero__scan::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.08) 50%, transparent 100%);
  height: 200px;
  animation: scan 7s linear infinite;
}
@keyframes scan {
  0% { transform: translateY(-200px); }
  100% { transform: translateY(110vh); }
}

.hero__grid {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
  padding: 130px 28px 24px;
  gap: 16px;
  transition: padding-top 0.45s cubic-bezier(.2,.7,.2,1);
}
@media (min-width: 768px) {
  .hero__grid { padding: 145px 56px 32px; }
}
.hero.scrolled-state .hero__grid {
  padding-top: 96px;
}
@media (min-width: 768px) {
  .hero.scrolled-state .hero__grid { padding-top: 110px; }
}

.hero__topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.hero__topbar .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(230, 57, 70, 0.12);
  border: 1px solid rgba(230, 57, 70, 0.4);
  color: #ffb1b6;
  border-radius: 999px;
}
.hero__topbar .badge .dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--red);
  animation: pulse 1.4s infinite;
}

.hero__headline {
  align-self: start;
  max-width: 1500px;
}
.hero__headline h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(52px, 9vw, 150px);
  line-height: 0.88;
  letter-spacing: -0.025em;
  color: white;
}
.hero__headline h1 .line { display: block; }
.hero__headline h1 .line.indent { padding-left: 12%; }
.hero__headline h1 em {
  font-style: italic;
  color: var(--accent-on-dark);
}
.hero__headline h1 .sans {
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: -0.04em;
}
.hero__headline .sub {
  margin-top: 24px;
  max-width: 640px;
  font-family: var(--sans);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}
.hero__headline .sub strong { color: white; font-weight: 600; }
.hero__headline .sub .accent { color: var(--accent-on-dark); font-weight: 600; }

.hero__chips {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero__chips .chip {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
}
.hero__chips .chip--red { color: #ffb1b6; border-color: rgba(230, 57, 70, 0.45); background: rgba(230, 57, 70, 0.08); }
.hero__chips .chip--blue { color: #b8d8ff; border-color: rgba(122, 168, 255, 0.45); background: rgba(122, 168, 255, 0.08); }

.hero__bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: end;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
@media (min-width: 900px) {
  .hero__bottom {
    grid-template-columns: 1.2fr auto;
  }
}
.hero__bottom .savings {
  font-family: var(--serif);
  font-size: clamp(70px, 9vw, 130px);
  line-height: 0.85;
  letter-spacing: -0.03em;
}
.hero__bottom .savings em { font-style: italic; color: var(--accent-on-dark); }
.hero__bottom .savings small {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  margin-top: 14px;
  font-style: normal;
}
.hero__channels {
  display: grid;
  grid-template-columns: repeat(3, 88px);
  grid-template-rows: repeat(2, 60px);
  gap: 6px;
}
@media (min-width: 900px) {
  .hero__channels {
    grid-template-columns: repeat(3, 120px);
    grid-template-rows: repeat(2, 80px);
  }
}
.hero__channels .cell {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: #000;
  border: 1px solid rgba(255,255,255,0.1);
}
.hero__channels .cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  position: absolute;
  inset: 0;
  transition: opacity 0.6s ease;
}
.hero__channels .cell img.active { opacity: 1; }
.hero__channels .cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.7) 100%);
}
.hero__channels .cell .lbl {
  position: absolute;
  left: 6px; bottom: 4px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 2;
}

.hero__signal {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 60px;
}
.hero__signal .bar {
  width: 4px;
  background: linear-gradient(to top, var(--red), var(--blue));
  border-radius: 1px;
  animation: signal 1.4s ease-in-out infinite;
}
@keyframes signal {
  0%, 100% { height: 20%; }
  50% { height: 100%; }
}

.hero__marquee-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 4;
  padding: 12px 0;
  background: rgba(0,0,0,0.4);
  border-top: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  display: none;
}

/* ===================== MARQUEE ===================== */

.marquee-wrap {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.marquee-track {
  display: flex;
  gap: 60px;
  align-items: center;
  animation: marquee-x 40s linear infinite;
  width: max-content;
}
.marquee-track--rev { animation-direction: reverse; animation-duration: 50s; }
@keyframes marquee-x {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }

.netlogo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(0);
  opacity: 0.7;
  transition: opacity 0.3s;
}
.netlogo:hover { opacity: 1; }
.netlogo--dark { filter: brightness(0) invert(1); }

.netword {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.78);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.3s;
}
.netword:hover { color: white; }

/* ===================== SECTIONS ===================== */

.section { padding: 120px 28px; }
@media (min-width: 768px) { .section { padding: 140px 56px; } }
.section--dark { background: var(--ink); color: white; }
.section__inner { max-width: 1400px; margin: 0 auto; }

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 64px;
  align-items: end;
}
@media (min-width: 900px) {
  .section-head { grid-template-columns: auto 1fr; gap: 80px; }
}
.section-head .num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  gap: 16px;
  align-items: baseline;
}
.section-head .num .dash {
  width: 60px; height: 1px;
  background: currentColor;
  display: inline-block;
}
.section--dark .section-head .num { color: var(--muted-on-dark); }
.section-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.section-head h2 em { font-style: italic; color: var(--red); }
.section--dark .section-head h2 em { color: var(--accent-on-dark); }

/* ===================== STAT STRIP ===================== */

.stat-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 768px) {
  .stat-strip { grid-template-columns: repeat(4, 1fr); }
}
.stat {
  padding: 56px 28px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stat:nth-child(2n) { border-right: 0; }
@media (min-width: 768px) {
  .stat:nth-child(2n) { border-right: 1px solid var(--line); }
  .stat:last-child { border-right: 0; }
}
.stat .big {
  font-family: var(--serif);
  font-size: clamp(60px, 7vw, 110px);
  line-height: 0.9;
  letter-spacing: -0.03em;
}
.stat .big em { font-style: italic; color: var(--red); }
.stat .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.stat .desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 240px;
}

/* ===================== SOLUTION CARDS ===================== */

.solutions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 900px) { .solutions-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

.solution {
  position: relative;
  padding: 36px 32px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1), box-shadow 0.4s;
  min-height: 460px;
  display: flex;
  flex-direction: column;
}
.solution:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.18);
}
.solution__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 4px;
  width: max-content;
}
.solution__tag .dot { width: 6px; height: 6px; border-radius: 999px; }
.solution--linear .solution__tag { background: rgba(230,57,70,0.08); color: var(--red-deep); }
.solution--linear .solution__tag .dot { background: var(--red); }
.solution--ctv .solution__tag { background: rgba(91,140,255,0.10); color: oklch(0.45 0.18 250); }
.solution--ctv .solution__tag .dot { background: var(--blue); }
.solution--bundle .solution__tag { background: rgba(11,11,15,0.08); color: var(--ink); }
.solution--bundle .solution__tag .dot { background: var(--ink); }

.solution h3 {
  font-family: var(--serif);
  font-size: 38px;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-top: 16px;
  font-weight: 400;
}
.solution p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.solution__cta {
  margin-top: auto;
  padding-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  align-self: flex-start;
}
.solution__cta .arr {
  width: 28px; height: 1px; background: currentColor;
  position: relative;
  transition: width 0.3s;
}
.solution__cta .arr::after {
  content: ''; position: absolute; right: 0; top: -3px;
  width: 7px; height: 7px; border-top: 1px solid currentColor; border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.solution:hover .solution__cta .arr { width: 44px; }

/* visual mark in corner */
.solution__mark {
  position: absolute;
  right: -40px; top: -40px;
  width: 200px; height: 200px;
  border-radius: 999px;
  opacity: 0.08;
  pointer-events: none;
  z-index: -1;
}
.solution--linear .solution__mark { background: var(--red); }
.solution--ctv .solution__mark { background: var(--blue); }
.solution--bundle .solution__mark { background: linear-gradient(135deg, var(--red), var(--blue)); opacity: 0.12; }

/* Big number in corner for visual interest */
.solution__num {
  position: absolute;
  bottom: 18px; right: 24px;
  font-family: var(--serif);
  font-size: 100px;
  font-style: italic;
  line-height: 1;
  color: var(--paper-2);
  z-index: -1;
  opacity: 0.6;
}

/* ===================== WHY ATN ===================== */

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 900px) {
  .why-grid { grid-template-columns: 1.05fr 1fr; gap: 80px; }
}
.why__media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--ink);
  border-radius: var(--r-md);
  overflow: hidden;
}
.why__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.5s cubic-bezier(.2,.7,.2,1);
}
.why__media:hover img { transform: scale(1.04); }
.why__media .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.6) 100%);
}
.why__media .caption {
  position: absolute;
  left: 24px; bottom: 24px; right: 24px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: end;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.why__list {
  display: flex;
  flex-direction: column;
}
.why__item {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  align-items: start;
}
.why__item:last-child { border-bottom: 1px solid var(--line); }
.why__item .ix {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--muted);
  padding-top: 6px;
}
.why__item h4 {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.why__item p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  max-width: 480px;
}

/* ===================== HOW IT WORKS ===================== */

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line-on-dark);
}
@media (min-width: 900px) {
  .steps { grid-template-columns: repeat(3, 1fr); border-top: 0; }
}
.step {
  padding: 56px 36px;
  border-bottom: 1px solid var(--line-on-dark);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 380px;
}
@media (min-width: 900px) {
  .step { border-bottom: 0; border-right: 1px solid var(--line-on-dark); padding: 64px 44px; }
  .step:last-child { border-right: 0; }
}
.step__num {
  font-family: var(--serif);
  font-size: 80px;
  line-height: 0.9;
  letter-spacing: -0.02em;
  font-style: italic;
  color: var(--red);
}
.step--2 .step__num { color: var(--accent-on-dark); }
.step--3 .step__num { color: var(--blue); }
.step h4 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
}
.step p {
  font-size: 15px;
  color: var(--muted-on-dark);
  line-height: 1.55;
}
.step__tag {
  margin-top: auto;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
  display: flex;
  gap: 12px;
  align-items: center;
}

/* ===================== CASE STUDIES ===================== */

.cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 900px) { .cases-grid { grid-template-columns: repeat(3, 1fr); } }

.case {
  position: relative;
  background: white;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.case__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink);
}
.case__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.case:hover .case__media img { transform: scale(1.05); }
.case__media .stat-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.7));
  color: white;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.case__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.case__category {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.case__category .dot { width: 6px; height: 6px; border-radius: 999px; }
.case--red .case__category .dot { background: var(--red); }
.case--blue .case__category .dot { background: var(--blue); }
.case--green .case__category .dot { background: oklch(0.65 0.14 150); }
.case__body h3 {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  font-weight: 400;
}
.case__body p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.case__results {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.case__result {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 6px 10px;
  border-radius: 4px;
  background: var(--paper);
  text-transform: uppercase;
}
.case--red .case__result { background: rgba(230, 57, 70, 0.08); color: var(--red-deep); }
.case--blue .case__result { background: rgba(91, 140, 255, 0.1); color: oklch(0.45 0.18 250); }
.case--green .case__result { background: oklch(0.95 0.05 150); color: oklch(0.40 0.14 150); }

/* ===================== TESTIMONIAL TICKER ===================== */

.tst-rail {
  position: relative;
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 16px;
  scrollbar-width: none;
}
.tst-rail::-webkit-scrollbar { display: none; }
.tst-card {
  flex: 0 0 420px;
  max-width: 420px;
  scroll-snap-align: start;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section--dark .tst-card { background: var(--ink-2); border-color: var(--line-on-dark); }
.tst-card .mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 80px;
  line-height: 0;
  height: 30px;
  color: var(--red);
}
.section--dark .tst-card .mark { color: var(--accent-on-dark); }
.tst-card p {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-weight: 400;
  flex: 1;
}
.tst-card .who {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
}
.section--dark .tst-card .who { border-color: var(--line-on-dark); }
.tst-card .who .name {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.tst-card .who .title {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.section--dark .tst-card .who .title { color: var(--muted-on-dark); }
.tst-card .who img { max-height: 36px; max-width: 110px; object-fit: contain; opacity: 0.8; }
.section--dark .tst-card .who img { filter: brightness(0) invert(1); }

/* ===================== SPORTS / BROADCAST ===================== */

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 96px; } }
.split--reverse > *:first-child { order: 2; }
@media (max-width: 899px) { .split--reverse > *:first-child { order: 0; } }

.split__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--r-md);
  position: relative;
  background: var(--ink);
}
.split__media--map {
  aspect-ratio: 5 / 3.5;
  background: linear-gradient(135deg, #0B0B0F 0%, #15151B 60%, #1F1F27 100%);
  border: 1px solid var(--line-on-dark);
  padding: 20px 24px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.us-map {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.us-map__svg {
  width: 100%;
  height: auto;
  max-height: 100%;
  display: block;
}
.us-map__legend {
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  z-index: 2;
}
.us-map__legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.us-map__legend .d {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  box-shadow: 0 0 8px currentColor;
}
@keyframes mapPulse {
  0%   { transform: scale(1); opacity: 0.9; }
  70%  { transform: scale(4.5); opacity: 0; }
  100% { transform: scale(4.5); opacity: 0; }
}
@keyframes mapArc {
  from { stroke-dashoffset: 12; }
  to   { stroke-dashoffset: 0; }
}
.split__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.5s cubic-bezier(.2,.7,.2,1);
}
.split__media:hover img { transform: scale(1.05); }
.split__media .overlay-meta {
  position: absolute;
  inset: 24px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  color: white;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.split h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.split h2 em { font-style: italic; }
.section--dark .split h2 em { color: var(--accent-on-dark); }
.split .lead {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 520px;
}
.section--dark .split .lead { color: var(--muted-on-dark); }
.split .lead--xl {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 640px;
  margin-top: 0;
  font-weight: 400;
}
.section--dark .split .lead--xl { color: white; }
.split .lead--xl em {
  font-style: italic;
  color: var(--red);
}
.section--dark .split .lead--xl em { color: var(--accent-on-dark); }

.feature-pair {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.feature-pair .f {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.section--dark .feature-pair .f { border-color: var(--line-on-dark); }
.feature-pair .f h5 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.feature-pair .f p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.section--dark .feature-pair .f p { color: var(--muted-on-dark); }

.sport-list {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-on-dark);
}
.sport-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line-on-dark);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sport-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent-on-dark);
  border-radius: 999px;
}

/* ===================== FAQ ===================== */

.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 24px;
  align-items: start;
  cursor: pointer;
  transition: padding 0.3s;
}
@media (max-width: 768px) {
  .faq-item { grid-template-columns: 1fr auto; }
  .faq-item .tag { grid-column: 1 / -1; }
}
.faq-item:hover { padding-left: 12px; }
.faq-item .tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 8px;
}
.faq-item h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.faq-item .answer {
  grid-column: 2 / 3;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 720px;
  margin-top: 12px;
  display: none;
}
@media (max-width: 768px) {
  .faq-item .answer { grid-column: 1 / -1; }
}
.faq-item.open .answer { display: block; }
.faq-item .toggle {
  width: 32px; height: 32px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.3s;
}
.faq-item.open .toggle { background: var(--ink); color: white; transform: rotate(45deg); }

/* ===================== TEAM ===================== */

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 700px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.team-card {
  position: relative;
}
.team-card__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--ink-2);
}
.team-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition: filter 0.6s, transform 0.8s cubic-bezier(.2,.7,.2,1);
}
.team-card:hover .team-card__media img {
  filter: grayscale(0);
  transform: scale(1.03);
}
.team-card__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(45deg, var(--ink-2), var(--ink-2) 10px, var(--ink-3) 10px, var(--ink-3) 20px);
  color: rgba(255,255,255,0.4);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.team-card__meta {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
}
.team-card__meta .name {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  font-weight: 400;
}
.team-card__meta .role {
  margin-top: 6px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.section--dark .team-card__meta .role { color: var(--muted-on-dark); }
.team-card__meta .idx {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--muted);
}

/* ===================== CONTACT ===================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1.1fr 1fr; gap: 120px; }
}
.contact-info h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 8vw, 140px);
  line-height: 0.92;
  letter-spacing: -0.025em;
}
.contact-info h2 em { font-style: italic; color: var(--accent-on-dark); }
.contact-info p {
  margin-top: 32px;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
}
.contact-meta {
  margin-top: 56px;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-on-dark);
}
.contact-meta__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-on-dark);
  align-items: center;
  font-size: 15px;
}
.contact-meta__row .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
}
.contact-meta__row .val {
  font-family: var(--sans);
  font-weight: 500;
}

.contact-form-wrap {
  background: var(--ink-2);
  border: 1px solid var(--line-on-dark);
  border-radius: var(--r-md);
  padding: 36px;
}
.contact-form-wrap .form-title {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.contact-form-wrap .form-sub {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
  margin-bottom: 28px;
}
/* Lightweight form (replaces hubspot in this prototype) */
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
@media (min-width: 600px) {
  .form-row--2 { grid-template-columns: 1fr 1fr; }
}
.form-field label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
  margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-on-dark);
  color: white;
  padding: 10px 0;
  font-family: var(--sans);
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--accent-on-dark); }
.form-field select option { color: black; }
.form-submit {
  margin-top: 16px;
  width: 100%;
  background: white;
  color: var(--ink);
  border: 0;
  padding: 18px 28px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s;
}
.form-submit:hover { background: white; }
.form-submit .arr {
  display: inline-block;
  width: 28px; height: 1px;
  background: currentColor;
  position: relative;
}
.form-submit .arr::after {
  content: ''; position: absolute; right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

/* ===================== FOOTER ===================== */

footer.site-footer {
  background: var(--ink);
  color: white;
  padding: 56px 28px 32px;
  border-top: 1px solid var(--line-on-dark);
}
.site-footer__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
}
.site-footer__inner a:hover { color: white; }
.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
}
.site-footer__brand .dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--red);
  animation: pulse 1.6s infinite;
}

/* ===================== TICKER ===================== */

.ticker {
  background: var(--ink);
  color: white;
  border-top: 1px solid var(--line-on-dark);
  border-bottom: 1px solid var(--line-on-dark);
  overflow: hidden;
  padding: 18px 0;
}
.ticker .marquee-track {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(36px, 5vw, 70px);
  letter-spacing: -0.02em;
  gap: 80px;
  animation-duration: 60s;
}
.ticker .marquee-track .dot {
  display: inline-block;
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--red);
  vertical-align: middle;
  margin: 0 30px;
}

/* ===================== SCROLL REVEAL ===================== */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(.2,.7,.2,1), transform 1s cubic-bezier(.2,.7,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(.2,.7,.2,1);
}
.reveal-letter.in { opacity: 1; transform: translateY(0); }

/* ===================== UTILITY ===================== */

.divider {
  width: 100%;
  height: 1px;
  background: var(--line);
}
.section--dark .divider { background: var(--line-on-dark); }

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 0.3s, background 0.3s;
}
.btn-pill:hover { transform: translateY(-2px); background: var(--red); }
.btn-pill .arr {
  width: 24px; height: 1px; background: currentColor;
  position: relative;
}
.btn-pill .arr::after {
  content: ''; position: absolute; right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn-pill--ghost {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
}
.btn-pill--ghost:hover { background: var(--ink); color: white; }
.section--dark .btn-pill { background: white; color: var(--ink); }
.section--dark .btn-pill:hover { background: white; }
