:root {
  color-scheme: light;
  --ink: #111814;
  --ink-soft: #354039;
  --paper: #f5f7f2;
  --white: #f8faf6;
  --lime: #c7f43d;
  --lime-dark: #4f7000;
  --line: rgba(17, 24, 20, .16);
  --muted: #59645c;
  --shell: min(1380px, calc(100vw - 64px));
  --header-h: 86px;
  --safe-top: env(safe-area-inset-top, 0px);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--safe-top));
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

html.menu-open,
body.menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}

body.menu-open {
  position: fixed;
  top: var(--menu-scroll-offset, 0px);
  right: 0;
  left: 0;
  width: 100%;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }

a:focus-visible,
button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 16px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.page-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 220;
  height: 3px;
  overflow: hidden;
  pointer-events: none;
}

.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: calc(var(--header-h) + var(--safe-top));
  padding-top: var(--safe-top);
  color: var(--white);
  transition: background-color .3s ease, height .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  height: calc(72px + var(--safe-top));
  background: rgba(17, 24, 20, .94);
  border-color: rgba(255, 255, 255, .12);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: var(--shell);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.brand { width: 188px; text-decoration: none; }
.brand img { width: 100%; height: auto; }

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.4vw, 42px);
  font-size: 14px;
  font-weight: 680;
}

.site-nav a {
  position: relative;
  text-decoration: none;
  transition: color .2s ease;
}

.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 13px 16px 13px 20px;
  background: var(--lime);
  color: var(--ink);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}

.nav-cta span { font-size: 17px; }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .25);
  background: transparent;
  color: inherit;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  position: absolute;
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: transform .25s ease;
}

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

.hero {
  --hero-progress: 0;
  --hero-content-y: 0px;
  --hero-content-opacity: 1;
  --hero-grid-x: 0px;
  --hero-veil: .08;
  --hero-letterbox: 0;
  --hero-meta-opacity: 1;
  position: relative;
  min-height: 780px;
  height: 100svh;
  max-height: 1080px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  isolation: isolate;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  z-index: 6;
  height: clamp(10px, 2.2vh, 24px);
  background: var(--ink);
  transform: scaleY(var(--hero-letterbox));
  pointer-events: none;
}

.hero::before { top: 0; transform-origin: top center; }
.hero::after { bottom: 0; transform-origin: bottom center; }

.hero-wall,
.hero-media,
.hero-shade,
.hero-grid {
  position: absolute;
  top: 0;
  bottom: 0;
}

.hero-wall {
  z-index: -5;
  display: none;
  left: 0;
  width: 38.2%;
  overflow: hidden;
  background: #141c18;
}

.hero-media {
  z-index: -4;
  inset: 0;
  width: 100%;
  overflow: hidden;
  background: var(--ink);
}

.cinematic-stage {
  overflow: hidden;
  background: var(--ink);
}

.cinematic-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.cinematic-stage .scene-static {
  opacity: 1;
  transform: none !important;
  animation: none !important;
  transition: none !important;
  will-change: auto;
  backface-visibility: hidden;
}

.panel-light {
  position: absolute;
  top: 3%;
  right: -3%;
  width: 24%;
  height: 48%;
  background: radial-gradient(circle at 68% 42%, rgba(199, 244, 61, .25), transparent 62%);
  mix-blend-mode: screen;
  opacity: .34;
  pointer-events: none;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(5, 13, 10);
  opacity: var(--hero-veil);
}

.hero-divider {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 38.2%;
  width: 1px;
  background: rgba(255, 255, 255, .25);
}

.hero-divider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--lime);
  transform: scaleY(var(--hero-progress));
  transform-origin: top center;
}

.hero-shade {
  z-index: -3;
  left: 0;
  width: 61.8%;
  background: linear-gradient(90deg, rgba(5, 13, 10, .48), rgba(5, 13, 10, .2) 61.8%, transparent);
}

.hero-shade::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 13, 10, .14);
}

.hero-shade::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 170px;
  background: rgba(5, 13, 10, .32);
}

.hero-grid {
  z-index: -2;
  left: max(32px, calc((100vw - 1380px) / 2));
  right: max(32px, calc((100vw - 1380px) / 2));
  border-right: 1px solid rgba(255, 255, 255, .12);
  border-left: 1px solid rgba(255, 255, 255, .12);
  transform: translate3d(var(--hero-grid-x), 0, 0);
}

.hero-grid::before,
.hero-grid::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, .1);
}

.hero-grid::before { left: 38.2%; }
.hero-grid::after { left: 61.8%; }

.hero-content {
  width: var(--shell);
  height: 100%;
  min-height: 780px;
  margin: 0 auto;
  padding-top: clamp(150px, 18vh, 220px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: var(--hero-content-opacity);
  transform: translate3d(0, var(--hero-content-y), 0);
}

.hero-content > * { max-width: calc(38.2% - 22px); }

.eyebrow,
.section-index {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-size: 12px;
  font-weight: 780;
  line-height: 1;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--lime);
}

