:root {
  --bg: #070a10;
  --panel: #0d121c;
  --panel-2: #111827;
  --text: #edf7ff;
  --muted: #8b98aa;
  --line: #1d2838;
  --cyan: #5ee3ff;
  --violet: #8c72ff;
  --lime: #b9ff69;
  --gutter: 80px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 6%, #12345166, transparent 28%),
    var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
}

/* index4 review variant: wider canvas with a consistent one-inch desktop gutter. */
.index4-page {
  --index4-gutter: 96px;
  background: linear-gradient(180deg, #0a1826 0%, #07111c 55%, #070a10 100%);
}

.index4-page .wrap,
.index4-page .hero-wrap {
  width: 100%;
  max-width: none;
  padding-inline: var(--index4-gutter);
}

.index4-page .hero h1 {
  line-height: 1.14;
}

/* Keep the hero genuinely balanced. The nowrap headline previously imposed
   its min-content width on the grid and squeezed the video column. */
.index4-page .hero {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.index4-page .hero-copy,
.index4-page .hero .video-shell {
  width: 100%;
  min-width: 0;
  max-width: none;
}

.index4-page .hero-headline span {
  display: inline;
  white-space: normal;
}

/* Give gradient-text descenders (notably the j/g in “judgment”) their own
   paint area. Chromium can otherwise crop them at the span's line box. */
.index4-page .hero-headline .grad {
  padding-bottom: .12em;
  -webkit-background-clip: text;
  background-clip: text;
}

/* Index5 gives the winning headline the full canvas, then reserves the lower
   row for a balanced copy/video split. */
.index5-page .hero {
  padding-block: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  column-gap: clamp(42px, 4vw, 72px);
  row-gap: 18px;
}

.index5-page .hero-heading {
  grid-column: 1 / -1;
  min-width: 0;
}

.index5-page .hero-question {
  display: block;
  margin-bottom: 12px;
  color: var(--cyan);
  font-size: clamp(17px, 1.35vw, 22px);
  font-weight: 700;
  line-height: 1.35;
}

.index6-page .hero-question em {
  font-style: italic;
}

.index8-page .proof-strip .wrap {
  grid-template-columns: repeat(6, auto);
}

.index8-page #system .card-grid.three + .card-grid.four {
  margin-top: 14px;
}

.index8-page .index8-equation strong {
  font-size: clamp(64px, 8vw, 104px);
}

.index8-page main h2 {
  font-size: 24pt;
  line-height: 1.08;
  letter-spacing: -.055em;
}

.index8-page .index8-delivery-panel .syndication-main {
  margin-top: 0;
  grid-template-columns: 1.1fr .9fr;
}

.index8-page .index8-delivery-panel + .card-grid {
  margin-top: 14px;
}

.index8-page .index8-delivery-panel .equation-copy h2 {
  margin-top: 10px;
}

.index8-page .index8-delivery-panel .equation {
  margin-top: 24px;
}

.index8-page .index8-delivery-panel .equation-label {
  display: block;
  margin-bottom: 15px;
}

.index8-page .index8-delivery-panel .platform-disclosure {
  margin-top: 12px;
}

.index5-page .hero h1 {
  max-width: none;
  margin: 0;
  font-size: 24pt;
  line-height: 1.08;
  letter-spacing: -.055em;
}

.index5-page .hero-copy {
  align-self: start;
  padding-top: 4px;
}

.index5-page .hero .lede {
  max-width: none;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.58;
}

.index5-page .hero-copy .lede + .lede {
  margin-top: 14px;
}

.index5-page .video-frame {
  aspect-ratio: 16 / 8.7;
}

.index5-page .video-frame video {
  object-fit: cover;
}

/* Prevent the large JUDGMENT → VIDEO → ACTION equation from imposing its
   min-content width on the lower grid and creating a right-side page rail. */
.index4-page .syndication-main {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
}

.index4-page .syndication-main > * {
  min-width: 0;
}

.index4-page .equation {
  flex-wrap: wrap;
}

.index4-page .equation strong {
  font-size: clamp(42px, 4.5vw, 66px);
}

img,
video {
  max-width: 100%;
}

a {
  color: inherit;
}

.wrap {
  width: min(1240px, calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.hero-wrap {
  width: min(1360px, calc(100% - 80px));
}

.narrow {
  width: min(900px, calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.mono {
  font: 600 11px/1.3 "JetBrains Mono", monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.kicker {
  color: var(--cyan);
}

.grad {
  background: linear-gradient(100deg, var(--cyan), #b4efff 44%, var(--violet));
  background-clip: text;
  color: transparent;
}

.skip {
  position: absolute;
  left: -999px;
  top: 10px;
  z-index: 20;
  padding: 10px;
  background: var(--cyan);
  color: #071017;
}

.skip:focus {
  left: 10px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid #1d2838cc;
  background: #070a10e8;
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  flex: 0 0 auto;
  font-weight: 800;
  letter-spacing: -.04em;
  text-decoration: none;
}

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

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.nav-links a {
  color: #aab7c7;
  font-size: 13px;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
}

.nav-links .nav-cta {
  padding: 10px 14px;
  border: 1px solid #5ee3ff55;
  border-radius: 9px;
  color: var(--cyan);
}

.index6-page .phone-trust {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text);
  line-height: 1.15;
}

.index6-page .phone-trust svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: var(--cyan);
}

.index6-page .phone-trust span,
.index6-page .phone-trust small,
.index6-page .phone-trust strong {
  display: block;
}

.index6-page .phone-trust small {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .02em;
}

.index6-page .phone-trust strong {
  color: var(--text);
  font-size: 14px;
  letter-spacing: .015em;
}

.index6-page .phone-trust:hover strong {
  color: var(--cyan);
}

/* Broad Advancing AI homepage: conversion-first, video-led hero. */
.home-page .home-hero-wrap {
  width: 100%;
  max-width: 1440px;
}

.home-page .home-hero {
  min-height: calc(100vh - 72px);
  padding: clamp(28px, 4vh, 54px) 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(34px, 4vw, 72px);
}

.home-page .home-hero-copy,
.home-page .home-hero-media {
  min-width: 0;
}

.home-page .home-hero h1 {
  max-width: 700px;
  margin: 12px 0 16px;
  font-size: clamp(42px, 4.25vw, 66px);
  line-height: .96;
  letter-spacing: -.07em;
}

.home-page .home-hero .lede {
  max-width: 660px;
  margin: 0;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.5;
}

.home-page .home-hero-support {
  max-width: 660px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.home-page .home-call-note {
  max-width: 650px;
  margin-top: 14px;
  padding: 13px 15px;
  border-left: 2px solid var(--cyan);
  background: #0d1722cc;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.home-page .home-call-note strong { color: var(--text); }
.home-page .home-hero-media .video-shell { width: 100%; max-width: none; }
.home-page .home-hero-media .video-frame { aspect-ratio: 16 / 9; }
.home-page .home-proof-strip .wrap { grid-template-columns: repeat(6, auto); }

.hero {
  padding: 28px 0 30px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: clamp(28px, 3vw, 44px);
}

.hero h1,
.page-hero h1 {
  max-width: 780px;
  margin: 11px 0 14px;
  font-size: clamp(35px, 3.15vw, 46px);
  line-height: .95;
  letter-spacing: -.065em;
}

.hero-headline span {
  display: block;
  white-space: nowrap;
}

.hero .lede,
.page-hero .lede {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.48;
}

.hero .lede strong,
.page-hero .lede strong {
  color: var(--text);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 17px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--cyan);
  border-radius: 9px;
  background: var(--cyan);
  color: #071017;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: .2s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px #5ee3ff22;
}

.btn.secondary {
  border-color: var(--line);
  background: transparent;
  color: var(--text);
}

.text-link {
  color: var(--cyan);
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.video-shell {
  overflow: hidden;
  border: 1px solid #29405a;
  border-radius: 17px;
  background: #09101acc;
  box-shadow: 0 28px 80px #000a, 0 0 70px #4bdcff13;
}

.shell-top {
  min-height: 40px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
}

.lights {
  display: flex;
  gap: 6px;
}

.lights i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2c3746;
}

.lights i:first-child {
  background: var(--cyan);
}

.video-frame {
  margin: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #050910;
}

.video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.proof-strip {
  border-block: 1px solid var(--line);
  padding: 15px 0;
}

.proof-strip .wrap {
  display: grid;
  grid-template-columns: repeat(5, auto);
  justify-content: space-between;
  gap: 20px;
  color: #a8b6c7;
  font: 600 10px/1.3 "JetBrains Mono", monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section {
  padding: 94px 0;
}

.section.compact {
  padding: 68px 0;
}

.section-head {
  margin-bottom: 38px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.section-head h2 {
  max-width: 760px;
  margin: 13px 0 0;
  font-size: clamp(29px, 3.75vw, 50px);
  line-height: .96;
  letter-spacing: -.06em;
}

.section-head > p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg, #101824, #0a0f17);
  box-shadow: 0 26px 80px #0007;
}

.equation-panel {
  padding: clamp(28px, 4vw, 52px);
  border-color: #5ee3ff66;
  background:
    radial-gradient(circle at 88% 12%, #5ee3ff24, transparent 31%),
    radial-gradient(circle at 10% 92%, #8c72ff22, transparent 32%),
    #0b111a;
}

.syndication-lead {
  display: grid;
  grid-template-columns: 1fr .9fr;
  align-items: end;
  gap: clamp(28px, 5vw, 72px);
}

.syndication-lead h2 {
  max-width: 650px;
  margin: 12px 0 0;
  font-size: clamp(34px, 4.2vw, 55px);
  line-height: .96;
  letter-spacing: -.06em;
}

.syndication-lead p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.syndication-lead p strong {
  color: var(--text);
}

.syndication-main {
  margin-top: 34px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: clamp(28px, 5vw, 66px);
}

.equation {
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 13px;
  font-weight: 800;
  letter-spacing: -.07em;
}

.equation strong {
  font-size: clamp(58px, 7vw, 92px);
  line-height: .8;
}

.equation span {
  color: var(--muted);
  font-size: 30px;
}

.equation .result {
  color: var(--cyan);
  text-shadow: 0 0 34px #5ee3ff42;
}

.equation-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(29px, 3.75vw, 47px);
  line-height: .96;
  letter-spacing: -.06em;
}

.equation-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.equation-video {
  width: 100%;
}

.equation-label {
  color: #b8c7d6;
}

.platforms {
  margin-top: 25px;
  display: grid;
  gap: 9px;
}

.platform {
  min-height: 58px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  display: flex;
  align-items: center;
  gap: 13px;
  background: #070c13cc;
}

.platform svg {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
}

.platform span {
  display: grid;
  gap: 3px;
}

.platform b {
  font-size: 15px;
  line-height: 1;
}

.platform small {
  color: var(--muted);
  font: 600 9px/1.2 "JetBrains Mono", monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.platform.instagram svg {
  overflow: visible;
  fill: none;
  stroke: #f6689a;
  stroke-width: 2.2;
}

.platform.instagram .platform-dot {
  fill: #ffd06a;
  stroke: none;
}

.platform.youtube svg rect {
  fill: #ff0033;
}

.platform.youtube svg path {
  fill: white;
}

.platform.tiktok svg path {
  fill: white;
}

.platform.tiktok svg .tiktok-shadow-a {
  fill: #25f4ee;
  transform: translate(-1px, 1px);
}

.platform.tiktok svg .tiktok-shadow-b {
  fill: #fe2c55;
  transform: translate(1px, -1px);
}

.platform-disclosure,
.budget-disclosure {
  margin: 13px 0 0;
  color: #667386;
  font-size: 10px;
  line-height: 1.5;
}

.time-answer {
  margin-top: 38px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(28px, 4vw, 56px);
}

.time-intro h3,
.budget-heading h3 {
  margin: 10px 0 12px;
  font-size: clamp(25px, 2.8vw, 36px);
  line-height: 1;
  letter-spacing: -.045em;
}

.time-intro p,
.budget-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.time-stages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.time-stages article,
.budget-options article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #070c13cc;
}

.time-stages article.active {
  border-color: #5ee3ff66;
  background: #0b1822;
}

.time-stages .mono,
.budget-options .mono {
  color: var(--cyan);
  font-size: 9px;
}

.time-stages strong {
  display: block;
  margin: 18px 0 9px;
  color: var(--lime);
  font-size: clamp(20px, 2vw, 25px);
  letter-spacing: -.04em;
}

.time-stages p,
.budget-options p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.budget-comparison {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(28px, 4vw, 56px);
}

.budget-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.budget-options article {
  min-height: 205px;
}

.budget-options article.cinematic-budget {
  border-color: #8c72ff66;
  background: #111126;
}

.budget-options strong {
  display: block;
  margin: 17px 0 14px;
  color: var(--lime);
  font-size: clamp(27px, 3vw, 38px);
  line-height: .9;
  letter-spacing: -.055em;
}

.budget-options strong small {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0;
}

.budget-options h4 {
  margin: 0 0 8px;
  font-size: 15px;
}

.budget-disclosure {
  grid-column: 1 / -1;
  margin-top: -42px;
  max-width: 430px;
}

.chip {
  display: inline-block;
  margin-top: 18px;
  padding: 9px 12px;
  border: 1px solid #b9ff6955;
  border-radius: 8px;
  background: #b9ff690d;
  color: var(--lime);
}

.card-grid {
  display: grid;
  gap: 14px;
}

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

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

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

.card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: linear-gradient(145deg, #101824, #0a0f17);
}

.card .mono {
  color: var(--cyan);
}

.card h3 {
  margin: 35px 0 10px;
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: -.035em;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.card .result {
  display: block;
  margin-top: 16px;
  color: var(--lime);
  font: 600 10px/1.3 "JetBrains Mono", monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.offers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
  gap: 20px;
}

.offers.single {
  grid-template-columns: minmax(0, 820px);
}

.offer {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
  box-shadow: 0 22px 70px #0007;
}

.offer.featured {
  border-color: #5ee3ff66;
  background:
    radial-gradient(circle at 100% 0, #5ee3ff1f, transparent 35%),
    var(--panel-2);
}

.offer.managed {
  order: -1;
  border-color: #9b7cff66;
  background:
    radial-gradient(circle at 100% 0, #9b7cff24, transparent 38%),
    var(--panel-2);
}

.managed-label {
  flex: 0 0 auto;
  padding: 10px 12px;
  border: 1px solid #9b7cff88;
  border-radius: 999px;
  color: #bca9ff;
  font: 700 11px/1 "JetBrains Mono", monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.offer.managed .check-list li::before {
  color: #bca9ff;
}

.offer.managed .managed-button {
  border-color: #9b7cff;
  background: #9b7cff;
  color: #080b13;
}

.offer-top {
  min-height: 74px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.price {
  flex: 0 0 auto;
  font-size: clamp(58px, 6vw, 76px);
  font-weight: 800;
  line-height: .8;
  letter-spacing: -.075em;
}

.featured .price {
  color: var(--cyan);
}

.price small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font: 600 9px/1 "JetBrains Mono", monospace;
  letter-spacing: .08em;
  text-align: right;
  text-transform: uppercase;
}

.offer h3 {
  margin: 24px 0 12px;
  font-size: clamp(23px, 2.55vw, 32px);
  line-height: 1;
  letter-spacing: -.055em;
}

.offer > p {
  color: var(--muted);
  line-height: 1.65;
}

.check-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 11px 0 11px 28px;
  border-bottom: 1px solid var(--line);
  color: #bcc9d8;
  font-size: 14px;
  line-height: 1.45;
}

.check-list li:last-child {
  border-bottom: 0;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--lime);
}

.offer .btn,
.offer .buy-button {
  width: 100%;
  margin-top: 25px;
}

.buy-button {
  cursor: pointer;
  font-family: inherit;
}

.offer-detail-link {
  display: block;
  margin-top: 14px;
  color: #aab7c7;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.offer-detail-link:hover {
  color: var(--cyan);
}

.avatar-feature {
  overflow: hidden;
  border: 1px solid #8c72ff66;
  border-radius: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background:
    radial-gradient(circle at 92% 8%, #8c72ff2b, transparent 31%),
    linear-gradient(145deg, #12152a, #090d16);
}

.avatar-copy {
  padding: clamp(30px, 5vw, 58px);
}

.avatar-copy h2 {
  margin: 13px 0 17px;
  font-size: clamp(30px, 3.75vw, 48px);
  line-height: .95;
  letter-spacing: -.06em;
}

.avatar-copy > p {
  color: #aebdcd;
  line-height: 1.65;
}

.proof-points {
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 13px;
  list-style: none;
}

.proof-points li {
  position: relative;
  padding-left: 27px;
  color: #d6e2ee;
}

.proof-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--lime);
}

.avatar-media {
  min-height: 520px;
  padding: 26px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 85% 15%, #5ee3ff1c, transparent 34%),
    #070c13;
}

.avatar-video-shell {
  width: 100%;
}

.audience-card {
  min-height: 175px;
  display: flex;
  flex-direction: column;
}

.audience-card h3 {
  margin: auto 0 10px;
}

.section-cta {
  margin-top: 25px;
  text-align: center;
}

.trust-grid {
  display: block;
}

.guarantee {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid #b9ff6944;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 54px);
  background:
    radial-gradient(circle at 100% 0, #b9ff6917, transparent 35%),
    #0c1416;
}

.seal {
  width: 72px;
  height: 72px;
  border: 1px solid var(--lime);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--lime);
  font-size: 32px;
}

.guarantee h3 {
  margin: 9px 0 15px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: .98;
  letter-spacing: -.045em;
}

.guarantee p {
  max-width: 980px;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.faq-heading {
  margin: 58px 0 28px;
}

.faq-heading h2 {
  margin: 12px 0 0;
  font-size: clamp(29px, 3.75vw, 50px);
  line-height: .96;
  letter-spacing: -.06em;
}

.faq {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 9px;
}

details {
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #0b111a;
}

summary {
  position: relative;
  padding: 18px 50px 18px 19px;
  cursor: pointer;
  color: #dce8f3;
  font-weight: 700;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  color: var(--cyan);
  font-size: 21px;
  transform: translateY(-50%);
}

details[open] summary::after {
  content: "-";
}

details > p,
details > .detail-body {
  margin: 0;
  padding: 0 19px 20px;
  color: var(--muted);
  line-height: 1.65;
}

.closing {
  margin: 20px auto 0;
  padding: clamp(34px, 5vw, 60px);
  border: 1px solid #5ee3ff33;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  gap: 50px;
  background:
    radial-gradient(circle at 90% 10%, #5ee3ff1d, transparent 30%),
    #0d1722;
}

.closing h2 {
  margin: 0;
  font-size: clamp(32px, 4.1vw, 51px);
  line-height: .95;
  letter-spacing: -.065em;
}

.closing p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.trust-band {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.trust-band article {
  min-height: 104px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #0a111a;
}

.trust-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border: 1px solid #5ee3ff66;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--cyan);
  font: 700 12px/1 "JetBrains Mono", monospace;
}

.trust-band strong,
.trust-band small {
  display: block;
}

.trust-band strong {
  margin-bottom: 5px;
  font-size: 13px;
}

.trust-band small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.payment-trust {
  padding: 54px 20px 40px;
  display: grid;
  place-items: center;
  text-align: center;
}

.payment-trust img {
  width: min(528px, 100%);
  margin: 15px auto 10px;
  border-radius: 12px;
}

.payment-trust p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.site-footer {
  padding: 25px 0 32px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 34px;
  color: #667487;
  font-size: 12px;
}

.site-footer a {
  color: #9baabc;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--cyan);
}

.footer-brand p {
  max-width: 300px;
  margin: 13px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 9px;
}

.site-footer nav strong {
  margin-bottom: 3px;
  color: var(--text);
  font-size: 12px;
}

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 19px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 10px;
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.company-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--panel);
}

.company-card h2,
.company-card h3 {
  margin: 12px 0 11px;
  font-size: 25px;
  letter-spacing: -.045em;
}

.company-card p,
.prose p,
.prose li {
  color: var(--muted);
  line-height: 1.7;
}

.prose {
  max-width: 860px;
}

.prose h2 {
  margin: 42px 0 12px;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -.045em;
}

.prose h3 {
  margin: 28px 0 10px;
}

.prose a {
  color: var(--cyan);
}

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

.contact-option {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
}

.contact-option h2,
.contact-option h3 {
  margin: 11px 0;
  font-size: 25px;
}

.contact-option p {
  min-height: 50px;
  color: var(--muted);
  line-height: 1.6;
}

.contact-option .btn {
  margin-top: 8px;
}

.contact-hero {
  padding-bottom: 58px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
  gap: 18px;
  align-items: start;
}

.contact-form-panel,
.contact-sidebar {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
}

.contact-form-panel {
  padding: clamp(24px, 4vw, 42px);
}

.contact-form-panel > h2 {
  margin: 10px 0 28px;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -.045em;
}

.contact-form {
  display: grid;
  gap: 19px;
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.form-field .optional {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #2a3c50;
  border-radius: 9px;
  background: #080f18;
  color: var(--text);
  font: inherit;
  line-height: 1.45;
}

.form-field input,
.form-field select {
  min-height: 48px;
  padding: 10px 13px;
}

.form-field textarea {
  min-height: 170px;
  padding: 13px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--cyan);
  outline: 3px solid #5ee3ff1f;
}

.form-field small,
.form-privacy {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.form-privacy {
  margin: -5px 0 0;
}

.form-privacy a,
.contact-sidebar a {
  color: var(--cyan);
}

.form-honey {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact-sidebar {
  overflow: hidden;
}

.contact-sidebar article {
  padding: 25px;
  border-bottom: 1px solid var(--line);
}

.contact-sidebar article h2 {
  margin: 9px 0;
  font-size: 21px;
  letter-spacing: -.035em;
}

.contact-sidebar article p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact-sidebar .callout {
  margin: 0;
  border-left: 0;
}

.confirmation-panel {
  max-width: 760px;
  margin: 70px auto;
  padding: clamp(30px, 6vw, 64px);
  border: 1px solid #5ee3ff44;
  border-radius: 20px;
  background: linear-gradient(145deg, #0d1b28, #091019);
  text-align: center;
}

.section.confirmation-section {
  padding-top: 24px;
}

.confirmation-section .confirmation-panel {
  margin-top: 18px;
}

.confirmation-mark {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 20px;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  place-items: center;
  color: var(--cyan);
  font-size: 28px;
  font-weight: 800;
}

.confirmation-panel h1 {
  margin: 12px 0;
  font-size: clamp(34px, 6vw, 58px);
  letter-spacing: -.05em;
}

.confirmation-panel p {
  color: var(--muted);
  line-height: 1.65;
}

.confirmation-panel .actions {
  justify-content: center;
  margin-top: 28px;
}

.managed-hero .lede {
  margin-bottom: 0;
}

.application-layout {
  margin-top: 30px;
}

.managed-sidebar {
  position: sticky;
  top: 90px;
}

.page-hero {
  padding: 92px 0 72px;
  border-bottom: 1px solid var(--line);
}

.page-hero .eyebrow {
  margin-bottom: 22px;
}

.breadcrumb {
  color: #7d8b9d;
  font-size: 12px;
}

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

.page-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;
  align-items: start;
}

.callout {
  padding: 24px;
  border-left: 3px solid var(--cyan);
  background: linear-gradient(90deg, #5ee3ff0d, transparent);
  color: #c7d5e4;
  line-height: 1.65;
}

.policy-summary {
  margin-bottom: 34px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid #5ee3ff44;
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0, #5ee3ff14, transparent 38%),
    var(--panel);
}

.policy-summary h2 {
  margin: 10px 0 12px;
  font-size: clamp(27px, 3.5vw, 40px);
  line-height: 1;
  letter-spacing: -.05em;
}

.policy-summary p {
  margin: 0;
  color: #b9c7d6;
  line-height: 1.7;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(190px, 240px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(32px, 5vw, 72px);
}

.policy-nav {
  position: sticky;
  top: 94px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: grid;
  gap: 9px;
  background: #0a1018;
}

.policy-nav strong {
  margin-bottom: 4px;
  color: var(--text);
  font-size: 13px;
}

.policy-nav a {
  color: #95a5b8;
  font-size: 12px;
  line-height: 1.45;
  text-decoration: none;
}

.policy-nav a:hover {
  color: var(--cyan);
}

.policy-meta {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.policy-meta span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #9eacbd;
  font: 600 10px/1.25 "JetBrains Mono", monospace;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.prose > :first-child {
  margin-top: 0;
}

.prose section {
  scroll-margin-top: 92px;
}

.prose section + section {
  margin-top: 44px;
  padding-top: 4px;
}

.prose section h2 {
  margin-top: 0;
}

.prose strong {
  color: #dbe8f3;
}

.prose .plain-list {
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.prose .plain-list li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #0a1018;
}

.process-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.process-step {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
}

.process-step strong {
  display: block;
  margin: 12px 0 8px;
  color: var(--text);
  font-size: 17px;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.founder-panel {
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid #8c72ff55;
  border-radius: 20px;
  display: grid;
  grid-template-columns: minmax(180px, .65fr) minmax(0, 1.35fr);
  gap: clamp(28px, 5vw, 64px);
  background:
    radial-gradient(circle at 0 0, #8c72ff1c, transparent 36%),
    var(--panel);
}

.founder-mark {
  min-height: 220px;
  border: 1px solid #5ee3ff33;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, #5ee3ff18, #8c72ff20),
    #090f18;
  color: var(--cyan);
  font-size: clamp(54px, 8vw, 92px);
  font-weight: 800;
  letter-spacing: -.08em;
}

.founder-copy h2 {
  margin: 12px 0 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: .96;
  letter-spacing: -.055em;
}

.founder-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.journey-grid .card {
  min-height: 245px;
  display: flex;
  flex-direction: column;
}

.journey-grid .card h3 {
  margin-top: auto;
}

.target-panel {
  padding: clamp(28px, 4vw, 46px);
  border-color: #5ee3ff55;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.role {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #080d15;
}

.role strong {
  display: block;
  margin-bottom: 9px;
  color: var(--cyan);
}

.role span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

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

.module-row summary {
  display: grid;
  grid-template-columns: 84px minmax(200px, .8fr) 1.2fr;
  align-items: center;
  gap: 22px;
  padding: 20px 58px 20px 22px;
}

.module-row summary::after {
  right: 24px;
}

.module-num {
  color: var(--cyan);
}

.module-row.avatar .module-num {
  color: #b6a8ff;
}

.module-title {
  color: var(--text);
  font-size: 17px;
}

.module-outcome {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

.module-row .detail-body {
  padding: 3px 24px 24px 128px;
}

.module-row .detail-body p {
  margin: 0;
}

.package-strip {
  margin-bottom: 32px;
  padding: 22px;
  border: 1px solid #8c72ff55;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #0b111a;
}

.package-strip p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.compare-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
}

.compare-slot {
  min-height: 350px;
  padding: 24px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(180deg, transparent 18%, #050910ee 100%),
    url("/ai-content-engine/hero-ai-avatar.jpg") center / cover;
}

.compare-card.current .compare-slot {
  background:
    linear-gradient(180deg, transparent 18%, #050910ee 100%),
    url("/assets/watson-hero-v7-poster.jpg") center / cover;
}

.slot-label {
  padding: 9px 11px;
  border: 1px solid #5ee3ff55;
  border-radius: 8px;
  background: #071017dd;
  color: var(--cyan);
}

.compare-copy {
  padding: 24px;
}

.compare-copy h3 {
  margin: 9px 0 11px;
  font-size: 27px;
  letter-spacing: -.045em;
}

.compare-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.job {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #0b111a;
}

.job strong {
  display: block;
  margin: 32px 0 10px;
  font-size: 23px;
}

.job p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.industry-groups {
  display: grid;
  gap: 12px;
}

.industry-group summary {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 24px 58px 24px 24px;
  font-size: 21px;
}

.industry-group summary .mono {
  min-width: 110px;
  color: var(--cyan);
}

.industry-list {
  padding: 0 24px 25px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.industry-example {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #080d15;
}

.industry-example strong {
  display: block;
  margin-bottom: 8px;
}

.industry-example span {
  display: block;
  margin-bottom: 9px;
  color: var(--lime);
  font: 600 9px/1.4 "JetBrains Mono", monospace;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.industry-example p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 1050px) {
  :root {
    --gutter: 40px;
  }

  .index4-page {
    --index4-gutter: 64px;
  }

  .index4-page .syndication-main {
    grid-template-columns: 1fr;
  }

  .index4-page .equation {
    flex-wrap: wrap;
    gap: 8px;
  }

  .index4-page .equation strong {
    font-size: clamp(48px, 6vw, 64px);
  }

  .nav-links {
    gap: 13px;
  }

  .hero {
    grid-template-columns: .9fr 1.1fr;
  }

  .hero h1 {
    font-size: clamp(29px, 3.2vw, 34px);
  }

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

  .hero .video-shell {
    max-width: 820px;
  }

  .card-grid.four,
  .journey-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .offers {
    grid-template-columns: repeat(2, minmax(0, 520px));
  }

  .offer.managed {
    width: min(520px, 100%);
    grid-column: 1 / -1;
    justify-self: center;
  }

  .avatar-feature {
    grid-template-columns: 1fr;
  }

  .avatar-media {
    min-height: 420px;
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-wrap {
    width: min(850px, calc(100% - (var(--gutter) * 2)));
  }

  .hero h1 {
    font-size: clamp(32px, 6vw, 42px);
  }

  .index5-page .hero {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }

  .index5-page .hero h1 {
    font-size: 24pt;
  }

  .index5-page .hero-line-break {
    display: none;
  }

  .index5-page .video-frame {
    aspect-ratio: 16 / 9;
  }

  .index5-page .video-frame video {
    object-fit: contain;
  }
}

@media (max-width: 760px) {
  :root {
    --gutter: 20px;
  }

  .index4-page {
    --index4-gutter: 20px;
  }

  .index4-page .hero {
    grid-template-columns: 1fr;
  }

  .index8-page .proof-strip .wrap {
    grid-template-columns: 1fr 1fr;
  }

  .index8-page .proof-strip .wrap span:last-child {
    grid-column: auto;
  }

  .index8-page .index8-delivery-panel .syndication-main {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: static;
  }

  .nav {
    padding: 16px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }

  .nav-links {
    width: 100%;
    max-width: none;
    overflow-x: auto;
    justify-content: flex-start;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  .nav-links a {
    flex: 0 0 auto;
    font-size: 12px;
  }

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

  .index6-page .nav-links {
    overflow: visible;
    padding-bottom: 0;
  }

  .index6-page .phone-trust small {
    font-size: 9px;
  }

  .index6-page .phone-trust strong {
    font-size: 13px;
  }

  .home-page .nav-links .nav-cta { display: inline-flex; }
  .home-page .home-hero { min-height: 0; padding: 34px 0 42px; grid-template-columns: 1fr; gap: 28px; }
  .home-page .home-hero h1 { font-size: clamp(38px, 11vw, 54px); }
  .home-page .home-hero-media { grid-row: 1; }
  .home-page .home-hero-copy { grid-row: 2; }
  .home-page .home-proof-strip .wrap { grid-template-columns: 1fr 1fr; }

  .hero,
  .page-hero {
    padding: 36px 0;
  }

  .hero {
    padding-bottom: 32px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(27px, 7vw, 32px);
  }

  .index5-page .hero h1 {
    font-size: 24pt;
  }

  .hero-headline span {
    white-space: normal;
  }

  .proof-strip .wrap {
    grid-template-columns: 1fr 1fr;
    justify-content: start;
  }

  .proof-strip .wrap span:last-child {
    grid-column: 1 / -1;
  }

  .section,
  .section.compact {
    padding: 66px 0;
  }

  .policy-layout,
  .founder-panel,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .managed-sidebar {
    position: static;
  }

  .policy-nav {
    position: static;
  }

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

  .founder-mark {
    min-height: 150px;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
    gap: 17px;
  }

  .syndication-lead,
  .syndication-main,
  .time-answer,
  .budget-comparison,
  .equation-panel,
  .page-intro-grid {
    grid-template-columns: 1fr;
  }

  .time-stages,
  .budget-options {
    grid-template-columns: 1fr;
  }

  .budget-options article {
    min-height: 0;
  }

  .budget-disclosure {
    margin-top: 0;
    max-width: none;
  }

  .equation strong {
    font-size: clamp(58px, 18vw, 86px);
  }

  .card-grid.four,
  .card-grid.three,
  .card-grid.two,
  .offers,
  .trust-grid,
  .journey-grid,
  .role-grid,
  .comparison,
  .job-grid,
  .company-grid,
  .contact-options,
  .trust-band {
    grid-template-columns: 1fr;
  }

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

  .package-strip {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .avatar-media {
    min-height: 330px;
  }

  .closing {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand,
  .footer-bottom {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 7px;
  }

  .module-row summary {
    grid-template-columns: 62px 1fr;
    gap: 12px;
  }

  .module-row .module-outcome {
    grid-column: 2;
  }

  .module-row .detail-body {
    padding-left: 98px;
  }

  .industry-group summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .industry-list {
    grid-template-columns: 1fr;
  }
}
