:root {
  --paper: #f4f4f1;
  --paper-bright: #f8f8f5;
  --paper-2: #e7e9e7;
  --ink: #101114;
  --muted: #1e2b4f;
  --text-on-dark: #f7f8ff;
  --text-on-dark-secondary: #c8d2ff;
  --line: rgba(16, 17, 20, 0.14);
  --dark-line: rgba(255, 255, 255, 0.16);
  --blue: #3157f2;
  --blue-hover: #2449dc;
  --blue-wash: #e3e8fb;
  --white: #fbfbfa;
  --panel-dark: #17181e;
  --radius: 12px;
  --container: 1340px;
  --gutter: clamp(20px, 4vw, 56px);
  --section: clamp(72px, 7vw, 104px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--paper);
  scrollbar-color: var(--blue) var(--paper-2);
}
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", "Arial Nova", Arial, sans-serif;
  font-variant-numeric: lining-nums;
  -webkit-font-smoothing: antialiased;
}
::selection {
  color: var(--white);
  background: var(--blue);
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
.container {
  width: min(calc(100% - var(--gutter) * 2), var(--container));
  margin-inline: auto;
}
.section-pad {
  padding-block: var(--section);
}
.section-pad + .section-pad {
  border-top: 1px solid rgba(16, 17, 20, 0.08);
}
.section-accent {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.section-accent::before,
.section-accent::after {
  display: none;
}
.section-accent--wave,
.section-accent--grid {
  background-image: none;
}
.section-accent > .container {
  position: relative;
  z-index: 1;
}

.icon {
  width: 1em;
  height: 1em;
  display: block;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 20;
  background: rgba(244, 244, 241, 0.9);
  border-bottom: 1px solid rgba(16, 17, 20, 0.1);
  backdrop-filter: blur(16px) saturate(135%);
}
.header-inner {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.wordmark {
  display: inline-flex;
  align-items: baseline;
  font-size: 27px;
  font-weight: 780;
  letter-spacing: -0.04em;
  white-space: nowrap;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
  margin-inline: auto;
}
.main-nav a,
.login-link {
  position: relative;
  font-size: 14px;
  font-weight: 590;
}
.login-link {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.main-nav a::after,
.login-link::after,
.site-footer a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  inset-block-end: -5px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.28s var(--ease);
}
.main-nav a:hover::after,
.login-link:hover::after,
.site-footer a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 21px;
  border: 1px solid var(--blue);
  border-radius: 10px;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 8px 22px rgba(35, 64, 180, 0.18);
  font-size: 14px;
  font-weight: 680;
  letter-spacing: -0.01em;
  transition:
    transform 0.24s var(--ease),
    background 0.24s var(--ease),
    color 0.24s var(--ease),
    border-color 0.24s var(--ease),
    box-shadow 0.24s var(--ease);
}
.button i:not(.play) {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: currentColor;
  background: transparent;
  font-style: normal;
  font-size: 17px;
  transition: transform 0.24s var(--ease);
}
.button i:not(.play) .icon {
  width: 17px;
  height: 17px;
}
.button:hover {
  transform: translateY(-2px);
  color: var(--white);
  background: var(--blue-hover);
  border-color: var(--blue-hover);
  box-shadow: 0 12px 28px rgba(35, 64, 180, 0.24);
}
.button:active {
  transform: translateY(0) scale(0.985);
}
.button:hover i:not(.play) {
  transform: translate(2px, -2px);
}
.button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(49, 87, 255, 0.45);
  outline-offset: 4px;
}
.button--small {
  min-height: 42px;
  padding-inline: 16px;
  gap: 15px;
  font-size: 13px;
}
.button--small i {
  width: 16px !important;
  height: 16px !important;
}
.button--ghost {
  padding-inline: 18px 22px;
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
  box-shadow: none;
}
.button--ghost:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--ink);
  box-shadow: none;
}
.play {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--blue);
  border-radius: 50%;
  color: var(--blue);
  font-style: normal;
  font-size: 10px;
  padding-inline-start: 2px;
}
.play .icon,
.play-circle .icon {
  width: 12px;
  height: 12px;
  fill: currentColor;
  stroke: none;
}
.button--dark-ghost {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: none;
}
.button--dark-ghost i {
  color: var(--white) !important;
  background: transparent !important;
}
.button--dark-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--white);
  box-shadow: none;
}
.button--inline {
  margin-block-start: 38px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 11px;
  line-height: 1;
  font-weight: 720;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.eyebrow span {
  margin-inline-start: 12px;
  color: var(--muted);
  font-weight: 550;
}
.eyebrow--blue {
  color: #6380ff;
}
h1,
h2,
h3,
p,
blockquote {
  margin-block-start: 0;
}
h1,
h2 {
  margin-block-end: 0;
  font-weight: 720;
  letter-spacing: -0.032em;
  line-height: 1.01;
  text-wrap: balance;
}
h1 {
  font-size: clamp(52px, 4.8vw, 68px);
}
h2 {
  font-size: clamp(44px, 4.8vw, 68px);
}
h1 em {
  font-style: normal;
  font-weight: 430;
  color: var(--muted);
}
h2 em {
  color: inherit;
  font-style: normal;
  font-weight: inherit;
}
.lede,
.section-lede {
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.5;
  letter-spacing: -0.018em;
}
.lede {
  max-width: 540px;
  margin: 28px 0 0;
}
.section-lede {
  color: var(--muted);
  opacity: 1;
}
.action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-block-start: 30px;
}
.status-dot {
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-inline-end: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(49, 87, 255, 0.12);
}

.hero {
  padding-block: clamp(52px, 5vw, 74px) 58px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(430px, 0.94fr) minmax(620px, 1.16fr);
  align-items: center;
  gap: clamp(38px, 4vw, 58px);
}
.studio {
  overflow: hidden;
  color: #f4f4f5;
  background: #111216;
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(28, 33, 50, 0.14);
}
.studio-topbar {
  min-height: 58px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--dark-line);
  font-size: 13px;
}
.studio-name {
  font-weight: 700;
}
.studio-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--text-on-dark-secondary);
}
.studio-actions > span:not(.studio-pill):not(.studio-export) {
  display: grid;
  place-items: center;
}
.studio-actions .icon {
  width: 15px;
  height: 15px;
}
.studio-pill,
.studio-export {
  padding: 8px 11px;
  border: 1px solid var(--dark-line);
  border-radius: 7px;
}
.studio-export {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}
.studio-main {
  display: grid;
  grid-template-columns: 52px 200px minmax(0, 1fr);
  min-height: 360px;
}
.studio-tools {
  padding-block: 12px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border-inline-end: 1px solid var(--dark-line);
}
.studio-tools span {
  min-height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--text-on-dark-secondary);
}
.studio-tools span.active {
  color: var(--white);
  background: rgba(49, 87, 255, 0.2);
  border-inline-start: 2px solid var(--blue);
}
.studio-tools .icon {
  width: 17px;
  height: 17px;
}
.studio-tools small {
  font-size: 8px;
}
.script-panel {
  position: relative;
  padding: 20px;
  border-inline-end: 1px solid var(--dark-line);
  color: var(--text-on-dark);
}
.script-panel strong {
  display: block;
  margin-block-end: 28px;
  color: var(--white);
  font-size: 13px;
}
.script-panel p {
  font-size: 12px;
  line-height: 1.55;
}
.counter {
  position: absolute;
  inset-inline-start: 20px;
  inset-block-end: 18px;
  color: var(--text-on-dark-secondary);
  font-size: 10px;
}
.video-canvas {
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: #050506;
}
.video-canvas img {
  width: 100%;
  height: 305px;
  object-fit: cover;
  object-position: center 43%;
}
.video-controls {
  height: 55px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  color: var(--text-on-dark);
}
.video-controls > span,
.player-controls > span {
  display: grid;
  place-items: center;
}
.video-controls .icon,
.player-controls .icon {
  width: 15px;
  height: 15px;
}
.video-controls > span:first-child .icon,
.player-controls > span:first-child .icon,
.director-bar > span:first-child .icon {
  fill: currentColor;
  stroke: none;
}
.video-controls .progress,
.player-controls .progress {
  height: 3px;
  flex: 1;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}
