/* Variable font: axes wdth (width) and wght (weight) */
@font-face {
  font-family: 'Zalando Sans';
  src: url('assets/fonts/ZalandoSans-VariableFont_wdth,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-stretch: 75% 125%;
  font-display: swap;
}

:root {
  --bg: #010113;
  --lime: #e0ff00;
  --lime-bright: #b9ff00;
  --purple: #8b5cf6;
  --text-dim: rgba(255, 255, 255, 0.5);
  --line: rgba(255, 255, 255, 0.1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html, body {
  overflow-x: clip;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: #fff;
  font-family: 'Zalando Sans', sans-serif;
  min-height: 100vh;
}

section,
#waitlist {
  scroll-margin-top: 96px;
}

/* ---- Reveal-on-scroll system ----
   Elements opt in with [data-reveal]; hidden state only applies when JS
   is running, so content stays visible without it. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
  transition-delay: var(--d, 0s);
}

.js [data-reveal][data-reveal-from="left"]  { transform: translateX(-44px); }
.js [data-reveal][data-reveal-from="right"] { transform: translateX(44px); }

.js [data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* ---- Nav ---- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  transition: background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.site-nav.is-scrolled {
  background: rgba(1, 1, 19, 0.78);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}

.site-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 72px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.wordmark {
  font-size: 22px;
  font-weight: 800;
  font-stretch: semi-expanded;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.wordmark span {
  color: var(--lime);
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-size: 16px;
  font-weight: 500;
  font-stretch: semi-expanded;
  letter-spacing: 0.5px;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.15s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fff;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  height: 44px;
  padding: 0 24px;
  background: var(--lime);
  color: #000;
  border-radius: 32px;
  font-size: 14px;
  font-weight: 800;
  font-stretch: semi-expanded;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.15s ease;
}

.nav-cta:hover {
  background: #d4f000;
  transform: translateY(-1px);
  box-shadow: 0 4px 32px rgba(224, 255, 0, 0.35);
}

.nav-cta:active {
  transform: translateY(0) scale(0.97);
}

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

/* ---- Hero Section ---- */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 176px;
  overflow: visible;
}

.hero-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 64px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 36px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  font-stretch: semi-expanded;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  animation: pulse-dot 2.4s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(224, 255, 0, 0.5); }
  50%      { box-shadow: 0 0 0 6px rgba(224, 255, 0, 0); }
}

.hero-heading {
  font-size: 80px;
  font-weight: 600;
  font-stretch: semi-expanded;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.hero-heading .accent {
  font-style: normal;
  color: var(--lime);
}

/* Line-mask entrance for the headline */
.hero-line {
  display: block;
  overflow: hidden;
  padding-block: 2px;
}

.hero-line-inner {
  display: block;
}

.js .hero-line-inner {
  transform: translateY(112%);
  transition: transform 0.9s var(--ease-out);
}

.js .hero-line:nth-child(2) .hero-line-inner { transition-delay: 0.12s; }

body.is-loaded .hero-line-inner {
  transform: none;
}

.hero-subtext {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--text-dim);
  letter-spacing: -0.24px;
  max-width: 600px;
}

/* Hero entrance stagger for eyebrow, subtext, and form */
.js .hero-eyebrow,
.js .hero-subtext,
.js .hero-form,
.js .hero-image-area {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.js .hero-eyebrow    { transition-delay: 0.05s; }
.js .hero-subtext    { transition-delay: 0.3s; }
.js .hero-form       { transition-delay: 0.45s; }
.js .hero-image-area { transition-delay: 0.55s; }

body.is-loaded .hero-eyebrow,
body.is-loaded .hero-subtext,
body.is-loaded .hero-form,
body.is-loaded .hero-image-area {
  opacity: 1;
  transform: none;
}

/* ---- Email Form (shared) ---- */
.email-form-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 561px;
  max-width: 90vw;
  position: relative;
  z-index: 2;
}

.email-form {
  display: flex;
  align-items: center;
  width: 100%;
  height: 88px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 64px;
  padding: 2px 2px 2px 32px;
  transition: box-shadow 0.25s ease;
}

