:root {
  --ink: #071116;
  --text: #26363a;
  --muted: #334448;
  --bg: #eef7f4;
  --paper: rgba(251, 254, 251, 0.88);
  --line: rgba(7, 17, 22, 0.13);
  --deep: #061014;
  --teal: #145852;
  --mist: #8bc8b2;
  --blue: #145b74;
  --max: 1120px;
  --narrow: 820px;
  --radius: 14px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(238, 247, 244, 0.72), rgba(248, 252, 250, 0.68) 42%, rgba(234, 245, 241, 0.72)),
    radial-gradient(circle at 18% 8%, rgba(139, 200, 178, 0.22), transparent 26%),
    radial-gradient(circle at 82% 0%, rgba(20, 88, 82, 0.12), transparent 34%),
    linear-gradient(90deg, rgba(238, 247, 244, 0.64), rgba(238, 247, 244, 0.52), rgba(238, 247, 244, 0.66)),
    url("../v2/assets/backgrounds/spotlight-console.jpg") center 50vh / max(1280px, 100vw) auto repeat-y fixed,
    url("../v2/assets/backgrounds/spotlight-mic.jpg") center 92vh / max(1380px, 104vw) auto repeat-y fixed,
    #eef7f4;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.24;
  background:
    repeating-linear-gradient(105deg, rgba(11, 52, 55, 0.055) 0 1px, transparent 1px 18px),
    linear-gradient(115deg, rgba(238, 247, 244, 0.28), rgba(139, 200, 178, 0.2), rgba(238, 247, 244, 0.26));
  pointer-events: none;
}
a { color: inherit; text-decoration: none; }
a:focus-visible,
button:focus-visible { outline: 3px solid var(--mist); outline-offset: 4px; }
h1, h2, h3, p { margin-top: 0; }
p { margin-bottom: 0; color: var(--text); font-size: clamp(0.88rem, 0.95vw, 0.98rem); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 0;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(238, 247, 244, 0.86), rgba(238, 247, 244, 0.78), rgba(238, 247, 244, 0.86)),
    url("../v2/assets/backgrounds/spotlight-wave.jpg") center / min(940px, 100vw) auto repeat-x,
    rgba(238, 247, 244, 0.82);
  backdrop-filter: blur(14px);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.brand-orb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 999px;
  overflow: hidden;
  background: var(--deep);
  box-shadow: 0 0 0 1px rgba(7, 17, 22, 0.18), 0 8px 20px rgba(7, 17, 22, 0.12);
}
.brand-orb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand-text {
  display: grid;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.brand-text strong { color: var(--ink); font-size: 0.86rem; font-weight: 900; }
.brand-text em { color: var(--muted); font-size: 0.72rem; font-style: normal; font-weight: 850; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--text);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-links .nav-parent {
  padding: 8px 12px;
  border: 1px solid rgba(7, 17, 22, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  white-space: nowrap;
}
.nav-cta {
  padding: 10px 15px;
  border-radius: 999px;
  background: var(--deep);
  color: white;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-links .btn {
  padding: 10px 15px;
  border-radius: 999px;
  background: var(--deep);
  color: white;
  border-color: var(--deep);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero,
.intro-strip,
.section,
.final-cta {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}
.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) 340px;
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
  min-height: clamp(620px, 72vh, 760px);
  padding: clamp(74px, 11vw, 132px) 0 clamp(62px, 9vw, 96px);
  border-bottom: 0;
  color: white;
  box-shadow: 0 0 0 100vmax var(--deep);
  clip-path: inset(0 -100vmax);
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc((100% - 100vw) / 2);
  right: calc((100% - 100vw) / 2);
  z-index: -2;
}
.hero::before {
  background:
    linear-gradient(90deg, rgba(3, 9, 12, 0.92) 0%, rgba(3, 9, 12, 0.74) 39%, rgba(3, 9, 12, 0.54) 64%, rgba(3, 9, 12, 0.86) 100%),
    linear-gradient(180deg, rgba(3, 9, 12, 0.12), rgba(3, 9, 12, 0.96)),
    url("../v2/assets/backgrounds/studio-hero-banner.png") center / cover no-repeat;
}
.hero::after {
  z-index: -1;
  background:
    radial-gradient(circle at 74% 26%, rgba(94, 192, 238, 0.26), transparent 24%),
    radial-gradient(circle at 23% 0%, rgba(235, 154, 78, 0.28), transparent 22%),
    linear-gradient(180deg, transparent 72%, rgba(238, 247, 244, 0.98) 100%);
  mix-blend-mode: screen;
  opacity: 0.7;
}
.hero-main { max-width: 780px; min-width: 0; }
.eyebrow,
.mini-label {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: clamp(0.56rem, 0.9vw, 0.66rem);
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
h1 {
  max-width: 680px;
  margin-bottom: 20px;
  font-size: clamp(1.78rem, 2.75vw, 2.62rem);
  line-height: 1.12;
  font-weight: 760;
}
h2 {
  margin-bottom: 13px;
  font-size: clamp(1.22rem, 1.75vw, 1.72rem);
  line-height: 1.16;
  font-weight: 720;
}
h3 {
  margin-bottom: 8px;
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  line-height: 1.25;
  font-weight: 720;
}
.lead { max-width: 720px; font-size: clamp(0.92rem, 1.05vw, 1rem); overflow-wrap: anywhere; }
.lead strong { color: inherit; font-weight: 850; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 40px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.button-primary { background: var(--deep); color: white; border-color: var(--deep); }
.button-secondary { background: rgba(255, 255, 255, 0.5); }
.button-small { min-height: 34px; padding: 8px 12px; font-size: 0.58rem; letter-spacing: 0.1em; }
.hero p { color: rgba(245, 252, 250, 0.9); }
.hero .eyebrow { color: #8fd6f0; text-shadow: 0 0 18px rgba(75, 179, 226, 0.28); }
.hero h1 { max-width: 700px; text-shadow: 0 18px 44px rgba(0, 0, 0, 0.66); }
.hero .lead { color: rgba(238, 247, 244, 0.9); text-shadow: 0 10px 30px rgba(0, 0, 0, 0.64); }
.hero .button-primary { background: white; color: var(--deep); border-color: white; }
.hero .button-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border-color: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(12px);
}

.feature-player,
.sample-row,
.service-list article,
.trust-list article,
.price-stack article,
.final-cta {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}
.feature-player {
  padding: 22px;
  box-shadow: 0 18px 50px rgba(7, 17, 22, 0.08);
  backdrop-filter: blur(10px);
}
.hero .feature-player {
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(150deg, rgba(7, 17, 22, 0.86), rgba(7, 17, 22, 0.58)),
    rgba(7, 17, 22, 0.72);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(12px);
}
.voice-card-head { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
.voice-avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--deep);
  color: var(--mist);
  font-weight: 900;
}
.voice-face,
.feature-player .voice-card-head .voice-face,
.hero .feature-player .voice-card-head .voice-face {
  width: 54px;
  height: 54px;
  min-width: 54px;
  max-width: 54px;
  flex: 0 0 54px;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
  background: var(--deep);
}
.hero .feature-player .voice-face {
  width: 54px !important;
  height: 54px !important;
  min-width: 54px;
  max-width: 54px !important;
  flex-basis: 54px;
  border-radius: 50%;
}
.feature-player h2 { font-size: clamp(1.1rem, 1.6vw, 1.28rem); line-height: 1.1; font-weight: 800; }
.feature-player p { color: var(--muted); font-size: 0.9rem; }
.hero .feature-player h2 { color: white; }
.hero .feature-player p,
.hero .feature-player .demo-status { color: rgba(238, 247, 244, 0.72); }
.script-preview {
  color: var(--text);
  font-size: 0.86rem;
  line-height: 1.45;
  font-weight: 650;
}
.feature-player .script-preview {
  margin-top: 14px;
  padding: 12px;
  border-left: 3px solid var(--mist);
  background: rgba(255, 255, 255, 0.52);
}
.hero .feature-player .script-preview {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.08);
}
.demo-player { display: grid; gap: 12px; margin-top: 16px; }
.demo-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.demo-toggle,
.demo-replay {
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--deep);
  color: white;
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}
.demo-replay { background: rgba(255, 255, 255, 0.6); color: var(--ink); }
.demo-status { color: var(--muted); font-size: 0.78rem; }
.demo-progress { height: 6px; border-radius: 999px; background: rgba(7, 17, 22, 0.09); overflow: hidden; }
.demo-bar { display: block; width: 0%; height: 100%; background: linear-gradient(90deg, var(--teal), var(--mist)); transition: width 0.18s linear; }
.hero-proof {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(7, 17, 22, 0.5);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}
.hero-proof-head {
  display: grid;
  gap: 3px;
}
.hero-proof-head p:last-child,
.quick-sample p {
  color: rgba(238, 247, 244, 0.72);
  font-size: 0.86rem;
}
.quick-samples {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}
.quick-sample {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}
.quick-sample h3 {
  min-height: 2.5em;
  color: white;
  font-size: 0.84rem;
}
.quick-sample .demo-player { margin-top: 10px; gap: 9px; }
.quick-sample .demo-toggle,
.quick-sample .demo-replay { min-height: 30px; padding: 7px 9px; font-size: 0.56rem; }
.hero .quick-sample .demo-status { font-size: 0.7rem; }
.proof-section { padding-top: clamp(42px, 6vw, 66px); }
.voice-proof-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}
.voice-proof-card {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(251, 254, 251, 0.86);
  box-shadow: 0 14px 32px rgba(7, 17, 22, 0.05);
}
.voice-proof-card .voice-card-head { align-items: flex-start; margin-bottom: 10px; }
.voice-proof-card h3 { margin-bottom: 3px; }
.voice-proof-card p { color: var(--muted); font-size: 0.78rem; }
.voice-proof-card .demo-player { margin-top: 12px; gap: 9px; }
.voice-proof-card .demo-toggle,
.voice-proof-card .demo-replay { min-height: 30px; padding: 7px 9px; font-size: 0.56rem; }
.direction-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(20px, 5vw, 60px);
  align-items: center;
  margin-top: 26px;
  padding: 22px;
  border: 1px solid rgba(20, 91, 116, 0.18);
  border-radius: var(--radius);
  background: rgba(251, 254, 251, 0.78);
}
.direction-proof h2 { max-width: 520px; }
.direction-proof p { max-width: 640px; color: var(--muted); }
.comparison-placeholders {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.comparison-placeholders article {
  min-height: 150px;
  padding: 16px;
  border: 1px dashed rgba(7, 17, 22, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
}
.comparison-placeholders p { margin-bottom: 14px; font-size: 0.84rem; }
.demo-toggle:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}
.inline-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.tier-snapshot {
  align-self: center;
}
.tier-mini-list {
  display: grid;
  gap: 8px;
  margin: 18px 0;
}
.tier-mini-list p {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(238, 247, 244, 0.82);
}
.tier-mini-list strong,
.tier-mini-list span {
  color: white;
  font-weight: 850;
}
.services-overview,
.pricing-overview,
.multi-voice-section,
.difference-section {
  padding-top: clamp(52px, 7vw, 82px);
}
.service-paths,
.pricing-cards,
.difference-cards,
.use-case-grid {
  display: grid;
  gap: 12px;
}
.difference-cards {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.difference-cards article,
.use-case-grid article,
.series-note {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(251, 254, 251, 0.86);
  box-shadow: 0 14px 34px rgba(7, 17, 22, 0.05);
}
.difference-cards article {
  min-width: 0;
  padding: 20px;
}
.difference-cards p {
  color: var(--muted);
  font-size: 0.88rem;
}
.use-case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.use-case-grid article {
  min-height: 92px;
  display: flex;
  align-items: center;
  padding: 18px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 760;
}
.series-note {
  margin-top: 18px;
  padding: 22px;
}
.series-note p {
  max-width: 860px;
  color: var(--muted);
}
.service-paths {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.pricing-cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.service-paths article,
.pricing-cards article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(251, 254, 251, 0.86);
  box-shadow: 0 14px 34px rgba(7, 17, 22, 0.05);
}
.service-paths ul {
  display: grid;
  gap: 8px;
  margin: 0 0 6px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}
.service-paths .button,
.pricing-cards .button {
  justify-self: start;
  margin-top: 4px;
}
.tier-price {
  color: var(--teal);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 900;
  line-height: 1;
}
.small-note {
  max-width: 760px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.88rem;
}

.intro-strip {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: clamp(28px, 7vw, 90px);
  padding: clamp(50px, 7vw, 82px) clamp(18px, 3vw, 34px);
  border-bottom: 1px solid var(--line);
  background: transparent;
}
.intro-strip::before {
  content: none;
}
.intro-strip h2 { max-width: 420px; }
.intro-copy { display: grid; gap: 18px; max-width: 720px; }
.section { padding: clamp(52px, 7vw, 82px) clamp(18px, 3vw, 34px); border-bottom: 1px solid rgba(7, 17, 22, 0.08); background: transparent; }
.section-head { max-width: var(--narrow); margin-bottom: 28px; }
.split-head {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(24px, 6vw, 80px);
  max-width: none;
  align-items: end;
}
.split-head > p { max-width: 580px; color: var(--muted); }

.sample-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.sample-tabs span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
}
.sample-list { display: grid; gap: 10px; }
.section,
.intro-strip,
.final-cta {
  position: relative;
  isolation: isolate;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  opacity: 0.16;
  pointer-events: none;
}
.final-cta::before {
  opacity: 0.2;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(251, 254, 251, 0.74), rgba(251, 254, 251, 0.6)),
    url("../v2/assets/backgrounds/audio-wave-phone.jpg") center / cover no-repeat;
}
.sample-row {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.78fr);
  gap: 22px;
  align-items: stretch;
  padding: 18px;
  border-radius: 12px;
  background: rgba(251, 254, 251, 0.84);
  box-shadow: 0 14px 36px rgba(7, 17, 22, 0.05);
}
.priority-sample { background: rgba(255, 255, 255, 0.82); border-color: rgba(20, 91, 116, 0.26); }
.sample-meta p { color: var(--muted); font-size: 0.9rem; }
.sample-meta h3 { font-size: 1rem; }
.sample-player {
  display: grid;
  align-content: center;
  gap: 14px;
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(7, 17, 22, 0.09);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.64), rgba(238, 247, 244, 0.52)),
    repeating-linear-gradient(90deg, rgba(7, 17, 22, 0.035) 0 1px, transparent 1px 18px);
}

