/* -----------------------------------------------------------------------------
   Tokens - pulled from the app Figma file.
   ----------------------------------------------------------------------------- */
:root {
  /* colour */
  --bg: #0a0a0f;
  --glow-blue: #5c8de7;
  --glow-purple: #4310fa;
  --cta-from: #002f7a;
  --cta-to: #5d47fd;
  --mu-border: #4a4eaf;
  --mu-glow: rgba(43, 40, 204, 0.43);
  --surface-1: rgba(255, 255, 255, 0.08);
  --border-1: rgba(255, 255, 255, 0.2);
  --chip-bg: rgba(106, 105, 121, 0.2);
  --chip-border: rgba(255, 255, 255, 0.1);
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.7);

  /* type */
  --font-sans: "Nunito", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* spacing */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 16px;
  --s-4: 24px;
  --s-5: 32px;
  --s-6: 48px;
  --s-7: 64px;
  --s-8: 96px;

  /* radii */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-pill: 9999px;

  /* gradients / shadows */
  --grad-cta: linear-gradient(to right, var(--cta-from) 0%, var(--cta-to) 100%);
  --shadow-cta-inset: inset 0 -6px 20px rgba(255, 255, 255, 0.2);
  --shadow-mu-glow: 0 -7px 24px 3px var(--mu-glow);
  --shadow-mu-inset: inset 0 -3px 11px rgba(255, 255, 255, 0.3);
}

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

html {
  scroll-behavior: smooth;
}
html,
body {
  margin: 0;
  padding: 0;
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  position: relative;
}

/* Page-level ambient glow - fixed to the viewport so it persists across all
   sections without section-edge cut-offs from overflow:hidden boundaries. */
body::before,
body::after {
  content: "";
  position: fixed;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  filter: blur(140px);
  z-index: -1;
  pointer-events: none;
}
body::before {
  background: var(--glow-blue);
  opacity: 0.14;
  top: -160px;
  left: -160px;
}
body::after {
  background: var(--glow-purple);
  opacity: 0.1;
  bottom: -200px;
  right: -180px;
}

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

h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
}

p {
  margin: 0;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

input {
  font: inherit;
  color: inherit;
  background: transparent;
  border: 0;
  outline: 0;
}

:focus-visible {
  outline: 2px solid var(--cta-to);
  outline-offset: 3px;
  border-radius: 4px;
}

/* -----------------------------------------------------------------------------
   Layout helpers
   ----------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--s-4);
}

.container--narrow {
  max-width: 720px;
}

.visually-hidden {
  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: absolute;
  left: -9999px;
  top: 0;
  background: var(--bg);
  color: var(--text);
  padding: var(--s-2) var(--s-3);
  z-index: 1000;
}
.skip-link:focus {
  left: var(--s-3);
  top: var(--s-3);
}

.wordmark {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.02em;
  margin-bottom: var(--s-4);
}

/* -----------------------------------------------------------------------------
   Components
   ----------------------------------------------------------------------------- */

/* mu orb -------------------------------------------------------------------- */
.mu-orb {
  --size: 64px;
  position: relative;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  border: 1px solid var(--mu-border);
  background: radial-gradient(
    circle at 30% 35%,
    #5c5cc9 0%,
    #201a6a 60%,
    #0b0930 100%
  );
  box-shadow: var(--shadow-mu-glow), var(--shadow-mu-inset);
  display: grid;
  place-items: center;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.04em;
}
.mu-orb--sm {
  --size: 32px;
  font-size: 14px;
}
.mu-orb--md {
  --size: 64px;
  font-size: 26px;
}
.mu-orb--lg {
  --size: 120px;
  font-size: 48px;
}

.mu-orb__label {
  line-height: 1;
}
.mu-orb__star {
  position: absolute;
  top: 18%;
  right: 18%;
  font-size: calc(var(--size) * 0.18);
  color: #fff;
  opacity: 0.9;
}

/* Zone chip ----------------------------------------------------------------- */
.zone-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  background: var(--chip-bg);
  border: 1px solid var(--chip-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
}
.zone-chip__icon {
  font-size: 14px;
  line-height: 1;
}

/* Zone chips used as floating markers inside the hero visual frame */
.zone-chip--float {
  position: absolute;
  top: var(--chip-top, 20%);
  left: var(--chip-left, 20%);
}

/* Zone card ----------------------------------------------------------------- */
.zone-card {
  display: flex;
  gap: var(--s-3);
  align-items: flex-start;
  padding: var(--s-4);
  border-radius: var(--r-md);
  background: var(--surface-1);
  border: 1px solid var(--border-1);
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    background 200ms ease;
}
.zone-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
}
.zone-card__icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-1);
  display: grid;
  place-items: center;
  font-size: 22px;
}
.zone-card__title {
  font-size: 18px;
  margin-bottom: var(--s-1);
}
.zone-card__desc {
  color: var(--text-muted);
  font-size: 15px;
}