.email-form:focus-within {
  box-shadow: 0 0 0 3px rgba(224, 255, 0, 0.4), 0 8px 48px rgba(224, 255, 0, 0.12);
}

.email-form--glow {
  box-shadow: 0 0 96px rgba(224, 255, 0, 0.14);
}

.email-form input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Zalando Sans', sans-serif;
  font-size: 32px;
  color: #000;
  line-height: 1;
}

.email-form input::placeholder {
  color: #000;
  opacity: 1;
}

.email-form button {
  flex-shrink: 0;
  height: 84px;
  width: 149px;
  background: var(--lime);
  border: none;
  border-radius: 56px;
  font-family: 'Zalando Sans', sans-serif;
  font-size: 24px;
  font-weight: 800;
  font-stretch: semi-expanded;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: #000;
  cursor: pointer;
  line-height: 20px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.email-form button:hover {
  background: #d4f000;
  transform: scale(1.02);
}

.email-form button:active {
  transform: scale(0.97);
}

.email-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-label {
  font-size: 18px;
  font-weight: 400;
  font-stretch: semi-expanded;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.25;
}

.form-message.success {
  color: var(--lime-bright);
}

.form-message.error {
  color: #ff6b6b;
}

/* ---- Hero Image Area ---- */
.hero-image-area {
  position: relative;
  width: 100%;
  margin-top: 48px;
  padding-bottom: 0;
}

.hero-parallax {
  will-change: transform;
}

/* The stripes run off the top/side edges, but clip at the container's
   bottom — which hides behind the marquee band, so no cut is visible. */
.hero-stripe {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 80px;
  height: 1800px;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero-stripe-inner {
  position: absolute;
  left: 50%;
  top: calc(100% - 380px);
  display: flex;
  align-items: stretch;
  height: 320vmax;
  transform: translate(-50%, -50%) rotate(60deg);
  will-change: transform;
}

.stripe-bar {
  height: 100%;
}

.stripe-bar--lime {
  width: 225px;
  background: var(--lime-bright);
}

.stripe-bar--purple {
  width: 110px;
  background: var(--purple);
}

/* Stripe sweeps in on load */
.js .stripe-bar {
  transform: scaleY(0);
  transition: transform 1.1s var(--ease-out);
}

.js .stripe-bar--purple { transition-delay: 0.15s; }

body.is-loaded .stripe-bar {
  transform: none;
}

.hero-hand {
  display: block;
  width: 889px;
  max-width: 90vw;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ---- Marquee ----
   Pulled up over the hero's bottom edge so the band covers the seam
   and the base of the hand like an overlapping sticker. */
.marquee {
  position: relative;
  z-index: 2;
  height: 200px;
  margin-top: -180px;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.marquee-layer {
  position: absolute;
  left: 0;
  width: 100%;
}

.marquee-layer--purple {
  height: 68px;
  background: var(--purple);
  /* Peeks out below the lime band, echoing the stripes.png pairing */
  transform: translateY(22%);
}

.marquee-layer--lime {
  background: var(--lime);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 26s linear infinite;
}

.marquee-chunk {
  display: block;
  padding: 20px 0;
  font-size: 28px;
  font-weight: 800;
  font-stretch: semi-expanded;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #000;
  white-space: nowrap;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- Sections (shared) ---- */
.how-it-works {
  width: 100%;
  padding: 160px 0 120px;
  border-bottom: 2px solid var(--line);
}

.section-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 840px;
  margin: 0 auto 80px;
  padding: 0 24px;
}

.section-label {
  font-size: 24px;
  font-weight: 600;
  font-stretch: semi-expanded;
  color: var(--lime);
  letter-spacing: 2.4px;
  text-transform: uppercase;
  line-height: 1;
}

.section-title {
  font-size: 64px;
  font-weight: 600;
  font-stretch: semi-expanded;
  line-height: 1;
}

.section-subtext {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--text-dim);
  letter-spacing: -0.24px;
  max-width: 720px;
  margin: 8px auto 0;
}

/* Feature rows */
.feature {
  display: flex;
  max-width: 1092px;
  margin: 0 auto;
  gap: 0;
  margin-bottom: 0;
}

.feature + .feature {
  margin-top: 0;
}

.feature-image {
  width: 546px;
  height: 708px;
  flex-shrink: 0;
  background:
    radial-gradient(560px 420px at 50% 12%, var(--feature-glow, rgba(224, 255, 0, 0.12)), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.07));
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  position: relative;
}

.feature-image img {
  position: absolute;
  width: 329px;
  height: auto;
  top: 72px;
  left: 108px;
  filter: drop-shadow(0 32px 64px rgba(0, 0, 0, 0.45));
  transition: transform 0.6s var(--ease-out);
}

.feature-image:hover img {
  transform: translateY(-10px);
}

.feature--rate .feature-image {
  --feature-glow: rgba(244, 0, 244, 0.14);
}

.feature-info {
  width: 546px;
  height: 708px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding-left: 64px;
}

.feature-info-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 418px;
}

.feature-step {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 20px;
  font-weight: 700;
  font-stretch: semi-expanded;
  letter-spacing: 2px;
  color: var(--lime);
  line-height: 1;
}

.feature-step::after {
  content: '';
  width: 48px;
  height: 2px;
  background: var(--lime);
  opacity: 0.5;
}

.feature-info h3 {
  font-size: 56px;
  font-weight: 600;
  font-stretch: semi-expanded;
  line-height: 1;
}

.feature-info p {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--text-dim);
  letter-spacing: -0.24px;
}

