:root {
  --surface: #f9f8f6;
  /* Neutral base sampled from the darker edge tones of the production video. */
  --hero-production-surface: #ded9d3;
  --hero-surface-left: #bfbab4;
  --hero-surface-mid: #c4bfb9;
  --hero-surface-right: #cbc6c0;
  --surface-raised: #ffffff;
  --surface-muted: #eceeec;
  --ink: #24282c;
  --ink-soft: #555d63;
  --ink-faint: #737b80;
  --line: rgba(36, 40, 44, 0.16);
  --signal: #f28d3f;
  --signal-strong: #df6f1d;
  --signal-soft: #ffd8b9;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--surface);
  color: var(--ink);
  font-family: "Archivo", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; }
:focus-visible { outline: 3px solid var(--signal-strong); outline-offset: 4px; }

.white-shell { width: min(1440px, calc(100% - 64px)); margin: 0 auto; }

.scroll-progress { position: fixed; inset: 0 0 auto; z-index: 80; height: 3px; pointer-events: none; }
.scroll-progress span { display: block; width: 100%; height: 100%; background: var(--signal); transform: scaleX(0); transform-origin: left; }
@supports (animation-timeline: scroll()) {
  .scroll-progress span { animation:scroll-progress linear both; animation-timeline:scroll(root block); }
  @keyframes scroll-progress { to { transform:scaleX(1); } }
}

.white-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: blur(14px);
}
.white-nav__inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.white-brand { display: inline-flex; align-items: center; gap: 12px; width: fit-content; text-decoration: none; font-size: 21px; font-weight: 750; letter-spacing: -0.035em; }
.white-brand img { width: 38px; height: 38px; transition: transform 240ms var(--ease-out); }
.white-brand:hover img { transform: rotate(-6deg) scale(1.04); }
.white-nav__links { display: flex; align-items: center; gap: 34px; }
.white-nav__links a { color: var(--ink-soft); text-decoration: none; font-size: 14px; font-weight: 550; }
.white-nav__links a:hover, .white-nav__links a:focus-visible { color: var(--ink); }
.white-nav__cta { justify-self: end; }