/* Primary button ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  transition:
    transform 150ms ease,
    filter 150ms ease;
  position: relative;
  white-space: nowrap;
}
.btn-mu {
  font-weight: 800;
}
.btn-primary {
  color: var(--text);
  background: var(--grad-cta);
  box-shadow: var(--shadow-cta-inset);
}
.btn-primary:hover {
  filter: brightness(1.08);
}
.btn-primary:active {
  transform: translateY(1px);
}

/* -----------------------------------------------------------------------------
   Hero
   ----------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  padding: var(--s-7) clamp(var(--s-4), 5vw, var(--s-7)) var(--s-8);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
}

.hero__brand {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: var(--s-3) clamp(var(--s-4), 5vw, var(--s-7));
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 300ms ease,
    visibility 300ms ease,
    background 300ms ease,
    border-color 300ms ease,
    backdrop-filter 300ms ease;
}
body.is-past-hero .hero__brand {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
body.is-scrolled .hero__brand {
  background: rgba(255, 255, 255, 0.03);
  border-bottom-color: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}
.hero__brand .wordmark {
  font-size: 20px;
  opacity: 0.9;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  flex: 1;
  align-content: center;
}

.hero__content {
  max-width: 640px;
}

.hero__title {
  font-size: clamp(56px, 10vw, 104px);
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: var(--s-3);
}
.hero__tagline {
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 500;
  margin-bottom: var(--s-4);
}
.hero__lede {
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--s-4);
  max-width: 52ch;
}
.hero__title,
.hero__tagline,
.hero__lede {
  text-wrap: balance;
}

.hero__visual {
  position: relative;
  width: 100%;
  max-width: 240px;
  justify-self: center;
}
.hero__visual-frame {
  position: relative;
  width: 100%;
  border-radius: var(--r-lg);
  border: 1px solid var(--border-1);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.01)
  );
  overflow: hidden;
}
.hero__video {
  width: 100%;
  height: auto;
  display: block;
}

.hero__scroll-cue {
  position: fixed;
  bottom: var(--s-5);
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-1);
  display: grid;
  place-items: center;
  color: var(--text);
  font-size: 18px;
  background: rgba(255, 255, 255, 0.04);
  transition:
    opacity 300ms ease,
    visibility 300ms ease;
  z-index: 10;
}

.hero__copyright {
  position: fixed;
  bottom: var(--s-4);
  left: clamp(var(--s-4), 5vw, var(--s-7));
  font-size: 12px;
  color: var(--text-muted);
  transition:
    opacity 300ms ease,
    visibility 300ms ease;
  z-index: 10;
}

body.is-scrolled .hero__scroll-cue,
body.is-scrolled .hero__copyright {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Hero waitlist form - subtle, inline */
.waitlist-form--hero {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  max-width: 440px;
}
.waitlist-form--hero input {
  flex: 1 1 100%;
  padding: 14px var(--s-3);
  border-radius: var(--r-md);
  background: var(--surface-1);
  border: 1px solid var(--border-1);
  color: var(--text);
  font-size: 15px;
}
.waitlist-form--hero input::placeholder {
  color: var(--text-muted);
}
.waitlist-form--hero .btn {
  flex: 0 0 auto;
}
.waitlist-form--hero .waitlist-form__status {
  flex-basis: 100%;
  font-size: 13px;
  color: var(--text-muted);
  min-height: 1em;
  margin-top: var(--s-2);
}
/* Desktop: hero form sits on one row */
@media (min-width: 480px) {
  .waitlist-form--hero input {
    flex: 1 1 0;
  }
}

