:root {
  --ink: #0a0a0a;
  --paper: #f5f0e5;
  --paper-deep: #e7dec8;
  --paper-soft: #f8f4ea;
  --line: rgba(10, 10, 10, 0.12);
  --line-strong: rgba(255, 255, 255, 0.12);
  --muted: rgba(10, 10, 10, 0.66);
  --muted-strong: rgba(10, 10, 10, 0.84);
  --muted-invert: rgba(255, 255, 255, 0.74);
  --yellow: #ffe100;
  --yellow-soft: #f5d74e;
  --blue-glow: rgba(58, 187, 255, 0.9);
  --surface-dark: #0a0a0a;
  --surface-dark-soft: #111111;
  --radius-l: 28px;
  --radius-xl: 40px;
  --shadow-soft: 0 24px 60px rgba(10, 10, 10, 0.12);
  --shadow-dark: 0 30px 80px rgba(0, 0, 0, 0.35);
  --site-width: 1180px;
  --header-height: 5rem;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--paper-soft) 0%, var(--paper) 48%, var(--paper-deep) 100%);
}

body.menu-open {
  overflow: hidden;
}

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

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

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.045em;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  z-index: 200;
}

.skip-link:focus {
  top: 1rem;
}

.page-shell {
  min-height: 100vh;
  overflow: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 8, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner,
.section-shell,
.section-inner,
.footer-inner,
.hero-inner,
.hero-band {
  width: min(calc(100% - 2rem), var(--site-width));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand img {
  width: min(10.5rem, 48vw);
}

.brand-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.32rem 0.85rem;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  width: 1.1rem;
  height: 2px;
  margin: 0 auto;
  background: #fff;
  transition: transform 0.24s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(0.18rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-0.18rem) rotate(-45deg);
}

.site-nav {
  position: fixed;
  inset: var(--header-height) 1rem auto;
  transform: translateY(-0.75rem) scale(0.98);
  transform-origin: top right;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.site-nav.is-open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.nav-links {
  display: grid;
  gap: 0.4rem;
  margin: 0;
  padding: 0.85rem;
  list-style: none;
  border: 1px solid var(--line-strong);
  border-radius: 1.6rem;
  background: rgba(12, 12, 12, 0.98);
  box-shadow: var(--shadow-dark);
}

.nav-links a {
  display: block;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  color: #fff;
  font-size: 0.98rem;
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(255, 225, 0, 0.14);
  color: var(--yellow);
  outline: none;
}

.hero {
  --hero-progress: 0;
  position: relative;
  color: #fff;
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 225, 0, 0.24), transparent 22%),
    radial-gradient(circle at 88% 18%, rgba(58, 187, 255, 0.18), transparent 20%),
    linear-gradient(180deg, #050505 0%, #101010 58%, #090909 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.14;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 88%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: center;
  min-height: calc(100svh - var(--header-height));
  padding: 2rem 0 1rem;
}

.hero-kicker,
.section-tag,
.reference-domain {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-kicker::before,
.section-tag::before,
.reference-domain::before {
  content: "";
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 999px;
  background: var(--yellow);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 38rem;
}

.hero-brand {
  margin-top: 0.9rem;
  font-size: clamp(4rem, 16vw, 8rem);
  line-height: 0.84;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.hero-brand span {
  display: block;
}

.hero-promise {
  max-width: 13ch;
  margin-top: 1rem;
  font-size: clamp(1.55rem, 4.4vw, 3.2rem);
  font-weight: 600;
  line-height: 0.98;
  color: rgba(255, 255, 255, 0.96);
}

.hero-intro,
.section-heading p,
.service-row p,
.proof-feature p,
.model-intro p,
.process-step p,
.contact-copy p,
.contact-value,
.legal-block p,
.legal-list {
  line-height: 1.62;
}

.hero-intro {
  max-width: 33rem;
  margin-top: 1.4rem;
  color: var(--muted-invert);
  font-size: 1.05rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0.9rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  background: var(--yellow);
  color: var(--ink);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.hero-stage {
  position: relative;
}

.hero-stage-surface {
  position: relative;
  min-height: clamp(26rem, 66vw, 39rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: clamp(2rem, 6vw, 3rem);
  background:
    radial-gradient(circle at 14% 82%, rgba(58, 187, 255, 0.22), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(255, 225, 0, 0.2), transparent 26%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0)),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-dark);
  transform:
    translate3d(0, calc(var(--hero-progress) * -2.5rem), 0)
    rotate(calc(var(--hero-progress) * -2deg))
    scale(calc(1 - (var(--hero-progress) * 0.04)));
  transform-origin: center;
  will-change: transform;
}

.hero-stage-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.24;
}

.hero-stage-surface::after {
  content: "";
  position: absolute;
  right: 6%;
  bottom: 8%;
  width: 42%;
  height: 42%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 225, 0, 0.22), transparent 70%);
  filter: blur(22px);
}

.hero-stage-meta {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.64);
}