.method-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--line);
  gap: 1px;
}
.method-list article { min-height: 178px; padding: 20px 16px; background: rgba(251, 254, 251, 0.84); }
.method-list span { display: block; margin-bottom: 28px; color: var(--blue); font-size: 0.62rem; font-weight: 900; letter-spacing: 0.16em; }
.method-list p,
.service-list p,
.trust-list p,
.price-stack p { color: var(--muted); font-size: 0.88rem; }
.service-list,
.trust-list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.service-list article,
.trust-list article { padding: 18px; border-radius: 12px; background: rgba(251, 254, 251, 0.84); }

.process-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.process-columns ol { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.process-columns li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.step-number { color: var(--blue); font-size: 0.66rem; font-weight: 900; letter-spacing: 0.12em; }
.step-copy { min-width: 0; }
.step-copy strong,
.step-copy span { display: block; }
.step-copy strong { margin-bottom: 2px; font-size: 0.9rem; }
.step-copy span { color: var(--muted); font-size: 0.86rem; }

.pricing-preview { display: grid; grid-template-columns: 0.86fr 1fr; gap: 36px; align-items: start; }
.price-stack { display: grid; gap: 10px; }
.price-stack article {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 15px;
  border-radius: 12px;
  background: rgba(251, 254, 251, 0.84);
}
.price-stack .price { color: var(--teal); font-size: clamp(1.1rem, 1.8vw, 1.32rem); font-weight: 850; line-height: 1.08; }
.price-copy { min-width: 0; }
.price-copy strong,
.price-copy p { display: block; }
.price-copy strong { margin-bottom: 3px; }

.final-cta {
  max-width: 900px;
  margin-top: 54px;
  margin-bottom: 66px;
  padding: clamp(40px, 6vw, 66px);
  text-align: center;
  background: rgba(251, 254, 251, 0.86);
}
.final-cta h2 { margin-inline: auto; max-width: 520px; }
.final-cta p { max-width: 580px; margin-inline: auto; }
.final-cta .button { margin-top: 22px; }
.site-footer {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(280px, 1.2fr) minmax(120px, 1fr);
  align-items: center;
  gap: 20px;
  padding: 32px max(clamp(20px, 6vw, 68px), calc((100vw - var(--max)) / 2 + 20px));
  background: var(--deep);
  color: white;
}
.site-footer p,
.site-footer a { color: rgba(255, 255, 255, 0.72); margin: 0; }
.site-footer p:first-child { color: white; font-weight: 800; }
.site-footer p:nth-child(2) { justify-self: center; text-align: center; }
.site-footer a { justify-self: end; }
.site-footer .footer-links {
  display: flex;
  justify-self: end;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.site-footer .footer-links a { justify-self: auto; }

@media (max-width: 980px) {
  .nav { flex-wrap: wrap; padding: 10px 0; row-gap: 10px; }
  .nav-links {
    width: 100%;
    order: 3;
    justify-content: flex-start;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
  }
  .nav-links a {
    flex: 0 0 auto;
    min-height: 30px;
    padding: 7px 9px;
    border: 1px solid rgba(7, 17, 22, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
  }
  .nav-links .btn {
    padding: 8px 10px;
  }
  .hero,
  .intro-strip,
  .split-head,
  .pricing-preview { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .feature-player { max-width: 520px; }
  .method-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-list,
  .trust-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quick-samples,
  .voice-proof-grid,
  .pricing-cards,
  .difference-cards,
  .use-case-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-paths { grid-template-columns: 1fr; }
  .direction-proof { grid-template-columns: 1fr; }
  .sample-row { grid-template-columns: 1fr; }
  .process-columns { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .nav { min-height: 64px; width: min(100% - 28px, var(--max)); gap: 12px; }
  .brand-orb { width: 42px; height: 42px; flex-basis: 42px; }
  .brand-text strong { font-size: 0.76rem; }
  .brand-text em { font-size: 0.62rem; }
  .nav-links { font-size: 0.58rem; letter-spacing: 0.08em; }
  .nav-links .btn { padding: 7px 9px; font-size: 0.58rem; letter-spacing: 0.08em; }
  .hero,
  .intro-strip,
  .section,
  .final-cta { width: min(100% - 28px, var(--max)); }
  .hero { padding-top: 42px; }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(3, 9, 12, 0.82), rgba(3, 9, 12, 0.9) 54%, rgba(3, 9, 12, 0.98)),
      url("../v2/assets/backgrounds/studio-hero-banner.png") center top / cover no-repeat;
  }
  body {
    background:
      linear-gradient(180deg, rgba(238, 247, 244, 0.74), rgba(248, 252, 250, 0.66) 42%, rgba(234, 245, 241, 0.74)),
      radial-gradient(circle at 18% 8%, rgba(139, 200, 178, 0.18), transparent 26%),
      url("../v2/assets/backgrounds/spotlight-console.jpg") center center / max(980px, 100vw) auto repeat-y fixed,
      url("../v2/assets/backgrounds/spotlight-mic.jpg") center bottom / max(1100px, 104vw) auto repeat-y fixed,
      #eef7f4;
  }
  h1 { max-width: 100%; font-size: clamp(1.42rem, 6.2vw, 1.86rem); line-height: 1.14; }
  h2 { max-width: 100%; font-size: clamp(1rem, 4.2vw, 1.2rem); line-height: 1.2; }
  p,
  .lead { font-size: 0.9rem; }
  .hero-main {
    width: min(100%, 340px);
    max-width: min(100%, 340px);
  }
  .hero-proof { width: min(100%, 340px); max-width: min(100%, 340px); }
  .hero .lead,
  .hero h1,
  .hero h2 { max-width: min(100%, 340px); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .quick-samples,
  .voice-proof-grid,
  .comparison-placeholders,
  .pricing-cards,
  .difference-cards,
  .use-case-grid { grid-template-columns: 1fr; }
  .quick-sample h3 { min-height: auto; }
  .inline-cta { flex-direction: column; }
  .method-list,
  .service-list,
  .trust-list { grid-template-columns: 1fr; }
  .price-stack article { grid-template-columns: 1fr; }
  .demo-row { align-items: stretch; }
  .demo-toggle,
  .demo-replay { flex: 1; }
  .site-footer { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .site-footer p:nth-child(2),
  .site-footer a,
  .site-footer .footer-links { justify-self: center; justify-content: center; }
}
@media (max-width: 420px) {
  .brand { gap: 8px; }
  .brand-text { letter-spacing: 0.06em; }
  .nav-links .btn { max-width: none; text-align: center; }
  h1 { font-size: clamp(1.38rem, 7vw, 1.72rem); }
  h2 { font-size: clamp(0.98rem, 4.7vw, 1.14rem); }
  .eyebrow,
  .mini-label { letter-spacing: 0.16em; }
}