.hero h1 {
  max-width: 780px;
  margin: 32px 0 0;
  font-size: clamp(58px, 6.6vw, 106px);
  font-weight: 720;
  line-height: .87;
  letter-spacing: -.067em;
  text-wrap: balance;
}

.hero h1 em,
.display-title em,
.contact h2 em {
  color: var(--lime);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-lead {
  max-width: 580px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.5;
}

.hero .hero-logo {
  width: min(500px, 31vw);
  max-width: none;
  margin: 42px 0 0;
  font-size: 0;
  line-height: 1;
  letter-spacing: 0;
}

.hero-logo img { width: 100%; height: auto; }

.hero-statement {
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(18px, 1.45vw, 23px);
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: -.02em;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 38px;
}

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 0 24px;
  border: 1px solid transparent;
  color: inherit;
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}

.button-primary { background: var(--lime); color: var(--ink); }
.button-primary b { font-size: 18px; }
.button-ghost { border-color: rgba(255, 255, 255, .4); background: rgba(17, 24, 20, .22); }
.hero-meta {
  position: absolute;
  right: max(32px, calc((100vw - 1380px) / 2));
  bottom: 45px;
  display: flex;
  gap: 26px;
  color: rgba(255, 255, 255, .67);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: var(--hero-meta-opacity);
}

.hero-meta span { display: flex; align-items: center; gap: 10px; }
.hero-meta span::before { content: ""; width: 4px; height: 4px; background: var(--lime); }

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: max(32px, calc((100vw - 1380px) / 2));
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, .74);
  font-size: 11px;
  font-weight: 740;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  opacity: var(--hero-meta-opacity);
}

.scroll-cue i {
  position: relative;
  width: 1px;
  height: 44px;
  overflow: hidden;
  background: rgba(255, 255, 255, .35);
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--lime);
  transform: translateY(100%);
}

.service-ticker {
  position: relative;
  height: 74px;
  overflow: hidden;
  contain: paint;
  background: var(--lime);
  color: var(--ink);
}

.ticker-track {
  position: absolute;
  left: -16px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  transform: translate3d(var(--ticker-shift, 0px), 0, 0);
  will-change: transform;
}

.ticker-track span {
  font-size: 18px;
  font-weight: 760;
  letter-spacing: -.02em;
  white-space: nowrap;
}

.ticker-track i { width: 7px; height: 7px; background: var(--ink); transform: rotate(45deg); }

.section {
  --section-accent: var(--lime-dark);
  --section-progress: 0;
  position: relative;
  padding: clamp(100px, 10vw, 170px) 0;
}

.has-js .section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 8;
  height: 2px;
  background: var(--section-accent);
  transform: scaleX(var(--section-progress));
  transform-origin: left center;
  pointer-events: none;
  will-change: transform;
}
.section-shell { width: var(--shell); margin: 0 auto; }

.section-index { color: var(--muted); }
.section-index span { color: var(--lime-dark); }

.display-title {
  margin: 28px 0 0;
  font-size: clamp(50px, 6.2vw, 94px);
  font-weight: 690;
  line-height: .98;
  letter-spacing: -.064em;
}

.display-title em {
  color: var(--ink);
  letter-spacing: -.038em;
}

.promise { background: var(--paper); }

.promise-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, .55fr);
  gap: clamp(70px, 10vw, 160px);
  align-items: end;
}

.promise-copy {
  padding-bottom: 6px;
  font-size: 21px;
  line-height: 1.48;
  letter-spacing: -.02em;
}

.promise-copy p { margin: 0; }
.promise-rule { width: 100%; height: 1px; margin: 36px 0; background: var(--line); }
.promise-copy .small-copy { color: var(--muted); font-size: 15px; line-height: 1.65; }

.advantages {
  --section-accent: var(--lime);
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.advantages::before {
  content: "";
  position: absolute;
  top: -220px;
  right: -170px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(199, 244, 61, .22);
  transform: rotate(45deg);
}

.advantages-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, .5fr);
  column-gap: clamp(60px, 7vw, 110px);
  align-items: end;
}

.advantages .section-index { grid-column: 1 / -1; color: rgba(255, 255, 255, .5); }
.advantages .section-index span { color: var(--lime); }
.advantages .display-title { grid-column: 1; color: var(--white); }
.advantages .display-title em { color: var(--lime); font-size: .92em; }

.advantages-intro {
  grid-column: 2;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, .62);
  font-size: 18px;
  line-height: 1.62;
}

