/* Super CTV — Landing site styles */

:root {
  --bg: #0a0a0b;
  --bg-2: #121214;
  --bg-3: #1a1a1d;
  --line: rgba(255,255,255,0.08);
  --line-2: rgba(255,255,255,0.14);
  --ink: #ffffff;
  --ink-2: rgba(255,255,255,0.72);
  --ink-3: rgba(255,255,255,0.48);
  --ink-4: rgba(255,255,255,0.28);
  --red: #E4161C;
  --red-2: #FF2A30;
  --red-deep: #A30E13;
  --red-soft: rgba(228, 22, 28, 0.14);

  --max-w: 1400px;
  --pad-x: 80px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Manrope', 'Inter', system-ui, sans-serif;
  font-feature-settings: 'ss01','cv11';
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--red); color: #fff; }

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

/* ============ Typography ============ */
.eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow.muted { color: var(--ink-3); }
.eyebrow .dot {
  display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 14px var(--red);
}

.h-display {
  font-size: clamp(48px, 7vw, 112px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.h1 {
  font-size: clamp(48px, 6.2vw, 104px);
  line-height: 1.0;
  letter-spacing: -0.015em;
  font-weight: 700;
}
.h2 {
  font-size: clamp(40px, 4.8vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.012em;
  font-weight: 700;
}
.h3 {
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.005em;
  font-weight: 600;
}
.body-lg {
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.55;
  color: var(--ink-2);
  font-weight: 400;
}
.body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
}
.body-sm {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-3);
  letter-spacing: 0.02em;
}
.mono {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.02em;
}

.red { color: var(--red); }
.muted { color: var(--ink-3); }

/* ============ Layout ============ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
section { position: relative; }

/* ============ Ambient backgrounds ============ */
.grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000, transparent 85%);
}
.glow-red {
  position: absolute;
  width: 720px; height: 720px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(228,22,28,0.28), transparent 70%);
  pointer-events: none;
  filter: blur(20px);
}
.noise {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.6;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* ============ Navigation ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  backdrop-filter: blur(12px);
  background: rgba(10,10,11,0.6);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(10,10,11,0.85);
}
.nav-logo { flex-shrink: 0; display: flex; align-items: center; }
.nav-logo img { height: 28px; width: auto; display: block; }
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  color: var(--ink-2);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-right {
  display: flex;
  gap: 16px;
  align-items: center;
}
.lang-switch {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
}
.lang-switch button {
  padding: 6px 12px;
  color: var(--ink-3);
  transition: all 0.2s;
}
.lang-switch button.active {
  background: var(--red);
  color: #fff;
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav { padding: 16px 24px; }
}

/* Nav CTA */
.nav-cta { padding: 10px 18px; font-size: 13px; }
.nav-cta .cta-short { display: none; }
.nav-cta .cta-long { display: inline; }
@media (max-width: 520px) {
  .nav { padding: calc(30px + env(safe-area-inset-top, 0px)) 12px 12px; gap: 6px; }
  .nav-right { gap: 6px; }
  .lang-switch { font-size: 9px; letter-spacing: 0.08em; }
  .lang-switch button { padding: 4px 6px; }
  .nav-cta.btn {
    padding: 3px 8px;
    font-size: 9px;
    line-height: 1.15;
    letter-spacing: 0;
    flex-shrink: 0;
    text-align: center;
    white-space: normal;
    gap: 4px;
    border-radius: 6px;
  }
  .nav-cta .cta-short { display: none; }
  .nav-cta .cta-long {
    display: inline-block;
    width: min-content;
    white-space: normal;
    word-break: keep-all;
  }
  .nav-logo img { height: 20px; }
}
@media (max-width: 400px) {
  .nav-logo img { height: 18px; }
  .nav-cta.btn { font-size: 9px; padding: 3px 7px; }
  .lang-switch { font-size: 9px; }
  .lang-switch button { padding: 4px 5px; }
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: all 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 32px -8px rgba(228,22,28,0.6), inset 0 0 0 1px rgba(255,255,255,0.12);
}
.btn-primary:hover {
  background: var(--red-2);
  transform: translateY(-1px);
  box-shadow: 0 12px 40px -8px rgba(228,22,28,0.8), inset 0 0 0 1px rgba(255,255,255,0.18);
}
.btn-ghost {
  border: 1px solid var(--line-2);
  color: var(--ink);
  background: rgba(255,255,255,0.02);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
}
.btn { white-space: nowrap; }
.btn-lg { padding: 18px 32px; font-size: 17px; }
@media (max-width: 600px) {
  .btn-lg { padding: 7px 12px; font-size: 11px; }
  .btn svg { width: 12px; height: 12px; }
}
.btn svg { width: 16px; height: 16px; }