/* Feature layout variants */
.feature--focus .feature-image {
  border-radius: 48px 48px 0 48px;
}

.feature--rate .feature-image {
  border-radius: 0 48px 48px 0;
  order: 2;
}
.feature--rate .feature-info {
  order: 1;
  padding-left: 64px;
}

.feature--review .feature-image {
  border-radius: 48px 0 48px 48px;
}
.feature--review .feature-image img {
  width: 329px;
  height: auto;
  left: 50%;
  transform: translateX(-50%);
}
.feature--review .feature-image:hover img {
  transform: translateX(-50%) translateY(-10px);
}

/* ---- Zones Section ---- */
.zones-section {
  width: 100%;
  padding: 160px 0 160px;
  border-bottom: 2px solid var(--line);
}

.zones-list {
  list-style: none;
  max-width: 1092px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
}

.zone {
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.zone + .zone {
  border-top: 1px solid var(--line);
}

.zone-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
}

.zone-name {
  display: flex;
  align-items: baseline;
  gap: 20px;
  font-size: 40px;
  font-weight: 600;
  font-stretch: semi-expanded;
  text-transform: uppercase;
  line-height: 1;
}

.zone-num {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dim);
}

.zone-desc {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--text-dim);
  letter-spacing: -0.2px;
  text-align: right;
}

.zone-bar {
  height: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.zone-bar-fill {
  height: 100%;
  width: var(--w, 100%);
  border-radius: 8px;
  background: var(--zone, var(--lime));
  transform-origin: left center;
}

/* Bars sweep out after the row reveals */
.js .zone-bar-fill {
  transform: scaleX(0);
  transition: transform 0.9s var(--ease-out);
  transition-delay: calc(var(--d, 0s) + 0.25s);
}

.js .zone.is-in .zone-bar-fill {
  transform: scaleX(1);
}

/* ---- Who Section ---- */
.who-section {
  width: 100%;
  padding: 160px 0 120px;
  border-bottom: 2px solid var(--line);
  overflow: hidden;
}

.audience-grid {
  display: flex;
  gap: 12px;
  margin-top: 80px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  /* Centers the 3-card rail on wide screens, scrolls on narrow ones */
  padding-inline: max(24px, calc(50vw - 684px));
}

.audience-grid::-webkit-scrollbar {
  display: none;
}

.audience-card {
  width: 448px;
  height: 706px;
  background: rgba(217, 217, 217, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  scroll-snap-align: start;
  transition: transform 0.5s var(--ease-out), border-color 0.3s ease;
}

.audience-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.14);
}