/* Small screens: let video fill the column */
@media (max-width: 767px) {
  .hero__visual {
    max-width: 100%;
  }
}

/* Tablet + desktop: two-column hero so the orb sits beside the copy */
@media (min-width: 768px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-6);
  }
  .hero__visual {
    justify-self: center;
    max-width: 520px;
  }
}
@media (min-width: 1024px) {
  .hero__inner {
    gap: var(--s-8);
  }
}

/* Short viewports (landscape phones, reduced browser windows): tighten the hero
   so copy + form + visual fit without squashing, instead of hiding the visual. */
@media (max-height: 700px) {
  .hero__title {
    font-size: clamp(40px, 6vw, 64px);
    margin-bottom: var(--s-2);
  }
  .hero__tagline {
    font-size: clamp(16px, 2vw, 18px);
    margin-bottom: var(--s-3);
  }
  .hero__lede {
    font-size: clamp(14px, 1.6vw, 16px);
    margin-bottom: var(--s-3);
  }
  .hero__inner {
    gap: var(--s-3);
  }
  .hero__visual {
    max-width: 200px;
  }
}
@media (max-height: 700px) and (min-width: 768px) {
  .hero__visual {
    max-width: 320px;
  }
}

/* -----------------------------------------------------------------------------
   Features
   ----------------------------------------------------------------------------- */
.features {
  padding: var(--s-8) 0;
}

.features-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--s-5);
}

/* Media panel - hidden on mobile; each slide uses its inline image instead */
.features-showcase__media {
  display: none;
}

/* Mobile - horizontal snap-scroll carousel */
.features-showcase__list {
  list-style: none;
  margin: 0 calc(var(--s-4) * -1);
  padding: 0 var(--s-4);
  min-width: 0;
  max-width: 100vw;
  display: flex;
  flex-direction: row;
  gap: var(--s-3);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.features-showcase__list::-webkit-scrollbar {
  display: none;
}
.features-showcase__list > li {
  flex: 0 0 100%;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
  padding: 0;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
}

.feature-item__inline {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 52vh;
  height: auto;
  margin: 0 auto var(--s-3);
  border-radius: var(--r-lg);
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.6),
    0 0 60px -20px var(--mu-glow);
}
.feature-item__title {
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: var(--s-2);
}
.feature-item__desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 42ch;
}

/* Dots */
.features-showcase__dots {
  display: flex;
  justify-content: center;
  gap: var(--s-2);
  margin-top: var(--s-4);
}
.features-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 9999px;
  border: 0;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition:
    background 200ms ease,
    transform 200ms ease;
}
.features-dot:hover {
  background: rgba(255, 255, 255, 0.4);
}
.features-dot[aria-selected="true"] {
  background: var(--cta-to);
  transform: scale(1.3);
}
.features-dot:focus-visible {
  outline: 2px solid var(--cta-to);
  outline-offset: 3px;
}