.progress i {
  width: 64%;
  height: 100%;
  display: block;
  background: var(--blue);
}
.storyboard {
  padding: 14px 16px 16px 68px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  border-top: 1px solid var(--dark-line);
}
.scene {
  position: relative;
  min-height: 105px;
  padding: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--text-on-dark);
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  background: #18191e;
}
.scene.active {
  border-color: var(--blue);
  box-shadow: inset 0 0 0 1px var(--blue);
}
.scene img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.64;
}
.scene span,
.scene b,
.scene small {
  position: relative;
  z-index: 1;
}
.scene span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.52);
  font-size: 10px;
}
.scene b {
  font-size: 11px;
  line-height: 1.25;
}
.scene small {
  align-self: flex-end;
  font-size: 9px;
}
.scene em {
  position: relative;
  z-index: 1;
  margin-block-start: auto;
  color: var(--text-on-dark-secondary);
  font-size: 8px;
  line-height: 1.3;
  font-style: normal;
}
.scene--data::after,
.scene--chart::after {
  content: "";
  height: 25px;
  background: linear-gradient(
    140deg,
    transparent 35%,
    var(--blue) 36% 39%,
    transparent 40% 55%,
    #738bff 56% 59%,
    transparent 60%
  );
  opacity: 0.8;
}
.scene--end {
  background: linear-gradient(145deg, #242939, #13151c);
}
.scene--end b {
  margin: auto 0 2px;
  font-size: 14px;
}
.render-line {
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--dark-line);
  color: var(--text-on-dark-secondary);
  font-size: 11px;
}
.render-line > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.render-line .icon {
  width: 14px;
  height: 14px;
  color: #8fa3ff;
}
.render-line div {
  height: 4px;
  flex: 1;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.13);
}
.render-line i {
  width: 78%;
  height: 100%;
  display: block;
  background: var(--blue);
}
.proof-strip {
  margin-block-start: 44px;
  padding-block: 24px 2px;
  display: grid;
  grid-template-columns: minmax(170px, 0.72fr) minmax(0, 3.28fr);
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
  border-top: 1px solid var(--line);
}
.proof-strip > p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
  letter-spacing: 0.01em;
}
.proof-logos {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
}
.proof-logos > span {
  min-width: 0;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.66;
  transition:
    opacity 0.25s var(--ease),
    transform 0.25s var(--ease);
}
.proof-logos > span:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.proof-logos img {
  width: auto;
  max-width: min(100%, 92px);
  height: 42px;
  object-fit: contain;
}

.section-heading {
  max-width: 760px;
}
.section-heading > p:last-child,
.section-heading--wide > p:last-child {
  max-width: 600px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}
.agent {
  background: #eceeeb;
}
.agent-layout {
  display: grid;
  grid-template-columns: minmax(380px, 0.74fr) minmax(0, 1.26fr);
  align-items: start;
  gap: clamp(48px, 5vw, 76px);
}
.agent-intro {
  padding-block-start: 12px;
}
.agent-intro h2 {
  font-size: clamp(46px, 4.2vw, 58px);
}
.agent-intro > p {
  max-width: 470px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 450;
  line-height: 1.56;
  letter-spacing: -0.015em;
}
.agent-workspace {
  min-width: 0;
  overflow: hidden;
  color: #f4f5f7;
  border-radius: var(--radius);
  background: #111217;
  box-shadow: 0 26px 70px rgba(25, 29, 43, 0.15);
}
.agent-prompt {
  min-height: 142px;
  padding: 27px 30px;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 26px;
  row-gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: #15161c;
}
.agent-prompt__label {
  grid-row: 1 / 3;
  padding-block-start: 5px;
  color: #8da1ff;
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.agent-prompt p {
  max-width: 610px;
  margin: 0;
  color: var(--text-on-dark);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.46;
  letter-spacing: -0.016em;
}
.agent-prompt > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.agent-prompt > div span {
  padding: 5px 8px;
  color: var(--text-on-dark-secondary);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 5px;
  font-size: 9px;
}
.agent-route {
  height: 50px;
  padding-inline: 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  color: #97a8ff;
  background: #0d0e12;
}
.agent-route > i {
  height: 1px;
  display: block;
  background: linear-gradient(90deg, transparent, rgba(109, 134, 255, 0.72));
}
.agent-route > i:last-child {
  background: linear-gradient(90deg, rgba(109, 134, 255, 0.72), transparent);
}
.agent-route > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  font-weight: 680;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.agent-route .icon {
  width: 15px;
  height: 15px;
}
.agent-production {
  min-height: 422px;
  display: grid;
  grid-template-columns: minmax(238px, 0.75fr) minmax(0, 1.35fr);
  grid-template-areas: "script output" "scenes output";
  grid-template-rows: auto 1fr;
}
.agent-script {
  grid-area: script;
  padding: 28px 26px 24px;
  border-inline-end: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.agent-script__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.agent-script__head b {
  font-size: 12px;
  letter-spacing: -0.01em;
}
.agent-script__head span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #94d49d;
  font-size: 9px;
}
.agent-script__head span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #65bd72;
  box-shadow: 0 0 0 4px rgba(101, 189, 114, 0.12);
}
.agent-script > p {
  margin: 22px 0 0;
  color: var(--text-on-dark);
  font-size: 13px;
  line-height: 1.62;
}
.agent-script__meta {
  margin-block-start: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px 13px;
  color: var(--text-on-dark-secondary);
  font-size: 9px;
}
.agent-scenes {
  grid-area: scenes;
  padding: 7px 0;
  border-inline-end: 1px solid rgba(255, 255, 255, 0.12);
  background: #0e0f13;
}
.agent-scenes article {
  position: relative;
  min-height: 64px;
  padding: 13px 48px 13px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.agent-scenes article:last-child {
  border-bottom: 0;
}
.agent-scenes article::before {
  content: "";
  position: absolute;
  inset: 15px auto 15px 0;
  width: 2px;
  background: transparent;
}
.agent-scenes article.active::before {
  background: var(--blue);
  box-shadow: 0 0 18px rgba(49, 87, 255, 0.75);
}
.agent-scenes b {
  color: var(--text-on-dark);
  font-size: 10px;
  font-weight: 620;
}
.agent-scenes small {
  margin-block-start: 5px;
  color: var(--text-on-dark-secondary);
  font-size: 8px;
}
.agent-scenes article > span {
  position: absolute;
  inset-inline-end: 18px;
  inset-block-start: 15px;
  color: var(--text-on-dark-secondary);
  font-size: 8px;
  font-variant-numeric: tabular-nums;
}
.agent-output {
  grid-area: output;
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #090a0d;
}
.agent-output::after {
  content: "";
  position: absolute;
  inset: 48% 0 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(3, 4, 7, 0.82));
}
.agent-output > img {
  width: 100%;
  height: 100%;
  min-height: 422px;
  object-fit: cover;
  object-position: 59% center;
  transform: scale(1.005);
  transition: transform 5s var(--ease);
}
.agent-workspace.is-playing .agent-output > img {
  transform: scale(1.035);
}
.agent-output__top,
.agent-output__bottom {
  position: absolute;
  z-index: 2;
  inset-inline: 20px;
  display: flex;
  align-items: center;
}
.agent-output__top {
  inset-block-start: 18px;
  justify-content: space-between;
  color: var(--text-on-dark-secondary);
  font-size: 9px;
}
.agent-output__top > span {
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 5px;
  background: rgba(6, 7, 9, 0.45);
  backdrop-filter: blur(8px);
}
.agent-output__top b {
  padding: 6px 8px;
  border-radius: 5px;
  color: var(--white);
  background: var(--blue);
  font-size: 8px;
}
.agent-output__bottom {
  inset-block-end: 18px;
  gap: 12px;
}
.agent-play {
  width: 44px;
  height: 44px;
  padding: 0;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  cursor: pointer;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(5, 6, 8, 0.56);
  backdrop-filter: blur(8px);
  transition:
    transform 0.24s var(--ease),
    background 0.24s var(--ease);
}
.agent-play:hover {
  transform: scale(1.07);
  background: var(--blue);
}
.agent-play:focus-visible {
  outline: 3px solid rgba(125, 148, 255, 0.55);
  outline-offset: 3px;
}
.agent-play .icon {
  width: 13px;
  height: 13px;
  fill: currentColor;
  stroke: none;
}
.agent-output__bottom > span {
  height: 3px;
  flex: 1;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
}
.agent-output__bottom > span i {
  width: 46%;
  height: 100%;
  display: block;
  background: var(--white);
  transform-origin: left;
}
.agent-workspace.is-playing .agent-output__bottom > span i {
  animation: agent-progress 5s linear infinite;
}
.agent-output__bottom b {
  color: var(--text-on-dark-secondary);
  font-size: 8px;
  font-weight: 550;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.agent-status {
  min-height: 54px;
  padding-inline: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-on-dark-secondary);
  background: #111217;
  font-size: 9px;
}
.agent-status span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.agent-status .icon {
  width: 14px;
  height: 14px;
  color: #75c881;
}
.agent-status b {
  color: var(--text-on-dark);
  font-weight: 620;
}

