:root {
  --canvas: #f5f6f0;
  --surface: #ffffff;
  --ink: #0b0d0c;
  --muted: #5c615d;
  --lime: #c7ff2e;
  --lime-dark: #8fb800;
  --line: rgba(11, 13, 12, 0.14);
  --line-strong: rgba(11, 13, 12, 0.28);
  --font-display:
    "Arial Black", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --font-body: Inter, "Segoe UI", Helvetica, Arial, sans-serif;
  --shell: min(1240px, calc(100vw - 40px));
  --header-height: 78px;
  --announcement-height: 34px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px var(--ink);
}

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

.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;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--lime);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: calc(var(--header-height) + var(--announcement-height));
  overflow: hidden;
  border-bottom: 1px solid transparent;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    height 220ms ease;
}

.site-header.is-scrolled {
  height: var(--header-height);
  background: rgba(245, 246, 240, 0.9);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}

.announcement-bar {
  height: var(--announcement-height);
  color: var(--ink);
  background: var(--lime);
  transition:
    transform 360ms var(--ease),
    opacity 220ms ease;
}

.announcement-bar a {
  width: var(--shell);
  height: 100%;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.01em;
  line-height: 1;
}

.announcement-bar strong {
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.site-header.is-scrolled .announcement-bar {
  opacity: 0;
  transform: translateY(-100%);
}

.nav-shell {
  width: var(--shell);
  height: var(--header-height);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  transition: transform 360ms var(--ease);
}

.site-header.is-scrolled .nav-shell {
  transform: translateY(calc(0px - var(--announcement-height)));
}

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

.brand__logo {
  width: auto;
  height: 64px;
  display: block;
}

@media (min-width: 1021px) {
  .site-header .brand__logo {
    height: 73.6px;
    transform: translateY(3px);
  }
}

.brand__mark {
  width: 38px;
  height: 30px;
}

.brand__bar {
  fill: var(--ink);
}

.brand__route,
.brand__arrow {
  fill: none;
  stroke: var(--lime-dark);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand__word {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 38px);
  font-size: 0.875rem;
  font-weight: 650;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease);
}

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

.button {
  min-height: 48px;
  padding: 11px 12px 11px 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.2;
  cursor: pointer;
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms var(--ease),
    background 220ms ease;
}

.button--nav {
  justify-self: end;
  padding-left: 18px;
  color: var(--surface);
  background: var(--ink);
  font-size: 0.78rem;
}

.button--dark {
  color: var(--surface);
  background: var(--ink);
}

.button--large {
  min-height: 58px;
  padding-left: 25px;
  font-size: 0.97rem;
}

.button__arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  font-size: 1.15rem;
  transition: transform 220ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 0 rgba(11, 13, 12, 0.12);
}

.button:hover .button__arrow {
  transform: rotate(45deg);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  padding-top: calc(
    var(--header-height) + var(--announcement-height) + clamp(50px, 8vh, 95px)
  );
  background: var(--canvas);
}

.hero__noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  align-items: center;
  gap: clamp(40px, 6vw, 90px);
  padding-bottom: clamp(80px, 10vh, 120px);
}

.hero__content {
  position: relative;
  z-index: 2;
}

.eyebrow {
  width: max-content;
  max-width: 100%;
  padding: 8px 14px 8px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.eyebrow__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lime-dark);
  box-shadow: 0 0 0 4px rgba(143, 184, 0, 0.13);
  animation: status-pulse 2.2s ease-in-out infinite;
}

.hero h1 {
  max-width: 860px;
  margin: 27px 0 24px;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 4vw, 3.65rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.9;
  text-wrap: balance;
  text-transform: uppercase;
}

.hero h1 > span {
  display: block;
}

@media (min-width: 1021px) {
  .hero h1 > span {
    width: max-content;
    max-width: 100%;
    white-space: nowrap;
  }

  .hero-title__closing {
    margin-top: 0.06em;
    font-size: 0.8em;
    letter-spacing: -0.045em;
  }
}