/* ============ Hero ============ */
.hero {
  min-height: 100vh;
  padding: 120px var(--pad-x) 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}
.hero-eyebrow { margin-bottom: 32px; }
.hero-title {
  max-width: 1100px;
}
.hero-title .accent {
  color: var(--red);
  display: inline-block;
}
.hero-subtitle {
  font-size: clamp(20px, 1.8vw, 28px);
  color: var(--ink-2);
  margin-top: 48px;
  max-width: 720px;
  line-height: 1.35;
  font-weight: 500;
  white-space: pre-line;
}
.hero-stats {
  display: flex;
  gap: 64px;
  margin-top: 80px;
  flex-wrap: wrap;
}
.hero-stat .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.hero-stat .num {
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-stat .num .unit {
  color: var(--red);
  margin-left: 4px;
}
.hero-stat .sub {
  font-size: 14px;
  color: var(--ink-3);
  margin-top: 8px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  margin-top: 56px;
  flex-wrap: wrap;
}

/* Hero floating TV mockup */
.hero-tv {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 720px;
  height: 480px;
  border-radius: 20px;
  background: #000;
  border: 12px solid #1a1a1d;
  box-shadow:
    0 40px 120px -20px rgba(228,22,28,0.3),
    0 0 0 1px rgba(255,255,255,0.08);
  overflow: hidden;
  z-index: 1;
  opacity: 0.5;
}
.hero-tv::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,10,11,0.85), transparent 50%);
}
@media (max-width: 1200px) {
  .hero-tv { display: none; }
}

/* ============ Section base ============ */
.section {
  padding: 140px var(--pad-x);
  position: relative;
}
.section-head {
  max-width: var(--max-w);
  margin: 0 auto 72px;
}
.section-head .eyebrow { margin-bottom: 20px; }
.section-body {
  max-width: var(--max-w);
  margin: 0 auto;
}
@media (max-width: 900px) {
  .section { padding: 80px 24px; }
  :root { --pad-x: 24px; }
  .hero { padding: calc(120px + env(safe-area-inset-top, 0px)) 24px 60px; }
}