/* Duotone treatment: grayscale the photo, map highlights to the card's
   zone tint via multiply, lift shadows toward the page navy via lighten. */
.audience-media {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.audience-media::before,
.audience-media::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.audience-media::before {
  background: var(--tint, var(--lime));
  mix-blend-mode: multiply;
  z-index: 1;
}

.audience-media::after {
  background: #0b0b26;
  mix-blend-mode: lighten;
  z-index: 2;
}

.audience-card img {
  display: block;
  width: 448px;
  height: 448px;
  object-fit: cover;
  filter: grayscale(1) contrast(1.12);
  transition: transform 0.7s var(--ease-out);
}

.audience-card:hover img {
  transform: scale(1.04);
}

.audience-desc {
  position: absolute;
  top: 482px;
  left: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.audience-desc h3 {
  font-size: 40px;
  font-weight: 600;
  font-stretch: semi-expanded;
  line-height: 1;
}

.audience-desc p {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--text-dim);
  letter-spacing: -0.2px;
}

/* ---- Bottom CTA ---- */
.bottom-cta {
  position: relative;
  width: 100%;
  padding: 208px 0 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.bottom-cta .section-header {
  margin-bottom: 48px;
}

.bottom-cta .cta-subtext {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--text-dim);
  letter-spacing: -0.24px;
  text-align: center;
  max-width: 746px;
  margin-bottom: 64px;
  padding: 0 24px;
}

/* ---- Footer ---- */
.site-footer {
  border-top: 2px solid var(--line);
  padding: 48px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-tagline {
  font-size: 16px;
  font-weight: 500;
  font-stretch: semi-expanded;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--text-dim);
}

.footer-copyright {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dim);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-link {
  font-size: 16px;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--lime);
}

/* ---- Responsive ---- */

/* Tablet / small laptop */
@media (max-width: 1200px) {
  .feature {
    flex-direction: column;
    align-items: center;
    max-width: 546px;
    margin-bottom: 48px;
  }

  /* Always show image on top, text below */
  .feature--rate .feature-image { order: -1; }
  .feature--rate .feature-info { order: 0; padding-left: 0; }

  /* Fully round all feature image corners in single-col */
  .feature-image,
  .feature--focus .feature-image,
  .feature--rate .feature-image,
  .feature--review .feature-image {
    border-radius: 48px;
  }

  .feature {
    padding: 0 24px;
  }

  .feature-info {
    width: 100%;
    height: auto;
    padding: 32px 0 48px;
  }

  .feature-image {
    width: 100%;
  }

  .audience-grid {
    padding-inline: 40px;
  }

  .audience-card {
    width: 360px;
    height: 580px;
  }

  .audience-card img {
    width: 360px;
    height: 360px;
  }

  .audience-desc {
    top: auto;
    bottom: 0;
    padding-bottom: 32px;
  }

  .audience-desc h3 {
    font-size: 32px;
  }

  .audience-desc p {
    font-size: 16px;
  }

  .how-it-works,
  .who-section,
  .zones-section {
    padding: 120px 0 80px;
  }

  .zones-section {
    padding-bottom: 120px;
  }

  .bottom-cta {
    padding: 120px 0 120px;
  }
}

