:root {
  --ink: #edf3f7;
  --muted: #9fb0bb;
  --paper: #07090d;
  --surface: #111923;
  --surface-2: #172332;
  --line: rgba(123, 165, 196, 0.32);
  --accent: #f0443e;
  --accent-dark: #ff877b;
  --green: #40c979;
  --blue: #368cf3;
  --amber: #f4b64e;
  --focus: #f4b64e;
  --glow-red: 0 0 14px rgba(240, 68, 62, 0.35), 0 0 32px rgba(240, 68, 62, 0.12);
  --glow-blue: 0 0 18px rgba(54, 140, 243, 0.42), 0 0 54px rgba(54, 140, 243, 0.2);
  --glow-green: 0 0 16px rgba(64, 201, 121, 0.4), 0 0 44px rgba(64, 201, 121, 0.16);
  --glow-amber: 0 0 16px rgba(244, 182, 78, 0.42), 0 0 42px rgba(244, 182, 78, 0.14);
  --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.28);
  --screen-shadow: 0 22px 90px rgba(0, 0, 0, 0.5), 0 0 90px rgba(54, 140, 243, 0.18), 0 0 76px rgba(240, 68, 62, 0.13);
  --shadow: var(--shadow-soft);
  --radius: 8px;
  --max: 1160px;
  --font-mono: "SF Mono", "Roboto Mono", ui-monospace, "Cascadia Code", Menlo, Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  position: relative;
  isolation: isolate;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 10%, rgba(54, 140, 243, 0.24), transparent 24%),
    radial-gradient(circle at 78% 14%, rgba(240, 68, 62, 0.22), transparent 24%),
    linear-gradient(180deg, rgba(7, 9, 13, 0.84), rgba(7, 9, 13, 0.98) 920px),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: -1;
  content: "";
  height: 840px;
  background:
    linear-gradient(90deg, rgba(54, 140, 243, 0.12), transparent 42%),
    linear-gradient(90deg, rgba(7, 9, 13, 0.92), rgba(7, 9, 13, 0.68) 38%, rgba(7, 9, 13, 0.2) 58%, transparent 72%),
    linear-gradient(180deg, transparent 0 48%, rgba(7, 9, 13, 0.62) 74%, var(--paper) 100%),
    linear-gradient(180deg, rgba(240, 68, 62, 0.08), transparent 40%),
    url("/assets/photos/broadcast-switcher-console.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
}

body::after {
  content: none;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 20px 0;
  background: linear-gradient(180deg, rgba(7, 9, 13, 0.96), rgba(7, 9, 13, 0));
}

.tally-bar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 8px;
  background:
    linear-gradient(90deg,
      #f4f4f0 0 12.5%,
      #ffff00 12.5% 25%,
      #00e5e5 25% 37.5%,
      #00ef00 37.5% 50%,
      #f000d8 50% 62.5%,
      #f20d0d 62.5% 75%,
      #0505f3 75% 87.5%,
      #050506 87.5% 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 8px 18px rgba(0, 0, 0, 0.24);
  pointer-events: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10, 15, 21, 0.97);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #07090d;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: #c9d6dd;
  font-size: 14px;
}

.nav-links a,
.footer-links a {
  text-decoration: none;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--ink);
}

.nav-cta {
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(240, 68, 62, 0.62);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(240, 68, 62, 0.32), rgba(69, 16, 19, 0.94));
  color: #fff0ef;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--glow-red);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(20, 35, 51, 0.96), rgba(8, 13, 18, 0.96));
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  background: var(--ink);
}

.section-shell {
  position: relative;
  isolation: isolate;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
  scroll-margin-top: 0;
}

.section-shell > * {
  position: relative;
  z-index: 1;
}

#workflow::before,
#use-cases::before,
.capabilities::before,
.validation::before,
.faq::before,
.final-cta::before {
  content: none;
}

