@font-face {
  font-family: Manrope;
  src: url("/assets/manrope-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Manrope;
  src: url("/assets/manrope-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Manrope;
  src: url("/assets/manrope-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Manrope;
  src: url("/assets/manrope-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  font-family: Manrope, Onest, Arial, sans-serif;
  color: #071b36;
  background: #ffffff;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --ink: #071b36;
  --ink-soft: #183552;
  --copy: #324e69;
  --muted: #53657a;
  --white: #ffffff;
  --ice: #e6f2ff;
  --ice-soft: #f4f8fd;
  --cobalt: #1268ff;
  --cobalt-dark: #0754dd;
  --line: #c9d8ea;
  --line-strong: #8fa7c0;
  --shell: 1440px;
  --gutter: clamp(20px, 4.5vw, 72px);
  --section-space: clamp(88px, 8.3vw, 120px);
  --radius-media: 12px;
  --radius-control: 8px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 5px;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

::selection {
  color: var(--white);
  background: var(--cobalt);
}

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

* {
  scrollbar-color: var(--line-strong) var(--ice-soft);
  scrollbar-width: thin;
}

.page {
  width: 100%;
  overflow: clip;
  background: var(--white);
}

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

.section {
  padding-block: var(--section-space);
  border-top: 1px solid var(--line);
}

h1,
h2,
h3 {
  color: var(--ink);
  text-wrap: balance;
}

h1 {
  max-width: 760px;
  font-size: clamp(52px, 5.8vw, 88px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

h2 {
  max-width: 920px;
  font-size: clamp(40px, 4.3vw, 66px);
  font-weight: 650;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

h3 {
  font-size: clamp(21px, 1.7vw, 28px);
  font-weight: 650;
  line-height: 1.16;
  letter-spacing: -0.025em;
}

p {
  max-width: 65ch;
  color: var(--copy);
  font-size: 17px;
  font-weight: 450;
  line-height: 1.62;
}

.lead {
  font-size: clamp(19px, 1.55vw, 23px);
  line-height: 1.5;
}

/* Header and actions */

.site-header {
  width: min(var(--shell), calc(100% - (var(--gutter) * 2)));
  height: 72px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.035em;
}

.brand__mark {
  width: 27px;
  display: grid;
  grid-template-columns: repeat(2, 10px);
  grid-template-rows: repeat(2, 10px);
  gap: 3px;
  transform: rotate(-8deg);
}

.brand__mark i {
  border-radius: 50%;
  background: #1aaec5;
}

.brand__mark i:nth-child(2) {
  background: var(--cobalt);
}

.brand__mark i:nth-child(3) {
  grid-column: 1 / 3;
  border-radius: 7px;
  background: #b8e866;
}

.header__action--mobile {
  display: none;
}

.cta,
.text-link {
  min-height: 52px;
  padding-inline: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  white-space: nowrap;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms var(--ease-out);
}

.cta:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.cta:active,
.text-link:active {
  transform: translateY(0);
}

.cta svg,
.text-link svg {
  flex: 0 0 auto;
  transition: transform 180ms var(--ease-out);
}

.cta:hover svg,
.text-link:hover svg {
  transform: translate(2px, -2px);
}

.cta--primary {
  color: var(--white);
  background: var(--cobalt);
}

.cta--primary:hover {
  background: var(--cobalt-dark);
}

.cta--dark {
  color: var(--white);
  background: var(--ink);
}

.cta--dark:hover {
  background: var(--ink-soft);
}

.cta--light {
  color: var(--cobalt-dark);
  background: var(--white);
}

.cta--ghost,
.text-link {
  color: var(--cobalt-dark);
  border-color: var(--cobalt);
  background: transparent;
}

.cta--ghost:hover,
.text-link:hover {
  color: var(--white);
  background: var(--cobalt);
}

.cta--small {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 14px;
}

.cta--large {
  min-height: 60px;
  padding-inline: 28px;
  font-size: 17px;
}

.cta-row {
  margin-top: 32px;
}

/* Shared editorial objects */

.section-statement,
.seo-section-statement {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-statement > p,
.seo-section-statement > p {
  max-width: 720px;
  margin-top: 24px;
  font-size: 19px;
}

.section-statement .text-link,
.seo-section-statement .text-link {
  margin-top: 28px;
}

.section-statement--wide h2 {
  max-width: 1080px;
}

.media-figure {
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border-radius: var(--radius-media);
  background: var(--ice-soft);
}

.media-figure > img {
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.media-figure > figcaption {
  min-width: 0;
  min-height: 72px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink);
  background: var(--ice);
}

.media-figure > figcaption strong {
  font-size: 16px;
  font-weight: 700;
}

.media-figure > figcaption span {
  color: var(--copy);
  font-size: 13px;
  line-height: 1.4;
  text-align: right;
}

/* First viewport */

.hero {
  padding-block: clamp(40px, 5vw, 72px) clamp(88px, 7vw, 110px);
}

.hero__grid {
  min-height: calc(100dvh - 184px);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(30px, 4vw, 64px);
  align-items: center;
}

.hero__copy {
  grid-column: 1 / 6;
}

.hero__copy h1 span {
  display: block;
  color: var(--cobalt);
}

.hero__copy .lead {
  max-width: 560px;
  margin-top: 28px;
}

.hero__visual {
  grid-column: 6 / 13;
  min-width: 0;
}

.director-monitor {
  overflow: hidden;
  border-radius: var(--radius-media);
  background: var(--ink);
  box-shadow: 0 28px 80px rgba(7, 27, 54, 0.13);
}

.director-monitor__bar {
  min-height: 58px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.director-monitor__bar strong {
  font-size: 15px;
}

.director-monitor__bar span {
  color: #d7e7f8;
  font-size: 12px;
}

.director-monitor__frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #dbe6f1;
}

.director-monitor__frame img {
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
}

.director-monitor__dock {
  padding: 20px;
  display: grid;
  grid-template-columns: minmax(180px, 1.2fr) minmax(120px, 1fr) auto;
  gap: 22px;
  align-items: center;
  color: var(--white);
}

.director-monitor__dock > div:first-child {
  display: grid;
  gap: 5px;
}

.director-monitor__dock strong {
  font-size: 17px;
}

.director-monitor__dock span {
  color: #d7e7f8;
  font-size: 12px;
  line-height: 1.35;
}

.director-monitor__timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

.director-monitor__timeline i {
  height: 3px;
  background: #58718b;
}

.director-monitor__timeline i.is-active {
  background: var(--cobalt);
}

.director-monitor__formats {
  display: flex;
  gap: 9px;
}

.director-monitor__formats span {
  color: var(--white);
  font-variant-numeric: tabular-nums;
}

/* Script editor */

.editor {
  background: var(--ice);
}

.editor__layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(32px, 4vw, 64px);
  align-items: end;
}

.editor__intro {
  grid-column: 1 / 5;
  padding-bottom: 16px;
}

.editor__intro h2 {
  font-size: clamp(40px, 4vw, 60px);
}

.editor__intro p {
  margin-top: 24px;
  font-size: 18px;
}

.editor__intro .text-link {
  margin-top: 28px;
}

.editor__window {
  grid-column: 5 / 13;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  overflow: hidden;
  border-radius: var(--radius-media);
  background: var(--white);
}

.editor__media {
  min-height: 0;
  overflow: hidden;
}

.editor__media img {
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
}

.editor__dock {
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  color: var(--white);
  background: var(--ink);
}

.editor__dock svg {
  margin-bottom: auto;
  color: #87b8ff;
}

.editor__dock strong {
  font-size: 22px;
  line-height: 1.2;
}

.editor__dock p {
  margin-top: 14px;
  color: #d7e7f8;
  font-size: 14px;
  line-height: 1.55;
}

/* Production rail */

.production {
  background: var(--white);
}

.production-rail {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 2px solid var(--ink);
}

.production-step {
  min-height: 310px;
  padding: 26px 26px 30px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

.production-step:last-child {
  border-right: 0;
}

.production-step:nth-child(even) {
  padding-top: 66px;
}

.production-step__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--cobalt);
}

.production-step__meta span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.production-step h3 {
  margin-top: auto;
}

.production-step p {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.55;
}

/* Avatars */

.avatars {
  background: var(--ice-soft);
}

.avatar-stage {
  min-height: 840px;
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.avatar-main {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
  min-height: 0;
}

.avatar-main img {
  object-position: center 30%;
}

.avatar-panel {
  grid-column: 8 / 13;
  grid-row: 1;
  min-height: 0;
}

.avatar-workspace {
  height: 100%;
  padding: clamp(28px, 3.2vw, 50px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--white);
  border-radius: var(--radius-media);
  background: var(--cobalt);
}

.avatar-workspace > svg {
  color: #cfe2ff;
}

.avatar-workspace h3 {
  margin-top: 26px;
  color: var(--white);
  font-size: clamp(26px, 2.4vw, 38px);
}

.avatar-workspace > p {
  margin-top: 15px;
  color: #eaf3ff;
}

.avatar-workspace dl {
  width: 100%;
  margin: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.avatar-workspace dl > div {
  padding-block: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.avatar-workspace dt,
.avatar-workspace dd {
  font-size: 14px;
}

.avatar-workspace dd {
  font-weight: 700;
}

.avatar-workspace .cta {
  margin-top: auto;
  color: var(--cobalt-dark);
  background: var(--white);
}

.avatar-support {
  grid-column: 8 / 13;
  grid-row: 2;
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.avatar-support img {
  object-position: center 24%;
}

.avatar-support .media-figure > figcaption {
  display: grid;
  gap: 3px;
}

.avatar-support .media-figure > figcaption span {
  text-align: left;
}

/* Channel formats */

.channels {
  background: var(--white);
}

.format-spread {
  min-height: 720px;
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.format-frame {
  min-width: 0;
  min-height: 0;
}

.format-frame--wide {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
}

.format-frame--vertical {
  grid-column: 8 / 10;
  grid-row: 1 / 3;
}

.format-frame--square {
  grid-column: 10 / 13;
  grid-row: 1;
}

.format-frame--wide img {
  object-position: center 38%;
}

.format-frame--vertical img {
  object-position: center 26%;
}

.format-frame--vertical .media-figure > figcaption {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
}

.format-frame--vertical .media-figure > figcaption span {
  text-align: left;
}

.format-note {
  grid-column: 10 / 13;
  grid-row: 2;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  border-radius: var(--radius-media);
  background: var(--ink);
}

.format-note p {
  color: var(--white);
  font-size: clamp(21px, 2vw, 30px);
  line-height: 1.25;
}

.format-note a {
  color: #a9cbff;
  font-weight: 700;
  text-decoration: underline;
}

/* Translation */

.translation {
  padding-bottom: 0;
  background: var(--ice);
}

.translation__layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}

.translation__copy {
  grid-column: 1 / 6;
}

.translation__copy p {
  margin-top: 24px;
  font-size: 18px;
}

.translation__copy .cta {
  margin-top: 30px;
}

.translation-monitor {
  grid-column: 6 / 13;
  overflow: hidden;
  border-radius: var(--radius-media);
  background: var(--ink);
}

.translation-monitor__media {
  aspect-ratio: 16 / 9;
}

.translation-monitor__media img {
  height: 100%;
  object-fit: cover;
  object-position: center 26%;
}

.translation-monitor__dock {
  min-height: 84px;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 1fr 64px 1.5fr;
  align-items: center;
  gap: 18px;
  color: var(--white);
}

.translation-monitor__dock span {
  color: #d7e7f8;
  font-size: 13px;
}

.translation-monitor__dock b {
  margin-right: 8px;
  color: var(--white);
  font-size: 17px;
}

.translation-monitor__dock i {
  height: 1px;
  background: var(--cobalt);
}

.language-rail {
  margin-top: 72px;
  border-top: 1px solid var(--line-strong);
  background: var(--white);
}

.language-rail__inner {
  min-height: 104px;
  display: grid;
  grid-template-columns: 3fr 9fr;
  align-items: center;
  gap: 32px;
}

.language-rail__inner > strong {
  font-size: 16px;
}

.language-rail__inner > div {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.language-rail__inner span {
  color: var(--ink-soft);
  font-size: 14px;
  text-align: center;
}

/* Templates */

.templates {
  background: var(--white);
}

.template-spread {
  min-height: 760px;
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.template-frame {
  min-width: 0;
  min-height: 0;
}

.template-frame--1 {
  grid-column: 1 / 5;
  grid-row: 1 / 3;
}

.template-frame--2 {
  grid-column: 5 / 9;
  grid-row: 1;
}

.template-frame--3 {
  grid-column: 5 / 9;
  grid-row: 2;
}

.template-frame--4 {
  grid-column: 9 / 13;
  grid-row: 1 / 3;
}

.template-frame--1 img,
.template-frame--4 img {
  object-position: center 24%;
}

.template-frame--2 img,
.template-frame--3 img {
  object-position: center 34%;
}

/* Photo animation */

.photo {
  background: var(--ice-soft);
}

.photo__layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}

.photo__copy {
  grid-column: 1 / 5;
}

.photo__copy p {
  margin-top: 24px;
  font-size: 18px;
}

.feature-list {
  margin: 30px 0;
  border-top: 1px solid var(--line-strong);
}

.feature-list li {
  padding-block: 13px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  font-weight: 650;
}

.photo-comparison {
  grid-column: 5 / 13;
  min-height: 640px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.photo-comparison img {
  object-position: center 24%;
}

/* Use cases and benefits */

.use-cases {
  background: var(--white);
}

.use-index {
  margin-top: 50px;
  border-top: 2px solid var(--ink);
}

.use-index article {
  min-height: 142px;
  padding-block: 24px;
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 30px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.use-index h3 {
  font-size: clamp(30px, 3.2vw, 48px);
}

.use-index p {
  max-width: 640px;
  font-size: 17px;
}

.benefits {
  background: var(--ice);
}

.benefit-band {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 2px solid var(--ink);
}

.benefit-band article {
  min-height: 300px;
  padding: 30px 30px 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-right: 1px solid var(--line-strong);
}

.benefit-band article:last-child {
  border-right: 0;
}

.benefit-band svg {
  color: var(--cobalt);
}

.benefit-band h3 {
  margin-top: auto;
}

.benefit-band p {
  margin-top: 13px;
  font-size: 15px;
}

/* FAQ and close */

.faq {
  background: var(--white);
}

.faq__layout,
.faq__grid {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: clamp(34px, 5vw, 78px);
  align-items: start;
}

.faq__layout > div:first-child > p,
.faq__grid > div:first-child > p {
  margin-top: 20px;
}

.faq-list {
  border-top: 2px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 82px;
  padding: 20px 4px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  gap: 22px;
  align-items: center;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  font-size: 17px;
  font-weight: 700;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary i {
  width: 18px;
  height: 18px;
  position: relative;
  justify-self: center;
}

.faq-list summary i::before,
.faq-list summary i::after {
  content: "";
  position: absolute;
  background: var(--cobalt);
}

.faq-list summary i::before {
  width: 18px;
  height: 2px;
  top: 8px;
  left: 0;
}

.faq-list summary i::after {
  width: 2px;
  height: 18px;
  top: 0;
  left: 8px;
  transition: transform 180ms ease;
}

.faq-list details[open] summary i::after {
  transform: rotate(90deg);
}

.faq-list details > div {
  padding: 0 52px 24px 4px;
}

.faq-list details > div p {
  color: var(--copy);
  font-size: 16px;
}

.closing {
  padding-bottom: 40px;
  background: var(--white);
}

.closing-panel,
.seo-closing__panel {
  min-height: 360px;
  padding: clamp(34px, 5vw, 72px);
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 44px;
  align-items: end;
  border-radius: var(--radius-media);
  background: var(--cobalt);
}

.closing-panel h2,
.seo-closing__panel h2 {
  color: var(--white);
}

.closing-panel > div,
.seo-closing__panel > div {
  justify-self: end;
}

.closing-panel p,
.seo-closing__panel p {
  max-width: 480px;
  color: #edf5ff;
  font-size: 18px;
}

.closing-panel .cta,
.seo-closing__panel .cta {
  margin-top: 28px;
}

.footer {
  padding-block: 64px 18px;
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 46px;
  color: var(--ink);
}

.footer__brand p {
  max-width: 330px;
  margin-top: 20px;
  font-size: 14px;
}

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

.footer nav > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer nav strong {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer nav a {
  color: var(--ink-soft);
  font-size: 14px;
}

.footer nav a:hover {
  color: var(--cobalt);
  text-decoration: underline;
}

.footer__legal {
  grid-column: 1 / 3;
  padding-top: 18px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 12px;
  line-height: 1.5;
}

/* SEO landings */

.seo-hero {
  padding-block: clamp(44px, 5.5vw, 76px) clamp(84px, 7vw, 110px);
}

.seo-hero__grid {
  min-height: calc(100dvh - 190px);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}

.seo-hero__copy {
  grid-column: 1 / 6;
}

.seo-hero__copy h1 {
  font-size: clamp(48px, 5.2vw, 78px);
}

.seo-hero__copy .lead {
  margin-top: 26px;
}

.seo-hero__visual {
  grid-column: 6 / 13;
  overflow: hidden;
  border-radius: var(--radius-media);
  background: var(--ice-soft);
  box-shadow: 0 26px 72px rgba(7, 27, 54, 0.11);
}

.seo-hero__image {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.seo-hero__image img {
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.seo-hero__visual figcaption {
  min-height: 72px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  background: var(--ink);
}

.seo-hero__visual figcaption svg {
  color: #8dbbff;
}

.seo-hero__visual figcaption strong {
  font-size: 15px;
}

.seo-intro {
  background: var(--ice);
}

.seo-intro__layout {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.seo-intro__layout h2 {
  max-width: 1050px;
}

.seo-intro__layout p {
  max-width: 760px;
  margin-top: 28px;
  font-size: 20px;
}

.seo-workflow {
  background: var(--white);
}

.seo-workflow__grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: stretch;
}

.seo-workflow__grid ol {
  border-top: 2px solid var(--ink);
}

.seo-workflow__grid li {
  min-height: 134px;
  padding-block: 22px;
  border-bottom: 1px solid var(--line);
}

.seo-workflow__grid li h3 {
  font-size: 23px;
}

.seo-workflow__grid li p {
  margin-top: 10px;
  font-size: 15px;
}

.seo-workflow__grid > figure {
  min-height: 600px;
}

.seo-workflow__grid > figure img {
  object-position: center 24%;
}

.seo-capabilities {
  background: var(--ice-soft);
}

.seo-capabilities__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: stretch;
}

.seo-capabilities__copy > p {
  margin-top: 24px;
  font-size: 18px;
}

.seo-capabilities__rail {
  margin-top: 38px;
  border-top: 2px solid var(--ink);
}

.seo-capabilities__rail article {
  padding-block: 20px;
  border-bottom: 1px solid var(--line);
}

.seo-capabilities__rail h3 {
  font-size: 21px;
}

.seo-capabilities__rail p {
  margin-top: 8px;
  font-size: 14px;
}

.seo-capabilities__grid > figure {
  min-height: 620px;
}

.seo-capabilities__grid > figure img {
  object-position: center 34%;
}

.seo-use {
  background: var(--white);
}

.seo-use__list {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 2px solid var(--ink);
}

.seo-use__list article {
  min-height: 210px;
  padding: 28px 28px 32px 0;
  border-bottom: 1px solid var(--line);
}

.seo-use__list article:nth-child(odd) {
  padding-right: 44px;
  border-right: 1px solid var(--line);
}

.seo-use__list article:nth-child(even) {
  padding-left: 44px;
}

.seo-use__list p {
  margin-top: 14px;
  font-size: 15px;
}

.seo-quality {
  background: var(--ice);
}

.seo-quality__grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 2px solid var(--ink);
}

.seo-quality__grid article {
  min-height: 260px;
  padding: 28px 28px 34px;
  border-right: 1px solid var(--line-strong);
}

.seo-quality__grid article:last-child {
  border-right: 0;
}

.seo-quality__grid p {
  margin-top: 14px;
  font-size: 15px;
}

.seo-related {
  background: var(--white);
}

.seo-related .shell > strong {
  display: block;
  margin-bottom: 28px;
  font-size: clamp(24px, 2.5vw, 36px);
}

.seo-related .shell > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 2px solid var(--ink);
}

.seo-related a {
  min-height: 92px;
  padding: 20px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--ink-soft);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  font-weight: 700;
}

.seo-related a:hover {
  color: var(--cobalt);
  background: var(--ice-soft);
}

.seo-closing {
  background: var(--white);
}

.seo-footer {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.seo-footer__grid {
  padding-block: 58px 22px;
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 38px;
}

.seo-footer nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 24px;
  align-content: start;
}

.seo-footer nav a {
  color: var(--ink-soft);
  font-size: 14px;
}

.seo-footer nav a:hover {
  color: var(--cobalt);
  text-decoration: underline;
}

.pbn-links {
  padding-block: 22px;
  border-top: 1px solid var(--line);
}

.pbn-links strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 14px;
}

.pbn-links div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}

.pbn-links a {
  color: var(--ink-soft);
  font-size: 14px;
}

.pbn-links a:hover {
  color: var(--cobalt);
  text-decoration: underline;
}

.seo-footer .footer__legal {
  grid-column: 1 / 3;
}

/* Error page */

.error-page__main {
  min-height: calc(100dvh - 72px);
  padding-block: 90px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.error-page__main > strong {
  color: var(--cobalt);
  font-size: 18px;
}

.error-page__main h1 {
  margin-top: 18px;
}

.error-page__main p {
  max-width: 660px;
  margin: 24px 0 30px;
}

/* Deliberate first-view motion */

.reveal {
  min-width: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .hero .reveal,
  .seo-hero__copy,
  .seo-hero__visual {
    animation: first-view-reveal 720ms var(--ease-out) both;
    animation-delay: var(--reveal-delay, 0s);
  }

  .hero__visual,
  .seo-hero__visual {
    animation-delay: 80ms;
  }

  .director-monitor__timeline i.is-active {
    animation: timeline-state 2.4s var(--ease-out) infinite alternate;
  }
}

@keyframes first-view-reveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes timeline-state {
  from { opacity: 0.55; }
  to { opacity: 1; }
}

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

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

/* Tablet */

@media (max-width: 1180px) {
  :root {
    --gutter: clamp(24px, 4vw, 46px);
    --section-space: 88px;
  }

  .hero__grid,
  .seo-hero__grid {
    min-height: auto;
  }

  .director-monitor__dock {
    grid-template-columns: 1fr 0.8fr;
  }

  .director-monitor__formats {
    display: none;
  }

  .editor__window {
    min-height: 540px;
    grid-template-columns: minmax(0, 1fr) 230px;
  }

  .avatar-stage {
    min-height: 740px;
  }

  .format-spread {
    min-height: 650px;
  }

  .template-spread {
    min-height: 680px;
  }

  .photo-comparison {
    min-height: 560px;
  }
}

@media (max-width: 1023px) {
  .header__action--desktop {
    display: none;
  }

  .header__action--mobile {
    display: block;
  }

  h1 {
    font-size: clamp(48px, 7vw, 70px);
  }

  h2 {
    font-size: clamp(38px, 5.7vw, 54px);
  }

  .hero__grid,
  .seo-hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__copy,
  .hero__visual,
  .seo-hero__copy,
  .seo-hero__visual {
    grid-column: 1;
  }

  .hero__copy h1,
  .hero__copy .lead,
  .seo-hero__copy h1,
  .seo-hero__copy .lead {
    max-width: 760px;
  }

  .editor__layout,
  .translation__layout,
  .photo__layout {
    grid-template-columns: 1fr;
  }

  .editor__intro,
  .editor__window,
  .translation__copy,
  .translation-monitor,
  .photo__copy,
  .photo-comparison {
    grid-column: 1;
  }

  .editor__intro {
    max-width: 760px;
  }

  .production-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .production-step:nth-child(even) {
    padding-top: 26px;
  }

  .production-step:nth-child(2) {
    border-right: 0;
  }

  .production-step:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .avatar-stage {
    min-height: 960px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 1.5fr 0.9fr;
  }

  .avatar-main {
    grid-column: 1;
    grid-row: 1;
  }

  .avatar-panel {
    grid-column: 2;
    grid-row: 1;
  }

  .avatar-support {
    grid-column: 1 / 3;
    grid-row: 2;
  }

  .format-spread {
    min-height: 980px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 1.15fr 1fr;
  }

  .format-frame--wide {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .format-frame--vertical {
    grid-column: 1;
    grid-row: 2;
  }

  .format-frame--vertical .media-figure > figcaption {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .format-frame--vertical .media-figure > figcaption span {
    text-align: right;
  }

  .format-frame--square {
    grid-column: 2;
    grid-row: 2;
  }

  .format-note {
    display: none;
  }

  .language-rail__inner {
    grid-template-columns: 1fr;
    padding-block: 26px;
  }

  .language-rail__inner > div {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .template-spread {
    min-height: 1100px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .template-frame--1,
  .template-frame--2,
  .template-frame--3,
  .template-frame--4 {
    grid-column: auto;
    grid-row: auto;
  }

  .photo-comparison {
    min-height: 640px;
  }

  .faq__layout,
  .faq__grid,
  .seo-workflow__grid,
  .seo-capabilities__grid {
    grid-template-columns: 1fr;
  }

  .seo-workflow__grid > figure,
  .seo-capabilities__grid > figure {
    min-height: 560px;
  }

  .closing-panel,
  .seo-closing__panel {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .closing-panel > div,
  .seo-closing__panel > div {
    justify-self: start;
  }
}

/* Mobile */

@media (max-width: 767px) {
  :root {
    --gutter: 18px;
    --section-space: 72px;
  }

  .site-header {
    height: 64px;
  }

  .brand {
    gap: 9px;
    font-size: 23px;
  }

  .brand__mark {
    transform: scale(0.9) rotate(-8deg);
    transform-origin: left center;
  }

  .header__action--desktop {
    display: none;
  }

  .header__action--mobile {
    display: block;
  }

  .header__action--mobile .cta {
    min-height: 44px;
    padding-inline: 14px;
    gap: 8px;
    font-size: 13px;
  }

  .header__action--mobile .cta svg {
    width: 15px;
    height: 15px;
  }

  h1 {
    font-size: clamp(43px, 13.4vw, 58px);
    line-height: 1;
    letter-spacing: -0.04em;
  }

  h2 {
    font-size: clamp(36px, 10.5vw, 48px);
    line-height: 1.04;
  }

  h3 {
    font-size: 22px;
  }

  p {
    font-size: 16px;
    line-height: 1.58;
  }

  .lead {
    font-size: 18px;
  }

  .section-statement > p,
  .seo-section-statement > p {
    margin-top: 20px;
    font-size: 17px;
  }

  .hero,
  .seo-hero {
    padding-block: 42px 72px;
  }

  .hero__grid,
  .seo-hero__grid {
    gap: 38px;
  }

  .hero__copy .lead,
  .seo-hero__copy .lead {
    margin-top: 22px;
  }

  .cta-row {
    margin-top: 28px;
  }

  .hero__copy .cta,
  .seo-hero__copy .cta {
    width: 100%;
  }

  .director-monitor__bar {
    min-height: 50px;
    padding: 12px 14px;
  }

  .director-monitor__bar span {
    display: none;
  }

  .director-monitor__frame {
    aspect-ratio: 4 / 3;
  }

  .director-monitor__dock {
    padding: 16px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .director-monitor__timeline {
    order: -1;
  }

  .editor__layout {
    gap: 36px;
  }

  .editor__intro h2 {
    font-size: clamp(36px, 10.5vw, 48px);
  }

  .editor__intro p {
    font-size: 16px;
  }

  .editor__intro .text-link {
    width: 100%;
  }

  .editor__window {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .editor__media {
    aspect-ratio: 4 / 3;
  }

  .editor__dock {
    min-height: 230px;
    padding: 26px 22px;
  }

  .editor__dock svg {
    margin-bottom: 48px;
  }

  .production-rail {
    margin-top: 38px;
    grid-template-columns: 1fr;
  }

  .production-step,
  .production-step:nth-child(even) {
    min-height: 230px;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .production-step h3 {
    margin-top: 60px;
  }

  .avatar-stage {
    min-height: 0;
    margin-top: 38px;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .avatar-main,
  .avatar-panel,
  .avatar-support {
    grid-column: 1;
    grid-row: auto;
  }

  .avatar-main {
    height: 600px;
  }

  .avatar-panel {
    min-height: 480px;
  }

  .avatar-workspace {
    min-height: 480px;
  }

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

  .avatar-support .media-figure {
    height: 430px;
  }

  .format-spread {
    min-height: 0;
    margin-top: 38px;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .format-frame--wide,
  .format-frame--vertical,
  .format-frame--square {
    grid-column: 1;
    grid-row: auto;
  }

  .format-frame--wide .media-figure {
    height: 390px;
  }

  .format-frame--vertical .media-figure {
    height: 600px;
  }

  .format-frame--square .media-figure {
    height: 430px;
  }

  .translation__layout {
    gap: 38px;
  }

  .translation__copy p {
    font-size: 16px;
  }

  .translation__copy .cta {
    width: 100%;
  }

  .translation-monitor__media {
    aspect-ratio: 4 / 3;
  }

  .translation-monitor__dock {
    min-height: 112px;
    grid-template-columns: 1fr 24px 1.6fr;
    gap: 10px;
  }

  .translation-monitor__dock b {
    display: block;
    margin: 0 0 3px;
  }

  .language-rail {
    margin-top: 54px;
  }

  .language-rail__inner > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 10px;
  }

  .language-rail__inner span {
    text-align: left;
  }

  .template-spread {
    min-height: 0;
    margin-top: 38px;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .template-frame .media-figure {
    height: 500px;
  }

  .template-frame--3 .media-figure {
    height: 390px;
  }

  .photo__layout {
    gap: 38px;
  }

  .photo__copy p {
    font-size: 16px;
  }

  .photo__copy .cta {
    width: 100%;
  }

  .photo-comparison {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .photo-comparison .media-figure {
    height: 520px;
  }

  .use-index {
    margin-top: 38px;
  }

  .use-index article {
    min-height: 0;
    padding-block: 26px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .use-index h3 {
    font-size: 32px;
  }

  .benefit-band {
    margin-top: 38px;
    grid-template-columns: 1fr;
  }

  .benefit-band article {
    min-height: 250px;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }

  .faq__layout,
  .faq__grid {
    gap: 38px;
  }

  .faq-list summary {
    min-height: 76px;
    padding-block: 18px;
    gap: 14px;
    font-size: 16px;
  }

  .faq-list details > div {
    padding: 0 38px 22px 0;
  }

  .closing-panel,
  .seo-closing__panel {
    min-height: 430px;
    padding: 28px 22px;
    gap: 42px;
  }

  .closing-panel .cta,
  .seo-closing__panel .cta {
    width: 100%;
  }

  .footer,
  .seo-footer__grid {
    padding-top: 48px;
    grid-template-columns: 1fr;
  }

  .footer nav,
  .seo-footer nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer__legal,
  .seo-footer .footer__legal {
    grid-column: 1;
  }

  .seo-hero__copy h1 {
    font-size: clamp(40px, 11.6vw, 52px);
  }

  .seo-hero__image {
    aspect-ratio: 4 / 3;
  }

  .seo-intro__layout p {
    font-size: 17px;
  }

  .seo-workflow__grid,
  .seo-capabilities__grid {
    margin-top: 38px;
    gap: 38px;
  }

  .seo-workflow__grid > figure,
  .seo-capabilities__grid > figure {
    min-height: 0;
    height: 530px;
  }

  .seo-use__list {
    margin-top: 38px;
    grid-template-columns: 1fr;
  }

  .seo-use__list article,
  .seo-use__list article:nth-child(odd),
  .seo-use__list article:nth-child(even) {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
  }

  .seo-quality__grid {
    margin-top: 38px;
    grid-template-columns: 1fr;
  }

  .seo-quality__grid article {
    min-height: 0;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }

  .seo-related .shell > div {
    grid-template-columns: 1fr;
  }

  .seo-related a {
    border-right: 0;
  }

  .error-page__main {
    min-height: calc(100dvh - 64px);
    padding-block: 64px;
  }
}

@media (max-width: 430px) {
  .header__action--mobile .cta {
    padding-inline: 12px;
  }

  .header__action--mobile .cta span {
    max-width: 112px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .director-monitor__dock strong {
    font-size: 15px;
  }

  .media-figure > figcaption {
    min-height: 68px;
    padding: 14px 16px;
  }

  .avatar-main {
    height: 540px;
  }

  .avatar-support .media-figure,
  .format-frame--square .media-figure {
    height: 390px;
  }

  .format-frame--vertical .media-figure {
    height: 540px;
  }

  .template-frame .media-figure,
  .photo-comparison .media-figure,
  .seo-workflow__grid > figure,
  .seo-capabilities__grid > figure {
    height: 470px;
  }
}