/* Desktop - two-column showcase with image panel + interactive tabs */
@media (min-width: 1024px) {
  .features-showcase {
    grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
    gap: var(--s-7);
    align-items: start;
  }
  .features-showcase__media {
    display: block;
    position: relative;
    width: 100%;
  }
  .features-showcase__screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 300ms ease;
    border-radius: var(--r-lg);
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5))
      drop-shadow(0 0 40px var(--mu-glow));
  }
  /* First image drives the container's height so the stacked images have a
     layout box. It stays visible only when it's the active one. */
  .features-showcase__screen[data-feature="chat"] {
    position: relative;
  }
  .features-showcase[data-active="chat"]
    .features-showcase__screen[data-feature="chat"],
  .features-showcase[data-active="snap"]
    .features-showcase__screen[data-feature="snap"],
  .features-showcase[data-active="reminders"]
    .features-showcase__screen[data-feature="reminders"],
  .features-showcase[data-active="zones"]
    .features-showcase__screen[data-feature="zones"],
  .features-showcase[data-active="integrations"]
    .features-showcase__screen[data-feature="integrations"] {
    opacity: 1;
  }

  .feature-item__inline {
    display: none;
  }

  .features-showcase__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--s-3);
    overflow: visible;
    scroll-snap-type: none;
  }
  .features-showcase__list > li {
    flex: initial;
    scroll-snap-align: none;
  }

  .feature-item {
    display: block;
    text-align: left;
    padding: var(--s-4);
    border-radius: var(--r-md);
    background: var(--surface-1);
    border: 1px solid var(--border-1);
    transition:
      border-color 200ms ease,
      background 200ms ease,
      transform 200ms ease;
  }
  .feature-item__desc {
    max-width: none;
  }

  .feature-item:hover,
  .feature-item:focus-visible {
    border-color: rgba(93, 71, 253, 0.55);
    background: rgba(93, 71, 253, 0.08);
    outline: none;
  }
  .feature-item[aria-pressed="true"] {
    border-color: var(--cta-to);
    background: rgba(93, 71, 253, 0.12);
    box-shadow: 0 0 0 1px var(--cta-to) inset;
  }

  .features-showcase__dots {
    display: none;
  }
}

/* -----------------------------------------------------------------------------
   How It Works
   ----------------------------------------------------------------------------- */
.how {
  padding: var(--s-8) 0;
  position: relative;
}

.how__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  counter-reset: how;
}

.how__step {
  position: relative;
  padding: var(--s-4);
  border-radius: var(--r-md);
  background: var(--surface-1);
  border: 1px solid var(--border-1);
}
.how__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  background: var(--grad-cta);
  box-shadow: var(--shadow-cta-inset);
  color: var(--text);
  margin-bottom: var(--s-3);
}
.how__icon svg {
  width: 26px;
  height: 26px;
}
.how__name {
  font-size: 28px;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-2);
  font-weight: 700;
}
.how__desc {
  color: var(--text-muted);
  font-size: 15px;
}

@media (min-width: 768px) {
  .how__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-4);
  }
}

/* -----------------------------------------------------------------------------
   Waitlist
   ----------------------------------------------------------------------------- */