.solution-band {
  position: relative;
  isolation: isolate;
  width: 100%;
  padding: 96px 0;
  scroll-margin-top: 0;
  background:
    linear-gradient(180deg, var(--paper), transparent 12%, transparent 88%, var(--paper)),
    linear-gradient(90deg, rgba(7, 9, 13, 0.94) 0%, rgba(7, 9, 13, 0.78) 34%, rgba(7, 9, 13, 0.42) 56%, rgba(7, 9, 13, 0.28) 72%),
    linear-gradient(135deg, rgba(54, 140, 243, 0.1), transparent 48%),
    url("/assets/inspiration/broadcast-hero-multiview.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.solution-band .section-shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 0;
}

.solution-band .section-shell > * {
  position: relative;
  z-index: 1;
}

.compact {
  padding-top: 16px;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  min-height: clamp(620px, 72vh, 760px);
  padding-top: 72px;
  padding-bottom: 56px;
}

.hero-copy {
  max-width: 720px;
}

.hero h1,
.section-heading h2,
.split h2,
.solution h2,
.audience h2,
.commercial h2,
.validation h2,
.faq h2,
.final-cta h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.08;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(40px, 4.62vw, 58px);
  font-weight: 800;
}

.hero-rotator {
  display: inline-grid;
  min-width: 15ch;
  color: #83baff;
  text-shadow: var(--glow-blue);
  vertical-align: baseline;
}

.hero-rotator-word {
  grid-area: 1 / 1;
  white-space: nowrap;
  transition: opacity 220ms ease, transform 220ms ease;
}

.hero-rotator.is-changing .hero-rotator-word {
  opacity: 0;
  transform: translateY(0.18em);
}

.hero-lede {
  max-width: 700px;
  margin: 16px 0 0;
  color: #d1dce2;
  font-size: 17px;
  font-weight: 400;
}

.hero-beta-line {
  max-width: 700px;
  margin: 14px 0 0;
  color: #dce7ec;
  font-size: 16px;
  font-weight: 600;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--accent-dark);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-shadow: 0 0 10px rgba(240, 68, 62, 0.35);
  text-transform: uppercase;
}

.live-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.tally-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(240, 68, 62, 0.6);
  animation: tally-pulse 2s ease-in-out infinite;
}

@keyframes tally-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.65; transform: scale(0.92); }
}