/* ============ Stats strip ============ */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
}
.stat-cell {
  padding: 40px 32px;
  border-right: 1px solid var(--line);
  position: relative;
}
.stat-cell:last-child { border-right: none; }
.stat-cell .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 16px;
}
.stat-cell .num {
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-cell .num .unit {
  color: var(--red);
  margin-left: 4px;
}
.stat-cell .sub {
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 12px;
  letter-spacing: 0.01em;
}
@media (max-width: 900px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .stat-cell { padding: 28px 20px; }
}

/* ============ What is Super CTV ============ */
#what .section-head .h1 .underline {
  position: relative;
  display: inline-block;
}
#what .section-head .h1 .underline::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
#what .section-head .h1.in-view .underline::after,
#what .section-head .h1.reveal.in-view .underline::after {
  transform: scaleX(1);
}
.what-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0) 80%);
  transition: all 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
  position: relative;
}
.feature-card:hover {
  border-color: rgba(228,22,28,0.4);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px -12px rgba(228,22,28,0.3);
}
.feature-card .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--red);
  letter-spacing: 0.15em;
  margin-bottom: 28px;
}
.feature-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.feature-card p {
  color: var(--ink-3);
  font-size: 15px;
  line-height: 1.5;
}
@media (max-width: 1100px) {
  .what-features { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 600px) {
  .what-features { grid-template-columns: 1fr; }
}

/* ============ Formats ============ */
.formats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.format-card {
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  transition: all 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.format-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(228,22,28,0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.format-card:hover {
  border-color: rgba(228,22,28,0.35);
  transform: translateY(-4px);
}
.format-card:hover::before { opacity: 1; }
.format-card .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 48px;
  font-weight: 500;
  color: var(--red);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.format-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.format-card p {
  color: var(--ink-3);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 24px;
  min-height: 63px;
}
.format-card .tags {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.05em;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.deep-link-block {
  margin-top: 40px;
  padding: 40px;
  border: 1px solid rgba(228,22,28,0.25);
  border-radius: 24px;
  background:
    radial-gradient(ellipse 60% 100% at 100% 50%, rgba(228,22,28,0.08), transparent 70%),
    linear-gradient(180deg, rgba(228,22,28,0.04), transparent);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
}
.deep-link-block .icon {
  width: 72px; height: 72px;
  border-radius: 18px;
  background: rgba(228,22,28,0.12);
  border: 1px solid rgba(228,22,28,0.3);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.deep-link-block .icon svg { width: 32px; height: 32px; color: var(--red); }
.deep-link-block .content .eyebrow { margin-bottom: 8px; }
.deep-link-block .content h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.deep-link-block .content p {
  color: var(--ink-2);
  font-size: 16px;
  max-width: 680px;
  line-height: 1.5;
}
.deep-link-block .tags {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

@media (max-width: 1100px) { .formats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  .formats-grid { grid-template-columns: 1fr; gap: 12px; }
  .format-card { padding: 18px 20px; border-radius: 14px; }
  .format-card .num { font-size: 30px; margin-bottom: 12px; }
  .format-card h3 { font-size: 17px; margin-bottom: 6px; }
  .format-card p { font-size: 13px; min-height: 0; margin-bottom: 16px; }
  .format-card .tags { font-size: 10px; }
  .deep-link-block { grid-template-columns: 1fr; gap: 20px; padding: 28px; }
  .deep-link-block .tags { text-align: left; }
}

/* ============ Quality of Contact ============ */
.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 24px;
  align-items: stretch;
}
.quality-col {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.quality-col--good {
  border-color: rgba(228,22,28,0.35);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(228,22,28,0.10), transparent 70%),
    linear-gradient(180deg, rgba(228,22,28,0.04), transparent);
}
.qc-head .qc-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 14px;
}
.qc-head .qc-tag--red {
  color: var(--red);
  border-color: rgba(228,22,28,0.4);
  background: rgba(228,22,28,0.08);
}
.qc-head p {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.45;
  max-width: 520px;
}
.qc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
  margin: 0;
}
.qc-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.45;
}
.qc-list .n {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--ink-3);
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.qc-list .n--red {
  color: var(--red);
  border-color: rgba(228,22,28,0.4);
  background: rgba(228,22,28,0.08);
}
.qc-stats {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.qc-stats--3 { grid-template-columns: repeat(3, 1fr); }
.qc-stat {
  padding: 16px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
}
.qc-stat--red {
  border-color: rgba(228,22,28,0.3);
  background: rgba(228,22,28,0.04);
}
.qc-stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.qc-stat-num {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.qc-stat--red .qc-stat-num { color: var(--ink); }
.qc-stat .qc-unit {
  color: var(--red);
  margin-left: 3px;
  font-size: 22px;
}
.qc-stat-sub {
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 8px;
  line-height: 1.35;
}
@media (max-width: 900px) {
  .quality-grid { grid-template-columns: 1fr; }
  .qc-stats--3 { grid-template-columns: repeat(3, 1fr); }
  .quality-col { padding: 28px 22px; }
}

/* ============ Audience ============ */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.audience-card {
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
}
.audience-card h3 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.bar-row {
  display: grid;
  grid-template-columns: 140px 1fr 48px;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
}
.bar-row .bar-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--ink-2);
}
.bar-row .bar-track {
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.bar-row .bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--red-2));
  border-radius: 4px;
  width: 0;
  transition: width 1.1s cubic-bezier(0.2, 0.7, 0.2, 1);
  box-shadow: 0 0 16px rgba(228,22,28,0.6);
}
.bar-row.in-view .bar-fill { width: var(--w, 0%); }
.bar-row .bar-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: var(--ink);
  text-align: right;
  font-weight: 500;
}

/* Brand cloud */
.brand-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.brand-chip {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.02em;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--ink-2);
  white-space: nowrap;
  transition: all 0.2s ease;
}
.brand-chip:hover {
  background: rgba(255,255,255,0.06);
  color: var(--ink);
  border-color: rgba(255,255,255,0.14);
}
.brand-chip--top {
  background: rgba(228,22,28,0.12);
  border-color: rgba(228,22,28,0.45);
  color: #ff9a9e;
}
.brand-chip--top:hover {
  background: rgba(228,22,28,0.18);
  color: #ffb4b7;
}

.targeting-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.target-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  transition: all 0.25s;
}
.target-pill:hover {
  border-color: rgba(228,22,28,0.3);
  background: rgba(228,22,28,0.04);
}
.target-pill .ico {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  color: var(--red);
}
.target-pill .ico svg { width: 18px; height: 18px; }
.target-pill .tp-label {
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}
.target-pill .tp-sub {
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 2px;
}
@media (max-width: 900px) {
  .audience-grid { grid-template-columns: 1fr; gap: 32px; }
  .audience-card { padding: 24px 20px; max-width: 100%; overflow: hidden; }
  .audience-card h3 { font-size: 22px; }
  .brand-cloud { gap: 6px; }
  .brand-chip { font-size: 11px; padding: 5px 10px; }
  .targeting-grid { gap: 10px; margin-top: 18px; }
  .target-pill { padding: 12px 12px; gap: 10px; }
  .target-pill .ico { width: 26px; height: 26px; }
  .target-pill .ico svg { width: 15px; height: 15px; }
  .target-pill .tp-label { font-size: 13px; }
  .target-pill .tp-sub { font-size: 11px; }
}

