:root {
  --paper: #f3f0e8;
  --paper-deep: #e9e4da;
  --white: #fbfaf6;
  --ink: #1c2522;
  --ink-soft: #44504b;
  --muted: #6c746f;
  --line: rgba(28, 37, 34, 0.16);
  --line-light: rgba(255, 255, 255, 0.17);
  --clay: #a64f35;
  --clay-dark: #7e3826;
  --moss: #536a60;
  --moss-dark: #263d35;
  --sand: #d9cdbb;
  --radius: 12px;
  --shadow: 0 30px 80px rgba(26, 34, 31, 0.14);
  --shell: min(1280px, calc(100vw - 64px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 6px;
  transform: translateY(-160%);
}

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

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

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(243, 240, 232, 0.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(28, 37, 34, 0.05);
}

.header-inner {
  width: var(--shell);
  min-height: 80px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 3px;
  padding: 7px;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.brand-mark i {
  display: block;
  background: var(--clay);
  border-radius: 1px;
}

.brand-mark i:nth-child(1) { height: 9px; }
.brand-mark i:nth-child(2) { height: 17px; }
.brand-mark i:nth-child(3) { height: 13px; }

.brand-name {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
}

.mobile-pilot {
  display: none;
}

.nav a,
.header-login,
.plain-link {
  position: relative;
}

.nav a::after,
.header-login::after,
.plain-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav a:hover::after,
.header-login:hover::after,
.plain-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.header-login {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 24px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 12px;
}

.button-primary {
  color: var(--white);
  background: var(--clay);
  border-color: var(--clay);
}

.button-primary:hover {
  background: var(--clay-dark);
  border-color: var(--clay-dark);
}

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

.button-light:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0 11px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 180ms ease;
}

.eyebrow,
.section-label {
  margin: 0 0 24px;
  color: var(--clay);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow span {
  width: 28px;
  height: 1px;
  display: block;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  max-width: 810px;
  margin-bottom: 30px;
  font-size: clamp(48px, 6.25vw, 92px);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.99;
}

h1 em,
h2 em,
blockquote em {
  color: var(--clay);
  font-family: "Literata", Georgia, serif;
  font-weight: 500;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(38px, 4.3vw, 68px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(440px, 0.77fr);
  align-items: center;
  gap: clamp(52px, 7vw, 112px);
  min-height: calc(100vh - 80px);
  padding-block: 80px 96px;
}

.hero-lead {
  max-width: 710px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 32px;
}

.plain-link {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.hero-note {
  max-width: 510px;
  margin-bottom: 0;
  padding-left: 18px;
  color: var(--muted);
  border-left: 2px solid var(--sand);
  font-size: 12px;
  line-height: 1.55;
}

.hero-product {
  position: relative;
  padding: 14px 14px 52px;
  background: var(--moss-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.hero-product::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 24px -26px -26px 28px;
  background: var(--sand);
  border-radius: inherit;
  transform: rotate(-3deg);
}

.product-window {
  overflow: hidden;
  background: #111715;
  border-radius: 7px;
}

.window-top,
.dashboard-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.73);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.window-top {
  min-height: 42px;
  padding: 0 15px;
}

.window-status {
  display: flex;
  align-items: center;
  gap: 7px;
}

.window-status i {
  width: 6px;
  height: 6px;
  display: block;
  background: #72a18c;
  border-radius: 50%;
}

.product-window img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  object-position: 55% 27%;
}

.hero-result {
  position: absolute;
  right: -28px;
  bottom: -46px;
  width: min(300px, 65%);
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(22, 29, 27, 0.18);
  transform: rotate(-1.2deg);
}

.hero-result > span {
  display: block;
  margin-bottom: 8px;
  color: var(--clay);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-result strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
}

.hero-result p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.proof-strip {
  color: var(--white);
  background: var(--ink);
}

.proof-grid {
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 1.2fr 1.4fr;
}

.proof-grid > div {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 30px;
  border-left: 1px solid var(--line-light);
}

.proof-grid > div:last-child {
  border-right: 1px solid var(--line-light);
}

.proof-grid strong {
  display: block;
  margin-bottom: 5px;
  font-size: 19px;
  letter-spacing: -0.03em;
}

.proof-grid span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
}

.section {
  padding-block: clamp(100px, 11vw, 168px);
}

.section-intro {
  max-width: 860px;
  margin-bottom: 64px;
}

.section-intro > p:last-child,
.product-heading > p,
.result-copy > p:last-child {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
}

.value-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.value-main,
.value-card {
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 4vw, 56px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.value-main {
  min-height: 530px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  grid-row: 1 / 3;
}

.value-main > div:not(.route-illustration) {
  max-width: 490px;
}

.card-number,
.product-benefits article > span {
  color: var(--clay);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.value-main h3 {
  font-size: clamp(28px, 3vw, 43px);
}

.value-main p,
.value-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.value-card {
  min-height: 257px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.value-card h3 {
  max-width: 380px;
  margin-top: auto;
  font-size: 25px;
}

.value-card-dark {
  color: var(--white);
  background: var(--moss-dark);
  border-color: var(--moss-dark);
}

.value-card-dark p {
  color: rgba(255, 255, 255, 0.62);
}

.route-illustration {
  position: relative;
  width: min(100%, 600px);
  height: 205px;
  margin-top: 36px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.route-illustration::before {
  content: "поверхность / маршрут";
  position: absolute;
  top: 14px;
  left: 16px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.route-illustration span {
  position: absolute;
  right: 28px;
  left: 28px;
  height: 1px;
  background: var(--moss);
}

.route-illustration span:nth-child(1) { top: 62px; }
.route-illustration span:nth-child(2) { top: 94px; }
.route-illustration span:nth-child(3) { top: 126px; }
.route-illustration span:nth-child(4) { top: 158px; }

.route-illustration span:nth-child(odd)::after,
.route-illustration span:nth-child(even)::before {
  content: "";
  position: absolute;
  top: 0;
  width: 32px;
  height: 32px;
  border: 1px solid var(--moss);
}

.route-illustration span:nth-child(odd)::after {
  right: -1px;
  border-bottom: 0;
  border-left: 0;
  border-radius: 0 18px 0 0;
}

.route-illustration span:nth-child(even)::before {
  left: -1px;
  border-top: 0;
  border-right: 0;
  border-radius: 0 0 0 18px;
}

.route-illustration i {
  position: absolute;
  z-index: 2;
  top: 115px;
  left: 38%;
  width: 22px;
  height: 22px;
  background: var(--clay);
  border: 5px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--clay);
}

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

.process .section-label {
  color: #d79a84;
}

.process h2 em {
  color: #d9b7a9;
}

.section-intro-wide {
  max-width: 970px;
}

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

.process-list li {
  display: grid;
  grid-template-columns: 80px minmax(240px, 0.8fr) minmax(300px, 1fr);
  align-items: center;
  gap: 36px;
  min-height: 154px;
  border-bottom: 1px solid var(--line-light);
}

.step-number,
.step-title > span {
  color: rgba(255, 255, 255, 0.44);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.step-title > span {
  display: block;
  margin-bottom: 6px;
  color: #d79a84;
}

.step-title h3 {
  margin-bottom: 0;
  font-size: 27px;
}

.process-list li > p {
  max-width: 500px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.6);
}

.process-aside {
  max-width: 760px;
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 36px;
  margin: 70px 0 0 auto;
  padding-left: 26px;
  border-left: 2px solid var(--clay);
}

.process-aside strong {
  font-size: 16px;
}

.process-aside p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 13px;
}

.product-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.7fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 64px;
}

.product-heading h2 {
  max-width: 800px;
  margin-bottom: 0;
}

.dashboard-frame {
  overflow: hidden;
  margin: 0;
  padding: 14px;
  background: var(--moss-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.dashboard-caption {
  min-height: 45px;
  padding: 0 8px;
}

.dashboard-frame img {
  width: 100%;
  border-radius: 6px;
}

.product-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.product-benefits article {
  min-height: 214px;
  padding: 34px 32px 0 0;
}

.product-benefits article + article {
  padding-left: 32px;
  border-left: 1px solid var(--line);
}

.product-benefits article > span {
  display: block;
  margin-bottom: 30px;
}

.product-benefits h3 {
  font-size: 20px;
}

.product-benefits p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.result {
  background: var(--paper-deep);
}

.result-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.85fr) minmax(500px, 1.15fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: start;
}

.result-copy {
  position: sticky;
  top: 128px;
}

.document-stack {
  display: grid;
  gap: 12px;
}

.document-card {
  min-height: 172px;
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 34px;
  align-items: start;
  padding: 32px;
  background: rgba(251, 250, 246, 0.7);
  border: 1px solid var(--line);
  border-radius: 9px;
}

.document-primary {
  color: var(--white);
  background: var(--clay);
  border-color: var(--clay);
}

.file-type {
  width: 62px;
  height: 78px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 3px 10px 3px 3px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.document-card h3 {
  margin: 4px 0 10px;
}

.document-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.document-primary p {
  color: rgba(255, 255, 255, 0.7);
}

.trust {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(70px, 11vw, 160px);
  align-items: start;
}

.trust-statement {
  position: sticky;
  top: 128px;
}

blockquote {
  max-width: 780px;
  margin: 0;
  font-size: clamp(38px, 4.5vw, 66px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.trust-details {
  border-top: 1px solid var(--line);
}

.trust-details article {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.trust-details h3 {
  font-size: 19px;
}

.trust-details p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.pilot {
  padding-block: clamp(90px, 10vw, 140px);
  color: var(--white);
  background: var(--moss-dark);
}

.pilot .section-label {
  color: #d79a84;
}

.pilot h2 {
  margin-bottom: 0;
}

.pilot h2 em {
  color: #d9b7a9;
}

.pilot-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  align-items: end;
  gap: 90px;
}

.pilot-action p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.65);
}

.footer {
  min-height: 130px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-size: 11px;
}

.footer p {
  margin-bottom: 0;
}

.footer .brand {
  color: var(--ink);
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 48px, 960px);
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 72px;
  }

  .hero-copy {
    max-width: 900px;
  }

  .hero-product {
    width: calc(100% - 36px);
    margin: 14px auto 30px 0;
  }

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

  .proof-grid > div:nth-child(3) {
    border-top: 1px solid var(--line-light);
  }

  .proof-grid > div:nth-child(4) {
    border-top: 1px solid var(--line-light);
  }

  .value-layout {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .product-heading,
  .pilot-inner {
    gap: 50px;
  }

  .trust {
    gap: 70px;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 32px);
  }

  html {
    scroll-padding-top: 72px;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-name {
    font-size: 14px;
  }

  .brand-mark {
    width: 31px;
    height: 31px;
  }

  .header-login,
  .header-actions > .button {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .nav {
    position: fixed;
    z-index: 90;
    inset: 68px 0 auto;
    height: calc(100vh - 68px);
    height: calc(100dvh - 68px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 26px 16px;
    background: var(--paper);
    border-top: 1px solid var(--line);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav a {
    padding: 18px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 21px;
  }

  .nav .mobile-pilot {
    width: 100%;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    padding: 0 20px;
    color: var(--white);
    background: var(--clay);
    border: 0;
    border-radius: 7px;
    font-size: 14px;
  }

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

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

  .hero {
    display: block;
    padding-block: 58px 78px;
  }

  h1 {
    margin-bottom: 24px;
    font-size: clamp(44px, 13vw, 62px);
    line-height: 1.01;
  }

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

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .plain-link {
    width: fit-content;
    margin-left: 2px;
  }

  .hero-product {
    width: calc(100% - 12px);
    margin-top: 62px;
    padding: 8px 8px 40px;
    transform: rotate(0.6deg);
  }

  .hero-product::before {
    inset: 14px -12px -14px 16px;
  }

  .window-top {
    min-height: 35px;
    padding-inline: 9px;
    font-size: 7px;
  }

  .product-window img {
    aspect-ratio: 1.12;
  }

  .hero-result {
    right: -9px;
    bottom: -56px;
    width: 82%;
    padding: 18px;
  }

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

  .proof-grid > div {
    min-height: 112px;
    padding: 20px 14px;
  }

  .proof-grid strong {
    font-size: 15px;
  }

  .proof-grid span {
    font-size: 9px;
  }

  .section {
    padding-block: 92px;
  }

  .section-intro {
    margin-bottom: 44px;
  }

  .section-intro > p:last-child,
  .product-heading > p,
  .result-copy > p:last-child {
    font-size: 15px;
  }

  .value-layout {
    display: block;
  }

  .value-main,
  .value-card {
    min-height: 0;
    margin-bottom: 12px;
    padding: 28px;
  }

  .value-main {
    min-height: 485px;
  }

  .value-card {
    min-height: 245px;
  }

  .route-illustration {
    height: 180px;
  }

  .route-illustration span {
    right: 18px;
    left: 18px;
  }

  .process-list li {
    grid-template-columns: 42px 1fr;
    gap: 18px;
    padding-block: 28px;
  }

  .process-list li > p {
    grid-column: 2;
    font-size: 13px;
  }

  .step-title h3 {
    font-size: 23px;
  }

  .process-aside {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 54px;
  }

  .product-heading {
    display: block;
    margin-bottom: 44px;
  }

  .product-heading h2 {
    margin-bottom: 28px;
  }

  .dashboard-frame {
    width: calc(100vw - 18px);
    margin-left: calc((var(--shell) - 100vw) / 2 + 9px);
    padding: 7px;
    border-radius: 8px;
  }

  .dashboard-caption {
    min-height: 36px;
    padding-inline: 6px;
    font-size: 7px;
  }

  .product-benefits {
    display: block;
  }

  .product-benefits article,
  .product-benefits article + article {
    min-height: 0;
    padding: 28px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-benefits article > span {
    margin-bottom: 14px;
  }

  .result-layout,
  .trust,
  .pilot-inner {
    display: block;
  }

  .result-copy,
  .trust-statement {
    position: static;
    margin-bottom: 56px;
  }

  .document-card {
    min-height: 0;
    grid-template-columns: 58px 1fr;
    gap: 20px;
    padding: 24px 20px;
  }

  .file-type {
    width: 52px;
    height: 66px;
    font-size: 8px;
  }

  .pilot-action {
    margin-top: 44px;
  }

  .pilot-action .button {
    width: 100%;
    font-size: 12px;
  }

  .footer {
    min-height: 0;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding-block: 40px;
  }
}

/* Cinematic motion hero */
.site-header.is-over-hero,
.site-header.is-over-hero.hero-dark {
  color: var(--ink);
  background: rgba(243, 240, 232, 0.88);
  border-bottom-color: rgba(28, 37, 34, 0.1);
  box-shadow: 0 8px 30px rgba(28, 37, 34, 0.04);
  backdrop-filter: blur(18px);
}

.site-header.is-over-hero .nav,
.site-header.is-over-hero .header-login,
.site-header.is-over-hero.hero-dark .nav,
.site-header.is-over-hero.hero-dark .header-login {
  color: var(--ink-soft);
}

.site-header.is-over-hero .brand-mark,
.site-header.is-over-hero.hero-dark .brand-mark {
  border-color: var(--ink);
}

.site-header.is-over-hero .menu-button,
.site-header.is-over-hero.hero-dark .menu-button {
  border-color: var(--line);
}

.site-header.is-over-hero .menu-button span,
.site-header.is-over-hero.hero-dark .menu-button span {
  background: var(--ink);
}

.motion-hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 700px;
  overflow: hidden;
  isolation: isolate;
  background: #dcd8d0;
}

.motion-media,
.motion-video,
.motion-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.motion-video {
  max-width: none;
  object-fit: cover;
  object-position: center;
  background: #dcd8d0;
}

.motion-scrim {
  z-index: 1;
  background: linear-gradient(to top, rgba(21, 29, 26, 0.18), transparent 32%);
  pointer-events: none;
}

.motion-copy {
  position: absolute;
  z-index: 3;
  left: max(4.6vw, 40px);
  bottom: 4.5vh;
  width: min(610px, 48vw);
  padding: 18px 20px;
  background: rgba(243, 240, 232, 0.9);
  border: 1px solid rgba(28, 37, 34, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 55px rgba(28, 37, 34, 0.13);
  backdrop-filter: blur(14px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.motion-copy.is-hidden {
  pointer-events: none;
  opacity: 0;
  transform: translateY(14px);
}

.motion-copy h1,
.motion-kicker {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.motion-summary {
  max-width: 560px;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.motion-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.motion-actions .button {
  min-height: 46px;
}

.motion-link {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
}

.motion-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.motion-timeline {
  position: absolute;
  z-index: 3;
  right: 34px;
  bottom: 32px;
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 13px;
  color: rgba(28, 37, 34, 0.56);
  background: rgba(243, 240, 232, 0.84);
  border: 1px solid rgba(28, 37, 34, 0.11);
  border-radius: 5px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.09em;
  backdrop-filter: blur(10px);
}

.motion-timeline i {
  width: 18px;
  height: 1px;
  display: block;
  background: rgba(28, 37, 34, 0.22);
}

.motion-hero[data-stage="robot"] .motion-timeline span:first-child,
.motion-hero[data-stage="route"] .motion-timeline span:nth-of-type(2),
.motion-hero[data-stage="map"] .motion-timeline span:nth-of-type(3) {
  color: var(--clay);
}

.motion-scroll {
  position: absolute;
  z-index: 3;
  right: 34px;
  top: 108px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(28, 37, 34, 0.58);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.motion-scroll span {
  width: 28px;
  height: 1px;
  display: block;
  background: currentColor;
}

@media (max-width: 760px) {
  .motion-hero {
    min-height: 640px;
  }

  .motion-video {
    object-position: 68% center;
  }

  .motion-scrim {
    background: linear-gradient(to bottom, transparent 32%, rgba(15, 22, 19, 0.9) 100%);
  }

  .motion-copy,
  .motion-copy.is-hidden {
    right: 18px;
    bottom: 34px;
    left: 18px;
    width: auto;
    padding: 0;
    color: var(--white);
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
    backdrop-filter: none;
  }

  .motion-copy h1,
  .motion-kicker {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    clip-path: none;
    white-space: normal;
  }

  .motion-kicker {
    margin: 0 0 13px;
    color: #e6a38b;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
  }

  .motion-copy h1 {
    max-width: 340px;
    margin: 0 0 18px;
    color: var(--white);
    font-size: clamp(46px, 14vw, 66px);
    font-weight: 650;
    letter-spacing: -0.07em;
    line-height: 0.95;
  }

  .motion-copy h1 span {
    display: block;
    color: #e6aa94;
    font-family: "Literata", Georgia, serif;
    font-style: italic;
    font-weight: 500;
  }

  .motion-summary {
    max-width: 370px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 500;
  }

  .motion-actions {
    gap: 14px;
  }

  .motion-actions .button {
    min-height: 48px;
    padding-inline: 18px;
    font-size: 12px;
  }

  .motion-link {
    color: rgba(255, 255, 255, 0.78);
    font-size: 10px;
  }

  .motion-note {
    color: rgba(255, 255, 255, 0.58);
    font-size: 9px;
  }

  .motion-timeline,
  .motion-scroll {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-copy,
  .motion-copy.is-hidden {
    opacity: 1;
    transform: none;
  }

  .motion-timeline {
    display: none;
  }
}

@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;
  }

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

/* Print-ready project poster: /?poster=1 */
body.poster-mode {
  min-height: 100vh;
  margin: 0;
  padding: 88px 24px 48px;
  color: var(--ink);
  background: #151a18;
}

.poster-toolbar {
  position: fixed;
  z-index: 110;
  top: 0;
  right: 0;
  left: 0;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 18px;
  color: var(--paper);
  background: rgba(21, 26, 24, 0.92);
  backdrop-filter: blur(12px);
}

.poster-toolbar a,
.poster-toolbar button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: inherit;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  font: 700 12px/1 "Manrope", Arial, sans-serif;
  text-decoration: none;
  cursor: pointer;
}

.poster-toolbar button {
  color: #fff;
  background: var(--clay);
  border-color: var(--clay);
}

.poster-sheet {
  position: relative;
  width: min(92vw, 742px);
  aspect-ratio: 297 / 420;
  margin: 0 auto;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.42);
  isolation: isolate;
}

.poster-background {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.poster-sheet::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(to bottom, rgba(243, 240, 232, 0.04) 0 48%, rgba(243, 240, 232, 0.38) 62%, rgba(38, 61, 53, 0.98) 73%);
}

.poster-top {
  position: absolute;
  top: 4.2%;
  right: 5.5%;
  left: 5.5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.poster-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.poster-brand strong {
  font-size: clamp(11px, 1.9vw, 17px);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.poster-mark {
  width: clamp(28px, 4vw, 38px);
  aspect-ratio: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 3px;
  padding: 7px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.poster-mark i {
  display: block;
  background: var(--clay);
}

.poster-mark i:nth-child(1) { height: 45%; }
.poster-mark i:nth-child(2) { height: 90%; }
.poster-mark i:nth-child(3) { height: 65%; }

.poster-topic,
.poster-eyebrow {
  font-size: clamp(6px, 1vw, 9px);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.poster-topic {
  color: rgba(28, 37, 34, 0.64);
}

.poster-message {
  position: absolute;
  top: 16%;
  left: 5.5%;
  width: 50%;
}

.poster-eyebrow {
  margin: 0 0 3.5%;
  color: var(--clay);
}

.poster-headline {
  margin: 0 0 5%;
  font-size: clamp(38px, 7.8vw, 74px);
  font-weight: 650;
  letter-spacing: -0.07em;
  line-height: 0.96;
  text-wrap: balance;
}

.poster-headline em {
  display: block;
  color: var(--clay);
  font-family: "Literata", Georgia, serif;
  font-weight: 500;
}

.poster-message > p:last-child {
  max-width: 92%;
  margin: 0;
  color: rgba(28, 37, 34, 0.72);
  font-size: clamp(8px, 1.45vw, 13px);
  line-height: 1.55;
}

.poster-bottom {
  position: absolute;
  right: 5.5%;
  bottom: 4.2%;
  left: 5.5%;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 7%;
  color: #fff;
}

.poster-benefits {
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.poster-benefits article {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  padding: 4% 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.poster-benefits span {
  color: #dda18c;
  font-size: clamp(6px, 1vw, 9px);
  font-weight: 800;
}

.poster-benefits p {
  margin: 0;
  font-size: clamp(8px, 1.35vw, 12px);
  font-weight: 600;
  line-height: 1.35;
}

.poster-cta {
  display: grid;
  grid-template-columns: 36% 1fr;
  gap: 12px;
  align-items: end;
}

.poster-cta img {
  width: 100%;
  background: var(--paper);
}

.poster-cta strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: clamp(8px, 1.4vw, 13px);
  line-height: 1.2;
}

.poster-cta p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(6px, 0.95vw, 9px);
  line-height: 1.35;
}

.poster-cta span {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(5px, 0.85vw, 8px);
  font-weight: 700;
}

@media (max-width: 620px) {
  body.poster-mode {
    padding: 78px 10px 28px;
  }

  .poster-toolbar {
    justify-content: stretch;
  }

  .poster-toolbar a,
  .poster-toolbar button {
    flex: 1;
    padding-inline: 8px;
    font-size: 9px;
  }

  .poster-sheet {
    width: 100%;
  }
}

@page {
  size: A3 portrait;
  margin: 0;
}

@media print {
  html,
  body.poster-mode {
    width: 297mm;
    height: 420mm;
    margin: 0;
    padding: 0;
    background: transparent;
  }

  .poster-toolbar {
    display: none;
  }

  .poster-sheet {
    width: 297mm;
    height: 420mm;
    margin: 0;
    box-shadow: none;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
}

/* Scroll-driven opening scene */
.site-header {
  position: fixed;
  width: 100%;
}

.site-header.is-over-hero {
  color: var(--ink);
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.site-header.is-over-hero.hero-dark {
  color: var(--white);
}

.site-header.is-over-hero.hero-dark .nav,
.site-header.is-over-hero.hero-dark .header-login {
  color: rgba(255, 255, 255, 0.78);
}

.site-header.is-over-hero.hero-dark .brand-mark {
  border-color: currentColor;
}

.site-header.is-over-hero.hero-dark .menu-button {
  border-color: rgba(255, 255, 255, 0.35);
}

.site-header.is-over-hero.hero-dark .menu-button span {
  background: var(--white);
}

.story-hero {
  position: relative;
  height: 380vh;
  background: var(--ink);
}

.story-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #dcd8d0;
}

.story-visual,
.story-image,
.story-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.story-image {
  max-width: none;
  object-fit: cover;
  object-position: 50% 50%;
  transform-origin: 72% 48%;
  will-change: transform;
}

.story-shade {
  background: #111815;
  opacity: 0;
  will-change: opacity;
}

.story-layer {
  position: absolute;
  z-index: 3;
}

.story-intro {
  left: max(4.6vw, 40px);
  bottom: 4.5vh;
  width: min(610px, 46vw);
  padding: 18px 20px;
  background: rgba(243, 240, 232, 0.88);
  border: 1px solid rgba(28, 37, 34, 0.12);
  border-radius: 8px;
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 50px rgba(28, 37, 34, 0.12);
  will-change: opacity, transform;
}

.story-intro h1,
.story-kicker {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.story-summary {
  max-width: 560px;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.story-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.story-actions .button {
  min-height: 46px;
}

.story-link {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
}

.story-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.story-chapter {
  top: 50%;
  left: max(6vw, 48px);
  width: min(590px, 42vw);
  color: var(--white);
  opacity: 0;
  transform: translateY(-40%);
  will-change: opacity, transform;
}

.chapter-number {
  display: block;
  margin-bottom: 20px;
  color: #df9a82;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.story-chapter h2,
.story-map h2 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(42px, 4.7vw, 72px);
  line-height: 1.02;
}

.story-chapter h2 em,
.story-map h2 em {
  color: #dfad9b;
}

.story-chapter p,
.story-map-copy > p {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.65;
}

.story-data {
  left: auto;
  right: max(5.5vw, 48px);
  width: min(570px, 40vw);
}

.focus-ring {
  position: absolute;
  z-index: 2;
  top: 46%;
  left: 72%;
  width: 172px;
  height: 172px;
  border: 1px solid rgba(214, 120, 86, 0.75);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.7);
  will-change: opacity, transform;
}

.focus-ring::before,
.focus-ring::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(255, 255, 255, 0.55);
  transform: translate(-50%, -50%);
}

.focus-ring::before { width: calc(100% + 34px); height: 1px; }
.focus-ring::after { width: 1px; height: calc(100% + 34px); }

.focus-ring i {
  position: absolute;
  right: 12px;
  bottom: 18px;
  width: 8px;
  height: 8px;
  background: var(--clay);
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(166, 79, 53, 0.22);
}

.story-map {
  inset: 118px max(5vw, 42px) 50px;
  display: grid;
  grid-template-columns: minmax(320px, 0.68fr) minmax(500px, 1.32fr);
  align-items: center;
  gap: clamp(50px, 7vw, 110px);
  color: var(--white);
  opacity: 0;
  transform: translateY(70px);
  will-change: opacity, transform;
}

.story-map h2 {
  font-size: clamp(38px, 4.1vw, 62px);
}

.story-map-window {
  overflow: hidden;
  padding: 9px;
  background: #15201c;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  transform: rotate(1deg);
}

.story-map-window > div {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-map-window img {
  width: 100%;
  border-radius: 5px;
}

.story-progress {
  position: absolute;
  z-index: 5;
  top: 50%;
  right: 22px;
  width: 2px;
  height: 120px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.26);
  border-radius: 2px;
  transform: translateY(-50%);
}

.story-progress span {
  display: block;
  width: 100%;
  height: 0;
  background: var(--clay);
}

.scroll-hint {
  position: absolute;
  z-index: 4;
  right: 38px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(28, 37, 34, 0.68);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  will-change: opacity;
}

.scroll-hint span {
  width: 1px;
  height: 28px;
  display: block;
  background: currentColor;
  transform-origin: top;
  animation: scroll-pulse 1.8s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(0.35); opacity: 0.45; }
  50% { transform: scaleY(1); opacity: 1; }
}

@media (max-width: 1100px) {
  .story-hero {
    height: 360vh;
  }

  .story-map {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 40px;
  }

  .story-map-copy > p,
  .story-chapter p {
    font-size: 14px;
  }
}

@media (max-width: 760px) {
  body.menu-open .site-header,
  body.menu-open .site-header.is-over-hero,
  body.menu-open .site-header.is-over-hero.hero-dark {
    color: var(--ink);
    background: var(--paper);
  }

  body.menu-open .site-header .menu-button {
    border-color: var(--line);
  }

  body.menu-open .site-header .menu-button span {
    background: var(--ink);
  }

  .story-hero {
    height: 325vh;
  }

  .story-sticky::after {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 38% 0 0;
    background: linear-gradient(to bottom, transparent, rgba(15, 22, 19, 0.84));
    pointer-events: none;
  }

  .story-image {
    object-position: 70% 50%;
    transform-origin: 70% 46%;
  }

  .story-intro {
    z-index: 3;
    right: 18px;
    bottom: 42px;
    left: 18px;
    width: auto;
    padding: 0;
    color: var(--white);
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .story-intro h1,
  .story-kicker {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    clip-path: none;
    white-space: normal;
  }

  .story-kicker {
    margin: 0 0 13px;
    color: #e6a38b;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
  }

  .story-intro h1 {
    max-width: 340px;
    margin: 0 0 18px;
    color: var(--white);
    font-size: clamp(46px, 14vw, 66px);
    font-weight: 650;
    letter-spacing: -0.07em;
    line-height: 0.95;
  }

  .story-intro h1 span {
    display: block;
    color: #e6aa94;
    font-family: "Literata", Georgia, serif;
    font-style: italic;
    font-weight: 500;
  }

  .story-summary {
    max-width: 370px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 500;
  }

  .story-actions {
    gap: 14px;
  }

  .story-actions .button {
    min-height: 48px;
    padding-inline: 18px;
    font-size: 12px;
  }

  .story-link {
    color: rgba(255, 255, 255, 0.78);
    font-size: 10px;
  }

  .story-note {
    color: rgba(255, 255, 255, 0.56);
    font-size: 9px;
  }

  .story-chapter {
    top: auto;
    right: 18px;
    bottom: 62px;
    left: 18px;
    width: auto;
    padding: 24px;
    background: rgba(18, 27, 23, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 9px;
    backdrop-filter: blur(14px);
    transform: translateY(24px);
  }

  .story-chapter h2,
  .story-map h2 {
    font-size: clamp(35px, 10vw, 48px);
  }

  .story-chapter p,
  .story-map-copy > p {
    font-size: 13px;
  }

  .focus-ring {
    top: 40%;
    left: 61%;
    width: 126px;
    height: 126px;
  }

  .story-map {
    inset: 96px 14px 24px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    gap: 24px;
  }

  .story-map-copy {
    padding: 0 8px;
  }

  .story-map-copy > p {
    display: none;
  }

  .story-map-window {
    padding: 6px;
    transform: none;
  }

  .story-map-window > div {
    min-height: 34px;
    font-size: 7px;
  }

  .story-progress {
    right: 8px;
    height: 90px;
  }

  .scroll-hint {
    right: 18px;
    bottom: 16px;
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .story-hero {
    height: 100vh;
    height: 100svh;
  }

  .story-sticky {
    position: relative;
  }

  .story-image {
    transform: none !important;
  }

  .story-shade,
  .story-chapter,
  .story-map,
  .focus-ring,
  .story-progress,
  .scroll-hint {
    display: none;
  }

  .story-intro {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Fast project brief and pilot request */
.brief {
  padding-block: clamp(100px, 11vw, 160px);
}

.brief-heading {
  max-width: 1080px;
  margin-bottom: 72px;
}

.brief-heading h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 5.3vw, 78px);
}

.brief-rows {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brief-rows article {
  min-height: 260px;
  padding: 36px 34px 34px 0;
}

.brief-rows article + article {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.brief-rows article > span {
  display: block;
  margin-bottom: 50px;
  color: var(--clay);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.brief-rows h3 {
  font-size: 22px;
}

.brief-rows p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.pilot-inner {
  grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1.12fr);
  align-items: start;
}

.pilot-copy > p:last-child {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 15px;
}

.pilot-form {
  display: grid;
  gap: 18px;
  padding: clamp(26px, 3.5vw, 44px);
  color: var(--ink);
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.pilot-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pilot-form input,
.pilot-form textarea {
  width: 100%;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.pilot-form input {
  min-height: 50px;
  padding: 0 14px;
}

.pilot-form textarea {
  min-height: 116px;
  padding: 13px 14px;
  resize: vertical;
}

.pilot-form input:focus,
.pilot-form textarea:focus {
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(166, 79, 53, 0.12);
}

.pilot-form input::placeholder,
.pilot-form textarea::placeholder {
  color: #929791;
}

.form-submit {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  margin-top: 4px;
}

.pilot-form .button {
  color: var(--white);
  background: var(--clay);
  border-color: var(--clay);
  cursor: pointer;
}

.pilot-form .button:hover {
  background: var(--clay-dark);
  border-color: var(--clay-dark);
}

.form-submit p,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.45;
}

.form-status:empty {
  display: none;
}

@media (max-width: 760px) {
  .brief {
    padding-block: 92px;
  }

  .brief-heading {
    margin-bottom: 46px;
  }

  .brief-rows {
    display: block;
  }

  .brief-rows article,
  .brief-rows article + article {
    min-height: 0;
    padding: 28px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .brief-rows article:last-child {
    border-bottom: 0;
  }

  .brief-rows article > span {
    margin-bottom: 18px;
  }

  .pilot-copy {
    margin-bottom: 48px;
  }

  .pilot-form {
    padding: 24px 18px;
  }

  .form-row,
  .form-submit {
    grid-template-columns: 1fr;
  }

  .pilot-form .button {
    width: 100%;
  }
}

/* Keep navigation readable over every frame of the looping hero video. */
.site-header.is-over-hero,
.site-header.is-over-hero.hero-dark {
  color: var(--ink);
  background: rgba(243, 240, 232, 0.88);
  border-bottom-color: rgba(28, 37, 34, 0.1);
  box-shadow: 0 8px 30px rgba(28, 37, 34, 0.04);
  backdrop-filter: blur(18px);
}

.site-header.is-over-hero .nav,
.site-header.is-over-hero .header-login,
.site-header.is-over-hero.hero-dark .nav,
.site-header.is-over-hero.hero-dark .header-login {
  color: var(--ink-soft);
}

.site-header.is-over-hero .brand-mark,
.site-header.is-over-hero.hero-dark .brand-mark {
  border-color: var(--ink);
}

.site-header.is-over-hero .menu-button,
.site-header.is-over-hero.hero-dark .menu-button {
  border-color: var(--line);
}

.site-header.is-over-hero .menu-button span,
.site-header.is-over-hero.hero-dark .menu-button span {
  background: var(--ink);
}