.live-label {
  color: var(--accent-dark);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-expectation {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.form-trust {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-actions,
.commercial-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.button.primary {
  border-color: rgba(255, 91, 84, 0.7);
  background: linear-gradient(180deg, #ff5b52, #c52622 56%, #7f1415);
  color: #fff7f5;
  box-shadow: var(--glow-red), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.button.secondary {
  border-color: rgba(54, 140, 243, 0.32);
  background: linear-gradient(180deg, rgba(27, 64, 103, 0.72), rgba(14, 24, 36, 0.88));
  color: #dce7ec;
}

.button.secondary.muted {
  border-color: rgba(123, 165, 196, 0.24);
  background: rgba(14, 24, 36, 0.6);
  color: var(--muted);
  box-shadow: none;
}

.button.secondary.muted:hover {
  border-color: rgba(123, 165, 196, 0.4);
  color: var(--ink);
}

.button.light {
  border-color: rgba(64, 201, 121, 0.58);
  background: linear-gradient(180deg, rgba(64, 201, 121, 0.24), rgba(10, 30, 20, 0.95));
  color: #dffdec;
  box-shadow: var(--glow-green);
}

.button.dark {
  border-color: rgba(54, 140, 243, 0.46);
  background: rgba(8, 13, 18, 0.4);
  color: var(--ink);
}

.button.full {
  width: 100%;
}

.hero-visual {
  display: none;
}

.heritage-band {
  padding-top: 24px;
}

.heritage-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(320px, 28vw, 420px);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(7, 9, 13, 0.94), rgba(7, 9, 13, 0.66) 54%, rgba(12, 27, 42, 0.88)),
    radial-gradient(circle at 82% 18%, rgba(54, 140, 243, 0.28), transparent 30%),
    radial-gradient(circle at 18% 82%, rgba(240, 68, 62, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(22, 32, 43, 0.98), rgba(8, 13, 18, 0.98));
  box-shadow: var(--screen-shadow);
}

.heritage-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, transparent, #000 22%, #000 78%, transparent);
  opacity: 0.34;
  pointer-events: none;
}

.heritage-panel > * {
  position: relative;
  z-index: 1;
}

.heritage-copy h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
}

.live-word {
  display: inline;
  position: relative;
  top: -0.035em;
  color: #ff5b52;
  line-height: inherit;
  text-shadow: 0 0 14px rgba(240, 68, 62, 0.72), 0 0 36px rgba(240, 68, 62, 0.32);
  white-space: nowrap;
}

.live-word-dot {
  display: inline-block;
  width: 0.56em;
  height: 0.56em;
  margin: 0 0.16em 0 0.06em;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(240, 68, 62, 0.95), 0 0 38px rgba(240, 68, 62, 0.56);
  transform: translateY(-0.02em);
  animation: live-dot-pulse 1.7s ease-in-out infinite;
}

@keyframes live-dot-pulse {
  0%, 100% {
    opacity: 1;
    transform: translateY(-0.02em) scale(1);
    box-shadow: 0 0 16px rgba(240, 68, 62, 0.95), 0 0 38px rgba(240, 68, 62, 0.56);
  }

  50% {
    opacity: 0.42;
    transform: translateY(-0.02em) scale(0.82);
    box-shadow: 0 0 8px rgba(240, 68, 62, 0.6), 0 0 20px rgba(240, 68, 62, 0.28);
  }
}

.heritage-copy p:last-child {
  max-width: 650px;
  margin: 20px 0 0;
  color: #d1dce2;
  font-size: 18px;
  line-height: 1.5;
}

.heritage-proof {
  display: flex;
  align-items: stretch;
  min-width: 0;
  justify-self: end;
  width: 100%;
}

.experience-meter {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 260px;
  align-content: center;
  justify-items: center;
  overflow: hidden;
  padding: 32px 32px 47px;
  border: 2px solid rgba(255, 91, 84, 0.78);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 91, 84, 0.42), transparent 34%),
    radial-gradient(circle at 82% 16%, rgba(240, 68, 62, 0.28), transparent 22%),
    radial-gradient(circle at 18% 84%, rgba(54, 140, 243, 0.32), transparent 30%),
    linear-gradient(180deg, rgba(27, 64, 103, 0.96), rgba(5, 9, 13, 0.98));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 0 34px rgba(240, 68, 62, 0.34),
    0 0 54px rgba(54, 140, 243, 0.26),
    0 24px 70px rgba(0, 0, 0, 0.48);
}

.experience-meter::before {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(240, 68, 62, 0.9);
  content: "";
}

.experience-meter::after {
  position: absolute;
  inset: auto 0 0;
  height: 15px;
  background:
    linear-gradient(90deg,
      #f4f4f0 0 14.285%,
      #ffff00 14.285% 28.57%,
      #00e5e5 28.57% 42.855%,
      #00ef00 42.855% 57.14%,
      #f000d8 57.14% 71.425%,
      #f20d0d 71.425% 85.71%,
      #0505f3 85.71% 100%);
  content: "";
}

.experience-meter span {
  color: #fff;
  font-family: var(--font-mono);
  font-size: clamp(118px, 11vw, 164px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.78;
  text-shadow: 0 0 28px rgba(54, 140, 243, 0.46);
}

.experience-meter p {
  max-width: 240px;
  margin: 20px auto 0;
  color: #c8d5dc;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.media-band {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: clamp(420px, 48vh, 560px);
  margin: 0;
  padding: clamp(80px, 10vh, 120px) 20px;
  background:
    linear-gradient(180deg, var(--paper), transparent 14%, transparent 86%, var(--paper)),
    linear-gradient(90deg, rgba(54, 140, 243, 0.1), transparent 50%),
    linear-gradient(90deg, rgba(7, 9, 13, 0.88), rgba(7, 9, 13, 0.48) 42%, rgba(7, 9, 13, 0.78)),
    url("/assets/photos/broadcast-camera-field.png");
  background-position: center;
  background-size: cover;
}

.media-band-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  max-width: 680px;
}

.media-band-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 24px;
}