.white-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid var(--ink);
  border-radius: 10px;
  padding: 0 20px;
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
  transition: transform 180ms var(--ease-out), background-color 180ms ease, color 180ms ease;
}
.white-button::after { content: "↗"; font-size: 18px; transition: transform 180ms var(--ease-out); }
.white-button:hover { transform: translateY(-2px); background: var(--surface-raised); }
.white-button:hover::after { transform: translate(3px, -3px); }
.white-button:active { transform: scale(0.98); }
.white-button--signal { border-color: var(--signal); background: var(--signal); color: #21170f; }
.white-button--signal:hover { background: #f59b55; }

.white-hero {
  position: relative;
  height: clamp(680px, calc(100dvh - 76px), 820px);
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(460px, 0.9fr) minmax(520px, 1.1fr);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 76% 84%, rgba(231, 227, 222, 0.88), transparent 42%),
    linear-gradient(90deg, var(--hero-surface-left), var(--hero-surface-mid) 54%, var(--hero-surface-right));
}
.white-hero__copy { position: relative; z-index: 4; display: flex; flex-direction: column; justify-content: center; padding: 84px 44px 84px max(32px, calc((100vw - 1440px) / 2)); }
.white-eyebrow { margin: 0 0 26px; color: var(--ink-soft); font-size: 13px; font-weight: 600; }
.white-eyebrow::before { content: ""; display: inline-block; width: 22px; height: 2px; margin-right: 12px; vertical-align: middle; background: var(--signal); }
.white-hero h1 { max-width: 720px; margin: 0 0 30px; font-size: clamp(58px, 6vw, 96px); line-height: 0.9; letter-spacing: -0.04em; text-wrap: balance; }
.white-hero h1 span { display: block; white-space: nowrap; }
.white-hero__description { max-width: 590px; margin: 0 0 34px; color: var(--ink-soft); font-size: 19px; line-height: 1.55; text-wrap: pretty; }
.white-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.white-hero__visual { position: static; min-width: 0; overflow: hidden; background: transparent; }
.hero-core-poster,
.hero-core-video { position: absolute; z-index: 1; top: 0; bottom: 0; left: 27%; width: 88%; height: 100%; object-fit: contain; object-position: center; transform: none; transition: transform 900ms var(--ease-out), opacity 420ms ease; -webkit-mask-image: radial-gradient(ellipse 62% 68% at 52% 50%, #000 0 46%, rgba(0,0,0,.86) 62%, rgba(0,0,0,.32) 78%, transparent 94%); mask-image: radial-gradient(ellipse 62% 68% at 52% 50%, #000 0 46%, rgba(0,0,0,.86) 62%, rgba(0,0,0,.32) 78%, transparent 94%); }
.hero-core-video { opacity: 0; }
.video-ready .hero-core-video { opacity: 1; }
.video-ready .hero-core-poster { opacity: 0; }
.video-ready.is-loop-transition .hero-core-video { opacity: 0; }
.video-ready.is-loop-transition .hero-core-poster { opacity: 1; }
.white-hero__visual::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(196,191,185,.3), transparent 22% 76%, rgba(224,220,215,.7)),
    linear-gradient(90deg, rgba(191,186,180,1) 0 26%, rgba(191,186,180,.88) 34%, rgba(191,186,180,.22) 48%, transparent 60%);
}
.hero-particles { position: absolute; z-index: 2; inset: 0; width: 100%; height: 100%; pointer-events: none; opacity: .78; }
.core-reactor { position: absolute; z-index: 2; top: 48%; left: 68%; width: min(58%, 620px); aspect-ratio: 1; pointer-events: none; transform: translate(-50%,-50%); transform-style: preserve-3d; }
.core-reactor__aura { position: absolute; inset: 27%; border-radius: 50%; background: radial-gradient(circle, rgba(242,141,63,.28) 0, rgba(242,141,63,.08) 42%, transparent 72%); filter: blur(8px); animation: core-breathe 3.8s ease-in-out infinite; }
.core-reactor__orbit { position: absolute; inset: 12%; border: 1px solid rgba(242,141,63,.52); border-radius: 50%; box-shadow: inset 0 0 12px rgba(242,141,63,.08); }
.core-reactor__orbit::after { content: ""; position: absolute; top: 50%; left: -4px; width: 8px; height: 8px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 10px rgba(242,141,63,.72); }
.core-reactor__orbit--one { transform: rotateX(68deg) rotateZ(8deg); animation: orbit-one 9s linear infinite; }
.core-reactor__orbit--two { inset: 20%; border-color: rgba(36,40,44,.32); transform: rotateY(66deg) rotateZ(-18deg); animation: orbit-two 12s linear infinite reverse; }
.core-reactor__orbit--three { inset: 29%; border-color: rgba(242,141,63,.38); transform: rotateX(62deg) rotateY(24deg); animation: orbit-three 7s linear infinite; }
.core-reactor__spark { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: white; border: 2px solid var(--signal); box-shadow: 0 0 0 0 rgba(242,141,63,.46); animation: reactor-spark 2.6s ease-out infinite; }
.core-reactor__spark--one { top: 18%; left: 33%; }
.core-reactor__spark--two { top: 62%; right: 12%; animation-delay: .8s; }
.core-reactor__spark--three { bottom: 14%; left: 27%; animation-delay: 1.6s; }
.core-scan { position: absolute; z-index: 2; top: 10%; bottom: 10%; left: 14%; width: 18%; pointer-events: none; opacity: 0; background: linear-gradient(90deg, transparent, rgba(242,141,63,.12), transparent); transform: skewX(-8deg) translateX(0); animation: core-scan 6.8s ease-in-out infinite; }
.white-data-card { padding: 18px; border: 1px solid rgba(36,40,44,.2); border-radius: 10px; background: rgba(255,255,255,.84); backdrop-filter: blur(14px); }
.white-data-card span { display: block; margin-bottom: 10px; color: var(--ink-soft); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.white-data-card strong { display: block; margin-bottom: 2px; font-size: 28px; font-variant-numeric: tabular-nums; }
.white-data-card small { color: var(--ink-soft); }
.motion-ready .white-data-card:first-child { animation: data-float 5.5s ease-in-out infinite alternate; }
.motion-ready .white-data-card:last-child { animation: data-float 6.5s .7s ease-in-out infinite alternate-reverse; }

.hero-signal { position: absolute; z-index: 3; inset: 0; pointer-events: none; }
.hero-signal__path { position: absolute; top: 52%; left: 9%; width: 72%; height: 1px; background: linear-gradient(90deg, transparent, rgba(242,141,63,.8), transparent); transform: rotate(-12deg); }
.hero-signal__node { position: absolute; width: 10px; height: 10px; border: 2px solid var(--signal); border-radius: 50%; background: white; box-shadow: 0 0 0 0 rgba(242,141,63,.4); animation: node-pulse 2.8s ease-out infinite; }
.hero-signal__node--one { top: 58%; left: 24%; }
.hero-signal__node--two { top: 43%; left: 49%; animation-delay: .8s; }
.hero-signal__node--three { top: 33%; left: 69%; animation-delay: 1.6s; }

.live-band { overflow: hidden; border-bottom: 1px solid var(--line); background: var(--ink); color: var(--surface); }
.live-band__track { width: max-content; min-height: 58px; display: flex; align-items: center; gap: 28px; padding-right: 28px; font-size: 13px; font-weight: 650; animation: ticker 26s linear infinite; }
.live-band__track i { width: 7px; height: 7px; border-radius: 50%; background: var(--signal); }

.business-rails { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--line); }
.business-rail { position: relative; min-height: 390px; padding: 58px max(32px, calc((100vw - 1440px) / 2)); overflow: hidden; text-decoration: none; }
.business-rail:first-child { padding-right: 72px; border-right: 1px solid var(--line); }
.business-rail:last-child { padding-left: 72px; }
.business-rail::before { content: ""; position: absolute; inset: 0; background: var(--signal); transform: scaleY(0); transform-origin: bottom; transition: transform 480ms var(--ease-out); }
.business-rail > * { position: relative; z-index: 1; }
.business-rail:hover::before { transform: scaleY(1); }
.business-rail__index { display: block; margin-bottom: 44px; color: var(--signal-strong); font-size: 15px; font-weight: 700; }
.business-rail:hover .business-rail__index { color: #2b1c10; }
.business-rail h2 { max-width: 620px; margin: 0 0 20px; font-size: clamp(44px, 5vw, 76px); line-height: .92; letter-spacing: -.04em; }
.business-rail p { max-width: 540px; margin: 0; color: var(--ink-soft); font-size: 17px; line-height: 1.55; }
.business-rail:hover p { color: #46301f; }
.business-rail__arrow { position: absolute; top: 54px; right: 54px; font-size: 42px; transition: transform 220ms var(--ease-out); }
.business-rail:hover .business-rail__arrow { transform: translate(7px,-7px); }

.friction-map { padding: clamp(90px, 11vw, 160px) 0; border-bottom: 1px solid var(--line); background: var(--surface-raised); }
.friction-map__layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(64px, 9vw, 140px); align-items: start; }
.friction-map__intro { position: sticky; top: 130px; }
.friction-map h2 { max-width: 650px; margin: 0 0 26px; font-size: clamp(48px, 5.4vw, 80px); line-height: .94; letter-spacing: -.04em; text-wrap: balance; }
.friction-map__intro p { max-width: 540px; margin: 0; color: var(--ink-soft); font-size: 18px; line-height: 1.6; }
.friction-map__grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.friction-card { min-height: 340px; display: flex; flex-direction: column; padding: 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); transition: transform 260ms var(--ease-out), background-color 260ms ease; }
.friction-card--wide { grid-column: span 2; min-height: 300px; }
.friction-card:hover { z-index: 1; transform: translateY(-5px); background: var(--signal-soft); }
.friction-card > span { color: var(--signal-strong); font-size: 12px; font-weight: 700; }
.friction-card h3 { max-width: 620px; margin: auto 0 18px; font-size: clamp(28px, 3vw, 42px); line-height: 1; letter-spacing: -.035em; }
.friction-card p { max-width: 680px; margin: 0 0 24px; color: var(--ink-soft); line-height: 1.55; }
.friction-card ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.friction-card li { padding: 7px 10px; border: 1px solid currentColor; border-radius: 7px; color: var(--ink-soft); font-size: 12px; }

.section-tag { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 24px; color: var(--signal-strong); font-size: 13px; font-weight: 700; }
.section-tag::before { content: ""; width: 22px; height: 2px; background: currentColor; }
.section-tag--light { color: var(--signal); }

.capabilities { padding: clamp(90px, 11vw, 160px) 0; border-bottom: 1px solid var(--line); }
.capabilities__layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(64px, 9vw, 140px); align-items: start; }
.capabilities__intro { position: sticky; top: 130px; }
.capabilities h2 { max-width: 620px; margin: 0 0 26px; font-size: clamp(48px, 5vw, 78px); line-height: .96; letter-spacing: -.04em; text-wrap: balance; }
.capabilities__intro p { max-width: 560px; margin: 0; color: var(--ink-soft); font-size: 18px; line-height: 1.6; }
.capabilities__list { border-top: 1px solid var(--line); }
.capability-line { display: grid; grid-template-columns: 130px 1fr; gap: 12px 30px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.capability-line > span { grid-row: span 2; color: var(--signal-strong); font-size: 12px; font-weight: 700; }
.capability-line h3 { margin: 0; font-size: clamp(25px, 3vw, 38px); letter-spacing: -.03em; }
.capability-line p { max-width: 590px; margin: 0; color: var(--ink-soft); line-height: 1.55; }

.proof-band { border-bottom: 1px solid var(--line); background: var(--surface-raised); }
.proof-band__inner { display: grid; grid-template-columns: repeat(3, .65fr) 1.05fr; }
.proof-band__inner > div, .proof-band__inner > p { min-height: 170px; margin: 0; padding: 34px; border-right: 1px solid var(--line); }
.proof-band__inner > div:first-child { padding-left: 0; }
.proof-band strong { display: block; margin-bottom: 8px; font-size: 48px; letter-spacing: -.04em; font-variant-numeric: tabular-nums; }
.proof-band strong:not([data-counter]) { font-size: clamp(26px, 2.5vw, 38px); letter-spacing: -.03em; }
.proof-band span { color: var(--ink-soft); font-size: 13px; line-height: 1.4; }
.proof-band__inner > p { display: flex; align-items: flex-end; border-right: 0; color: var(--ink-soft); line-height: 1.55; }

.offer-ladder { padding: clamp(90px,11vw,150px) 0; border-bottom: 1px solid var(--line); background: var(--surface-raised); }
.offer-ladder__layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(64px,9vw,140px); }
.offer-ladder__intro { position: sticky; top: 130px; align-self: start; }
.offer-ladder h2 { max-width: 620px; margin: 0 0 26px; font-size: clamp(48px,5.4vw,80px); line-height: .94; letter-spacing: -.04em; text-wrap: balance; }
.offer-ladder__intro p { max-width: 540px; margin: 0; color: var(--ink-soft); font-size: 18px; line-height: 1.6; }
.offer-ladder__list { border-top: 1px solid var(--line); }
.offer-ladder__list a { display: grid; grid-template-columns: 150px 1fr auto; gap: 14px 30px; padding: 32px 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.offer-ladder__list span { grid-row: span 2; color: var(--signal-strong); font-size: 12px; font-weight: 700; }
.offer-ladder__list h3 { margin: 0; font-size: clamp(25px,3vw,38px); letter-spacing: -.03em; }
.offer-ladder__list p { margin: 0; color: var(--ink-soft); line-height: 1.55; }
.offer-ladder__list strong { grid-column: 3; grid-row: 1 / span 2; align-self: center; font-size: 13px; }

.service-packs { padding: clamp(90px,11vw,150px) 0; border-bottom: 1px solid var(--line); }
.service-packs__head { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: end; margin-bottom: 58px; }
.service-packs__head h2 { max-width: 850px; margin: 0; font-size: clamp(50px,5.8vw,86px); line-height: .94; letter-spacing: -.04em; text-wrap: balance; }
.service-packs__head p { max-width: 590px; margin: 0 0 8px; color: var(--ink-soft); font-size: 18px; line-height: 1.62; }
.service-packs__grid { display: grid; grid-template-columns: repeat(12,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-pack { grid-column: span 4; min-height: 420px; display: flex; flex-direction: column; padding: clamp(26px,3vw,42px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface-raised); color: var(--ink); text-decoration: none; transition: background-color 180ms ease, transform 240ms var(--ease-out); }
.service-pack:hover { position: relative; z-index: 1; background: #fff; transform: translateY(-4px); }
.service-pack--featured { grid-column: span 8; background: var(--ink); color: var(--surface); }
.service-pack--featured:hover { background: #30353a; }
.service-pack--wide { grid-column: span 7; }
.service-pack--signal { grid-column: span 5; background: var(--signal); color: #21170f; }
.service-pack--signal:hover { background: #f49b55; }
.service-pack > span { color: var(--signal-strong); font-size: 12px; font-weight: 700; }
.service-pack--featured > span { color: var(--signal); }
.service-pack--signal > span { color: #6a3511; }
.service-pack h3 { max-width: 650px; margin: auto 0 18px; font-size: clamp(32px,3.3vw,52px); line-height: .96; letter-spacing: -.035em; }
.service-pack p { max-width: 610px; margin: 0 0 24px; color: var(--ink-soft); line-height: 1.58; }
.service-pack--featured p { color: #c5c9cc; }
.service-pack--signal p { color: #593419; }
.service-pack ul { display: flex; flex-wrap: wrap; gap: 7px 20px; margin: 0 0 30px; padding: 0; list-style: none; }
.service-pack li { position: relative; padding-left: 12px; color: inherit; font-size: 12px; font-weight: 600; }
.service-pack li::before { content: ""; position: absolute; left: 0; top: .5em; width: 4px; height: 4px; border-radius: 50%; background: var(--signal); }
.service-pack strong { margin-top: auto; font-size: 13px; }
.service-packs__foot { padding-top: 34px; }

.sector-entry { padding: clamp(90px,11vw,150px) 0; border-bottom: 1px solid var(--line); }
.sector-entry__head { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: end; margin-bottom: 68px; }
.sector-entry h2 { max-width: 830px; margin: 0; font-size: clamp(50px,5.8vw,86px); line-height: .94; letter-spacing: -.04em; text-wrap: balance; }
.sector-entry__head > p { max-width: 600px; margin: 0 0 6px; color: var(--ink-soft); font-size: 18px; line-height: 1.65; }
.sector-entry__links { display: grid; grid-template-columns: 1fr 1fr 1fr; border-top: 1px solid var(--line); }
.sector-entry__links a { min-height: 350px; display: flex; flex-direction: column; padding: 34px; border-right: 1px solid var(--line); text-decoration: none; transition: background-color 220ms ease; }
.sector-entry__links a:first-child { padding-left: 0; }
.sector-entry__links a:last-child { border-right: 0; }
.sector-entry__links a:hover { background: var(--surface-raised); }
.sector-entry__links span { color: var(--signal-strong); font-size: 13px; font-weight: 700; }
.sector-entry__links h3 { max-width: 390px; margin: auto 0 16px; font-size: clamp(30px,3vw,42px); line-height: .98; letter-spacing: -.035em; }
.sector-entry__links p { min-height: 76px; margin: 0 0 26px; color: var(--ink-soft); line-height: 1.55; }
.sector-entry__links strong { font-size: 13px; }

.market-path { padding: clamp(90px,11vw,150px) 0; background: #30353a; color: var(--surface); }
.market-path__layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(64px,9vw,140px); align-items: end; }
.market-path h2 { max-width: 680px; margin: 0 0 24px; font-size: clamp(50px,5.8vw,84px); line-height: .93; letter-spacing: -.04em; text-wrap: balance; }
.market-path p { max-width: 620px; margin: 0 0 32px; color: #c5c9cc; font-size: 18px; line-height: 1.6; }
.market-path ol { margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,.2); list-style: none; }
.market-path li { min-height: 86px; display: grid; grid-template-columns: 52px 1fr auto; gap: 18px; align-items: center; border-bottom: 1px solid rgba(255,255,255,.14); }
.market-path li b { color: var(--signal); font-size: 12px; }
.market-path li span { font-weight: 650; }
.market-path li em { color: #aeb5ba; font-size: 12px; font-style: normal; }
.market-path li.is-active em { color: #8bd4a0; }

.white-section { padding: clamp(90px, 11vw, 160px) 0; border-bottom: 1px solid var(--line); }
.white-section__header { max-width: 850px; margin-bottom: 64px; }
.white-section h2 { margin: 0 0 22px; font-size: clamp(50px, 6vw, 88px); line-height: .94; letter-spacing: -.04em; text-wrap: balance; }
.white-section__header p { max-width: 650px; margin: 0; color: var(--ink-soft); font-size: 18px; line-height: 1.58; }
.implementation-map { display: grid; grid-template-columns: 1.08fr .92fr; gap: 36px; }
.implementation-map__visual { position: relative; aspect-ratio: 4 / 3; min-height: 0; margin: 0; overflow: hidden; border-radius: 14px; background: var(--surface); }
.implementation-map__image { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.015); transition: transform 900ms var(--ease-out); }
.implementation-map__visual:hover .implementation-map__image { transform: scale(1.035); }
.implementation-map__visual figcaption { position: absolute; inset: auto 18px 18px; max-width: 390px; padding: 16px 18px; border-radius: 9px; background: rgba(255,255,255,.9); color: var(--ink-soft); font-size: 13px; line-height: 1.45; backdrop-filter: blur(12px); }
.implementation-steps { display: grid; align-content: stretch; margin: 0; padding: 0; list-style: none; }
.implementation-step { display: grid; grid-template-columns: 54px 1fr; gap: 18px; align-items: start; padding: 30px 0; border-bottom: 1px solid var(--line); }
.implementation-step:first-child { border-top: 1px solid var(--line); }
.implementation-step strong { color: var(--signal-strong); font-variant-numeric: tabular-nums; }
.implementation-step h3 { margin: 0 0 8px; font-size: 26px; letter-spacing: -.02em; }
.implementation-step p { margin: 0; color: var(--ink-soft); line-height: 1.55; }

.backoffice-story { padding: clamp(90px, 11vw, 150px) 0; overflow: hidden; background: var(--ink); color: var(--surface); }
.backoffice-story__layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px, 9vw, 140px); align-items: center; }
.backoffice-story h2 { max-width: 650px; margin: 0 0 26px; font-size: clamp(48px, 5.5vw, 82px); line-height: .94; letter-spacing: -.04em; text-wrap: balance; }
.backoffice-story__copy p { max-width: 570px; margin: 0 0 34px; color: #c5c9cc; font-size: 18px; line-height: 1.6; }
.text-link { display: inline-flex; align-items: center; gap: 18px; color: var(--surface); text-decoration: none; font-weight: 650; }
.text-link span { color: var(--signal); font-size: 22px; transition: transform 180ms var(--ease-out); }
.text-link:hover span { transform: translate(4px,-4px); }
.stage-console { border-radius: 14px; overflow: hidden; background: #30353a; }
.stage-console__head { display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center; padding: 24px 26px; border-bottom: 1px solid rgba(255,255,255,.12); }
.stage-console__head span { color: #aeb5ba; font-size: 12px; }
.stage-console__head strong { font-size: 15px; }
.stage-console__head i { color: var(--signal); font-style: normal; font-weight: 700; }
.stage-console__progress { height: 4px; background: #444b50; }
.stage-console__progress span { display: block; width: 68%; height: 100%; background: var(--signal); transform-origin: left; }
.motion-ready .stage-console__progress span { animation: progress-build 1.4s var(--ease-out) both; }
.stage-console ol { margin: 0; padding: 0 26px; list-style: none; }
.stage-console li { display: grid; grid-template-columns: 42px 1fr auto; gap: 12px; align-items: center; min-height: 76px; border-bottom: 1px solid rgba(255,255,255,.1); color: #9ca4aa; }
.stage-console li:last-child { border-bottom: 0; }
.stage-console li b { color: #858e94; font-size: 12px; }
.stage-console li span { font-weight: 600; }
.stage-console li em { font-size: 11px; font-style: normal; }
.stage-console li.is-done { color: #d9dddf; }
.stage-console li.is-done em { color: #7bc893; }
.stage-console li.is-active { color: white; }
.stage-console li.is-active b, .stage-console li.is-active em { color: var(--signal); }

.production-standard { padding: clamp(90px, 11vw, 150px) 0; border-bottom: 1px solid var(--line); background: var(--surface-muted); }
.production-standard__layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(64px, 9vw, 140px); align-items: start; }
.production-standard__title h2 { max-width: 720px; margin: 0 0 26px; font-size: clamp(48px, 5.5vw, 82px); line-height: .94; letter-spacing: -.04em; text-wrap: balance; }
.production-standard__title p { max-width: 560px; margin: 0; color: var(--ink-soft); font-size: 18px; line-height: 1.6; }
.production-standard__items { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.production-standard__items article { min-height: 245px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.production-standard__items h3 { margin: 0 0 62px; font-size: 23px; letter-spacing: -.025em; }
.production-standard__items p { margin: 0; color: var(--ink-soft); line-height: 1.58; }

.why-neuralhub { padding: clamp(90px,11vw,150px) 0; border-bottom: 1px solid var(--line); background: #d7d3ce; }
.why-neuralhub__intro { display: grid; grid-template-columns: 1.15fr .85fr; gap: 30px 70px; align-items: end; margin-bottom: 70px; }
.why-neuralhub__intro h2 { max-width: 930px; margin: 0; font-size: clamp(50px,6vw,90px); line-height: .92; letter-spacing: -.04em; text-wrap: balance; }
.why-neuralhub__intro p { max-width: 610px; margin: 0; color: #535a60; font-size: 18px; line-height: 1.62; }
.why-neuralhub__intro .text-link { grid-column: 2; color: var(--ink); }
.why-neuralhub__benefits { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid rgba(36,40,44,.24); }
.why-neuralhub__benefits article { min-height: 310px; display: flex; flex-direction: column; padding: 28px; border-right: 1px solid rgba(36,40,44,.2); }
.why-neuralhub__benefits article:first-child { padding-left: 0; }.why-neuralhub__benefits article:last-child { border-right: 0; }
.why-neuralhub__benefits span { color: var(--signal-strong); font-size: 12px; font-weight: 700; }.why-neuralhub__benefits h3 { margin: auto 0 16px; font-size: 24px; line-height: 1.05; letter-spacing: -.025em; }.why-neuralhub__benefits p { margin: 0; color: #596067; line-height: 1.55; }

.software-stage { padding: clamp(90px, 10vw, 140px) 0 80px; overflow: hidden; }
.software-stage__head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 56px; }
.software-stage h2 { max-width: 780px; margin: 0; font-size: clamp(48px, 5.8vw, 86px); line-height: .94; letter-spacing: -.04em; text-wrap: balance; }
.product-reel { overflow-x: auto; scrollbar-width: none; padding: 0 max(32px, calc((100vw - 1440px) / 2)); }
.product-reel::-webkit-scrollbar { display: none; }
.product-reel__track { width: max-content; display: flex; gap: 22px; }
.product-reel a { position: relative; width: min(620px, 72vw); aspect-ratio: 16/10; display: block; overflow: hidden; border-radius: 14px; background: var(--surface-muted); text-decoration: none; }
.product-reel img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 500ms var(--ease-out); }
.product-reel a:hover img { transform: scale(1.025); }
.product-reel a span { position: absolute; inset: auto 16px 16px; width: fit-content; padding: 11px 14px; border-radius: 8px; background: rgba(255,255,255,.92); font-weight: 700; backdrop-filter: blur(12px); }

.portfolio-gateway { display: block; overflow: hidden; border-top: 1px solid rgba(33,23,15,.18); border-bottom: 1px solid rgba(33,23,15,.18); background: var(--signal); color: #21170f; text-decoration: none; }
.portfolio-gateway__inner { min-height: 390px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 64px; align-items: end; padding-top: 68px; padding-bottom: 68px; }
.portfolio-gateway__label { display: block; margin-bottom: 34px; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.portfolio-gateway h2 { max-width: 970px; margin: 0; font-size: clamp(48px, 6.5vw, 92px); line-height: .91; letter-spacing: -.04em; text-wrap: balance; }
.portfolio-gateway__action { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; padding-top: 28px; border-top: 1px solid rgba(33,23,15,.35); font-weight: 700; }
.portfolio-gateway__action strong { font-size: 64px; line-height: .7; transition: transform 200ms var(--ease-out); }
.portfolio-gateway:hover .portfolio-gateway__action strong { transform: translate(8px,-8px); }

.faq-section { padding: clamp(90px, 11vw, 150px) 0; border-bottom: 1px solid var(--line); }
.faq-section__layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(60px, 9vw, 140px); align-items: start; }
.faq-section h2 { margin: 0; font-size: clamp(52px, 6vw, 88px); line-height: .94; letter-spacing: -.04em; }
.faq-section__intro { position: sticky; top: 112px; }
.faq-section__intro > p { max-width: 390px; margin: 26px 0 0; color: var(--ink-soft); font-size: 17px; line-height: 1.58; }
.faq-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; align-items: start; }
.faq-list details { border: 1px solid var(--line); border-radius: 12px; background: var(--surface-raised); transition: border-color 180ms ease, background-color 180ms ease, transform 180ms var(--ease-out); }
.faq-list details:hover { border-color: rgba(36,40,44,.3); transform: translateY(-2px); }
.faq-list details[open] { border-color: rgba(242,141,63,.55); background: #fffaf6; }
.faq-list summary { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 16px 18px; cursor: pointer; list-style: none; font-size: 17px; line-height: 1.3; font-weight: 650; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { flex: 0 0 auto; color: var(--signal-strong); font-size: 27px; font-weight: 400; transition: transform 200ms var(--ease-out); }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list p { margin: -2px 18px 20px; color: var(--ink-soft); font-size: 15px; line-height: 1.58; }

.contact-choice { padding: clamp(90px,11vw,150px) 0; border-bottom: 1px solid var(--line); }
.contact-choice__head { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: end; margin-bottom: 56px; }
.contact-choice__head h2 { margin: 0; font-size: clamp(52px,6.3vw,92px); line-height: .92; letter-spacing: -.04em; }.contact-choice__head p { max-width: 580px; margin: 0 0 8px; color: var(--ink-soft); font-size: 18px; line-height: 1.6; }
.contact-choice__grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.contact-choice__grid a { min-height: 390px; display: flex; flex-direction: column; padding: 34px 40px 34px 0; border-right: 1px solid var(--line); color: var(--ink); text-decoration: none; transition: background-color 180ms ease; }.contact-choice__grid a + a { padding-left: 40px; border-right: 0; }.contact-choice__grid a:hover { background: var(--surface-raised); }
.contact-choice__grid span { color: var(--signal-strong); font-size: 12px; font-weight: 700; }.contact-choice__grid h3 { margin: auto 0 16px; font-size: clamp(36px,4vw,58px); letter-spacing: -.035em; }.contact-choice__grid p { max-width: 560px; margin: 0 0 30px; color: var(--ink-soft); line-height: 1.6; }.contact-choice__grid strong { font-size: 13px; }

.newsletter-callout { padding: clamp(80px,9vw,120px) 0; background: var(--surface-muted); }
.newsletter-callout__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(60px,9vw,140px); align-items: center; }.newsletter-callout h2 { max-width: 670px; margin: 0 0 22px; font-size: clamp(48px,5.4vw,78px); line-height: .94; letter-spacing: -.04em; }.newsletter-callout p { max-width: 560px; margin: 0 0 26px; color: var(--ink-soft); line-height: 1.6; }.newsletter-callout .text-link { color: var(--ink); }
.newsletter-callout form { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 14px; padding: clamp(28px,4vw,48px); background: var(--surface-raised); }.newsletter-callout label { font-size: 12px; font-weight: 700; }.newsletter-callout input[type="text"],.newsletter-callout input[type="email"] { min-width: 0; min-height: 52px; margin-bottom: 14px; border: 1px solid rgba(36,40,44,.28); border-radius: 8px; padding: 0 14px; background: var(--surface); font: inherit; }.newsletter-consent { grid-column: 1/-1; display: flex; gap: 10px; align-items: flex-start; color: var(--ink-soft); line-height: 1.45; }.newsletter-consent input { margin: 2px 0 0; accent-color: var(--signal-strong); }.newsletter-callout button { grid-column: 1; margin-top: 14px; border: 0; cursor: pointer; }.newsletter-callout form > p { grid-column: 1/-1; margin: 0; font-size: 12px; }.newsletter-callout form > p[data-state="success"] { color: #277446; }.newsletter-callout form > p[data-state="error"] { color: #a4382f; }

.white-final { padding: clamp(90px, 11vw, 150px) 0; background: var(--ink); color: var(--surface); }
.white-final__inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; }
.white-final h2 { max-width: 900px; margin: 0; font-size: clamp(56px, 7vw, 96px); line-height: .9; letter-spacing: -.04em; text-wrap: balance; }
.white-final p { max-width: 560px; margin: 0 0 28px; color: #c5c9cc; font-size: 18px; line-height: 1.6; }

.white-footer { border-top: 1px solid rgba(247,247,245,.14); background: var(--ink); color: #c5c9cc; }
.white-footer__top { min-height: 360px; display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(56px,7vw,110px); align-items: start; padding-top: 68px; padding-bottom: 58px; }
.white-brand--footer { color: var(--surface); font-size: 24px; }
.white-footer__brand p { max-width: 360px; margin: 24px 0 0; color: #9da4a9; line-height: 1.55; }
.white-footer__brand address { max-width: 390px; display: flex; flex-direction: column; gap: 7px; margin-top: 30px; color: #858e94; font-size: 12px; font-style: normal; line-height: 1.45; }
.white-footer__brand address strong { color: #c5c9cc; font-size: 12px; }
.white-footer__brand address a { width: fit-content; color: #c5c9cc; text-decoration: none; }
.white-footer__brand address a:hover { color: white; }
.white-footer__columns { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 34px; }
.white-footer__columns > div { display: flex; flex-direction: column; gap: 13px; }.white-footer__columns strong { margin-bottom: 8px; color: var(--surface); font-size: 13px; }.white-footer__columns a,.white-footer__bottom a { color: #aeb5ba; text-decoration: none; font-size: 13px; }.white-footer__columns a:hover,.white-footer__bottom a:hover { color: white; }
.white-footer__bottom { display: flex; justify-content: space-between; gap: 24px; padding-top: 26px; padding-bottom: 26px; border-top: 1px solid rgba(247,247,245,.12); font-size: 12px; }
.white-footer__bottom > div { display: flex; flex-wrap: wrap; gap: 20px; }

.motion-ready [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 680ms var(--ease-out), transform 680ms var(--ease-out); }
.motion-ready [data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.motion-ready .white-hero__copy [data-reveal]:nth-child(2) { transition-delay: 70ms; }
.motion-ready .white-hero__copy [data-reveal]:nth-child(3) { transition-delay: 140ms; }
.motion-ready .white-hero__copy [data-reveal]:nth-child(4) { transition-delay: 210ms; }

@keyframes intro-mark { from { opacity: 0; transform: scale(.78) rotate(-8deg); } to { opacity: 1; transform: scale(1) rotate(0); } }
@keyframes intro-exit { 0%,55% { opacity: 1; } 100% { opacity: 0; visibility: hidden; } }
@keyframes core-drift { from { transform: scale(1.28) translate3d(-.5%,0,0) rotateX(var(--rx)) rotateY(var(--ry)); } to { transform: scale(1.32) translate3d(.7%,-.6%,0) rotateX(var(--rx)) rotateY(var(--ry)); } }
@keyframes data-float { to { transform: translate3d(0,-9px,0); } }
@keyframes node-pulse { 0% { box-shadow: 0 0 0 0 rgba(242,141,63,.5); } 65%,100% { box-shadow: 0 0 0 14px rgba(242,141,63,0); } }
@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes progress-build { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes core-breathe { 0%,100% { opacity: .55; transform: scale(.88); } 50% { opacity: 1; transform: scale(1.12); } }
@keyframes orbit-one { to { transform: rotateX(68deg) rotateZ(368deg); } }
@keyframes orbit-two { to { transform: rotateY(66deg) rotateZ(342deg); } }
@keyframes orbit-three { to { transform: rotateX(62deg) rotateY(24deg) rotateZ(360deg); } }
@keyframes reactor-spark { 0% { box-shadow: 0 0 0 0 rgba(242,141,63,.48); opacity: .5; } 35% { opacity: 1; } 80%,100% { box-shadow: 0 0 0 16px rgba(242,141,63,0); opacity: .5; } }
@keyframes core-scan { 0%,12% { opacity: 0; transform: skewX(-8deg) translateX(0); } 28% { opacity: .8; } 62% { opacity: .35; transform: skewX(-8deg) translateX(356%); } 76%,100% { opacity: 0; transform: skewX(-8deg) translateX(400%); } }

@media (max-width: 1100px) {
  .white-nav__inner { grid-template-columns: 1fr auto; gap: 10px 24px; padding-top: 10px; }
  .white-nav__links { grid-column: 1/-1; width: 100%; display: flex; gap: 26px; overflow-x: auto; padding: 0 0 11px; scrollbar-width: none; }
  .white-nav__links::-webkit-scrollbar { display: none; }
  .white-nav__links a { flex: 0 0 auto; }
  .white-hero { height: auto; min-height: 0; grid-template-columns: 1fr; }
  .white-hero__copy { min-height: 650px; padding-left: 32px; }
  .white-hero__visual { position: relative; min-height: 560px; border-top: 1px solid var(--line); }
  .hero-core-poster,
  .hero-core-video { inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: center; transform: none; }
  .white-hero__visual::after {
    background: linear-gradient(180deg, rgba(196,191,185,.96), transparent 24% 80%, rgba(224,220,215,.65));
  }
  .capabilities__layout, .backoffice-story__layout, .faq-section__layout, .offer-ladder__layout, .sector-entry__head, .market-path__layout, .friction-map__layout, .production-standard__layout, .service-packs__head, .why-neuralhub__intro, .contact-choice__head, .newsletter-callout__inner, .white-footer__top { grid-template-columns: 1fr; }
  .service-pack,.service-pack--featured,.service-pack--wide,.service-pack--signal { grid-column: span 6; }
  .why-neuralhub__intro .text-link { grid-column: auto; }.why-neuralhub__benefits { grid-template-columns: 1fr 1fr; }.contact-choice__grid { grid-template-columns: 1fr; }.contact-choice__grid a,.contact-choice__grid a + a { min-height: 300px; padding: 30px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .offer-ladder__intro { position: static; }
  .friction-map__intro { position: static; }
  .sector-entry__links { grid-template-columns: 1fr; }
  .sector-entry__links a, .sector-entry__links a:first-child { min-height: 270px; padding: 30px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .capabilities__intro { position: static; }
  .capabilities__intro p { max-width: 700px; }
  .proof-band__inner { grid-template-columns: repeat(3,1fr); }
  .proof-band__inner > p { grid-column: 1/-1; min-height: 100px; padding-left: 0; border-top: 1px solid var(--line); }
  .implementation-map { grid-template-columns: 1fr; }
  .portfolio-gateway__inner, .white-final__inner { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .white-shell { width: min(100% - 32px, 620px); }
  .white-nav__inner { min-height: 68px; }
  .white-brand { font-size: 19px; }
  .white-brand img { width: 34px; height: 34px; }
  .white-nav__cta { min-height: 42px; padding: 0 14px; }
  .white-hero__copy { min-height: auto; padding: 76px 16px; }
  .white-hero h1 { font-size: clamp(46px,14vw,68px); }
  .white-hero h1 span { white-space: normal; }
  .white-hero__visual { min-height: 430px; }
  .white-data-rail { display: none; }
  .core-reactor { left: 66%; width: 72%; }
  .hero-particles { opacity: .58; }
  .business-rails { grid-template-columns: 1fr; }
  .business-rail, .business-rail:last-child { min-height: 330px; padding: 42px 24px; }
  .business-rail:first-child { padding-right: 24px; border-right: 0; border-bottom: 1px solid var(--line); }
  .business-rail__arrow { top: 36px; right: 24px; }
  .business-rail h2 { font-size: 52px; }
  .capability-line { grid-template-columns: 1fr; }
  .offer-ladder__list a { grid-template-columns: 1fr; }
  .offer-ladder__list span, .offer-ladder__list strong { grid-column: auto; grid-row: auto; }
  .service-packs__grid { grid-template-columns: 1fr; }.service-pack,.service-pack--featured,.service-pack--wide,.service-pack--signal { grid-column: auto; min-height: 350px; }.why-neuralhub__benefits { grid-template-columns: 1fr; }.why-neuralhub__benefits article,.why-neuralhub__benefits article:first-child { min-height: 240px; padding: 26px 0; border-right: 0; border-bottom: 1px solid rgba(36,40,44,.2); }
  .sector-entry__links p { min-height: 0; }
  .market-path li { grid-template-columns: 42px 1fr; }
  .market-path li em { grid-column: 2; margin-top: -22px; padding-bottom: 18px; }
  .friction-map__grid, .production-standard__items { grid-template-columns: 1fr; }
  .friction-card--wide { grid-column: auto; }
  .friction-card { min-height: 300px; padding: 26px; }
  .production-standard__items article { min-height: 220px; padding: 26px; }
  .capability-line > span { grid-row: auto; }
  .proof-band__inner { grid-template-columns: 1fr; }
  .proof-band__inner > div, .proof-band__inner > div:first-child, .proof-band__inner > p { min-height: 120px; padding: 24px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-band__inner > p { grid-column: auto; }
  .implementation-map__visual { aspect-ratio: 4 / 3; }
  .implementation-map__visual figcaption { display: none; }
  .backoffice-story h2, .software-stage h2, .faq-section h2 { font-size: 50px; }
  .stage-console__head { grid-template-columns: 1fr auto; }
  .stage-console__head span { grid-column: 1/-1; }
  .stage-console li { grid-template-columns: 32px 1fr; }
  .stage-console li em { display: none; }
  .software-stage__head { align-items: flex-start; flex-direction: column; }
  .product-reel a { width: 84vw; }
  .portfolio-gateway__inner { min-height: 450px; padding-top: 58px; padding-bottom: 58px; }
  .portfolio-gateway h2 { font-size: 52px; }
  .faq-list summary { font-size: 18px; }
  .white-final__inner { gap: 44px; }
  .white-final h2 { font-size: 58px; }
  .white-footer__top, .white-footer__bottom { align-items: flex-start; flex-direction: column; justify-content: center; }
  .faq-section__intro { position: static; }
  .faq-list { grid-template-columns: 1fr; }
  .white-footer__columns { grid-template-columns: 1fr 1fr; }.newsletter-callout form { grid-template-columns: 1fr; }.newsletter-callout label,.newsletter-callout input,.newsletter-callout button { grid-column: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .page-intro { display: none; }
  .live-band__track { transform: none; }
}

/* Internal hero comparison. Kept separate so the production landing can be decided from real renders. */
.hero-comparison-page { background: var(--surface); }
.hero-comparison__intro { padding: clamp(54px, 8vw, 110px) 0 clamp(42px, 6vw, 76px); }
.hero-comparison__intro p, .hero-comparison__label span { margin: 0 0 12px; color: var(--signal-strong); font-size: 13px; font-weight: 700; }
.hero-comparison__intro h1 { max-width: 760px; margin: 0 0 22px; font-size: clamp(42px, 6vw, 78px); line-height: .94; letter-spacing: -.04em; text-wrap: balance; }
.hero-comparison__intro a { color: var(--ink); font-weight: 700; text-underline-offset: 4px; }
.hero-comparison__variant { border-top: 1px solid var(--line); }
.hero-comparison__label { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; padding: 18px 0; }
.hero-comparison__label p { margin: 0; color: var(--ink-soft); font-size: 14px; }
.white-hero--comparison { height: min(760px, calc(100dvh - 76px)); min-height: 660px; }
.white-hero--comparison h2 { max-width: 720px; margin: 0 0 30px; font-size: clamp(58px, 6vw, 96px); line-height: .9; letter-spacing: -.04em; text-wrap: balance; }
.white-hero--comparison h2 span { display: block; white-space: nowrap; }
.white-hero--production { grid-template-columns: minmax(420px, .72fr) minmax(620px, 1.28fr); background: var(--hero-production-surface); }
.white-hero--production .white-hero__copy { padding-right: 28px; background: transparent; }
.white-hero__visual--production { position: relative; display: grid; place-items: center; overflow: hidden; background: transparent; }
.hero-production-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0, #000 7%, #000 93%, transparent 100%);
}
.hero-production-poster, .hero-production-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 12%, #000 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 12%, #000 100%);
}
.hero-production-video { position: absolute; z-index: 1; inset: 0; opacity: 0; transition: opacity 140ms linear; }
.hero-production-video--buffer { z-index: 2; }
.video-ready .hero-production-video { opacity: 1; }
.video-ready .hero-production-video:not(.is-loop-active) { opacity: 0; }
.video-ready .hero-production-video.is-loop-active { opacity: 1; }
.video-ready .hero-production-poster { opacity: 0; }
.white-hero__visual--production::after { display: none; }

@media (max-width: 1100px) {
  .white-hero--comparison { height: auto; min-height: 0; }
  .white-hero--production { grid-template-columns: 1fr; height: auto; min-height: 0; }
  .white-hero--production .white-hero__copy { padding-right: 32px; background: transparent; }
  .white-hero__visual--production { aspect-ratio: 16 / 9; min-height: 0; }
}

@media (max-width: 760px) {
  .hero-comparison__intro { padding-right: 0; padding-left: 0; }
  .hero-comparison__label { align-items: flex-start; flex-direction: column; gap: 4px; }
  .white-hero--comparison .white-hero__copy { padding: 66px 16px; }
  .white-hero--comparison h2 { font-size: clamp(46px, 14vw, 68px); }
  .white-hero--comparison h2 span { white-space: normal; }
  .white-hero--production .white-hero__copy { padding: 76px 16px; }
  .white-hero--production h1 span { white-space: normal; }
  .white-hero__visual--production { min-height: 0; aspect-ratio: 16 / 9; }
}