.avatar {
  background: #e5e8ee;
}
.avatar-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: clamp(46px, 6vw, 88px);
}
.avatar-copy h2 {
  font-size: clamp(44px, 4.6vw, 66px);
}
.avatar-copy .section-lede {
  max-width: 530px;
  margin: 26px 0 0;
}
.avatar-copy .button {
  margin-block-start: 28px;
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-block-start: 42px;
}
.feature-list span {
  padding-block-start: 16px;
  border-top: 1px solid rgba(16, 17, 20, 0.2);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}
.avatar-stage {
  overflow: hidden;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: #111216;
}
.avatar-stage img {
  width: 100%;
  height: clamp(430px, 38vw, 540px);
  object-fit: cover;
  object-position: 44% center;
}
.director-bar {
  min-height: 70px;
  padding: 0 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  color: var(--text-on-dark);
}
.director-bar > span:first-child {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--dark-line);
  border-radius: 50%;
}
.director-bar > span:first-child .icon {
  width: 12px;
  height: 12px;
}
.keyline {
  position: relative;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
}
.keyline i {
  width: 46%;
  height: 100%;
  display: block;
  background: var(--blue);
}
.keyline b {
  position: absolute;
  inset-block-start: -4px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--white);
  background: var(--ink);
  transform: rotate(45deg);
}
.keyline b:nth-of-type(1) {
  inset-inline-start: 28%;
}
.keyline b:nth-of-type(2) {
  inset-inline-start: 61%;
}
.keyline b:nth-of-type(3) {
  inset-inline-start: 86%;
}
.director-bar strong {
  font-size: 12px;
  font-weight: 620;
}
.director-bar em {
  color: #aebcff;
  font-style: normal;
}
.director-labels {
  padding: 0 120px 20px 70px;
  display: flex;
  justify-content: space-between;
  color: var(--text-on-dark-secondary);
  font-size: 11px;
  font-weight: 600;
}

.translation-heading {
  max-width: 820px;
}
.translation-heading .section-lede {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--muted);
}
.translate-console {
  margin-block-start: 44px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fafaf8;
}
.language-tabs {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-block-end: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}
.language-tabs span {
  padding: 8px 0;
}
.language-tabs .active {
  color: var(--blue);
  border-bottom: 2px solid var(--blue);
}
.language-tabs b {
  margin-inline-start: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #3b7f45;
  font-weight: 600;
}
.language-tabs b .icon {
  width: 15px;
  height: 15px;
}
.wave-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-block: 28px 20px;
  color: var(--muted);
  font-size: 10px;
}
.play-circle {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  border-radius: 50%;
  background: var(--blue);
  font-size: 10px;
}
.waveform,
.mini-wave {
  background: repeating-linear-gradient(90deg, var(--blue) 0 2px, transparent 2px 7px);
  mask-image: linear-gradient(180deg, transparent 10%, #000 32% 68%, transparent 90%);
}
.waveform {
  height: 46px;
  flex: 1;
}
.phonemes {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 6px;
}
.phonemes span {
  padding: 9px 6px;
  overflow: hidden;
  text-align: center;
  color: #2745b8;
  border-radius: 5px;
  background: #e2e7ff;
  font-size: 10px;
}
.translation-lines {
  margin-block-start: 24px;
  border-top: 1px solid var(--line);
}
.translation-lines > div {
  min-height: 68px;
  display: grid;
  grid-template-columns: 90px 220px 1fr;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}
.translation-lines b {
  font-size: 12px;
}
.translation-lines p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}
.mini-wave {
  height: 24px;
}
.console-action {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-block-start: 28px;
  color: var(--muted);
  font-size: 12px;
}
.console-action > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.console-action > span .icon {
  width: 15px;
  height: 15px;
  color: var(--blue);
}