.media-tag {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(8, 13, 18, 0.72);
  color: #83baff;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.media-band-copy {
  margin: 0 0 28px;
  color: #d1dce2;
  font-size: clamp(40px, 4.4vw, 52px);
  font-weight: 750;
  line-height: 1.08;
  max-width: 760px;
}

.media-band-copy .media-band-copy-small {
  display: block;
  margin-bottom: 10px;
  color: #9fb0bb;
  font-size: 0.5em;
  font-weight: 650;
  line-height: 1.18;
}

.media-band .live-status {
  margin-bottom: 18px;
}

.media-band .button.primary {
  min-height: 52px;
  padding: 14px 24px;
  font-size: 16px;
}

.led-accent {
  display: block;
  width: 8px;
  height: 8px;
  margin-bottom: 14px;
  border-radius: 50%;
}

.led-red { background: var(--accent); box-shadow: 0 0 6px rgba(240, 68, 62, 0.5); }
.led-amber { background: var(--amber); box-shadow: 0 0 6px rgba(244, 182, 78, 0.45); }
.led-blue { background: var(--blue); box-shadow: 0 0 6px rgba(54, 140, 243, 0.45); }
.led-green { background: var(--green); box-shadow: 0 0 6px rgba(64, 201, 121, 0.45); }

.steps--signal-flow {
  position: relative;
}

@media (min-width: 981px) {
  .comparison::before {
    position: absolute;
    top: 30px;
    left: 50%;
    z-index: 2;
    display: grid;
    width: 46px;
    height: 46px;
    transform: translateX(-50%);
    place-items: center;
    border: 1px solid rgba(244, 182, 78, 0.54);
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(17, 26, 37, 0.98), rgba(7, 9, 13, 0.98));
    color: var(--amber);
    content: "VS";
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    box-shadow: var(--glow-amber);
    pointer-events: none;
  }

  .steps.steps--signal-flow {
    --step-gap: clamp(32px, 5vw, 68px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--step-gap);
  }

  .steps--signal-flow::before {
    position: absolute;
    top: 69px;
    right: 2%;
    left: 2%;
    z-index: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(54, 140, 243, 0.42), rgba(240, 68, 62, 0.3), transparent);
    content: "";
    opacity: 0.75;
    pointer-events: none;
  }

  .steps--signal-flow article {
    position: relative;
    z-index: 1;
    overflow: visible;
  }

  .steps--signal-flow article::before,
  .steps--signal-flow article::after {
    position: absolute;
    top: 69px;
    height: 2px;
    background: linear-gradient(90deg, rgba(54, 140, 243, 0.72), rgba(64, 201, 121, 0.46), rgba(240, 68, 62, 0.5));
    box-shadow: 0 0 12px rgba(54, 140, 243, 0.28);
    content: "";
    pointer-events: none;
  }

  .steps--signal-flow article:not(:first-child)::before {
    left: 0;
    width: 24px;
  }

  .steps--signal-flow article:not(:last-child)::after {
    right: calc(-1 * var(--step-gap));
    left: 74px;
  }

  .steps--signal-flow span {
    position: relative;
    z-index: 2;
    box-shadow: var(--glow-blue);
  }
}

.sticky-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 30;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: rgba(7, 9, 13, 0.96);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
}

.sticky-cta[hidden] {
  display: none;
}

