@font-face {
  font-family: "Inter";
  src: url("/assets/inter-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --color-black: #0d0d0e;
  --color-ink: #141416;
  --color-graphite: #1c1c1f;
  --color-line: rgba(255, 255, 255, 0.15);
  --color-line-dark: rgba(13, 13, 14, 0.16);
  --color-white: #f8f8f5;
  --color-paper: #efefec;
  --color-muted: #b9b9b5;
  --color-dark-muted: #56565a;
  --color-accent: #699fff;
  --color-accent-hover: #82afff;
  --color-accent-active: #4f86ec;
  --header-height: 80px;
  --container: 1248px;
  --gutter: 32px;
  --section-space: 96px;
  --radius: 6px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-focus: 0 0 0 3px rgba(105, 159, 255, 0.42);
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--color-black);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--color-black);
  color: var(--color-white);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body > main {
  padding-top: var(--header-height);
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 530;
  letter-spacing: 0;
}

h1 {
  max-width: 920px;
  font-size: 64px;
  line-height: 1.03;
}

h2 {
  font-size: 40px;
  line-height: 1.12;
}

h3 {
  font-size: 22px;
  line-height: 1.25;
}

p {
  margin: 0;
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.site-shell,
.section,
.hero-inner,
.final-cta-inner {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

.light-band {
  background: var(--color-paper);
  color: var(--color-ink);
}

.section-kicker,
.hero-kicker {
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  gap: 16px;
  max-width: 820px;
  margin-bottom: 44px;
}

.section-heading > p:not(.section-kicker) {
  max-width: 720px;
  color: var(--color-muted);
  font-size: 18px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button-large {
  min-height: 58px;
  padding-inline: 26px;
}

.button-accent {
  background: var(--color-accent);
  color: #0b0d12;
}

.button-accent:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
}

.button-accent:active {
  background: var(--color-accent-active);
  transform: translateY(0);
}

.button:focus-visible,
.text-link:focus-visible,
.brand:focus-visible,
.footer-column a:focus-visible,
.faq-list summary:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}

.button[disabled],
.button[aria-disabled="true"] {
  opacity: 0.48;
  cursor: not-allowed;
  transform: none;
}

.button.is-loading {
  color: transparent;
  pointer-events: none;
}

.button.is-loading::after {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(13, 13, 14, 0.28);
  border-top-color: #0d0d0e;
  border-radius: 50%;
  content: "";
  animation: spin 700ms linear infinite;
}

.button .icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 220ms var(--ease-out);
}

.button:hover .icon {
  transform: translateX(4px);
}

.button-animated::before {
  position: absolute;
  z-index: -1;
  inset: 0 auto 0 -35%;
  width: 28%;
  background: rgba(255, 255, 255, 0.38);
  content: "";
  transform: skewX(-20deg);
  transition: left 420ms var(--ease-out);
}

.button-animated:hover::before {
  left: 120%;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid currentColor;
  color: var(--color-accent);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  transition: color 160ms ease, border-color 160ms ease;
}

.text-link::after {
  content: "↗";
}