/* ============ CTA ============ */
.cta-section {
  padding: 160px var(--pad-x);
  position: relative;
  overflow: hidden;
}
.cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.cta-title {
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.cta-title .accent { color: var(--red); }
.cta-description {
  font-size: 18px;
  color: var(--ink-2);
  margin-top: 32px;
  max-width: 520px;
  line-height: 1.5;
}
.cta-messengers {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cta-messenger {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
  transition: all 0.25s;
  max-width: 400px;
}
.cta-messenger:hover {
  border-color: rgba(228,22,28,0.4);
  background: rgba(228,22,28,0.05);
  transform: translateX(4px);
}
.cta-messenger .ico {
  width: 40px; height: 40px;
  background: rgba(228,22,28,0.12);
  border-radius: 10px;
  display: grid; place-items: center;
  color: var(--red);
  flex-shrink: 0;
}
.cta-messenger .ico svg { width: 20px; height: 20px; }
.cta-messenger .text .title {
  font-size: 15px;
  font-weight: 600;
}
.cta-messenger .text .sub {
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 2px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.02em;
}

/* ============ Person card (executive contact) ============ */
.cta-person {
  margin-top: 24px;
  padding: 20px 22px;
  background: linear-gradient(180deg, rgba(228,22,28,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(228,22,28,0.25);
  border-radius: 14px;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cta-person-head { display: flex; flex-direction: column; gap: 4px; }
.cta-person-role {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ff7a80;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
}
.cta-person-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.cta-person-links { display: flex; flex-direction: column; gap: 8px; }
.cta-person-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-2);
  font-size: 14px;
  font-family: 'JetBrains Mono', monospace;
  text-decoration: none;
  padding: 6px 0;
  width: fit-content;
  transition: color 0.2s;
}
.cta-person-link:hover { color: #ff7a80; }
.cta-person-link svg {
  width: 16px;
  height: 16px;
  color: #ff7a80;
  flex-shrink: 0;
}
@media (max-width: 520px) {
  .cta-person { padding: 16px 18px; }
  .cta-person-name { font-size: 17px; }
  .cta-person-link { font-size: 13px; }
}

.cta-form {
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(ellipse 100% 60% at 50% 0%, rgba(228,22,28,0.05), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,0.03), transparent);
}
.cta-form h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.cta-form p {
  color: var(--ink-3);
  font-size: 14px;
  margin-bottom: 24px;
}
.form-field {
  margin-bottom: 16px;
}
.form-field label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(0,0,0,0.2);
  color: var(--ink);
  font-size: 15px;
  transition: all 0.2s;
  outline: none;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(228,22,28,0.5);
  background: rgba(228,22,28,0.04);
  box-shadow: 0 0 0 4px rgba(228,22,28,0.1);
}
.form-field textarea {
  min-height: 80px;
  resize: vertical;
  font-family: inherit;
}
.cta-form .btn { width: 100%; margin-top: 8px; }
.form-note {
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 14px;
  line-height: 1.4;
}
.form-note a { color: var(--ink-2); text-decoration: underline; text-decoration-color: var(--line-2); }
.form-success {
  text-align: center;
  padding: 32px 0;
}
.form-success .check {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  color: #fff;
}
.form-success h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.form-success p {
  color: var(--ink-3);
  font-size: 14px;
}

@media (max-width: 900px) {
  .cta-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-section { padding: 80px 24px; }
}

/* ============ Footer ============ */
footer {
  padding: 60px var(--pad-x) 40px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-inner img { height: 28px; }
.footer-meta {
  display: flex;
  gap: 32px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.footer-meta > * { white-space: nowrap; }
@media (max-width: 600px) {
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 18px; }
  .footer-meta { gap: 14px; font-size: 10px; letter-spacing: 0.03em; flex-wrap: wrap; }
}

/* ============ Reveal animations ============ */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
              transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
@media (hover: hover) and (min-width: 901px) {
  .reveal { opacity: 0; transform: translateY(24px); }
}

/* Hide quality-of-contact section on mobile */
@media (max-width: 900px) {
  #quality { display: none !important; }
  #stats { display: none !important; }
}

/* Hero mini table — mobile only */
.hero-mini-table { display: none; }
@media (max-width: 600px) {
  .eyebrow { font-size: 10px; letter-spacing: 0.1em; gap: 8px; }
  .eyebrow .dot { width: 5px; height: 5px; }
}
@media (max-width: 900px) {
  .hero-stats { display: none !important; }
  .hero-mini-table {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
    margin-bottom: 32px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .hmt-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
  }
  .hmt-row:last-child { border-bottom: none; }
  .hmt-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-3);
  }
  .hmt-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 20px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: -0.01em;
  }
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

/* ============ Parallax ============ */
.parallax-layer {
  will-change: transform;
}