.headline-highlight {
  position: relative;
  z-index: 0;
  width: max-content;
  max-width: 100%;
}

.headline-highlight::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -0.05em;
  bottom: 0.02em;
  left: -0.05em;
  height: 0.29em;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  animation: marker-draw 800ms 780ms var(--ease) forwards;
}

.hero__lead {
  max-width: 655px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.65;
}

.hero__actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.95rem;
  font-weight: 750;
  transition: gap 220ms var(--ease);
}

.text-link:hover {
  gap: 16px;
}

.hero__meta {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero__meta span::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--lime-dark);
}

.hero-visual {
  position: relative;
  aspect-ratio: 0.98;
  max-width: 570px;
  justify-self: end;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.45);
  transform: rotate(1.5deg);
  box-shadow: 18px 18px 0 var(--ink);
  opacity: 0;
  animation: visual-in 900ms 180ms var(--ease) forwards;
}

.hero-visual svg {
  width: 100%;
  height: 100%;
  color: var(--ink);
}

.hero-visual__block {
  fill: var(--ink);
}

.hero-visual__door {
  fill: var(--canvas);
}

.hero-visual__path,
.hero-visual__arrow {
  fill: none;
  stroke: var(--lime);
  stroke-width: 12;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual__path {
  stroke-dasharray: 1120;
  stroke-dashoffset: 1120;
  animation: path-draw 1.4s 650ms var(--ease) forwards;
}

.hero-visual__arrow {
  opacity: 0;
  animation: fade-in 250ms 1.75s ease forwards;
}

.hero-visual__pulse {
  fill: var(--lime);
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: node-in 480ms var(--ease) forwards;
}

.pulse-one {
  animation-delay: 0.9s;
}
.pulse-two {
  animation-delay: 1.2s;
}
.pulse-three {
  animation-delay: 1.5s;
}

.hero-visual__label {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 22px;
  padding: 7px 11px;
  color: var(--surface);
  background: var(--ink);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-visual__label--end {
  right: 22px;
  left: auto;
  color: var(--ink);
  background: var(--lime);
}

.hero-visual__caption {
  position: absolute;
  right: 24px;
  bottom: 20px;
  left: 24px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  color: var(--surface);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

[data-hero-item] {
  opacity: 0;
  transform: translateY(22px);
  animation: hero-item-in 700ms var(--ease) forwards;
}

[data-hero-item]:nth-child(1) {
  animation-delay: 90ms;
}
[data-hero-item]:nth-child(2) {
  animation-delay: 170ms;
}
[data-hero-item]:nth-child(3) {
  animation-delay: 260ms;
}
[data-hero-item]:nth-child(4) {
  animation-delay: 350ms;
}
[data-hero-item]:nth-child(5) {
  animation-delay: 440ms;
}

.hero__ticker {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  border-block: 1px solid var(--ink);
  color: var(--ink);
  background: var(--lime);
}

.hero__ticker-track {
  width: max-content;
  min-height: 48px;
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: ticker 22s linear infinite;
  will-change: transform;
}

.hero__ticker-group {
  padding-right: 30px;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 30px;
}

.hero__ticker-track i {
  font-style: normal;
}

.section-light,
.section-dark,
.pilot-section,
.founder-section,
.booking-section {
  position: relative;
  padding-block: clamp(90px, 12vw, 170px);
}

.section-light {
  background: var(--canvas);
}

.section-dark {
  color: var(--surface);
  background: var(--ink);
}

.section-heading {
  max-width: 980px;
  margin-bottom: clamp(55px, 7vw, 92px);
}

.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: clamp(40px, 7vw, 100px);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--lime-dark);
}

.section-kicker--lime::before {
  background: var(--lime);
}

.section-heading h2,
.pilot-copy h2,
.founder-copy h2,
.faq-intro h2,
.booking-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.068em;
  line-height: 0.92;
  text-transform: uppercase;
  text-wrap: balance;
}