@media (min-width: 761px) {
  .sticky-cta {
    display: none !important;
  }
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(115deg, rgba(54, 140, 243, 0.12), transparent 32%),
    linear-gradient(245deg, rgba(240, 68, 62, 0.18), transparent 38%),
    linear-gradient(90deg, rgba(7, 9, 13, 0.62), transparent 45%),
    linear-gradient(180deg, transparent 58%, rgba(7, 9, 13, 0.66));
  pointer-events: none;
}

.hero-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
}

.trust-strip,
.solution-panel,
.commercial,
.final-cta {
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.trust-strip {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 36px;
  align-items: start;
  padding: 30px;
  background: linear-gradient(180deg, rgba(22, 32, 43, 0.98), rgba(8, 13, 18, 0.98));
  box-shadow: var(--shadow-soft);
}

.trust-strip h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.1;
}

.trust-strip p {
  margin: 0;
  color: #c8d5dc;
  font-size: 18px;
}

.split,
.solution,
.audience,
.validation,
.faq {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 48px;
  align-items: start;
}

.split h2,
.solution h2,
.audience h2,
.validation h2,
.faq h2,
.final-cta h2 {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 750;
}

.section-lede {
  margin: 18px 0 0;
  max-width: 540px;
  color: var(--muted);
  font-size: 17px;
}

.problem-list,
.feature-grid,
.steps,
.use-case-grid {
  display: grid;
  gap: 14px;
}

.problem-list article,
.feature-grid article,
.steps article,
.use-card,
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(22, 32, 43, 0.98), rgba(8, 13, 18, 0.98));
  box-shadow: var(--shadow-soft);
}

.problem-list article,
.feature-grid article,
.steps article {
  padding: 24px;
}

.feature-grid article {
  display: flex;
  flex-direction: column;
}

.problem-list h3,
.feature-grid h3,
.steps h3,
.use-card h3,
.comparison h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.16;
}

.problem-list p,
.feature-grid p,
.steps p,
.use-card p,
.audience p,
.commercial p,
.validation p,
.final-cta p,
.team-closing p {
  margin: 0;
  color: var(--muted);
}

.design-card-cta {
  margin-top: auto;
  width: 100%;
  font-size: 14px;
}

.solution {
  align-items: stretch;
}

.solution-panel {
  padding: 32px;
  background: linear-gradient(180deg, rgba(60, 23, 24, 0.92), rgba(14, 21, 29, 0.97));
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.solution-panel .eyebrow {
  color: #ff877b;
}

.solution-panel p:not(.eyebrow) {
  margin: 22px 0 0;
  color: #d8e5eb;
  font-size: 18px;
}

.comparison {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 3vw, 36px);
}

.comparison > div {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(22, 32, 43, 0.96), rgba(8, 13, 18, 0.98));
  box-shadow: var(--shadow-soft);
}

.comparison > div::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  content: "";
}

.comparison > div:first-child {
  border-color: rgba(240, 68, 62, 0.48);
  background: linear-gradient(180deg, rgba(47, 22, 25, 0.98), rgba(8, 13, 18, 0.98));
}

.comparison > div:first-child::before {
  background: linear-gradient(90deg, var(--accent), rgba(244, 182, 78, 0.58));
}

.comparison > div:last-child {
  border-color: rgba(64, 201, 121, 0.56);
  background: linear-gradient(180deg, rgba(14, 35, 34, 0.98), rgba(8, 13, 18, 0.98));
  box-shadow: var(--shadow-soft), 0 0 48px rgba(64, 201, 121, 0.1);
}

.comparison > div:last-child::before {
  background: linear-gradient(90deg, var(--green), var(--blue));
}

.comparison > div:first-child h3 {
  color: #ffaaa3;
}

.comparison > div:last-child h3 {
  color: #b9efd0;
}

.comparison h3::before {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 10px;
  border-radius: 2px;
  content: "";
  vertical-align: 1px;
}