.hero-stage-axis {
  position: absolute;
  top: 50%;
  z-index: 2;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.hero-stage-axis-left {
  left: -2.45rem;
  transform: translateY(-50%) rotate(-90deg);
}

.hero-stage-axis-right {
  right: -2.1rem;
  transform: translateY(-50%) rotate(90deg);
}

.hero-stage-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  gap: 0.3rem;
  width: min(11rem, 34%);
  padding: 1rem;
  border-radius: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 225, 0, 0.96), rgba(245, 215, 78, 0.9));
  color: var(--ink);
  text-align: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 50px rgba(255, 225, 0, 0.2);
}

.hero-stage-core p {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.hero-stage-core span {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-lanes {
  position: absolute;
  inset: 4.5rem 1rem 1rem;
  display: grid;
  gap: 1rem;
  align-content: center;
}

.hero-lane {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  min-height: 6.25rem;
  padding: 1.15rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.6rem;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.hero-lane::before {
  content: "";
  position: absolute;
  left: 34%;
  right: 16%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 225, 0, 0.92), rgba(255, 255, 255, 0.18));
}

.hero-lane-copy,
.hero-lane-output {
  position: relative;
  z-index: 2;
}

.hero-lane-domain {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.hero-lane-text {
  margin-top: 0.35rem;
  color: var(--muted-invert);
  font-size: 0.95rem;
}

.hero-lane-output {
  max-width: 11rem;
  font-size: 0.9rem;
  line-height: 1.34;
  text-align: right;
  color: rgba(255, 255, 255, 0.86);
}

.hero-band {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.75rem;
  padding: 1rem 0 2rem;
  transform: translateY(calc(var(--hero-progress) * -1rem));
}

.hero-band p {
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.96rem;
  font-weight: 600;
}

.section,
.section-inner {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section-support {
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 225, 0, 0.14), transparent 20%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-deep) 100%);
}

.section-heading {
  display: grid;
  gap: 1rem;
  max-width: 40rem;
}

.section-heading h2,
.model-intro h2,
.contact-copy h2,
.legal-intro h2 {
  font-size: clamp(2.4rem, 7vw, 4.9rem);
}

.section-heading p {
  color: var(--muted);
}

.support-shell {
  display: grid;
  gap: 2rem;
}

.service-list {
  display: grid;
}

.service-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
  transition: padding-left 0.18s ease, color 0.18s ease;
}

.service-row:last-child {
  border-bottom: 1px solid var(--line);
}

.service-row:hover,
.service-row:focus-within {
  padding-left: 0.35rem;
}