.advantages-grid {
  margin-top: 78px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.advantage-card {
  position: relative;
  min-height: 350px;
  padding: clamp(28px, 3.4vw, 48px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .15);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
  transition: transform .28s ease, border-color .28s ease;
}

.advantage-card::after { content: ""; position: absolute; right: 30px; bottom: 30px; width: 48px; height: 1px; background: currentColor; opacity: .32; }
.advantage-number { align-self: flex-end; font-size: 11px; font-weight: 820; letter-spacing: .16em; opacity: .55; }
.advantage-label { margin: auto 0 18px; font-size: 10px; font-weight: 840; letter-spacing: .18em; text-transform: uppercase; opacity: .62; }
.advantage-card h3 { max-width: 760px; margin: 0; font-size: clamp(34px, 3.9vw, 62px); font-weight: 650; line-height: .99; letter-spacing: -.05em; text-wrap: balance; }
.advantage-card > p:last-of-type { max-width: 630px; margin: 24px 0 0; font-size: 15px; line-height: 1.6; opacity: .67; }
.advantage-experience { grid-column: span 7; min-height: 440px; background: var(--lime); color: var(--ink); border-color: var(--lime); }
.advantage-experience .advantage-label { opacity: .7; }
.advantage-software { grid-column: span 5; min-height: 440px; background: #202921; }
.advantage-software h3 { font-size: clamp(34px, 3.35vw, 52px); }
.advantage-integrated { grid-column: span 5; background: #e8ede4; color: var(--ink); border-color: #e8ede4; }
.advantage-integrated h3 { font-size: clamp(32px, 3.2vw, 50px); }
.advantage-proof { grid-column: span 7; background: #171f1a; }
.advantage-proof::before { content: ""; position: absolute; inset: 0 0 auto auto; width: 130px; height: 130px; border-left: 1px solid rgba(199, 244, 61, .25); border-bottom: 1px solid rgba(199, 244, 61, .25); }
.software-signal { margin-top: 28px; display: flex; align-items: center; gap: 10px; color: var(--lime); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.software-signal i { width: 8px; height: 8px; background: var(--lime); }

.services { padding-top: 10px; background: var(--paper); }
.section-heading { margin-bottom: 64px; }

.service-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.service-card {
  --mx: 50%;
  --my: 50%;
  position: relative;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  padding: clamp(30px, 4vw, 58px);
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
  transition: transform .28s ease;
  transform-style: preserve-3d;
}

.service-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  left: calc(var(--mx) - 90px);
  top: calc(var(--my) - 90px);
  border: 1px solid currentColor;
  opacity: .08;
  transform: rotate(45deg);
  pointer-events: none;
}

.service-card-dark { background: var(--ink); color: var(--white); }
.service-card-light { background: var(--lime); color: var(--ink); }

.service-card-head { display: flex; align-items: flex-start; justify-content: space-between; }
.service-number { font-size: 12px; font-weight: 820; letter-spacing: .16em; }
.service-card-head svg { width: 72px; height: 72px; fill: none; stroke: currentColor; stroke-width: 1.5; }

.service-card > div:nth-child(2) { margin-top: 100px; }
.card-label { margin: 0 0 18px; font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; opacity: .58; }
.service-card h3 { max-width: 560px; margin: 0; font-size: clamp(40px, 4.2vw, 66px); line-height: .96; letter-spacing: -.055em; }
.service-card > div:nth-child(2) > p:last-child { max-width: 560px; margin: 26px 0 0; font-size: 17px; line-height: 1.58; opacity: .72; }

.service-card ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 26px;
  margin: auto 0 36px;
  padding: 0;
  list-style: none;
  border-top: 1px solid currentColor;
}

.service-card li {
  position: relative;
  padding: 16px 0 16px 17px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  line-height: 1.35;
  opacity: .76;
}

.service-card li::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 0;
  width: 5px;
  height: 5px;
  background: currentColor;
}

.service-card-dark ul, .service-card-dark li { border-color: rgba(255, 255, 255, .2); }
.service-card-light ul, .service-card-light li { border-color: rgba(17, 24, 20, .25); }

.card-link {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid currentColor;
  font-size: 13px;
  font-weight: 780;
  text-decoration: none;
}

.card-link span { font-size: 17px; transition: transform .2s ease; }
.service-story {
  padding-top: 50px;
  background: var(--paper);
}

.service-story .section-heading {
  padding-top: 90px;
  padding-bottom: 80px;
  margin: 0;
  border-top: 1px solid var(--line);
}

.story-layout {
  width: 100vw;
  margin-left: calc((100vw - var(--shell)) / -2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: start;
  border-top: 1px solid var(--line);
}

.story-steps {
  min-width: 0;
  padding-right: clamp(42px, 6vw, 100px);
  padding-left: max(32px, calc((100vw - 1380px) / 2));
}

.story-step {
  min-height: min(820px, 88vh);
  padding: clamp(80px, 12vh, 130px) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 1;
  transition: none;
  border-top: 0;
  border-bottom: 1px solid var(--line);
}

.story-step:last-child { border-bottom: 0; }

.story-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.story-kicker span { color: var(--lime-dark); }

.story-step h3 {
  max-width: 590px;
  margin: 0;
  font-size: clamp(47px, 4.8vw, 74px);
  font-weight: 650;
  line-height: .95;
  letter-spacing: -.06em;
}

.story-step > p:not(.story-kicker) {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
}

.story-step ul {
  max-width: 580px;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.story-step li {
  position: relative;
  padding: 13px 0 13px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.story-step li::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--lime-dark);
}

.story-link {
  max-width: 580px;
  margin-top: 34px;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.story-link span { transition: transform .2s ease; }
.story-visual {
  position: sticky;
  top: 72px;
  height: calc(100vh - 72px);
  height: calc(100svh - 72px);
  min-height: 0;
  max-height: none;
  overflow: hidden;
  background: var(--ink);
  border-left: 1px solid var(--line);
}

.story-cinematic {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.story-cinematic .cinematic-layer {
  object-position: 78% center;
}

.story-cinematic::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8, 13, 10, .82) 100%);
  pointer-events: none;
}

.story-scene {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 1;
  pointer-events: none;
}

.story-scene::before {
  content: none;
}

.story-scene-static { opacity: 1; }

.scene-caption {
  position: absolute;
  right: 36px;
  bottom: 88px;
  left: 36px;
  z-index: 2;
  display: grid;
  gap: 8px;
  color: var(--white);
}

.scene-caption span {
  color: var(--lime);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.scene-caption b {
  font-size: clamp(30px, 3.8vw, 56px);
  line-height: .95;
  letter-spacing: -.05em;
}

.work-tags {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.work-tags span {
  padding: 9px 11px;
  color: var(--ink);
  background: var(--lime);
  font-size: 9px;
  font-weight: 820;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.story-progress {
  position: absolute;
  right: 36px;
  bottom: 30px;
  left: 36px;
  z-index: 5;
  display: grid;
  grid-template-columns: 24px 1fr 24px;
  gap: 12px;
  align-items: center;
  color: rgba(255, 255, 255, .7);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
}

.story-progress i { position: relative; height: 1px; overflow: hidden; background: rgba(255, 255, 255, .32); }
.story-progress b {
  position: absolute;
  inset: 0;
  width: 100%;
  background: var(--lime);
  transform: scaleX(var(--story-progress, .3333));
  transform-origin: left center;
  will-change: transform;
}
.mobile-step-visual { display: none; }

@media (min-width: 821px) {
  .has-js .story-step { transition: none; }
}

.approach { background: #e7ebe3; }
.approach-top { display: grid; grid-template-columns: 1.25fr .75fr; gap: 80px; align-items: end; }
.approach-intro { max-width: 510px; margin: 0 0 12px; color: var(--ink-soft); font-size: 20px; line-height: 1.55; }

.process-list { margin: 90px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }

.process-list li {
  display: grid;
  grid-template-columns: 92px 1fr 46px;
  gap: 40px;
  align-items: center;
  min-height: 168px;
  border-bottom: 1px solid var(--line);
  transition: background-color .25s ease;
}

.process-count { color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .15em; }
.process-list li > div { display: grid; grid-template-columns: minmax(260px, .7fr) 1fr; align-items: center; gap: 60px; }
.process-list h3 { margin: 0; font-size: clamp(32px, 4vw, 58px); font-weight: 650; letter-spacing: -.05em; }
.process-list p { max-width: 480px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.6; }
.process-arrow { font-size: 26px; text-align: right; }

.control {
  --section-accent: var(--lime);
  --control-rotation: 0deg;
  --control-rotation-reverse: 0deg;
  --phone-shift: 0px;
  overflow: hidden;
  padding: 0;
  background: var(--ink);
  color: var(--white);
}

.control-stage {
  width: var(--shell);
  min-height: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 130px);
  align-items: center;
}

.control .section-index { color: rgba(255, 255, 255, .52); }
.control .display-title { color: var(--white); }
.control .display-title em { color: var(--lime); }
.control-copy > p:not(.section-index) { max-width: 590px; margin: 34px 0 0; color: rgba(255, 255, 255, .63); font-size: 18px; line-height: 1.6; }

.control-points { margin: 52px 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(255, 255, 255, .16); }
.control-points li { display: grid; grid-template-columns: 150px 1fr; gap: 24px; padding: 18px 0; border-bottom: 1px solid rgba(255, 255, 255, .16); }
.control-points b { font-size: 14px; }
.control-points span { color: rgba(255, 255, 255, .5); font-size: 13px; }

.phone-scene {
  position: relative;
  min-height: 780px;
  display: grid;
  place-items: center;
}

.phone-scene::before {
  content: "";
  position: absolute;
  inset: 80px -200px;
  background: var(--lime);
  clip-path: polygon(24% 0, 100% 0, 76% 100%, 0 100%);
}

.orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(17, 24, 20, .28);
  border-radius: 50%;
  transform: rotate(var(--control-rotation));
  will-change: transform;
}

.orbit::before { content: ""; position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--ink); top: 16%; left: 10%; }
.orbit-one { width: 570px; height: 570px; }
.orbit-two { width: 710px; height: 710px; transform: rotate(var(--control-rotation-reverse)); }
.orbit-two::before { top: 75%; left: 86%; width: 6px; height: 6px; }

.phone {
  position: relative;
  z-index: 3;
  width: 330px;
  padding: 10px;
  background: #0b0e0c;
  border: 1px solid rgba(255, 255, 255, .36);
  border-radius: 42px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .35);
  transform: translate3d(0, var(--phone-shift), 0) rotate(3deg);
  will-change: transform;
}

.phone-top {
  height: 36px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #121713;
  background: #f6f7f3;
  border-radius: 32px 32px 0 0;
  font-size: 10px;
}

.phone-top i { width: 78px; height: 22px; margin-left: 22px; background: #090b0a; border-radius: 20px; }
.phone-top b { letter-spacing: 1px; }
.phone-body { min-height: 620px; padding: 22px 18px 14px; color: var(--ink); background: #f6f7f3; border-radius: 0 0 32px 32px; }
.phone-kicker { margin: 0; color: #626b65; font-size: 10px; font-weight: 720; }
.phone-body > h3 { margin: 6px 0 20px; font-size: 30px; letter-spacing: -.05em; }
.phone-status { display: flex; align-items: center; gap: 8px; padding: 10px 11px; background: #e7eadf; font-size: 10px; font-weight: 650; }
.phone-status i { width: 6px; height: 6px; background: #e6a116; border-radius: 50%; }
.object-card { margin-top: 16px; padding: 17px 15px; display: flex; justify-content: space-between; align-items: end; background: var(--ink); color: var(--white); clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%); }
.object-card div { display: grid; gap: 7px; }
.object-tag { color: var(--lime); font-size: 8px; font-weight: 800; letter-spacing: .14em; }
.object-card b { font-size: 13px; }
.object-progress { font-size: 18px; font-weight: 780; }
.task-row { margin-top: 10px; padding: 13px; display: flex; gap: 11px; align-items: center; border: 1px solid #dce1db; background: #fff; }
.task-row > span { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 auto; background: #eef0ec; font-size: 18px; font-weight: 700; }
.task-row.complete > span { background: var(--lime); }
.task-row div { display: grid; gap: 3px; }
.task-row b { font-size: 12px; }
.task-row small { color: #606963; font-size: 9px; }
.phone-submit { width: 100%; height: 48px; margin-top: 16px; padding: 0 14px; display: flex; justify-content: space-between; align-items: center; color: var(--ink); background: var(--lime); font-weight: 800; font-size: 11px; }
.phone-body nav { height: 42px; margin-top: 8px; display: flex; justify-content: space-around; align-items: center; }
.phone-body nav i { width: 17px; height: 3px; background: #d6dbd5; }
.phone-body nav i.active { background: var(--ink); }

.scene-note {
  position: absolute;
  z-index: 4;
  padding: 10px 14px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: var(--lime);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.note-one { top: 25%; left: -4%; }
.note-two { right: -2%; bottom: 22%; }

.objects { background: var(--paper); }
.objects-heading { display: grid; grid-template-columns: 1.35fr .65fr; gap: 90px; align-items: end; }
.objects-heading > p { max-width: 440px; margin: 0 0 8px; color: var(--muted); font-size: 17px; line-height: 1.58; }
.object-types { margin-top: 80px; border-top: 1px solid var(--line); }

.object-type {
  position: relative;
  isolation: isolate;
  min-height: 128px;
  display: grid;
  grid-template-columns: 100px 1fr 40px;
  gap: 30px;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  transition: color .25s ease;
}

.object-type::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--ink);
  transform: translateX(-102%);
  transition: transform .35s ease;
}

.object-type span { color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .15em; }
.object-type h3 { margin: 0; font-size: clamp(28px, 3.5vw, 50px); font-weight: 610; letter-spacing: -.04em; }
.object-type i { width: 8px; height: 8px; justify-self: end; background: var(--lime-dark); }

.contact {
  --section-accent: var(--ink);
  min-height: 760px;
  overflow: hidden;
  background: var(--lime);
}

.contact-grid {
  position: absolute;
  inset: 0;
  width: var(--shell);
  margin: 0 auto;
  border-right: 1px solid rgba(17, 24, 20, .14);
  border-left: 1px solid rgba(17, 24, 20, .14);
}

.contact-grid::before, .contact-grid::after { content: ""; position: absolute; top: 0; bottom: 0; width: 1px; background: rgba(17, 24, 20, .14); }
.contact-grid::before { left: 33.333%; }
.contact-grid::after { left: 66.666%; }
.contact-inner { position: relative; z-index: 1; }
.contact .section-index { color: rgba(17, 24, 20, .6); }
.contact .section-index span { color: var(--ink); }
.contact h2 { max-width: 1140px; margin: 70px 0 0; font-size: clamp(64px, 8.4vw, 132px); font-weight: 680; line-height: .92; letter-spacing: -.06em; }
.contact h2 em { color: var(--ink); letter-spacing: -.038em; }

.contact-bottom {
  margin-top: 90px;
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: 100px;
  align-items: end;
}

.contact-bottom > p { max-width: 440px; margin: 0; font-size: 16px; line-height: 1.6; }
.contact-link { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); font-size: clamp(25px, 3.4vw, 50px); font-weight: 620; letter-spacing: -.04em; text-decoration: none; }
.contact-link b { font-size: .8em; transition: transform .2s ease; }
.site-footer { padding: 70px max(32px, calc((100vw - 1380px) / 2)) 24px; color: var(--white); background: var(--ink); }
.footer-main { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 60px; align-items: start; padding-bottom: 80px; }
.footer-main img { width: 190px; }
.footer-main p { margin: 0; color: rgba(255, 255, 255, .54); font-size: 14px; line-height: 1.65; }
.footer-main > a { justify-self: end; color: var(--lime); font-size: 18px; font-weight: 700; text-decoration: none; }
.footer-bottom { padding-top: 22px; display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255, 255, 255, .15); color: rgba(255, 255, 255, .45); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.footer-bottom a { color: var(--white); text-decoration: none; }

.reveal {
  opacity: 1;
  transform: none;
}

.has-js .reveal {
  --reveal-x: 0px;
  --reveal-y: 38px;
  --reveal-delay: 0ms;
  opacity: 0;
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(.985);
  transition:
    opacity .82s ease var(--reveal-delay),
    transform 1.05s cubic-bezier(.16, 1, .3, 1) var(--reveal-delay);
}

.has-js .section-index.reveal { --reveal-x: -28px; --reveal-y: 0px; }

.has-js .advantages-grid .reveal:nth-child(even),
.has-js .object-types .reveal:nth-child(even) {
  --reveal-x: 32px;
  --reveal-y: 18px;
}

.has-js .advantages-grid .reveal:nth-child(odd),
.has-js .object-types .reveal:nth-child(odd) {
  --reveal-x: -32px;
  --reveal-y: 18px;
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.has-js .hero .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.reveal-delay-1 { --reveal-delay: 90ms; }
.reveal-delay-2 { --reveal-delay: 180ms; }
.reveal-delay-3 { --reveal-delay: 270ms; }

@media (max-width: 1100px) {
  :root { --shell: calc(100vw - 44px); }
  .site-nav { gap: clamp(12px, 1.7vw, 20px); font-size: 13px; }
  .site-nav .nav-cta { gap: 12px; padding: 12px 14px; }
  .hero-meta { display: none; }
  .service-card { min-height: 750px; }
  .service-card ul { grid-template-columns: 1fr; }
  .advantages-heading { grid-template-columns: 1fr 1fr; column-gap: 54px; }
  .advantage-card { min-height: 390px; }
  .story-layout { grid-template-columns: 1fr 1fr; gap: 0; }
  .story-steps { padding-right: 44px; padding-left: 22px; }
  .story-step h3 { font-size: clamp(45px, 5vw, 62px); }
  .scene-cleaning { background-position: 67% 52%; }
  .approach-top, .objects-heading { grid-template-columns: 1fr 1fr; }
  .control-stage { grid-template-columns: .8fr 1.2fr; gap: 30px; }
  .phone-scene { transform-origin: center; }
  .has-js .phone-scene.reveal { transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(.87); }
  .has-js .phone-scene.reveal.is-visible { transform: translate3d(0, 0, 0) scale(.88); }
  .scene-note { display: none; }
}

@media (max-width: 820px) {
  :root { --shell: calc(100vw - 32px); --header-h: 70px; }
  .has-js .reveal { --reveal-x: 0px !important; }
  .brand {
    position: relative;
    z-index: 2;
    width: 160px;
  }
  .site-header.is-scrolled { height: calc(64px + var(--safe-top)); }
  body.menu-open .site-header,
  body.menu-open .site-header.is-scrolled {
    height: calc(var(--header-h) + var(--safe-top));
    background: transparent;
    border-color: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .menu-toggle {
    position: relative;
    z-index: 2;
    display: flex;
  }
  .site-nav {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    z-index: 1;
    width: 100vw;
    min-height: 100vh;
    min-height: 100svh;
    height: 100vh;
    height: 100dvh;
    padding:
      calc(var(--header-h) + 28px + env(safe-area-inset-top))
      max(24px, env(safe-area-inset-right))
      calc(28px + env(safe-area-inset-bottom))
      max(24px, env(safe-area-inset-left));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    background: var(--ink);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  }
  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .site-nav a:not(.nav-cta) {
    display: block;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1;
    letter-spacing: -.05em;
  }
  .site-nav a:not(.nav-cta):first-child { border-top: 1px solid rgba(255, 255, 255, .15); }
  .site-nav .nav-cta {
    width: 100%;
    min-height: 64px;
    margin-top: auto;
    justify-content: space-between;
    font-size: 16px;
  }

  .hero { min-height: 820px; max-height: none; }
  .hero-wall {
    top: 0;
    bottom: auto;
    width: 100%;
    height: 65%;
    display: block;
    background-image: url("korsa-scene-background.webp");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
    filter: brightness(.72) saturate(.76);
  }
  .hero-media { inset: auto 0 0; width: 100%; height: 35%; }
  .hero-media .cinematic-layer { object-position: 76% center; }
  .hero-media .panel-light { right: 0; }
  .hero-divider { top: 65%; right: 0; bottom: auto; left: 0; width: 100%; height: 1px; }
  .hero-divider::after { transform: scaleX(var(--hero-progress)); transform-origin: left center; }
  .hero-shade { top: 0; bottom: auto; width: 100%; height: 65%; background: rgba(4, 12, 9, .3); }
  .hero-shade::before { inset: 0; background: rgba(4, 12, 9, .16); }
  .hero-shade::after { height: 150px; background: rgba(4, 12, 9, .28); }
  .hero-grid { left: 16px; right: 16px; }
  .hero-grid::before { display: none; }
  .hero-content { min-height: 820px; padding-top: 138px; }
  .hero-content > * { max-width: 640px; }
  .hero h1 { max-width: 590px; font-size: clamp(52px, 11vw, 82px); }
  .hero .hero-logo { width: min(520px, 72vw); margin-top: 36px; }
  .hero-lead { max-width: 520px; }
  .scroll-cue { left: 16px; }

  .section { padding: 100px 0; }
  .promise-grid, .approach-top, .objects-heading { grid-template-columns: 1fr; gap: 46px; }
  .promise-copy { max-width: 600px; }
  .advantages-heading { grid-template-columns: 1fr; gap: 34px; }
  .advantages .section-index, .advantages .display-title, .advantages-intro { grid-column: 1; }
  .advantages-intro { max-width: 620px; margin: 0; }
  .advantages-grid { margin-top: 58px; grid-template-columns: 1fr 1fr; }
  .advantage-card, .advantage-experience, .advantage-software, .advantage-integrated, .advantage-proof { grid-column: auto; min-height: 380px; }
  .advantage-card h3, .advantage-software h3, .advantage-integrated h3 { font-size: clamp(34px, 6.2vw, 48px); }
  .service-cards { grid-template-columns: 1fr; }
  .service-card { min-height: 680px; }
  .service-card ul { grid-template-columns: 1fr 1fr; }
  .service-story { padding-top: 0; }
  .service-story .section-heading { padding-top: 80px; padding-bottom: 58px; }
  .story-layout { width: auto; margin-left: 0; display: flex; flex-direction: column; border-top: 0; }
  .story-steps { padding: 0; }
  .story-visual {
    position: relative;
    top: auto;
    order: -1;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
    margin-bottom: 58px;
    display: block;
    border-left: 0;
  }
  .story-cinematic .cinematic-layer { object-position: 74% center; }
  .story-step { min-height: 0; padding: 70px 0 90px; opacity: 1; }
  .story-step:first-child { padding-top: 0; border-top: 0; }
  .story-kicker { margin-bottom: 0; }
  .story-step h3 { margin-top: 30px; font-size: clamp(44px, 8vw, 66px); }
  .mobile-step-visual { display: none; }
  .process-list li { grid-template-columns: 50px 1fr 32px; gap: 16px; }
  .process-list li > div { grid-template-columns: 1fr; gap: 10px; }

  .control-stage { grid-template-columns: 1fr; min-height: 0; padding: 100px 0 30px; }
  .phone-scene { min-height: 720px; }
  .has-js .phone-scene.reveal { transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(.985); }
  .has-js .phone-scene.reveal.is-visible { transform: translate3d(0, 0, 0) scale(1); }
  .phone-scene::before { inset: 70px -90px 10px; }
  .orbit-two { width: 620px; height: 620px; }
  .objects-heading > p { max-width: 620px; }
  .contact { min-height: 680px; }
  .contact-bottom { grid-template-columns: 1fr; gap: 50px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main > a { justify-self: start; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100vw - 28px); }
  .header-inner { width: calc(100vw - 28px); }
  .brand { width: 148px; }
  .hero { height: 100svh; min-height: 780px; }
  .hero-wall { height: 66%; }
  .hero-media { height: 34%; }
  .hero-media .cinematic-layer { object-position: 77% center; }
  .hero-divider { top: 66%; }
  .hero-shade { height: 66%; background: rgba(4, 12, 9, .33); }
  .hero-content { width: calc(100vw - 28px); min-height: 780px; padding-top: 124px; }
  .hero-content > * { max-width: 100%; }
  .eyebrow { font-size: 10px; }
  .hero h1 { margin-top: 24px; font-size: clamp(47px, 14vw, 66px); line-height: .91; }
  .hero .hero-logo { width: min(420px, 82vw); margin-top: 30px; }
  .hero-statement { margin-top: 24px; font-size: 17px; }
  .hero-lead { margin-top: 24px; font-size: 16px; line-height: 1.48; }
  .hero-actions { width: 100%; margin-top: 28px; flex-direction: column; }
  .button { width: 100%; justify-content: space-between; min-height: 55px; }
  .button-ghost { justify-content: center; }
  .scroll-cue { bottom: 18px; }

  .service-ticker { height: 60px; }
  .ticker-track { gap: 24px; }
  .ticker-track span { font-size: 15px; }
  .section { padding: 82px 0; }
  .display-title { margin-top: 22px; font-size: clamp(44px, 13.4vw, 64px); line-height: 1; }
  .promise-copy { font-size: 18px; }
  .advantages::before { top: -150px; right: -230px; }
  .advantages-intro { font-size: 16px; }
  .advantages-grid { grid-template-columns: 1fr; gap: 10px; margin-top: 44px; }
  .advantage-card, .advantage-experience, .advantage-software, .advantage-integrated, .advantage-proof { min-height: 340px; padding: 26px 22px; }
  .advantage-card h3, .advantage-software h3, .advantage-integrated h3 { font-size: clamp(32px, 9vw, 38px); line-height: 1.02; }
  .advantage-label { margin-bottom: 14px; font-size: 11px; opacity: .72; }
  .advantage-card > p:last-of-type { margin-top: 20px; font-size: 14px; }
  .section-heading { margin-bottom: 42px; }
  .service-card { min-height: 690px; padding: 28px 22px; clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%); }
  .service-card-head svg { width: 58px; height: 58px; }
  .service-card > div:nth-child(2) { margin-top: 72px; }
  .service-card h3 { font-size: 43px; }
  .service-card > div:nth-child(2) > p:last-child { font-size: 15px; }
  .service-card ul { grid-template-columns: 1fr; margin-top: 40px; }
  .service-card li { padding-top: 11px; padding-bottom: 11px; }
  .service-card li::before { top: 16px; }
  .service-story .section-heading { padding-top: 68px; padding-bottom: 46px; }
  .story-step { padding: 58px 0 72px; }
  .story-step h3 { margin-top: 24px; font-size: 43px; }
  .story-step > p:not(.story-kicker) { margin-top: 22px; font-size: 15px; }
  .story-step ul { margin-top: 30px; }
  .story-visual { margin-bottom: 44px; }

  .process-list { margin-top: 54px; }
  .process-list li { min-height: 145px; grid-template-columns: 32px 1fr 24px; gap: 10px; }
  .process-list h3 { font-size: 34px; }
  .process-list p { font-size: 13px; }

  .control-stage { padding-top: 82px; }
  .control-copy > p:not(.section-index) { font-size: 16px; }
  .control-points li { grid-template-columns: 112px 1fr; gap: 14px; }
  .phone-scene { min-height: 650px; margin: 0 -10px; transform-origin: center; }
  .has-js .phone-scene.reveal { transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(.85); }
  .has-js .phone-scene.reveal.is-visible { transform: translate3d(0, 0, 0) scale(.86); }
  .phone-scene::before { inset: 25px -160px; }
  .orbit-one { width: 510px; height: 510px; }
  .orbit-two { width: 610px; height: 610px; }

  .object-types { margin-top: 52px; }
  .object-type { min-height: 104px; grid-template-columns: 34px 1fr 24px; gap: 12px; }
  .object-type h3 { font-size: 27px; }

  .contact { min-height: 650px; }
  .contact h2 { margin-top: 48px; font-size: clamp(52px, 16vw, 76px); line-height: .96; }
  .contact-bottom { margin-top: 72px; }
  .contact-link { font-size: 25px; }
  .contact-grid { width: calc(100vw - 28px); }
  .site-footer { padding: 58px 14px 22px; }
  .footer-main { grid-template-columns: 1fr; gap: 30px; padding-bottom: 52px; }
  .footer-bottom { flex-wrap: wrap; }
}

@media (hover: hover) and (pointer: fine) {
  .button:hover { transform: translateY(-3px); }
  .button-ghost:hover { border-color: var(--white); background: rgba(17, 24, 20, .48); }
  .advantage-card:hover { transform: translateY(-5px); border-color: var(--lime); }
  .card-link:hover span,
  .story-link:hover span { transform: translate(4px, -4px); }
  .process-list li:hover { background: var(--lime); }
  .process-list li:hover p,
  .process-list li:hover .process-count { color: var(--ink); }
  .object-type:hover { color: var(--white); }
  .object-type:hover::before { transform: translateX(0); }
  .contact-link:hover b { transform: translate(5px, -5px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .page-progress,
  .has-js .section::after,
  .hero::before,
  .hero::after,
  .hero-divider::after { display: none; }
  .hero-content,
  .hero-grid,
  .phone,
  .orbit,
  .ticker-track { transform: none !important; will-change: auto; }
  .hero-meta,
  .scroll-cue { opacity: 1; }
  .story-step { opacity: 1 !important; }
  .story-progress b { transform: scaleX(.3333); will-change: auto; }
}