.section-heading h2 span,
.pilot-copy h2 span {
  color: var(--muted);
}

.section-dark .section-heading h2 span {
  color: rgba(255, 255, 255, 0.42);
}

.section-heading__aside,
.section-heading__statement {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.section-dark .section-heading__aside {
  color: rgba(255, 255, 255, 0.67);
}

.section-heading__aside p {
  margin: 0;
}

.micro-note {
  display: block;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.system-section {
  overflow: hidden;
}

.system-section::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  top: 12%;
  right: -260px;
  border: 1px solid rgba(199, 255, 46, 0.15);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(199, 255, 46, 0.03),
    0 0 0 160px rgba(199, 255, 46, 0.02);
}

.leak-map {
  position: relative;
  min-height: 690px;
  margin-top: 30px;
}

.leak-map__route {
  position: absolute;
  inset: 60px 0 110px;
  width: 100%;
  height: calc(100% - 170px);
  overflow: visible;
}

.leak-map__route-shadow,
.leak-map__route-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.leak-map__route-shadow {
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 11;
}

.leak-map__route-line {
  stroke: var(--lime);
  stroke-width: 7;
  stroke-dasharray: 1900;
  stroke-dashoffset: 1900;
  transition: stroke-dashoffset 1.8s 140ms var(--ease);
}

.leak-map.is-visible .leak-map__route-line {
  stroke-dashoffset: 0;
}

.leak-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.leak {
  position: absolute;
  z-index: 2;
  width: clamp(150px, 16vw, 210px);
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.leak::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -1px;
  width: 15px;
  height: 15px;
  border: 4px solid var(--ink);
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 1px var(--lime);
  transform: scale(0);
  transition: transform 450ms var(--ease);
}

.leak-map.is-visible .leak::before {
  transform: scale(1);
}

.leak--1 {
  top: 67%;
  left: 0;
}
.leak--2 {
  top: 2%;
  left: 15%;
}
.leak--3 {
  top: 69%;
  left: 29%;
}
.leak--4 {
  top: 3%;
  left: 43%;
}
.leak--5 {
  top: 69%;
  left: 57%;
}
.leak--6 {
  top: 2%;
  left: 71%;
}
.leak--7 {
  top: 69%;
  left: 83%;
}

.leak__number {
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.leak h3 {
  margin: 8px 0 7px;
  color: var(--surface);
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 1.7vw, 1.42rem);
  font-weight: 850;
  letter-spacing: -0.035em;
  line-height: 1.05;
  text-transform: uppercase;
}

.leak p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.82rem;
  line-height: 1.5;
}

.leak-map__result {
  position: absolute;
  right: 0;
  bottom: 5px;
  width: min(370px, 38%);
  padding: 20px 24px;
  border: 1px solid var(--lime);
  background: var(--ink);
  transform: rotate(-1.2deg);
}

.leak-map__result span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.leak-map__result strong {
  color: var(--lime);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.system-bottom {
  padding-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.system-bottom p {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

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

.button__arrow--dark {
  color: var(--surface);
  background: var(--ink);
}

.process-section {
  overflow: hidden;
}

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

.process-step {
  position: relative;
  min-height: 180px;
  padding: 34px 0;
  border-bottom: 1px solid var(--ink);
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  transition:
    padding-left 260ms var(--ease),
    background 260ms ease;
}

.process-step::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 420ms var(--ease);
}

.process-step:hover {
  padding-left: 24px;
}

.process-step:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.process-step__number {
  color: var(--muted);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.06em;
}

.process-step__body {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(280px, 1fr);
  align-items: center;
  gap: 40px;
}

.process-step h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.7vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.process-step p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
}

.process-step__mark {
  width: 54px;
  height: 54px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  transition:
    transform 280ms var(--ease),
    background 280ms ease;
}

.process-step:hover .process-step__mark {
  background: var(--surface);
  transform: rotate(45deg);
}

.process-principle {
  margin-top: clamp(55px, 7vw, 90px);
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid var(--ink);
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: start;
  gap: 50px;
  background: var(--surface);
  box-shadow: 12px 12px 0 var(--ink);
}

.process-principle__tag {
  padding: 7px 11px;
  color: var(--ink);
  background: var(--lime);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.process-principle p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.8vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.15;
  text-transform: uppercase;
}

.pilot-section {
  overflow: hidden;
  color: var(--surface);
  background: var(--ink);
}

.pilot-section::after {
  content: "PILOT 01";
  position: absolute;
  right: -0.04em;
  bottom: -0.28em;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--font-display);
  font-size: clamp(10rem, 28vw, 30rem);
  font-weight: 900;
  letter-spacing: -0.1em;
  line-height: 1;
  white-space: nowrap;
}