/* Tablet portrait */
@media (max-width: 900px) {
  .site-nav-inner {
    height: 64px;
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    height: 38px;
    padding: 0 18px;
    font-size: 12px;
  }

  .hero {
    padding-top: 144px;
  }

  .hero-heading {
    font-size: 48px;
    padding: 0 20px;
  }

  .hero-subtext {
    font-size: 18px;
    padding: 0 20px;
  }

  .email-form {
    height: 64px;
  }

  .email-form input {
    font-size: 18px;
  }

  .email-form button {
    height: 60px;
    width: auto;
    padding: 0 32px;
    font-size: 16px;
    letter-spacing: 1.6px;
  }

  .hero-stripe {
    bottom: 60px;
  }

  .hero-stripe-inner {
    top: calc(100% - 540px);
  }

  .marquee {
    height: 140px;
    margin-top: -130px;
  }

  .marquee-chunk {
    font-size: 20px;
    padding: 14px 0;
  }

  .marquee-layer--purple {
    height: 48px;
  }

  .section-title {
    font-size: 40px;
    padding: 0 20px;
  }

  .section-label {
    font-size: 18px;
  }

  .section-subtext {
    font-size: 18px;
  }

  .feature-image {
    height: 500px;
  }

  .feature-image img,
  .feature--review .feature-image img {
    width: 250px;
    left: 50%;
    transform: translateX(-50%);
  }

  .feature-image:hover img,
  .feature--review .feature-image:hover img {
    transform: translateX(-50%) translateY(-10px);
  }

  .feature-info {
    padding: 32px 0 48px;
  }

  .feature-info h3 {
    font-size: 40px;
  }

  .feature-info p {
    font-size: 20px;
  }

  .zone {
    padding: 24px 0;
  }

  .zone-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .zone-desc {
    text-align: left;
  }

  .zone-name {
    font-size: 32px;
    gap: 14px;
  }

  .zone-bar {
    height: 12px;
  }

  .audience-grid {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    margin-top: 64px;
    overflow-x: visible;
  }

  .audience-card {
    width: 100%;
    max-width: 448px;
    height: auto;
  }

  .audience-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .audience-desc {
    position: relative;
    left: 0;
    right: 0;
    padding: 24px 24px 32px;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 40px 20px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .hero {
    padding-top: 120px;
  }

  .hero-eyebrow {
    font-size: 11px;
    letter-spacing: 1.6px;
    height: 32px;
    padding: 0 14px;
  }

  /* Let the headline wrap naturally on small screens; swap the
     line-mask entrance for a simple fade-up. */
  .hero-heading {
    font-size: 36px;
    text-wrap: balance;
  }

  .hero-line,
  .hero-line-inner {
    display: inline;
    overflow: visible;
    padding: 0;
  }

  .js .hero-line-inner {
    transform: none;
    transition: none;
  }

  .js .hero-heading {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease-out) 0.15s, transform 0.8s var(--ease-out) 0.15s;
  }

  body.is-loaded .hero-heading {
    opacity: 1;
    transform: none;
  }

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

  .email-form {
    height: 56px;
  }

  .email-form input {
    font-size: 16px;
  }

  .email-form button {
    height: 52px;
    padding: 0 24px;
    font-size: 14px;
  }

  .hero-text {
    margin-bottom: 32px;
  }

  .email-form-wrapper {
    gap: 16px;
  }

  .hero-hand {
    max-width: 80vw;
    margin: 0 auto;
  }

  .hero-stripe {
    bottom: 45px;
  }

  .hero-stripe-inner {
    top: calc(100% - 240px);
  }

  .marquee {
    height: 110px;
    margin-top: -100px;
  }

  .marquee-chunk {
    font-size: 16px;
    padding: 12px 0;
    letter-spacing: 2px;
  }

  .marquee-layer--purple {
    height: 36px;
  }

  .section-title {
    font-size: 32px;
  }

  .feature-info h3 {
    font-size: 32px;
  }

  .feature-info p {
    font-size: 18px;
  }

  .feature-step {
    font-size: 16px;
  }

  .zone-name {
    font-size: 26px;
  }

  .zone-desc {
    font-size: 16px;
  }

  .how-it-works,
  .who-section,
  .zones-section {
    padding: 80px 0 60px;
  }

  .zones-section {
    padding-bottom: 80px;
  }

  .bottom-cta {
    padding: 80px 0 80px;
  }

  .bottom-cta .cta-subtext {
    font-size: 18px;
    padding: 0 20px;
  }
}

/* ---- Reduced motion: calm path ---- */
@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;
    transition-delay: 0s !important;
  }

  .js [data-reveal],
  .js .hero-line-inner,
  .js .hero-eyebrow,
  .js .hero-subtext,
  .js .hero-form,
  .js .hero-image-area,
  .js .stripe-bar,
  .js .zone-bar-fill {
    opacity: 1;
    transform: none;
  }
}