.comparison > div:first-child h3::before {
  background: var(--accent);
  box-shadow: var(--glow-red);
}

.comparison > div:last-child h3::before {
  background: var(--green);
  box-shadow: var(--glow-green);
}

.comparison ul {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.comparison > div:first-child li::marker {
  color: var(--accent);
}

.comparison > div:last-child li::marker {
  color: var(--green);
}

.comparison li + li {
  margin-top: 10px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 750;
}

.steps {
  grid-template-columns: repeat(4, 1fr);
}

.steps span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 42px;
  place-items: center;
  border: 1px solid rgba(54, 140, 243, 0.46);
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(27, 64, 103, 0.92), rgba(14, 24, 36, 0.94));
  color: #83baff;
  font-weight: 700;
}

.use-case-grid {
  grid-template-columns: repeat(3, 1fr);
}

.use-card {
  min-height: 260px;
  padding: 24px;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.use-card:hover,
.use-card.is-selected,
.segment-list button:hover,
.segment-list button.is-selected {
  border-color: var(--accent);
}

.use-card span {
  display: inline-block;
  margin-bottom: 48px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
}

.audience {
  align-items: center;
}

.segment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.segment-list button {
  min-height: 46px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(20, 35, 51, 0.96), rgba(8, 13, 18, 0.96));
  color: var(--ink);
  cursor: pointer;
  font-weight: 600;
}

.commercial {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 34px;
  background: linear-gradient(180deg, rgba(17, 26, 37, 0.98), rgba(8, 13, 18, 0.98));
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.commercial .eyebrow {
  color: #ff877b;
}

.commercial-copy {
  max-width: 720px;
}

.commercial-actions {
  margin-top: 0;
  justify-content: flex-end;
}

.lead-form {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(22, 32, 43, 0.98), rgba(8, 13, 18, 0.98));
  box-shadow: var(--shadow-soft);
}

.field,
.choice-group {
  margin: 0 0 18px;
}

label,
legend {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

label span,
legend span {
  color: var(--muted);
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(11, 19, 27, 0.98), rgba(5, 9, 13, 0.98));
  color: var(--ink);
  padding: 12px 13px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(54, 140, 243, 0.56);
}

textarea {
  min-height: 108px;
  resize: vertical;
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: var(--accent);
  box-shadow: var(--glow-red);
}

.field-error,
.form-status {
  margin: 8px 0 0;
  color: #ff8078;
  font-size: 14px;
}

.form-status.success {
  padding: 14px;
  border: 1px solid rgba(64, 201, 121, 0.48);
  border-radius: var(--radius);
  background: rgba(64, 201, 121, 0.1);
  color: var(--green);
  box-shadow: var(--glow-green);
}

.form-status.error {
  padding: 14px;
  border: 1px solid rgba(240, 68, 62, 0.48);
  border-radius: var(--radius);
  background: rgba(240, 68, 62, 0.1);
  box-shadow: var(--glow-red);
}

.choice-group {
  padding: 0;
  border: 0;
}

.choice-group label,
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(20, 35, 51, 0.96), rgba(8, 13, 18, 0.96));
  cursor: pointer;
}

.choice-group label + label {
  margin-top: 8px;
}

.choice-group input,
.checkbox input {
  width: 18px;
  min-width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-step[hidden] {
  display: none;
}

.honeypot {
  position: absolute;
  left: -5000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq details {
  padding: 18px 20px;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.faq p {
  margin: 12px 0 0;
  color: var(--muted);
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(17, 26, 37, 0.98), rgba(8, 13, 18, 0.98));
  box-shadow: var(--shadow-soft);
}

.final-cta > div {
  max-width: 760px;
}

.dual-message-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.dual-message-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(22, 32, 43, 0.98), rgba(8, 13, 18, 0.98));
  box-shadow: var(--shadow-soft);
}

.dual-message-grid h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.16;
}