.service-index {
  padding-top: 0.15rem;
  color: rgba(10, 10, 10, 0.48);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-row h3 {
  font-size: clamp(1.5rem, 4vw, 2.15rem);
}

.service-row p:last-child {
  margin-top: 0.6rem;
  color: var(--muted);
}

.proof-section {
  color: #fff;
  background:
    radial-gradient(circle at 14% 10%, rgba(255, 225, 0, 0.12), transparent 18%),
    radial-gradient(circle at 88% 18%, rgba(58, 187, 255, 0.14), transparent 18%),
    linear-gradient(180deg, #090909 0%, #121212 100%);
}

.section-heading-dark p,
.model-intro p {
  color: var(--muted-invert);
}

.section-heading-dark .section-tag::before {
  background: var(--yellow-soft);
}

.proof-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.proof-feature {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 18rem;
  padding: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-l);
  background:
    radial-gradient(circle at top right, rgba(255, 225, 0, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.proof-feature:hover,
.proof-feature:focus-within {
  transform: translateY(-4px);
  border-color: rgba(255, 225, 0, 0.24);
}

.proof-feature-primary {
  min-height: 24rem;
  background:
    radial-gradient(circle at 88% 14%, rgba(255, 225, 0, 0.2), transparent 26%),
    radial-gradient(circle at 20% 80%, rgba(58, 187, 255, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
}

.proof-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reference-domain {
  color: #fff;
}

.proof-feature h3 {
  max-width: 13ch;
  margin-top: 1rem;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.proof-feature p {
  max-width: 28rem;
  margin-top: 0.8rem;
  color: var(--muted-invert);
}

.reference-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.5rem;
  color: var(--yellow);
  font-weight: 700;
}

.reference-link::after {
  content: "\2197";
  transition: transform 0.18s ease;
}

.reference-link:hover::after,
.reference-link:focus-visible::after {
  transform: translate(0.18rem, -0.18rem);
}

.reference-link:focus-visible {
  outline: none;
}

.model-band {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.model-quote {
  max-width: 34rem;
  font-family: "Instrument Serif", serif;
  font-size: clamp(1.45rem, 3.4vw, 2.2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.model-grid {
  display: grid;
  gap: 1.5rem;
}

.model-points {
  display: grid;
  gap: 0.85rem;
}

.model-points p {
  padding-top: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  font-weight: 600;
}

.process-list {
  display: grid;
  gap: 1rem;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.04);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.process-step h3 {
  font-size: 1.45rem;
}

.process-step p {
  margin-top: 0.55rem;
  color: var(--muted-invert);
}

.contact-section {
  background:
    radial-gradient(circle at 84% 16%, rgba(255, 225, 0, 0.16), transparent 18%),
    linear-gradient(180deg, var(--paper-soft) 0%, var(--paper-deep) 100%);
}

.contact-shell {
  display: grid;
  gap: 2rem;
  align-items: end;
}

.contact-copy {
  display: grid;
  gap: 1rem;
  max-width: 40rem;
}

.contact-copy p:last-of-type {
  color: var(--muted);
}

.contact-meta {
  display: grid;
  gap: 1rem;
}

.contact-item {
  padding: 1rem 0 1.2rem;
  border-top: 1px solid var(--line);
}

.contact-item:last-child {
  border-bottom: 1px solid var(--line);
}

.contact-label {
  color: rgba(10, 10, 10, 0.52);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-value {
  display: inline-block;
  margin-top: 0.45rem;
  color: var(--muted-strong);
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.legal-shell {
  display: grid;
  gap: 1.5rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.legal-columns {
  display: grid;
  gap: 1.25rem;
}

.legal-block {
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
}

.legal-block p:first-child {
  color: var(--muted-strong);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-block p + p {
  margin-top: 0.8rem;
  color: var(--muted);
}

.legal-list {
  display: grid;
  gap: 0.6rem;
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.site-footer {
  background: #050505;
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.35rem 0 1.5rem;
  font-size: 0.96rem;
}

.js .hero-copy > * {
  opacity: 0;
  animation: hero-item-in 0.78s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.js .hero-copy > *:nth-child(1) {
  animation-delay: 0.06s;
}

.js .hero-copy > *:nth-child(2) {
  animation-delay: 0.14s;
}

.js .hero-copy > *:nth-child(3) {
  animation-delay: 0.24s;
}

.js .hero-copy > *:nth-child(4) {
  animation-delay: 0.34s;
}

.js .hero-copy > *:nth-child(5) {
  animation-delay: 0.44s;
}

.js .hero-stage-surface,
.js .hero-band {
  opacity: 0;
}

.js body.is-ready .hero-stage-surface {
  animation: hero-stage-in 0.96s cubic-bezier(0.22, 1, 0.36, 1) 0.28s forwards;
}

.js body.is-ready .hero-band {
  animation: hero-item-in 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.56s forwards;
}

.js [data-scroll-reveal] {
  opacity: 0;
  transform: translateY(1.2rem);
  transition: opacity 0.62s ease, transform 0.62s ease;
}

.js [data-scroll-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-item-in {
  from {
    opacity: 0;
    transform: translateY(1.4rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-stage-in {
  from {
    opacity: 0;
    transform: translate3d(0, 2rem, 0) rotate(3deg) scale(0.96);
  }

  to {
    opacity: 1;
    transform:
      translate3d(0, calc(var(--hero-progress) * -2.5rem), 0)
      rotate(calc(var(--hero-progress) * -2deg))
      scale(calc(1 - (var(--hero-progress) * 0.04)));
  }
}

@media (min-width: 720px) {
  .header-inner,
  .section-shell,
  .section-inner,
  .footer-inner,
  .hero-inner,
  .hero-band {
    width: min(calc(100% - 3rem), var(--site-width));
  }

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

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

  .proof-feature-primary {
    grid-column: 1 / -1;
  }
}

@media (min-width: 960px) {
  :root {
    --header-height: 5.5rem;
  }

  .brand img {
    width: 12.5rem;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    inset: auto;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-links a {
    padding: 0.7rem 0.95rem;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    gap: 3rem;
    padding-top: 2.5rem;
  }

  .hero-band {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    padding-bottom: 2.25rem;
  }

  .support-shell {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 4rem;
    align-items: start;
  }

  .section-heading-sticky {
    position: sticky;
    top: 7rem;
  }

  .proof-grid {
    grid-template-columns: 1.35fr 1fr;
  }

  .proof-feature-primary {
    grid-column: auto;
    grid-row: span 2;
  }

  .model-grid {
    grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
    gap: 2rem;
    align-items: start;
  }

  .process-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process-step {
    grid-template-columns: 1fr;
    align-content: start;
  }

  .contact-shell {
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
    gap: 4rem;
  }

  .contact-meta {
    padding-left: 1rem;
  }

  .legal-shell {
    grid-template-columns: minmax(0, 0.62fr) minmax(0, 1.38fr);
    align-items: start;
  }

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

@media (max-width: 959px) {
  .hero-stage-axis,
  .hero-lane-output {
    display: none;
  }

  .hero-stage-core {
    top: auto;
    bottom: 1rem;
    left: 1rem;
    transform: none;
  }

  .hero-lane::before {
    left: 52%;
    right: 12%;
  }
}

@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;
    scroll-behavior: auto !important;
  }

  .hero-stage-surface,
  .hero-band {
    transform: none !important;
  }
}