.teams {
  padding-block-end: 0;
  background: #eeefec;
}
.section-heading--wide {
  max-width: 980px;
}
.usecases {
  display: grid;
  grid-template-columns: 0.86fr 1.2fr 0.94fr;
  margin-block-start: 48px;
}
.usecase {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  border-inline-end: 1px solid rgba(255, 255, 255, 0.55);
}
.usecase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.8s var(--ease),
    filter 0.8s var(--ease);
}
.usecase::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
}
.usecase span {
  position: absolute;
  z-index: 2;
  inset-inline: 28px;
  inset-block-end: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  color: var(--white);
}
.usecase b {
  font-size: 24px;
  letter-spacing: -0.03em;
}
.usecase small {
  grid-column: 1;
  margin-block-start: 6px;
  color: var(--text-on-dark);
  font-size: 12px;
}
.usecase i {
  grid-column: 2;
  grid-row: 1 / 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  align-self: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  font-style: normal;
  transition:
    transform 0.35s var(--ease),
    background 0.35s var(--ease),
    color 0.35s var(--ease);
}
.usecase i .icon {
  width: 17px;
  height: 17px;
}
.usecase:hover img {
  transform: scale(1.035);
  filter: contrast(1.04);
}
.usecase:hover i {
  transform: rotate(45deg);
  color: var(--ink);
  background: var(--white);
}

.publish {
  background: #f4f4f1;
}
.publish-grid {
  display: block;
}
.publish-copy {
  max-width: 860px;
}
.publish-copy h2 {
  font-size: clamp(44px, 4.5vw, 66px);
}
.publish-copy .section-lede {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--muted);
}
.publish-workspace {
  width: min(100%, 1000px);
  margin: 48px auto 0;
  padding: 18px;
  overflow: hidden;
  color: var(--white);
  border-radius: var(--radius);
  background: #101115;
  box-shadow: 0 28px 72px rgba(24, 28, 42, 0.15);
}
.publish-player {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: min(48vw, 530px);
  border-radius: 8px;
  background: #16171b;
}
.publish-player > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.publish-player::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.25), transparent 40%),
    linear-gradient(transparent 70%, rgba(0, 0, 0, 0.72));
}
.film-title {
  position: absolute;
  z-index: 2;
  inset-inline-start: 7%;
  inset-block-start: 18%;
  display: flex;
  flex-direction: column;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}
.film-title small {
  letter-spacing: 0.3em;
}
.film-title strong {
  margin-block: 5px;
  font-family: inherit;
  font-size: clamp(44px, 6vw, 90px);
  font-weight: 520;
  letter-spacing: 0.04em;
}
.film-title span {
  font-size: 10px;
  letter-spacing: 0.12em;
}
.player-controls {
  position: absolute;
  z-index: 3;
  inset-inline: 24px;
  inset-block-end: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
}
.player-controls .progress {
  max-width: none;
}
.publish-scenes {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  margin-block-start: 12px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}
.publish-scenes span {
  padding: 16px 14px;
  color: var(--text-on-dark-secondary);
  background: #17181d;
  font-size: 10px;
}
.publish-scenes .active {
  color: var(--white);
  box-shadow: inset 0 -2px 0 var(--blue);
}
.format-row {
  display: flex;
  align-items: stretch;
  margin-block-start: 12px;
  overflow: hidden;
  border-radius: 8px;
  background: #17181d;
}
.format-row > * {
  min-height: 70px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-inline-end: 1px solid var(--dark-line);
}
.format-row span {
  color: var(--text-on-dark-secondary);
  font-size: 11px;
}
.format-row b {
  min-width: 150px;
  font-size: 16px;
}
.format-row small {
  display: block;
  margin-block-start: 5px;
  color: var(--text-on-dark-secondary);
  font-size: 8px;
}
.format-row b.active {
  box-shadow: inset 0 -2px 0 var(--blue);
}
.format-row b.active small {
  color: var(--text-on-dark);
}
.format-row a {
  flex: 1;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--white);
  background: var(--blue);
  font-weight: 700;
  transition: background 0.3s var(--ease);
}
.format-row a:hover {
  background: var(--blue-hover);
}
.format-row a .icon {
  width: 18px;
  height: 18px;
}

.trust {
  background: #e7e9e7;
}
.trust-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(56px, 8vw, 110px);
}
.trust-head h2 {
  font-size: clamp(44px, 4.5vw, 66px);
}
.enterprise {
  margin-block: 54px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-block-start: 20px;
  border-top: 1px solid var(--line);
}
.enterprise span {
  font-size: clamp(44px, 5vw, 70px);
  font-weight: 460;
  letter-spacing: -0.04em;
  line-height: 0.9;
}
.enterprise small {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.03em;
}
.text-link {
  width: max-content;
  max-width: 100%;
  min-height: var(--control-height-small);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 9px 0 15px;
  border: 1px solid var(--blue);
  border-radius: 9px;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(35, 64, 180, 0.2);
  font-size: 12px;
  font-weight: 680;
  transition:
    transform 0.24s var(--ease),
    color 0.24s var(--ease),
    background 0.24s var(--ease),
    border-color 0.24s var(--ease),
    box-shadow 0.24s var(--ease);
}
.text-link span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 7px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  transition:
    transform 0.24s var(--ease),
    color 0.24s var(--ease),
    background 0.24s var(--ease);
}
.text-link span .icon {
  width: 14px;
  height: 14px;
}
.text-link:hover {
  transform: translateY(-2px);
  color: var(--white);
  border-color: var(--blue-hover);
  background: var(--blue-hover);
  box-shadow: 0 14px 30px rgba(35, 64, 180, 0.26);
}
.text-link:hover span {
  transform: translate(1px, -1px);
  color: var(--white);
  background: rgba(255, 255, 255, 0.2);
}
.text-link:active {
  transform: translateY(0) scale(0.985);
}
.trust-list {
  align-self: center;
}
.trust-list > div {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 18px;
  padding-block: 22px;
  border-top: 1px solid var(--line);
}
.trust-list span {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.trust-list strong {
  font-size: 15px;
}
.trust-list small {
  max-width: 440px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}
.trust-list .trust-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--blue);
}
.trust-icon .icon {
  width: 19px;
  height: 19px;
}

.testimonial {
  padding-block: clamp(64px, 6.5vw, 92px);
  background: #f4f4f1;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: clamp(34px, 5vw, 74px);
}
.quote {
  padding: 0;
}
.quote blockquote {
  max-width: 570px;
  margin-block-end: 30px;
  font-size: clamp(34px, 3.4vw, 50px);
  line-height: 1.07;
  letter-spacing: -0.03em;
}
.quote > p:not(.eyebrow) {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--muted);
  font-size: 13px;
}
.quote > p strong {
  color: var(--ink);
}
.testimonial-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1.36 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
}