.dual-message-grid p {
  margin: 0;
  color: var(--muted);
}

.dual-message-cta {
  display: inline-flex;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.team-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(22, 32, 43, 0.98), rgba(8, 13, 18, 0.98));
  box-shadow: var(--shadow-soft);
}

.team-grid h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.16;
}

.team-grid p {
  margin: 0;
  color: var(--muted);
}

.team-closing {
  margin-top: 24px;
  max-width: 760px;
}

.team-closing p + p {
  margin-top: 12px;
}

.footer {
  display: flex;
  width: min(var(--max), calc(100% - 40px));
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  padding: 36px 0 48px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer p {
  margin: 12px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 600;
}

@media (max-width: 980px) {
  .hero,
  .split,
  .solution-band .solution,
  .audience,
  .validation,
  .faq,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 38px;
    padding-bottom: 48px;
  }

  .steps,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .use-case-grid,
  .comparison {
    grid-template-columns: 1fr;
  }

  .commercial {
    grid-template-columns: 1fr;
  }

  .commercial-actions {
    justify-content: flex-start;
  }

  .solution-band {
    padding: 84px 0;
    background:
      linear-gradient(180deg, var(--paper), transparent 8%, transparent 92%, var(--paper)),
      linear-gradient(180deg, rgba(7, 9, 13, 0.93) 0%, rgba(7, 9, 13, 0.82) 48%, rgba(7, 9, 13, 0.9) 100%),
      url("/assets/inspiration/broadcast-hero-multiview.png");
    background-position: center;
    background-size: cover;
  }

  .dual-message-grid,
  .team-grid,
  .heritage-panel {
    grid-template-columns: 1fr;
  }

  .heritage-proof {
    max-width: 360px;
    justify-self: start;
  }

  .media-band {
    min-height: clamp(360px, 40vh, 480px);
    padding: 72px 20px;
  }

  .media-band-copy {
    font-size: clamp(32px, 6vw, 42px);
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 88px;
  }

  .site-header {
    padding: 12px 12px 0;
  }

  .nav {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav.is-open .nav-links,
  .nav.is-open .nav-cta {
    display: flex;
    width: 100%;
  }

  .nav.is-open .nav-links {
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 2px;
  }

  .nav.is-open .nav-cta {
    justify-content: center;
  }

  .section-shell {
    width: min(100% - 24px, var(--max));
    padding: 84px 0;
  }

  .solution-band {
    padding: 72px 0;
  }

  .solution-band .section-shell {
    width: min(100% - 24px, var(--max));
    padding: 0;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 40px;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 52px);
  }

  .hero-rotator {
    display: inline;
    min-width: 0;
  }

  .hero-lede {
    font-size: 18px;
  }

  .heritage-band {
    padding-top: 16px;
  }

  .heritage-panel {
    gap: 22px;
    padding: 24px;
  }

  .heritage-copy h2 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .experience-meter {
    min-height: 188px;
    padding: 22px 22px 41px;
  }

  .experience-meter span {
    font-size: clamp(86px, 26vw, 116px);
  }

  .hero-visual {
    border-radius: var(--radius);
  }

  .steps,
  .feature-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .steps span,
  .use-card span {
    margin-bottom: 24px;
  }

  .use-card {
    min-height: 220px;
  }

  .media-band {
    min-height: clamp(340px, 52vh, 420px);
    padding: 64px 16px;
  }

  .media-band-inner {
    width: min(100% - 24px, var(--max));
  }

  .media-band-copy {
    font-size: clamp(30px, 8vw, 38px);
    margin-bottom: 24px;
  }

  .media-band .button.primary {
    width: 100%;
  }

  body.has-sticky-cta {
    padding-bottom: 76px;
  }

  .lead-form,
  .trust-strip,
  .solution-panel,
  .commercial,
  .final-cta {
    padding: 22px;
  }

  .final-cta,
  .footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .footer-links {
    flex-direction: column;
  }
}