.text-link:hover {
  color: var(--color-accent-hover);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid var(--color-line);
  background: rgba(13, 13, 14, 0.94);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.site-header .site-shell {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  border-radius: 3px;
}

.brand-wordmark {
  width: 150px;
  height: auto;
  max-height: 34px;
  object-fit: contain;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-header .button {
  min-height: 48px;
}

.cta-label-mobile {
  display: none;
}

.hero {
  position: relative;
  min-height: max(590px, calc(100svh - var(--header-height) - 32px));
  overflow: hidden;
  background: var(--color-ink);
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: 62% center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 10, 12, 0.98) 0%, rgba(9, 10, 12, 0.92) 37%, rgba(9, 10, 12, 0.38) 68%, rgba(9, 10, 12, 0.12) 100%),
    linear-gradient(0deg, rgba(9, 10, 12, 0.6) 0%, transparent 45%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: inherit;
  align-items: center;
  padding-block: 64px;
}

.hero-copy {
  display: grid;
  width: min(780px, 72%);
  gap: 26px;
}

.hero-copy .lead {
  max-width: 720px;
  color: #d1d1ce;
  font-size: 19px;
  line-height: 1.55;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(10, 10, 12, 0.52);
  color: #d6d6d2;
  font-size: 12px;
  font-weight: 650;
}

.hero-media-note {
  position: absolute;
  right: 0;
  bottom: 28px;
  display: flex;
  gap: 16px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-weight: 650;
}

.quick-routes {
  background: var(--color-black);
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  border-top: 1px solid var(--color-line);
  border-left: 1px solid var(--color-line);
  background: #111113;
}

.route-card {
  position: relative;
  display: flex;
  min-height: 390px;
  grid-column: span 4;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  border-right: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  background: #111113;
  transition: background-color 220ms ease, transform 220ms var(--ease-out);
}

.route-card:hover {
  background: #19191c;
  transform: translateY(-2px);
}

.route-card-featured {
  grid-column: span 4;
}

.route-index,
.process-step > span,
.intent-rail > article > span,
.intent-usecase-grid > article > span,
.benefits-grid article > span {
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 700;
}

.route-index {
  position: relative;
  z-index: 1;
  display: block;
  line-height: 1;
}

.route-visual {
  min-height: 176px;
  margin: 8px -22px 6px;
  overflow: hidden;
  background-color: #222;
  background-position: center;
  background-size: cover;
  filter: saturate(0.92) contrast(1.03);
}

.route-visual::after {
  display: block;
  height: 100%;
  background: linear-gradient(180deg, transparent 55%, rgba(13, 13, 14, 0.38));
  content: "";
}

.route-visual-video {
  background-image: url("/assets/runway-ai-storyboard-2026.jpg");
  background-position: 52% 52%;
  background-size: 130%;
}

.route-visual-photo {
  background-image: url("/assets/runway-ai-image-motion-2026.jpg");
  background-position: 46% 50%;
  background-size: 132%;
}

.route-visual-motion {
  background-image: url("/assets/runway-ai-hero-editorial-2026.jpg");
  background-position: 75% 48%;
  background-size: 145%;
}

.route-visual-character {
  background-image: url("/assets/runway-ai-character-2026.jpg");
  background-position: 62% 52%;
  background-size: 124%;
}

.route-visual-preview {
  background-image: url("/assets/runway-ai-image-motion-2026.jpg");
  background-position: 70% 48%;
  background-size: 145%;
}

.route-visual-edit {
  background-image: url("/assets/runway-ai-storyboard-2026.jpg");
  background-position: 38% 58%;
  background-size: 145%;
}

.route-card h3 {
  margin-top: 4px;
}

.route-card p {
  color: var(--color-muted);
  font-size: 16px;
}

.route-card .text-link {
  margin-top: auto;
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  align-items: stretch;
  gap: 56px;
}

.proof-media {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background: #ccc;
}

.proof-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-copy {
  display: grid;
  align-content: center;
  gap: 24px;
}

.proof-copy .section-kicker {
  color: #306fcf;
}

.proof-intro {
  color: var(--color-dark-muted);
  font-size: 18px;
}

.proof-points {
  display: grid;
  margin-top: 12px;
  border-top: 1px solid var(--color-line-dark);
}

.proof-points > div {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 6px 16px;
  padding-block: 18px;
  border-bottom: 1px solid var(--color-line-dark);
}

.proof-points b {
  grid-row: span 2;
  color: #306fcf;
  font-size: 13px;
}

.proof-points strong {
  font-size: 16px;
}

.proof-points span {
  color: var(--color-dark-muted);
  font-size: 14px;
}

.process-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--color-line);
  border-left: 1px solid var(--color-line);
}

.process-step {
  display: flex;
  min-height: 500px;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  border-right: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.process-step p {
  color: var(--color-muted);
  font-size: 16px;
}

.process-visual {
  min-height: 280px;
  margin: -20px -20px 10px;
  background-position: center;
  background-size: cover;
}

.process-visual-idea { background-image: url("/assets/runway-ai-storyboard-2026.jpg"); background-position: 46% center; }
.process-visual-motion { background-image: url("/assets/runway-ai-image-motion-2026.jpg"); background-position: 54% center; }
.process-visual-result { background-image: url("/assets/runway-ai-character-2026.jpg"); background-position: 58% center; }

.benefits-band {
  border-top: 1px solid var(--color-line-dark);
  border-bottom: 1px solid var(--color-line-dark);
}

.benefits-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 56px;
}

.benefits-heading {
  display: grid;
  align-content: start;
  gap: 20px;
}

.benefits-heading .section-kicker {
  color: #306fcf;
}

.benefits-heading > p:not(.section-kicker) {
  color: var(--color-dark-muted);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--color-line-dark);
  border-left: 1px solid var(--color-line-dark);
}

.benefits-grid article {
  display: grid;
  min-height: 200px;
  align-content: start;
  gap: 14px;
  padding: 24px;
  border-right: 1px solid var(--color-line-dark);
  border-bottom: 1px solid var(--color-line-dark);
}