.faq {
  background: #eef0ed;
}
.faq .container {
  display: grid;
  grid-template-columns: minmax(280px, 0.66fr) minmax(0, 1.34fr);
  align-items: start;
  gap: clamp(42px, 6vw, 78px);
}
.faq-head {
  position: sticky;
  inset-block-start: 108px;
}
.faq-head h2 {
  max-width: 9ch;
  font-size: clamp(40px, 4vw, 58px);
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  min-height: 70px;
  padding: 18px 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  list-style: none;
  font-size: 15px;
  font-weight: 650;
  transition:
    color 0.25s var(--ease),
    transform 0.25s var(--ease);
}
.faq-list summary span {
  min-width: 0;
  overflow-wrap: anywhere;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary:hover {
  color: var(--blue);
  transform: translateX(4px);
}
.faq-list summary:focus-visible {
  outline: 3px solid rgba(49, 87, 255, 0.4);
  outline-offset: 3px;
}
.faq-list summary i {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--blue);
  font-style: normal;
  transition: transform 0.24s var(--ease);
}
.faq-list summary i .icon {
  width: 17px;
  height: 17px;
}
.faq-list details[open] summary i {
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
}
.faq-answer > p {
  max-width: 66ch;
  margin: 0;
  padding: 0 54px 0 2px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}
.faq-list details[open] .faq-answer {
  display: block;
  animation: faq-answer-in 0.24s var(--ease) both;
}
.faq-list details[open] .faq-answer > p {
  padding-block-end: 24px;
}

.final-cta {
  padding-block-end: 78px;
  background: #f4f4f1;
}
.final-grid {
  display: grid;
  gap: 52px;
}
.final-copy {
  max-width: 920px;
}
.final-copy .section-lede {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
}
.final-studio {
  min-height: 540px;
  display: grid;
  grid-template-columns: 250px 1fr;
  overflow: hidden;
  color: var(--white);
  border-radius: var(--radius);
  background: #121317;
  box-shadow: 0 28px 72px rgba(24, 28, 42, 0.15);
}
.final-sidebar {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-inline-end: 1px solid var(--dark-line);
}
.final-sidebar b {
  margin-block-end: 12px;
}
.final-sidebar small {
  color: var(--text-on-dark-secondary);
  font-size: 9px;
}
.final-sidebar p,
.final-sidebar span {
  margin: 0;
  padding: 14px;
  color: var(--text-on-dark);
  border: 1px solid var(--dark-line);
  border-radius: 7px;
  font-size: 11px;
  line-height: 1.5;
}
.final-sidebar span {
  display: flex;
  align-items: center;
  gap: 10px;
}
.final-sidebar span .icon {
  width: 15px;
  height: 15px;
  color: #91a4ff;
}
.final-video {
  padding: 22px;
}
.render-status {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-block-end: 16px;
  font-size: 10px;
}
.render-status span {
  height: 3px;
  flex: 1;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.13);
}
.render-status i {
  width: 86%;
  height: 100%;
  display: block;
  background: var(--blue);
}
.final-video > img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 8px;
}
.final-video .video-controls {
  padding-inline: 0;
}
.final-scenes {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.final-scenes span {
  min-height: 62px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--dark-line);
  border-radius: 6px;
  color: var(--text-on-dark-secondary);
  background: #18191e;
}
.final-scenes b {
  color: var(--text-on-dark);
  font-size: 11px;
}
.final-scenes small {
  font-size: 8px;
  letter-spacing: 0.04em;
}
.final-scenes .active {
  color: var(--white);
  border-color: var(--blue);
  background: #171d39;
}

.site-footer {
  padding-block: 52px 24px;
  color: var(--white);
  background: #070709;
  border-top: 1px solid var(--dark-line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 44px;
}
.wordmark--footer {
  color: var(--white);
}
.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.footer-grid p {
  color: var(--text-on-dark-secondary);
  font-size: 13px;
  line-height: 1.5;
}
.footer-grid b {
  margin-block-end: 8px;
  color: #aebcff;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-grid a:not(.wordmark) {
  position: relative;
  color: var(--text-on-dark);
  font-size: 12px;
}
.footer-bottom {
  margin-block-start: 48px;
  padding-block-start: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--dark-line);
  color: var(--text-on-dark-secondary);
  font-size: 10px;
}
.footer-bottom a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.62s var(--ease),
    transform 0.62s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Keep the first viewport immediately paintable; motion continues below the fold. */
.hero .reveal {
  opacity: 1;
  transform: none;
}

.hero .studio--hero.reveal {
  clip-path: inset(0 0 0 0 round var(--radius));
}
.studio--hero.reveal,
.agent-workspace.reveal,
.translate-console.reveal,
.usecases.reveal,
.publish-workspace.reveal,
.final-studio.reveal {
  clip-path: inset(0 0 7% 0 round var(--radius));
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease),
    clip-path 0.9s var(--ease);
}
.studio--hero.reveal.is-visible,
.agent-workspace.reveal.is-visible,
.translate-console.reveal.is-visible,
.usecases.reveal.is-visible,
.publish-workspace.reveal.is-visible,
.final-studio.reveal.is-visible {
  clip-path: inset(0 0 0 0 round var(--radius));
}
@keyframes faq-answer-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes agent-progress {
  from {
    transform: scaleX(0.15);
  }
  to {
    transform: scaleX(1);
  }
}