.pilot-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.75fr);
  align-items: center;
  gap: clamp(55px, 9vw, 135px);
}

.pilot-copy h2 span {
  color: var(--lime);
}

.pilot-copy__lead {
  max-width: 650px;
  margin: 30px 0 34px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.08rem;
  line-height: 1.72;
}

.pilot-board {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 18px 18px 0 var(--lime);
  transform: rotate(1deg);
}

.pilot-board__topline {
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.pilot-board__status {
  padding: 5px 10px;
  color: var(--ink);
  background: var(--lime);
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.pilot-points {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pilot-points li {
  padding: 25px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 17px;
}

.pilot-points__icon {
  width: 42px;
  height: 42px;
  border: 1px solid var(--lime);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--lime);
  font-family: var(--font-display);
  font-weight: 900;
}

.pilot-points strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 850;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.pilot-points p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.55;
}

.pilot-board__fineprint {
  margin: 0;
  padding: 20px 22px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
  line-height: 1.55;
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.fit-card {
  min-height: 420px;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--ink);
}

.fit-card--yes {
  background: var(--lime);
}

.fit-card--no {
  color: var(--surface);
  background: var(--ink);
}

.fit-card__head {
  padding-bottom: 27px;
  border-bottom: 1px solid currentColor;
  display: flex;
  align-items: center;
  gap: 18px;
}

.fit-card__symbol {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  font-weight: 800;
}

.fit-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1;
  text-transform: uppercase;
}

.fit-card ul {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.fit-card li {
  position: relative;
  padding: 13px 0 13px 28px;
  border-bottom: 1px solid currentColor;
  font-size: 1rem;
}

.fit-card li::before {
  content: "↳";
  position: absolute;
  left: 0;
  font-weight: 800;
}

.fit-card--no li {
  border-color: rgba(255, 255, 255, 0.25);
}

.founder-section {
  overflow: hidden;
  color: var(--surface);
  background: var(--ink);
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(55px, 9vw, 130px);
}

.founder-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background-color: #191c1a;
  background-size: cover;
  background-position: center;
  box-shadow: -18px 18px 0 var(--lime);
}

.founder-portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 40px 40px;
}

.founder-portrait.has-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11, 13, 12, 0.82));
}

.founder-portrait__initials {
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--lime);
  font-family: var(--font-display);
  font-size: clamp(7rem, 18vw, 14rem);
  font-weight: 900;
  letter-spacing: -0.13em;
  line-height: 0.7;
  transform: translate(-53%, -50%) rotate(-7deg);
}

.founder-portrait.has-photo .founder-portrait__initials,
.founder-portrait.has-photo .founder-portrait__route {
  display: none;
}

.founder-portrait__route {
  position: absolute;
  right: -15%;
  bottom: 22%;
  left: -10%;
  height: 15px;
  background: var(--lime);
  transform: rotate(-24deg);
}