.benefits-grid strong {
  font-size: 19px;
  line-height: 1.25;
}

.benefits-grid p {
  color: var(--color-dark-muted);
  font-size: 15px;
}

.faq {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 56px;
}

.faq .section-heading {
  position: sticky;
  top: calc(var(--header-height) + 32px);
  margin: 0;
}

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

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

.faq-list summary {
  position: relative;
  padding: 20px 56px 20px 0;
  border-radius: 2px;
  color: var(--color-white);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  content: "+";
  font-size: 22px;
  font-weight: 400;
  transform: translateY(-50%);
  transition: color 180ms ease, border-color 180ms ease, transform 220ms var(--ease-out);
}

.faq-list details[open] summary::after {
  border-color: var(--color-accent);
  color: var(--color-accent);
  content: "−";
  transform: translateY(-50%) rotate(180deg);
}

.faq-list details p {
  max-width: 720px;
  padding: 0 56px 20px 0;
  color: var(--color-muted);
  font-size: 16px;
}

.final-cta {
  padding: 0 var(--gutter) var(--section-space);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 40px;
  padding: 40px;
  border: 1px solid rgba(105, 159, 255, 0.48);
  background: #181a20;
}

.final-cta-inner > div {
  display: grid;
  gap: 18px;
}

.final-cta h2 {
  max-width: 820px;
}

.final-cta-inner p:not(.section-kicker) {
  max-width: 720px;
  color: var(--color-muted);
}

.site-footer {
  border-top: 1px solid var(--color-line);
  background: #09090a;
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 72px;
  padding-block: 72px 32px;
}

.footer-top {
  min-width: 0;
}

.footer-brand {
  display: grid;
  gap: 26px;
}

.footer-brand p {
  max-width: 390px;
  color: var(--color-muted);
  font-size: 15px;
}

.site-footer .brand-wordmark {
  width: 150px;
  max-height: 34px;
}

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

.footer-column h3 {
  margin-bottom: 22px;
  color: #8c8c89;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-column ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column a {
  display: inline-block;
  border-radius: 2px;
  color: #d3d3cf;
  font-size: 14px;
  transition: color 160ms ease;
}

.footer-column a:hover {
  color: var(--color-accent);
}

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

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