@media (max-width: 1200px) {
  .main-nav {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    max-width: 780px;
  }
  .studio--hero {
    width: 100%;
  }
  .agent-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .agent-intro {
    max-width: 790px;
  }
  .agent-intro > p {
    max-width: 610px;
  }
  .avatar {
    padding-block: clamp(60px, 7vw, 78px);
  }
  .avatar-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .avatar-copy {
    max-width: 820px;
  }
  .avatar-stage {
    max-width: 1000px;
  }
  .usecases {
    grid-template-columns: repeat(3, 1fr);
  }
  .usecase {
    min-height: 460px;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
  .testimonial-grid {
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
    gap: 36px;
  }
  .quote blockquote {
    font-size: clamp(32px, 4.5vw, 42px);
  }
  .faq {
    padding-block: clamp(60px, 7vw, 78px);
  }
  .faq .container {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .faq-head {
    position: static;
  }
  .faq-head h2 {
    max-width: 15ch;
  }
}

@media (max-width: 760px) {
  :root {
    --gutter: 20px;
    --section: 64px;
    --radius: 11px;
  }
  .header-inner {
    height: 68px;
  }
  .wordmark {
    font-size: 24px;
  }
  .login-link {
    display: none;
  }
  .button--small span {
    font-size: 0;
  }
  .button--small span::after {
    content: "Начать";
    font-size: 12px;
  }
  h1 {
    font-size: clamp(47px, 13vw, 58px);
    line-height: 0.98;
  }
  .hero {
    padding-block: 44px 52px;
  }
  .hero-grid {
    gap: 40px;
  }
  .lede {
    font-size: 17px;
    margin-block-start: 22px;
  }
  .action-row {
    align-items: stretch;
    flex-direction: column;
  }
  .button {
    width: 100%;
    min-height: 52px;
  }
  .button--ghost {
    justify-content: flex-start;
  }
  .studio-main {
    grid-template-columns: 42px 1fr;
  }
  .script-panel {
    display: none;
  }
  .studio-tools span {
    min-height: 50px;
  }
  .studio-tools small {
    display: none;
  }
  .video-canvas img {
    height: 230px;
  }
  .storyboard {
    padding-inline-start: 14px;
    grid-template-columns: repeat(4, 132px);
    overflow-x: auto;
  }
  .scene {
    min-height: 96px;
  }
  .render-line {
    padding-inline: 14px;
  }
  .proof-strip {
    margin-block-start: 42px;
    padding-block-start: 22px;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .proof-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px 28px;
  }
  .proof-logos img {
    max-width: 78px;
    height: 38px;
  }
  h2,
  .avatar-copy h2 {
    font-size: clamp(39px, 10.8vw, 48px);
    line-height: 1;
  }
  .section-heading > p:last-child,
  .section-heading--wide > p:last-child {
    font-size: 16px;
    margin-block-start: 18px;
  }
  .agent-layout {
    gap: 34px;
  }
  .agent-intro {
    padding-block-start: 0;
  }
  .agent-intro h2 {
    font-size: clamp(41px, 11.5vw, 50px);
  }
  .agent-intro > p {
    margin-block-start: 20px;
    font-size: 16px;
  }
  .button--inline {
    width: 100%;
    margin-block-start: 28px;
  }
  .agent-workspace {
    border-radius: 11px;
  }
  .agent-prompt {
    min-height: 0;
    padding: 22px 20px;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .agent-prompt__label {
    grid-row: auto;
  }
  .agent-prompt p {
    font-size: 16px;
  }
  .agent-prompt > div {
    margin-block-start: 2px;
  }
  .agent-route {
    height: 44px;
    padding-inline: 16px;
    gap: 9px;
  }
  .agent-route > span {
    font-size: 8px;
  }
  .agent-production {
    grid-template-columns: 1fr;
    grid-template-areas: "output" "script" "scenes";
    grid-template-rows: 292px auto auto;
  }
  .agent-output > img {
    min-height: 292px;
    object-position: 58% center;
  }
  .agent-script,
  .agent-scenes {
    border-inline-end: 0;
  }
  .agent-script {
    padding: 24px 20px;
  }
  .agent-scenes article {
    padding-inline-start: 20px;
  }
  .agent-status {
    min-height: 58px;
    padding: 12px 20px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }
  .avatar-grid {
    gap: 38px;
  }
  .avatar-copy .section-lede {
    margin-block-start: 20px;
  }
  .feature-list {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-block-start: 34px;
  }
  .avatar-stage img {
    aspect-ratio: 4 / 3;
  }
  .director-bar {
    grid-template-columns: auto 1fr;
    min-height: 60px;
  }
  .director-bar strong {
    grid-column: 1 / -1;
  }
  .director-labels {
    padding-inline: 54px 28px;
  }
  .translate-console {
    padding: 18px;
  }
  .language-tabs {
    gap: 20px;
    overflow-x: auto;
  }
  .language-tabs b {
    display: none;
  }
  .phonemes {
    grid-template-columns: repeat(5, 1fr);
  }
  .translation-lines > div {
    grid-template-columns: 70px 1fr;
  }
  .translation-lines p {
    grid-column: 1 / -1;
    padding-block-end: 16px;
  }
  .console-action {
    align-items: stretch;
    flex-direction: column;
  }
  .translate-console {
    margin-block-start: 34px;
  }
  .usecases {
    grid-template-columns: 1fr;
    gap: 1px;
    margin-block-start: 34px;
  }
  .usecase {
    min-height: 360px;
  }
  .teams {
    padding-block-end: 0;
  }
  .publish-workspace {
    margin-block-start: 34px;
    padding: 12px;
  }
  .publish-player {
    height: 390px;
  }
  .publish-player > img {
    object-position: center;
  }
  .film-title {
    inset-inline: 20px;
  }
  .publish-scenes {
    grid-template-columns: repeat(3, 1fr);
  }
  .format-row {
    flex-wrap: wrap;
  }
  .format-row > * {
    flex: 1 1 33%;
    padding: 0 12px;
  }
  .format-row a {
    flex-basis: 100%;
    min-height: 58px;
  }
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .enterprise {
    margin-block: 36px 26px;
  }
  .enterprise span {
    font-size: 46px;
  }
  .trust-list {
    margin-block-start: 0;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .quote {
    padding: 0;
  }
  .quote blockquote {
    font-size: 38px;
  }
  .testimonial-image {
    aspect-ratio: 4 / 3;
  }
  .faq .container {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .faq-list summary {
    min-height: 64px;
    padding-block: 16px;
    gap: 16px;
  }
  .faq-answer > p {
    padding-inline-end: 38px;
    font-size: 15px;
  }
  .final-grid {
    gap: 38px;
  }
  .final-studio {
    min-height: 0;
    grid-template-columns: 1fr;
  }
  .final-sidebar {
    display: none;
  }
  .final-video {
    padding: 14px;
  }
  .final-video > img {
    height: 260px;
  }
  .final-scenes {
    overflow-x: auto;
    grid-template-columns: repeat(5, 92px);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: 1 / -1;
    margin-block-end: 20px;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    clip-path: none;
    transition: none;
  }
  .button,
  .agent-play,
  .usecase-card,
  .faq-item,
  .text-link {
    transition-duration: 120ms;
    transition-property: color, background-color, border-color, box-shadow, opacity;
  }
  .agent-production.is-playing .agent-screen img {
    transform: none;
  }
  .agent-production.is-playing .agent-progress span,
  .translation-audio .waveform {
    animation: none;
  }
}

/* Final responsive and contrast pass */
.wordmark {
  width: 118px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  font-size: 0;
}
.wordmark img {
  width: 100%;
  height: auto;
  display: block;
}
.wordmark--footer {
  width: 126px;
}
.counter,
.scene em {
  color: var(--text-on-dark-secondary);
}
.agent-prompt > div span,
.agent-script__meta {
  color: var(--text-on-dark-secondary);
  border-color: rgba(255, 255, 255, 0.18);
}
.agent-scenes b {
  color: var(--text-on-dark);
  font-size: 11px;
  font-weight: 650;
}
.agent-scenes small {
  color: var(--text-on-dark-secondary);
  font-size: 9px;
}
.agent-scenes article > span {
  color: var(--text-on-dark-secondary);
  font-size: 9px;
}
.agent-status {
  color: var(--text-on-dark-secondary);
  font-size: 10px;
}
.agent-status b {
  color: var(--text-on-dark);
  font-weight: 650;
}
.publish-scenes span,
.final-scenes span {
  color: var(--text-on-dark-secondary);
}
.final-scenes b {
  color: var(--text-on-dark);
}
.director-bar > span:first-child {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 900px) {
  .format-row {
    flex-wrap: wrap;
  }
  .format-row > * {
    min-width: 0;
    flex: 1 1 25%;
    padding-inline: 16px;
  }
  .format-row a {
    flex-basis: 100%;
    min-height: 54px;
  }
  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
  .footer-grid > div:not(:first-child) {
    gap: 0;
  }
  .footer-grid > div:not(:first-child) a {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}

@media (max-width: 760px) {
  :root {
    --gutter: 18px;
    --section: 58px;
  }
  .header-inner {
    height: 64px;
    gap: 14px;
  }
  .wordmark {
    width: 108px;
    min-height: 44px;
  }
  .wordmark--footer {
    width: 118px;
  }
  .button--small {
    min-height: 44px;
    padding-inline: 14px;
    gap: 10px;
  }
  h1 {
    font-size: clamp(37px, 10.2vw, 43px);
    line-height: 1.01;
  }
  h2,
  .avatar-copy h2,
  .agent-intro h2,
  .publish-copy h2,
  .trust-head h2,
  .faq-head h2 {
    font-size: clamp(31px, 8.7vw, 37px);
    line-height: 1.04;
  }
  .hero {
    padding-block: 36px 48px;
  }
  .hero-grid {
    gap: 34px;
  }
  .lede {
    margin-block-start: 20px;
    font-size: 16px;
  }
  .action-row {
    align-items: flex-start;
  }
  .button {
    width: auto;
    max-width: 100%;
    min-height: 48px;
    padding-inline: 18px;
    gap: 20px;
  }
  .button--inline {
    width: auto;
    margin-block-start: 26px;
  }
  .studio-main {
    min-height: 0;
  }
  .video-canvas img {
    height: auto;
    aspect-ratio: 4 / 3;
  }
  .storyboard {
    padding: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow-x: visible;
  }
  .scene {
    min-height: 90px;
  }
  .agent-layout {
    gap: 32px;
  }
  .agent-intro > p {
    font-size: 16px;
  }
  .agent-prompt {
    padding: 20px 18px;
  }
  .agent-prompt p {
    font-size: 15px;
  }
  .agent-route {
    padding-inline: 12px;
    gap: 7px;
  }
  .agent-production {
    grid-template-rows: 280px auto auto;
  }
  .agent-output > img {
    min-height: 280px;
  }
  .agent-script {
    padding: 22px 18px;
  }
  .agent-scenes article {
    padding-inline-start: 18px;
  }
  .agent-status {
    min-height: 62px;
    padding: 12px 18px;
  }
  .avatar-grid {
    gap: 34px;
  }
  .feature-list {
    margin-block-start: 30px;
  }
  .avatar-stage img {
    height: auto;
    aspect-ratio: 16 / 10;
    object-position: center;
  }
  .director-bar {
    grid-template-columns: auto 1fr;
    min-height: 58px;
    padding: 0 16px;
    gap: 16px;
  }
  .director-labels {
    padding-inline: 52px 20px;
  }
  .phonemes {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .phonemes span {
    padding-inline: 4px;
    font-size: 9px;
  }
  .publish-workspace {
    margin-block-start: 32px;
    padding: 10px;
  }
  .publish-player {
    height: clamp(300px, 92vw, 390px);
  }
  .publish-scenes {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow-x: visible;
  }
  .publish-scenes span {
    min-width: 0;
    padding: 12px 9px;
  }
  .format-row a {
    min-height: 52px;
  }
  .quote {
    padding: 0;
    margin: 0;
  }
  .quote blockquote {
    max-width: none;
    margin-inline: 0;
    font-size: clamp(29px, 8vw, 34px);
  }
  .quote > p {
    margin-inline: 0;
  }
  .final-studio,
  .final-video {
    min-width: 0;
  }
  .final-video {
    padding: 12px;
  }
  .final-video > img {
    height: auto;
    aspect-ratio: 16 / 10;
  }
  .final-scenes {
    width: 100%;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    overflow-x: visible;
    gap: 5px;
  }
  .final-scenes span {
    min-width: 0;
    min-height: 58px;
    padding: 8px 6px;
  }
  .final-scenes small {
    overflow: hidden;
    font-size: 7px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 24px;
  }
}

@media (max-width: 370px) {
  :root {
    --gutter: 16px;
  }
  .wordmark {
    width: 98px;
  }
  .header-actions {
    gap: 10px;
  }
  .button--small {
    padding-inline: 12px;
  }
  h1 {
    font-size: clamp(34px, 10.1vw, 38px);
  }
  h2,
  .avatar-copy h2,
  .agent-intro h2,
  .publish-copy h2,
  .trust-head h2,
  .faq-head h2 {
    font-size: clamp(29px, 8.7vw, 33px);
  }
  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

/* Approved varied composition pass */

@media (min-width: 1201px) {
  .agent-layout {
    grid-template-columns: minmax(330px, 0.68fr) minmax(0, 1.32fr);
    gap: 0;
    overflow: hidden;
    border-radius: var(--radius);
    background: #111217;
    box-shadow: 0 30px 82px rgba(24, 29, 43, 0.17);
  }
  .agent-intro {
    min-height: 100%;
    padding: clamp(38px, 4vw, 58px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: var(--text-on-dark);
    border-inline-end: 1px solid var(--dark-line);
    background: var(--panel-dark);
  }
  .agent-intro h2 {
    color: var(--white);
    font-size: clamp(42px, 3.5vw, 54px);
  }
  .agent-intro > p {
    color: var(--text-on-dark-secondary);
  }
  .agent-workspace {
    border-radius: 0;
    box-shadow: none;
  }

  .avatar-grid {
    position: relative;
    min-height: 660px;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: end;
    gap: 0;
  }
  .avatar-stage {
    grid-column: 4 / -1;
    grid-row: 1;
  }
  .avatar-stage img {
    height: 590px;
  }
  .avatar-copy {
    z-index: 2;
    grid-column: 1 / 6;
    grid-row: 1;
    margin-block-end: 54px;
    padding: clamp(34px, 3.5vw, 50px);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: 0 26px 70px rgba(31, 38, 54, 0.15);
  }
  .avatar-copy h2 {
    font-size: clamp(42px, 4vw, 59px);
  }
  .avatar-copy .section-lede {
    max-width: 460px;
  }
  .avatar-copy .feature-list {
    margin-block-start: 32px;
  }
}

@media (min-width: 901px) {
  .publish-copy {
    margin-inline-start: clamp(46px, 9vw, 124px);
  }
  .publish-copy h2 {
    max-width: 12ch;
  }
  .publish-workspace {
    width: min(92%, 1120px);
    margin-inline: auto 0;
  }

  .trust-grid {
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
    align-items: start;
  }
  .trust-head {
    position: sticky;
    inset-block-start: 106px;
  }
  .trust-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 34px;
    border-top: 1px solid var(--line);
  }
  .trust-list > div {
    min-height: 164px;
    padding-block: 28px;
    border-top: 0;
    border-bottom: 1px solid var(--line);
  }

  .faq .container {
    width: min(calc(100% - var(--gutter) * 2), 1040px);
    display: block;
  }
  .faq-head {
    position: static;
    margin-block-end: 44px;
  }
  .faq-head h2 {
    max-width: 17ch;
  }

  .final-grid {
    grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.32fr);
    gap: 0;
    overflow: hidden;
    border-radius: var(--radius);
    background: #111217;
    box-shadow: 0 30px 82px rgba(24, 29, 43, 0.17);
  }
  .final-copy {
    max-width: none;
    padding: clamp(40px, 4.5vw, 66px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: var(--white);
    background: var(--blue);
  }
  .final-copy h2,
  .final-copy .section-lede {
    color: var(--white);
  }
  .final-copy .button {
    color: var(--ink);
    border-color: var(--white);
    background: var(--white);
    box-shadow: 0 12px 28px rgba(15, 25, 72, 0.22);
  }
  .final-studio {
    min-height: 500px;
    border-radius: 0;
    box-shadow: none;
  }
}

@media (min-width: 761px) {
  .translation {
    background: var(--paper-bright);
  }
  .translation-heading {
    max-width: 780px;
  }
  .translate-console {
    margin-block-start: 52px;
    padding: 0;
    border: 0;
    background: transparent;
  }
  .language-tabs {
    padding-inline: 4px;
  }
  .wave-row {
    margin-block: 24px 18px;
    padding: 24px;
    border-radius: var(--radius);
    background: var(--blue-wash);
  }
  .phonemes {
    padding-inline: 4px;
  }
  .translation-lines {
    margin-block-start: 34px;
  }

  .usecases {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    grid-template-rows: repeat(2, minmax(250px, 1fr));
    gap: 12px;
  }
  .usecase {
    min-height: 0;
    border: 0;
    border-radius: var(--radius);
  }
  .usecase:first-child {
    grid-row: 1 / 3;
    min-height: 620px;
  }
  .usecase:nth-child(2),
  .usecase:nth-child(3) {
    min-height: 304px;
  }
  .usecase:first-child b {
    font-size: clamp(30px, 3vw, 42px);
  }

  .testimonial-grid {
    position: relative;
    min-height: 620px;
    display: block;
  }
  .testimonial-image {
    width: 100%;
    height: 620px;
    aspect-ratio: auto;
  }
  .quote {
    position: absolute;
    z-index: 2;
    inset: auto auto 42px 42px;
    width: min(520px, calc(100% - 84px));
    padding: clamp(28px, 3vw, 42px);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: 0 24px 62px rgba(31, 38, 54, 0.18);
  }
  .quote blockquote {
    margin: 0 0 24px;
    font-size: clamp(32px, 3.2vw, 46px);
  }
}

@media (max-width: 900px) {
  .final-copy {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .translation {
    background: var(--paper-bright);
  }
  .wave-row {
    margin-inline: -4px;
    padding-inline: 12px;
    border-radius: 9px;
    background: var(--blue-wash);
  }
  .usecases {
    gap: 12px;
  }
  .usecase {
    border-radius: var(--radius);
  }
  .testimonial-grid {
    gap: 22px;
  }
  .quote {
    order: 2;
    padding: 24px;
    border-radius: var(--radius);
    background: var(--white);
  }
  .quote blockquote {
    margin-block-start: 0;
    font-size: clamp(30px, 8.5vw, 36px);
  }
  .faq-head {
    margin-block-end: 4px;
  }
  .final-copy {
    padding: 28px;
    color: var(--white);
    border-radius: var(--radius) var(--radius) 0 0;
    background: var(--blue);
  }
  .final-copy h2,
  .final-copy .section-lede {
    color: var(--white);
  }
  .final-copy .button {
    color: var(--ink);
    border-color: var(--white);
    background: var(--white);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .translate-console.is-visible .waveform {
    animation: waveform-breathe 2.8s ease-in-out 1;
  }
  .usecases.is-visible .usecase:nth-child(2) {
    transition-delay: 80ms;
  }
  .usecases.is-visible .usecase:nth-child(3) {
    transition-delay: 150ms;
  }
}

@keyframes waveform-breathe {
  0% {
    opacity: 0.4;
    transform: scaleY(0.55);
  }
  100% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* Unified control scale and compact editorial rhythm */
:root {
  --control-height: 48px;
  --control-height-small: 44px;
  --control-pad: 18px;
  --control-pad-small: 14px;
  --control-gap: 16px;
  --control-gap-small: 10px;
}

.button {
  width: max-content;
  max-width: 100%;
  min-height: var(--control-height);
  padding-inline: var(--control-pad);
  gap: var(--control-gap);
  font-size: 13px;
}

.button i:not(.play),
.button i:not(.play) .icon {
  width: 15px;
  height: 15px;
}

.button--small {
  min-height: var(--control-height-small);
  padding-inline: var(--control-pad-small);
  gap: var(--control-gap-small);
  font-size: 12px;
}

.proof-strip {
  margin-block-start: 40px;
  padding: 18px 22px;
  grid-template-columns: minmax(170px, 0.75fr) minmax(0, 3.25fr);
  gap: 24px;
  border: 1px solid rgba(49, 87, 242, 0.16);
  border-radius: 10px;
  background: #eef0f8;
}

.proof-strip > p {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 650;
}

.proof-strip > p::before {
  content: "";
  width: 22px;
  height: 3px;
  flex: 0 0 auto;
  background: var(--blue);
}

.proof-logos {
  gap: 0;
}

.proof-logos > span {
  min-height: 46px;
  border-inline-start: 1px solid rgba(16, 17, 20, 0.1);
}

.proof-logos > span:first-child {
  border-inline-start: 0;
}

.proof-logos img {
  height: 34px;
  max-width: min(74%, 86px);
}

.director-bar {
  min-height: 52px;
  padding-inline: 16px;
  gap: 16px;
}

.director-bar > span:first-child {
  width: 30px;
  height: 30px;
}

.director-bar strong {
  font-size: 11px;
  white-space: nowrap;
}

.director-labels {
  padding: 0 112px 10px 54px;
  font-size: 9px;
  line-height: 1;
}

.translation-heading {
  max-width: 740px;
}

.translation-heading .section-lede {
  max-width: 610px;
  margin-block-start: 16px;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.45;
}

.translate-console {
  margin-block-start: 36px;
}

.final-cta {
  padding-block-start: clamp(58px, 6vw, 78px);
}

.final-grid {
  gap: 36px;
}

.final-copy h2 {
  max-width: 15ch;
  font-size: clamp(36px, 3.8vw, 52px);
  line-height: 1.03;
}

@media (max-width: 760px) {
  .button,
  .button--small {
    width: max-content;
    min-height: var(--control-height-small);
    padding-inline: var(--control-pad-small);
    gap: var(--control-gap-small);
    font-size: 12px;
  }

  .proof-strip {
    margin-block-start: 34px;
    padding: 16px;
    gap: 12px;
  }

  .proof-strip > p {
    min-height: 0;
    margin-block-end: 2px;
    font-size: 11px;
  }

  .proof-logos > span {
    min-height: 48px;
  }

  .proof-logos > span:nth-child(4) {
    border-inline-start: 0;
  }

  .proof-logos img {
    height: 30px;
    max-width: min(72%, 76px);
  }

  .director-bar {
    min-height: 48px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    padding-inline: 12px;
    gap: 12px;
  }

  .director-bar strong {
    grid-column: auto;
    font-size: 0;
  }

  .director-bar strong em {
    font-size: 10px;
  }

  .director-labels {
    padding: 0 72px 8px 50px;
    font-size: 8px;
  }

  .translation-heading .section-lede {
    max-width: 34ch;
    margin-block-start: 14px;
    font-size: 15px;
  }

  .translate-console {
    margin-block-start: 28px;
  }

  .final-grid {
    gap: 0;
  }

  .final-copy h2 {
    max-width: 14ch;
    font-size: clamp(31px, 8.4vw, 36px);
  }
}