.founder-portrait__label {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  padding: 8px 11px;
  color: var(--ink);
  background: var(--lime);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.founder-copy h2 {
  color: var(--surface);
}

.founder-copy__intro {
  max-width: 700px;
  margin: 28px 0 35px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 1.06rem;
}

.founder-copy blockquote {
  position: relative;
  margin: 0;
  padding: 30px 0 30px 48px;
  border-block: 1px solid rgba(255, 255, 255, 0.25);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.18;
  text-transform: uppercase;
}

.founder-copy blockquote::before {
  content: "“";
  position: absolute;
  top: 24px;
  left: 0;
  color: var(--lime);
  font-size: 4rem;
  line-height: 1;
}

.founder-copy__signature {
  display: block;
  margin-top: 20px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(55px, 9vw, 130px);
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.faq-intro h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.faq-intro p {
  max-width: 430px;
  margin: 26px 0 24px;
  color: var(--muted);
}

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

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

.faq-list summary {
  min-height: 92px;
  padding: 24px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.1vw, 1.8rem);
  font-weight: 850;
  letter-spacing: -0.035em;
  line-height: 1.15;
  list-style: none;
  text-transform: uppercase;
  cursor: pointer;
}

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

.faq-icon {
  position: relative;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border: 1px solid var(--ink);
  border-radius: 50%;
  transition:
    transform 260ms var(--ease),
    background 260ms ease;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: var(--ink);
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

details[open] .faq-icon {
  background: var(--lime);
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 660px;
  margin: 0;
  padding: 0 72px 29px 4px;
  color: var(--muted);
  font-size: 1rem;
}

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

.booking-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(var(--ink) 1px, transparent 1px),
    linear-gradient(90deg, var(--ink) 1px, transparent 1px);
  background-size: 54px 54px;
}

.booking-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(480px, 1fr);
  align-items: start;
  gap: clamp(55px, 8vw, 120px);
}

.eyebrow--dark {
  color: var(--surface);
  background: var(--ink);
  border-color: var(--ink);
}

.booking-copy h2 {
  margin-top: 25px;
  font-size: clamp(3rem, 5.7vw, 5.8rem);
}

.booking-copy > p {
  margin: 27px 0 30px;
  font-size: 1.05rem;
}