.pbn-links h3 {
  margin: 0 0 14px;
  color: var(--color-accent, #b8ff60);
  font-size: 12px;
  text-transform: uppercase;
}

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

.pbn-links a {
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.pbn-links a:hover { color: #fff; }

/* Internal SEO pages */

.intent-hero .hero-copy {
  width: min(820px, 76%);
}

.intent-heading {
  max-width: none;
  grid-template-columns: minmax(180px, 0.36fr) minmax(0, 1fr);
  column-gap: 64px;
}

.intent-heading .section-kicker {
  grid-row: 1 / span 2;
}

.intent-heading > p:last-child {
  max-width: 720px;
  color: var(--color-muted);
  font-size: 17px;
}

.intent-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--color-line);
  border-left: 1px solid var(--color-line);
}

.intent-rail article {
  display: grid;
  min-height: 240px;
  align-content: start;
  gap: 16px;
  padding: 24px;
  border-right: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.intent-rail p,
.intent-usecase-grid p {
  color: var(--color-muted);
  font-size: 15px;
}

.intent-editorial .proof-media {
  min-height: 520px;
}

.intent-inline-link {
  margin-top: 12px;
  color: #306fcf;
}

.intent-usecase-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.intent-usecase-grid article {
  display: grid;
  min-height: 260px;
  grid-column: span 4;
  align-content: start;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--color-line);
  background: #121214;
  transition: transform 220ms var(--ease-out), border-color 220ms ease, background-color 220ms ease;
}

.intent-usecase-grid article:nth-child(2) {
  transform: translateY(24px);
}

.intent-usecase-grid article:hover {
  border-color: rgba(105, 159, 255, 0.7);
  background: #191a1e;
  transform: translateY(-4px);
}

.intent-usecase-grid article:nth-child(2):hover {
  transform: translateY(20px);
}

.intent-usecase-grid p {
  margin-top: auto;
}

.intent-faq {
  padding-top: var(--section-space);
}

/* 404 */

.error-page {
  min-height: 100vh;
}

.error-page > main {
  padding-top: calc(var(--header-height) + 48px);
}

.error-main {
  min-height: 100vh;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 20px;
  padding-bottom: 64px;
}

.error-main h1 {
  max-width: 760px;
}

.error-main > p:not(.hero-kicker) {
  max-width: 680px;
  color: var(--color-muted);
  font-size: 18px;
}

/* Motion */

.js-motion [data-reveal-group] > *.is-revealed {
  animation: reveal 620ms var(--ease-out) forwards;
}

.js-motion .hero-bg {
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.js-motion .hero-copy > * {
  animation: hero-enter 620ms var(--ease-out) both;
}

.js-motion .hero-copy > *:nth-child(2) { animation-delay: 70ms; }
.js-motion .hero-copy > *:nth-child(3) { animation-delay: 140ms; }
.js-motion .hero-copy > *:nth-child(4) { animation-delay: 210ms; }
.js-motion .hero-copy > *:nth-child(5) { animation-delay: 280ms; }

@keyframes reveal {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-enter {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-drift {
  from { filter: saturate(0.92) brightness(0.96); }
  to { filter: saturate(1.03) brightness(1.02); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1280px) {
  :root {
    --container: 1120px;
    --section-space: 88px;
  }

  h1 { font-size: 58px; }
  h2 { font-size: 38px; }

  .route-card { min-height: 500px; }
  .proof-layout { gap: 56px; }
}

@media (max-width: 1024px) {
  :root {
    --gutter: 28px;
    --section-space: 76px;
  }

  h1 { font-size: 52px; }
  h2 { font-size: 36px; }

  .hero-copy,
  .intent-hero .hero-copy {
    width: min(760px, 82%);
  }

  .route-card,
  .route-card-featured {
    min-height: 480px;
    grid-column: span 6;
  }

  .proof-layout {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .proof-media { min-height: 480px; }
  .benefits-layout,
  .faq { gap: 48px; }
  .footer-shell { gap: 48px; }

  .intent-heading {
    grid-template-columns: 1fr;
  }

  .intent-heading .section-kicker {
    grid-row: auto;
  }

  .intent-rail article { min-height: 250px; }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
    --gutter: 20px;
    --section-space: 56px;
  }

  body { font-size: 16px; }
  h1 { font-size: 38px; line-height: 1.08; }
  h2 { font-size: 32px; line-height: 1.12; }
  h3 { font-size: 21px; }

  .cta-label-desktop { display: none; }
  .cta-label-mobile { display: inline; }

  .site-header .button {
    min-height: 42px;
    gap: 9px;
    padding-inline: 15px;
    font-size: 14px;
  }

  .site-header .button .icon {
    width: 18px;
    height: 18px;
  }

  .brand-wordmark {
    width: 126px;
    max-height: 30px;
  }
  .header-actions { gap: 16px; }

  .hero {
    display: grid;
    min-height: 0;
    grid-template-rows: 260px auto;
    overflow: visible;
  }

  .hero-bg,
  .hero-shade {
    position: relative;
    grid-row: 1;
  }

  .hero-bg {
    z-index: 0;
    object-position: center;
    transform: none;
  }

  .js-motion .hero-bg {
    animation: none;
  }

  .hero-shade {
    z-index: 1;
    margin-top: -260px;
    background: linear-gradient(0deg, rgba(13, 13, 14, 0.72), transparent 56%);
    pointer-events: none;
  }

  .hero-inner {
    display: block;
    grid-row: 2;
    min-height: 0;
    padding-block: 28px 34px;
  }

  .hero-copy,
  .intent-hero .hero-copy {
    width: 100%;
    gap: 20px;
  }

  .hero-copy .lead {
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-media-note { display: none; }

  .route-card,
  .route-card-featured {
    min-height: 450px;
    grid-column: span 6;
  }

  .route-visual { min-height: 230px; }

  .proof-layout,
  .benefits-layout,
  .faq,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .proof-layout { gap: 32px; }
  .proof-media,
  .intent-editorial .proof-media { min-height: 380px; }
  .process-showcase { grid-template-columns: 1fr; }
  .process-step { min-height: 0; }
  .process-visual { min-height: 320px; }
  .benefits-layout { gap: 32px; }

  .faq .section-heading {
    position: static;
    margin-bottom: 8px;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 32px;
  }

  .final-cta .button { justify-self: start; }
  .footer-shell { gap: 48px; }

  .intent-rail {
    grid-template-columns: 1fr;
  }

  .intent-rail article {
    min-height: 0;
  }

  .intent-usecase-grid {
    grid-template-columns: 1fr;
  }

  .intent-usecase-grid article {
    min-height: 240px;
    grid-column: auto;
  }

  .intent-usecase-grid article:nth-child(2),
  .intent-usecase-grid article:nth-child(2):hover {
    transform: none;
  }
}

@media (max-width: 560px) {
  :root {
    --header-height: 64px;
    --gutter: 14px;
    --section-space: 44px;
  }

  body { font-size: 15px; }
  h1 { font-size: 32px; line-height: 1.08; }
  h2 { font-size: 28px; line-height: 1.12; }
  h3 { font-size: 20px; line-height: 1.18; }

  .site-header .site-shell { gap: 12px; }
  .brand-wordmark {
    width: 112px;
    max-height: 28px;
  }
  .cta-label-desktop { display: none; }
  .cta-label-mobile { display: inline; }

  .site-header .button {
    min-height: 40px;
    gap: 8px;
    padding-inline: 13px;
    font-size: 13px;
  }

  .site-header .button .icon {
    width: 17px;
    height: 17px;
  }

  .hero { grid-template-rows: 184px auto; }
  .hero-shade { margin-top: -184px; }
  .hero-inner { padding-block: 24px 30px; }
  .hero-copy { gap: 15px; }

  .hero-kicker,
  .section-kicker {
    font-size: 11px;
  }

  .hero-copy .lead {
    font-size: 16px;
    line-height: 1.48;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

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

  .hero-copy .button-large {
    width: 100%;
    min-height: 48px;
    font-size: 15px;
  }

  .section-heading {
    gap: 12px;
    margin-bottom: 22px;
  }

  .section-heading > p:not(.section-kicker) {
    font-size: 15px;
    line-height: 1.5;
  }

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

  .route-card,
  .route-card-featured {
    min-height: 0;
    grid-column: auto;
    gap: 12px;
    padding: 16px;
  }

  .route-visual {
    min-height: 0;
    aspect-ratio: 16 / 9;
    margin: 8px -16px 4px;
  }

  .route-card h3 {
    margin-top: 0;
    font-size: 20px;
    line-height: 1.18;
  }

  .route-card p {
    font-size: 15px;
    line-height: 1.48;
  }

  .route-card .text-link {
    font-size: 14px;
  }

  .proof-media,
  .intent-editorial .proof-media { min-height: 280px; }
  .proof-intro { font-size: 16px; }

  .process-visual { min-height: 240px; }
  .process-step { padding: 16px; }
  .process-visual { margin: -16px -16px 8px; }

  .benefits-grid { grid-template-columns: 1fr; }
  .benefits-grid article { min-height: 0; padding: 22px; }
  .faq .section-heading {
    gap: 12px;
    margin-bottom: 18px;
  }

  .faq .section-heading h2 {
    font-size: 29px;
    line-height: 1.12;
  }

  .faq .section-heading > p:not(.section-kicker) {
    font-size: 15px;
    line-height: 1.48;
  }

  .faq-list summary {
    padding: 17px 42px 17px 0;
    font-size: 16px;
    line-height: 1.28;
  }

  .faq-list summary::after {
    right: 0;
    width: 28px;
    height: 28px;
    font-size: 18px;
  }

  .faq-list details p {
    max-width: none;
    padding: 0 0 18px;
    font-size: 15px;
    line-height: 1.5;
  }

  .final-cta {
    padding-inline: var(--gutter);
  }

  .final-cta-inner {
    gap: 22px;
    padding: 24px 18px;
  }

  .final-cta .button {
    width: 100%;
  }

  .footer-shell {
    padding-block: 56px 24px;
  }

  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }

  .footer-column:last-child {
    grid-column: 1 / -1;
  }

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

  .intent-heading { column-gap: 0; }
  .intent-rail article { padding: 20px; }
  .intent-usecase-grid article { min-height: 0; padding: 20px; }
  .intent-faq { padding-top: var(--section-space); }

  .error-main .actions {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 390px) {
  :root { --gutter: 12px; }
  h1 { font-size: 30px; }
  h2 { font-size: 27px; }
  .faq .section-heading h2 { font-size: 28px; }
  .brand-wordmark { width: 106px; }
  .hero { grid-template-rows: 176px auto; }
  .hero-shade { margin-top: -176px; }
}

@media (max-width: 360px) {
  h1 { font-size: 29px; }
  h2 { font-size: 26px; }
  .faq .section-heading h2 { font-size: 27px; }
  .brand-wordmark { width: 100px; }
  .site-header .button {
    min-height: 38px;
    padding-inline: 11px;
  }
}

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

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

  .js-motion [data-reveal-group] > * {
    opacity: 1;
    transform: none;
  }
}