.waitlist {
  padding: var(--s-8) 0;
  position: relative;
  text-align: center;
}
.waitlist__panel {
  position: relative;
  padding: var(--s-6) var(--s-5) var(--s-7);
  border-radius: var(--r-lg);
  background:
    radial-gradient(
      120% 120% at 50% 0%,
      rgba(93, 71, 253, 0.14) 0%,
      rgba(93, 71, 253, 0) 60%
    ),
    var(--surface-1);
  border: 1px solid var(--border-1);
  box-shadow:
    0 40px 80px -40px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.waitlist__title {
  margin-bottom: var(--s-3);
}
.waitlist__orb {
  display: flex;
  justify-content: center;
  margin-top: var(--s-5);
}
.waitlist__prompt {
  color: var(--text-muted);
  font-size: 18px;
  margin-bottom: var(--s-5);
}
.waitlist-form--main {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  max-width: 560px;
  margin: 0 auto;
}
.waitlist-form--main input {
  width: 100%;
  padding: 16px var(--s-3);
  border-radius: var(--r-md);
  background: var(--surface-1);
  border: 1px solid var(--border-1);
  color: var(--text);
  font-size: 16px;
  text-align: left;
}
.waitlist-form--main input::placeholder {
  color: var(--text-muted);
}
.waitlist-form--main .btn {
  width: 100%;
}
.waitlist-form--main .waitlist-form__status {
  font-size: 13px;
  color: var(--text-muted);
  min-height: 1em;
  margin-top: var(--s-2);
}
.waitlist__privacy {
  margin-top: var(--s-4);
  font-size: 13px;
  color: var(--text-muted);
}
.waitlist__privacy a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.waitlist__contact {
  margin-top: var(--s-5);
  padding-top: var(--s-5);
  border-top: 1px solid var(--border-1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
}
.waitlist__contact-prompt {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
}
.btn-secondary {
  color: var(--text);
  background: var(--surface-1);
  border: 1px solid var(--border-1);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}
.btn-secondary:active {
  transform: translateY(1px);
}

@media (min-width: 600px) {
  .waitlist-form--main {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .waitlist-form--main input {
    flex: 0 1 320px;
    width: auto;
  }
  .waitlist-form--main .btn {
    width: auto;
    flex-shrink: 0;
  }
  .waitlist-form--main .waitlist-form__status {
    flex-basis: 100%;
    text-align: center;
  }
}

/* -----------------------------------------------------------------------------
   Footer
   ----------------------------------------------------------------------------- */
.site-footer {
  padding: var(--s-5) 0;
  border-top: 1px solid var(--border-1);
  color: var(--text-muted);
  font-size: 13px;
}
.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  flex-wrap: wrap;
}
.site-footer .wordmark {
  color: var(--text);
  font-size: 16px;
}
.site-footer__link:hover {
  color: var(--text);
}

/* -----------------------------------------------------------------------------
   Scroll reveals
   ----------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* -----------------------------------------------------------------------------
   Hero intro animation
   ----------------------------------------------------------------------------- */
[data-intro] {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}
.hero__visual[data-intro] {
  /* Slight scale on the visual for a softer bloom */
  transform: translateY(8px) scale(0.98);
}

body.hero--ready [data-intro="1"] {
  transition-delay: 200ms;
}
body.hero--ready [data-intro="2"] {
  transition-delay: 400ms;
}
body.hero--ready [data-intro="3"] {
  transition-delay: 600ms;
}
body.hero--ready [data-intro="4"] {
  transition-delay: 1500ms;
}
body.hero--ready [data-intro="5"] {
  transition-delay: 800ms;
}

body.hero--ready [data-intro] {
  opacity: 1;
  transform: none;
}

/* Chips and scroll cue - staggered on top of the hero visual appearing */
.hero__visual .zone-chip--float {
  opacity: 0;
  transition: opacity 500ms ease;
}
body.hero--ready .hero__visual .zone-chip--float:nth-of-type(1) {
  transition-delay: 1000ms;
  opacity: 1;
}
body.hero--ready .hero__visual .zone-chip--float:nth-of-type(2) {
  transition-delay: 1100ms;
  opacity: 1;
}
body.hero--ready .hero__visual .zone-chip--float:nth-of-type(3) {
  transition-delay: 1200ms;
  opacity: 1;
}
body.hero--ready .hero__visual .zone-chip--float:nth-of-type(4) {
  transition-delay: 1300ms;
  opacity: 1;
}

.hero__scroll-cue {
  opacity: 0;
  transition: opacity 500ms ease;
}
body.hero--ready .hero__scroll-cue {
  opacity: 1;
  transition-delay: 1800ms;
}

@media (prefers-reduced-motion: reduce) {
  [data-intro],
  .hero__visual .zone-chip--float,
  .hero__scroll-cue {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* -----------------------------------------------------------------------------
   Loop animations
   ----------------------------------------------------------------------------- */
@keyframes bounce-cue {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -6px);
  }
}

.hero__scroll-cue {
  animation: bounce-cue 2s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .hero__scroll-cue {
    animation: none;
  }
}

.waitlist-form__status[data-state="success"] {
  color: var(--text);
}
.waitlist-form__status[data-state="error"] {
  color: #ff8a8a;
}
.waitlist-form__status[data-state="info"] {
  color: var(--text-muted);
}

/* -----------------------------------------------------------------------------
   Standalone pages (privacy, etc.)
   ----------------------------------------------------------------------------- */
.page-header {
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--border-1);
}
.page-header .wordmark {
  font-size: 20px;
}

.page {
  padding: var(--s-8) 0;
  min-height: 60vh;
}
.page__title {
  font-size: clamp(36px, 6vw, 56px);
  letter-spacing: -0.03em;
  margin-bottom: var(--s-6);
}
.page__heading {
  font-size: clamp(20px, 2.4vw, 24px);
  letter-spacing: -0.01em;
  margin-top: var(--s-6);
  margin-bottom: var(--s-2);
}
.page__body {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: var(--s-2);
}
.page__body strong {
  color: var(--text);
  font-weight: 600;
}
.page__body a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 2px;
}