.booking-benefits {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.booking-benefits li {
  padding: 7px 11px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.booking-frame {
  min-height: 580px;
  border: 1px solid var(--ink);
  background: var(--surface);
  box-shadow: 16px 16px 0 var(--ink);
}

.booking-frame iframe {
  width: 100%;
  min-height: 680px;
  border: 0;
  display: block;
}

.booking-placeholder {
  min-height: 580px;
  padding: clamp(32px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.booking-placeholder__number {
  color: var(--lime-dark);
  font-family: var(--font-display);
  font-size: clamp(6rem, 13vw, 10rem);
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 0.75;
}

.booking-placeholder strong {
  display: block;
  margin-top: 32px;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.booking-placeholder p {
  max-width: 500px;
  margin: 16px 0 0;
  color: var(--muted);
}

.booking-placeholder__email {
  margin-top: 28px;
}

.site-footer {
  padding-top: clamp(65px, 8vw, 100px);
  color: var(--surface);
  background: var(--ink);
}

.footer-grid {
  padding-bottom: 65px;
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr;
  gap: 50px;
}

.site-footer .brand__bar {
  fill: var(--surface);
}

.site-footer .brand__route,
.site-footer .brand__arrow {
  stroke: var(--lime);
}

.footer-brand p {
  max-width: 380px;
  margin: 19px 0 0;
  color: rgba(255, 255, 255, 0.55);
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.88rem;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.65);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--lime);
}

.footer-contact span {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
  min-height: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
}

.footer-bottom a:hover {
  color: var(--surface);
}

.footer-bottom button {
  padding: 8px 0;
  border: 0;
  color: var(--lime);
  background: transparent;
  cursor: pointer;
}

.weight-progress {
  position: fixed;
  z-index: 50;
  right: 14px;
  top: 50%;
  width: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transform: translateY(-50%);
  mix-blend-mode: difference;
}

.weight-progress__label {
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.weight-progress__stack {
  display: flex;
  flex-direction: column-reverse;
  gap: 3px;
}

.weight-progress__stack i {
  width: 26px;
  height: 7px;
  border: 1px solid #fff;
  display: block;
  transition: background 180ms ease;
}

.weight-progress__stack i.is-filled {
  background: #fff;
}

.weight-progress__value {
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 900;
}

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

.menu-open .mobile-booking-cta {
  opacity: 0;
  pointer-events: none;
}

.legal-page {
  background: var(--canvas);
}

.legal-header {
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(245, 246, 240, 0.95);
}

.legal-header__inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.legal-main {
  padding-block: clamp(70px, 10vw, 140px);
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 760px);
  justify-content: space-between;
  align-items: start;
  gap: clamp(50px, 10vw, 150px);
}

.legal-aside {
  position: sticky;
  top: 30px;
}

.legal-aside > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.legal-draft-note {
  margin-top: 30px;
  padding: 18px;
  border: 1px solid var(--ink);
  background: var(--lime);
  font-size: 0.85rem;
}

.legal-draft-note strong,
.legal-draft-note span {
  display: block;
}

.legal-draft-note span {
  margin-top: 5px;
}

.legal-content h1 {
  margin: 0 0 30px;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 6.7rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.9;
  text-transform: uppercase;
}

.legal-lead {
  margin: 0 0 70px;
  color: var(--muted);
  font-size: 1.15rem;
}

.legal-content section {
  padding-block: 30px;
  border-top: 1px solid var(--ink);
}

.legal-content h2 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.7vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.legal-content p,
.legal-content ul {
  max-width: 720px;
  color: var(--muted);
}

.legal-content a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-footer {
  color: var(--surface);
  background: var(--ink);
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease);
}

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

@keyframes hero-item-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes visual-in {
  from {
    opacity: 0;
    transform: translateY(30px) rotate(4deg) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(1.5deg) scale(1);
  }
}

@keyframes path-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes marker-draw {
  to {
    transform: scaleX(1);
  }
}

@keyframes fade-in {
  to {
    opacity: 1;
  }
}

@keyframes node-in {
  from {
    opacity: 0;
    transform: scale(0.2);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes status-pulse {
  50% {
    box-shadow: 0 0 0 7px rgba(143, 184, 0, 0);
  }
}

@keyframes ticker {
  to {
    transform: translate3d(-25%, 0, 0);
  }
}

@media (max-width: 1020px) {
  :root {
    --shell: min(100% - 32px, 860px);
  }

  .desktop-nav,
  .button--nav {
    display: none;
  }

  .site-header,
  .site-header.is-scrolled {
    height: var(--header-height);
  }

  .announcement-bar {
    display: none;
  }

  .nav-shell {
    height: 100%;
    grid-template-columns: 1fr auto;
    transform: none !important;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--ink);
    border-radius: 50%;
    display: grid;
    place-content: center;
    gap: 6px;
    background: transparent;
  }

  .menu-toggle span:not(.sr-only) {
    width: 20px;
    height: 2px;
    background: var(--ink);
    transition: transform 220ms var(--ease);
  }

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

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

  .mobile-nav {
    position: fixed;
    inset: var(--header-height) 0 0;
    padding: 40px 20px max(30px, env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    color: var(--surface);
    background: var(--ink);
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav > a:not(.button) {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    font-family: var(--font-display);
    font-size: clamp(2rem, 7vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1.1;
    text-transform: uppercase;
  }

  .mobile-nav .button {
    margin-top: auto;
    color: var(--ink);
    background: var(--lime);
    border-color: var(--lime);
  }

  .hero {
    padding-top: calc(var(--header-height) + 52px);
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .hero h1 {
    max-width: 800px;
    font-size: clamp(3.6rem, 11.5vw, 6.4rem);
  }

  .hero-visual {
    width: min(90%, 580px);
    justify-self: center;
  }

  .section-heading--split,
  .pilot-grid,
  .founder-grid,
  .faq-grid,
  .booking-shell {
    grid-template-columns: 1fr;
  }

  .section-heading--split {
    align-items: start;
    gap: 30px;
  }

  .section-heading__aside,
  .section-heading__statement {
    max-width: 650px;
  }

  .leak-map {
    min-height: auto;
  }

  .leak-map__route {
    display: none;
  }

  .leak-list {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 38px;
  }

  .leak-list::before {
    content: "";
    position: absolute;
    top: 18px;
    bottom: 18px;
    left: 50%;
    width: 5px;
    background: var(--lime);
    transform: translateX(-50%);
  }

  .leak {
    position: relative;
    inset: auto;
    width: auto;
    min-height: 170px;
    padding: 22px 0;
    border-top-color: rgba(255, 255, 255, 0.25);
  }

  .leak:nth-child(odd) {
    grid-column: 1;
    padding-right: 20px;
  }

  .leak:nth-child(even) {
    grid-column: 2;
    padding-left: 20px;
  }

  .leak::before {
    display: none;
  }

  .leak-map__result {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 38px;
  }

  .system-bottom {
    margin-top: 70px;
  }

  .process-step {
    grid-template-columns: 90px minmax(0, 1fr) auto;
  }

  .process-step__body {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pilot-grid {
    max-width: 800px;
  }

  .pilot-board {
    width: min(94%, 670px);
    justify-self: center;
  }

  .founder-grid {
    max-width: 820px;
  }

  .founder-portrait {
    width: min(76%, 540px);
    justify-self: center;
  }

  .faq-intro {
    position: static;
  }

  .booking-shell {
    max-width: 820px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
  }

  .weight-progress {
    display: none;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-aside {
    position: static;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 28px);
    --header-height: 70px;
  }

  .brand__mark {
    width: 34px;
  }

  .brand__logo {
    height: 56px;
  }

  .brand__word {
    font-size: 1rem;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 34px);
  }

  .hero__grid {
    gap: 46px;
    padding-bottom: 105px;
  }

  .hero h1 {
    margin-top: 21px;
    font-size: clamp(3.05rem, 16vw, 4.9rem);
    line-height: 0.88;
    letter-spacing: -0.078em;
  }

  .hero__lead {
    font-size: 1rem;
    line-height: 1.58;
  }

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

  .button--large {
    width: 100%;
    justify-content: space-between;
  }

  .text-link {
    align-self: flex-start;
  }

  .hero__meta {
    gap: 8px 14px;
    font-size: 0.7rem;
  }

  .hero-visual {
    width: calc(100% - 12px);
    box-shadow: 11px 11px 0 var(--ink);
    transform: rotate(1deg);
  }

  .hero-visual__caption {
    right: 16px;
    bottom: 15px;
    left: 16px;
    flex-direction: column;
    gap: 2px;
  }

  .hero-visual__label {
    top: 14px;
    left: 14px;
  }

  .hero-visual__label--end {
    right: 14px;
    left: auto;
  }

  .hero__ticker-track {
    min-height: 42px;
    font-size: 0.72rem;
  }

  .section-light,
  .section-dark,
  .pilot-section,
  .founder-section,
  .booking-section {
    padding-block: 86px;
  }

  .section-heading {
    margin-bottom: 48px;
  }

  .section-heading h2,
  .pilot-copy h2,
  .founder-copy h2,
  .faq-intro h2,
  .booking-copy h2 {
    font-size: clamp(2.65rem, 13vw, 4rem);
    letter-spacing: -0.065em;
  }

  .section-heading__aside,
  .section-heading__statement {
    font-size: 0.98rem;
  }

  .leak-list {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 27px;
  }

  .leak-list::before {
    left: 3px;
    width: 3px;
    transform: none;
  }

  .leak,
  .leak:nth-child(odd),
  .leak:nth-child(even) {
    grid-column: 1;
    min-height: auto;
    padding: 21px 0;
  }

  .leak::after {
    content: "";
    position: absolute;
    top: 27px;
    left: -31px;
    width: 11px;
    height: 11px;
    border: 3px solid var(--ink);
    border-radius: 50%;
    background: var(--lime);
  }

  .leak h3 {
    font-size: 1.35rem;
  }

  .leak p {
    max-width: 450px;
    font-size: 0.9rem;
  }

  .leak-map__result {
    padding: 18px;
  }

  .system-bottom {
    margin-top: 54px;
    padding-top: 30px;
    align-items: stretch;
    flex-direction: column;
    gap: 25px;
  }

  .system-bottom .button {
    width: 100%;
    justify-content: space-between;
  }

  .process-step {
    min-height: auto;
    padding: 28px 0;
    grid-template-columns: 54px minmax(0, 1fr);
    align-items: start;
    gap: 16px;
  }

  .process-step:hover {
    padding-left: 0;
  }

  .process-step:hover::before {
    transform: scaleX(0);
  }

  .process-step__number {
    font-size: 2.15rem;
  }

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

  .process-step__mark {
    display: none;
  }

  .process-principle {
    padding: 26px;
    grid-template-columns: 1fr;
    gap: 24px;
    box-shadow: 8px 8px 0 var(--ink);
  }

  .process-principle__tag {
    width: max-content;
  }

  .process-principle p {
    font-size: 1.45rem;
  }

  .pilot-board {
    width: calc(100% - 10px);
    box-shadow: 10px 10px 0 var(--lime);
  }

  .pilot-copy .button {
    width: 100%;
    justify-content: space-between;
  }

  .pilot-points li {
    padding: 22px 18px;
  }

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

  .fit-card {
    min-height: 0;
    padding: 27px 22px;
  }

  .fit-card__head {
    align-items: flex-start;
  }

  .founder-portrait {
    width: calc(100% - 12px);
    box-shadow: -10px 10px 0 var(--lime);
  }

  .founder-copy blockquote {
    padding-left: 36px;
    font-size: 1.38rem;
  }

  .founder-copy blockquote::before {
    font-size: 3.2rem;
  }

  .faq-list summary {
    min-height: 82px;
    padding-block: 21px;
    font-size: 1.2rem;
  }

  .faq-icon {
    width: 34px;
    height: 34px;
  }

  .faq-list details > p {
    padding-right: 10px;
    font-size: 0.95rem;
  }

  .booking-section {
    padding-bottom: 110px;
  }

  .booking-frame {
    min-height: 480px;
    box-shadow: 9px 9px 0 var(--ink);
  }

  .booking-placeholder {
    min-height: 480px;
    padding: 28px;
  }

  .booking-placeholder__number {
    font-size: 7rem;
  }

  .footer-grid {
    padding-bottom: 42px;
    grid-template-columns: 1fr 1fr;
    gap: 38px 25px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    padding-block: 22px 96px;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .mobile-booking-cta {
    position: fixed;
    z-index: 80;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 10px;
    min-height: 54px;
    padding: 12px 18px;
    border: 1px solid var(--lime);
    border-radius: 999px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    color: var(--surface);
    background: rgba(11, 13, 12, 0.94);
    box-shadow: 0 8px 25px rgba(11, 13, 12, 0.28);
    backdrop-filter: blur(14px);
    font-size: 0.82rem;
    font-weight: 800;
  }

  .mobile-booking-cta.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
  }

  .legal-header__inner .brand__word {
    display: none;
  }

  .legal-header__inner .text-link {
    font-size: 0.82rem;
  }

  .legal-main {
    padding-block: 60px 90px;
  }

  .legal-layout {
    gap: 55px;
  }

  .legal-content h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  [data-hero-item],
  .hero-visual,
  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .leak-map__route-line {
    stroke-dashoffset: 0;
  }
}
