/* ============================================
   CLOVER WEBSITE v3 — Alive & Dramatic
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  min-height: 100dvh;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  line-height: 1.6;
  color: #3B3632;
  background-color: #FAF6F1;
}

img, svg { display: block; max-width: 100%; height: auto; }
ul[role='list'] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.15; font-family: 'Lora', Georgia, serif; }
p, li, figcaption { text-wrap: pretty; max-width: 72ch; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }

::selection {
  background: rgba(95, 140, 98, 0.25);
  color: #3B3632;
}

:focus-visible {
  outline: 2px solid #5F8C62;
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

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

/* --- DESIGN TOKENS --- */
:root {
  --olive: #476B47;
  --olive-deep: #3a5a3a;
  --sage: #5F8C62;
  --cream: #FAF6F1;
  --cream-dark: #F2EDE7;
  --camel: #C6A882;
  --camel-hover: #b89a74;
  --charcoal: #3B3632;
  --taupe: #8C8278;
  --stone: #A89F91;
  --sand: #E8E2DA;

  --font-display: 'Lora', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(3rem, 1.5rem + 5.5vw, 6.5rem);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(59, 54, 50, 0.06);
  --shadow-md: 0 4px 12px rgba(59, 54, 50, 0.08);
  --shadow-lg: 0 12px 32px rgba(59, 54, 50, 0.12);

  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
}

/* --- UTILITY --- */
.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}
.section-label--light {
  color: var(--camel);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  transition: background var(--transition-interactive),
              color var(--transition-interactive),
              box-shadow var(--transition-interactive),
              transform var(--transition-interactive);
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn--camel {
  background: var(--camel);
  color: #fff;
}
.btn--camel:hover {
  background: var(--camel-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(198, 168, 130, 0.35);
}
.btn--camel:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(198, 168, 130, 0.2);
}
.btn--primary {
  background: var(--olive);
  color: var(--cream);
}
.btn--primary:hover {
  background: var(--olive-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}
.btn--lg {
  padding: 1.125rem 2.75rem;
  font-size: var(--text-base);
}

/* ════════════════════════════════════════════════════════ */
/* NAV */
/* ════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 1.5rem;
  transition: background 0.4s var(--ease-out),
              box-shadow 0.4s var(--ease-out),
              backdrop-filter 0.4s var(--ease-out);
}
.nav--scrolled {
  background: rgba(250, 246, 241, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}
.nav__logo-img {
  width: 36px;
  height: 36px;
}
.nav__wordmark {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.nav__links {
  display: none;
  align-items: center;
  gap: 2rem;
}
.nav__link {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  transition: color var(--transition-interactive);
}
.nav__link:hover {
  color: var(--sage);
}
.nav__link--cta {
  background: var(--olive);
  color: var(--cream);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 600;
}
.nav__link--cta:hover {
  background: var(--olive-deep);
  color: var(--cream);
}
.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .nav__links { display: flex; }
  .nav__hamburger { display: none; }
}
.nav__hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}
.nav__hamburger.is-open .nav__hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger.is-open .nav__hamburger-line:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.is-open .nav__hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- SLIDE MENU --- */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(59, 54, 50, 0.4);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease-out), visibility 0.3s var(--ease-out);
}
.menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.slide-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 85vw);
  height: 100dvh;
  background: var(--cream);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.slide-menu.is-open {
  transform: translateX(0);
}
.slide-menu__close {
  align-self: flex-end;
  font-size: 1.75rem;
  color: var(--charcoal);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
.slide-menu__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.slide-menu__link {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--charcoal);
  padding: 1rem 0;
  border-bottom: 1px solid var(--sand);
  transition: color var(--transition-interactive);
}
.slide-menu__link:hover {
  color: var(--sage);
}
.slide-menu__link--cta {
  color: var(--olive);
  margin-top: 1rem;
  border-bottom: none;
}

/* ════════════════════════════════════════════════════════ */
/* HERO — Full-screen, dramatic */
/* ════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #FAF6F1;
  padding: 7rem 1.5rem 4rem;
}

/* Large clover mark — right side */
.hero__bg-mark {
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  width: clamp(450px, 65vw, 900px);
  height: clamp(450px, 65vw, 900px);
  opacity: 0.06;
  color: var(--olive);
  pointer-events: none;
  animation: markPulse 12s ease-in-out infinite;
}
.hero__bg-mark--small {
  top: 15%;
  right: auto;
  left: -15%;
  width: clamp(200px, 30vw, 400px);
  height: clamp(200px, 30vw, 400px);
  opacity: 0.03;
  animation: markFloat 20s ease-in-out infinite reverse;
}

@keyframes markPulse {
  0%, 100% { transform: translateY(-50%) scale(1) rotate(0deg); opacity: 0.06; }
  50% { transform: translateY(-50%) scale(1.04) rotate(4deg); opacity: 0.08; }
}
@keyframes markFloat {
  0%, 100% { transform: translate(0, -50%) scale(1) rotate(0deg); }
  50% { transform: translate(5%, -48%) scale(1.06) rotate(-3deg); }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--content-wide);
  margin: 0 auto;
  width: 100%;
  padding-left: clamp(0px, 3vw, 60px);
}

.hero__headline {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  text-align: left;
}
.hero__italic {
  font-style: italic;
  color: var(--camel);
}

.hero__pill {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--olive);
  background: rgba(71, 107, 71, 0.1);
  border: 1px solid rgba(71, 107, 71, 0.2);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero__sub {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: var(--taupe);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  text-align: left;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero__launch-hint {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--taupe);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ════════════════════════════════════════════════════════ */
/* EXPLAINER — the "aha" section */
/* ════════════════════════════════════════════════════════ */
.explainer {
  background: var(--olive);
  padding: clamp(4rem, 10vw, 8rem) 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.explainer__inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.explainer__text {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: 2rem;
}
.explainer__bumble {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  font-style: italic;
  color: var(--camel);
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

/* ════════════════════════════════════════════════════════ */
/* PROBLEM */
/* ════════════════════════════════════════════════════════ */
.problem {
  padding: 80px 1.5rem;
  background: var(--cream-dark);
}
.problem__inner {
  max-width: var(--content-default);
  margin: 0 auto;
}
.problem__headline {
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2.5rem;
  letter-spacing: -0.02em;
}
.problem__copy {
  max-width: var(--content-narrow);
}
.problem__copy p {
  font-size: var(--text-base);
  color: var(--taupe);
  margin-bottom: 1.75rem;
  line-height: 1.8;
}
.problem__closer {
  font-family: var(--font-display);
  font-size: var(--text-lg) !important;
  font-weight: 600 !important;
  color: var(--olive) !important;
  font-style: italic;
  border-left: 3px solid var(--olive);
  padding-left: 20px;
  margin-top: 2.5rem;
}

/* Pain point cards */
.problem__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.problem__card {
  background: var(--cream);
  border: 1.5px solid var(--olive);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.problem__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.problem__card-text {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.5;
  max-width: none;
}

@media (max-width: 767px) {
  .problem__cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ════════════════════════════════════════════════════════ */
/* STATS — dark olive, dramatic numbers */
/* ════════════════════════════════════════════════════════ */
.stats {
  padding: clamp(4rem, 8vw, 8rem) 1.5rem;
  background: var(--olive);
  position: relative;
  overflow: hidden;
}
.stats__bg-marks {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.stats__mark {
  position: absolute;
  opacity: 0.04;
  color: var(--cream);
}
.stats__mark--1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 5%;
  animation: markFloat 18s ease-in-out infinite;
}
.stats__mark--2 {
  width: 80px;
  height: 80px;
  bottom: 15%;
  right: 8%;
  animation: markFloat 22s ease-in-out infinite reverse;
}
.stats__mark--3 {
  width: 60px;
  height: 60px;
  top: 50%;
  right: 30%;
  animation: markFloat 15s ease-in-out infinite;
}

.stats__header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}
.stats__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.25;
  margin-top: 0.75rem;
}

.stats__grid {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 600px) {
  .stats__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat {
  padding: 1.5rem;
}
.stat__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 2rem + 5vw, 6rem);
  font-weight: 700;
  color: var(--camel);
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat__label {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: rgba(250, 246, 241, 0.75);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

.stats__footnote {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--camel);
  margin-top: 3.5rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

/* ════════════════════════════════════════════════════════ */
/* HOW IT WORKS */
/* ════════════════════════════════════════════════════════ */
.how-it-works {
  padding: clamp(4rem, 8vw, 8rem) 1.5rem;
  background: var(--cream-dark);
}
.how-it-works__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
}
.how-it-works__title {
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
}

/* Steps layout */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 768px) {
  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

/* Steps nav / tabs */
.steps__nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.steps__tab {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--sand);
  background: transparent;
  cursor: pointer;
  transition: border-color 0.3s var(--ease-out), background 0.3s var(--ease-out);
}
.steps__tab--active {
  border-left-color: var(--olive);
  border-left-width: 4px;
  background: rgba(71, 107, 71, 0.05);
}
.steps__tab:hover:not(.steps__tab--active) {
  background: rgba(71, 107, 71, 0.02);
}
.steps__num {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--sage);
  letter-spacing: 0.05em;
  margin-bottom: 0.375rem;
}
.steps__tab-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
  transition: font-weight 0.2s;
}
.steps__tab--active .steps__tab-title {
  font-weight: 700;
}
.steps__tab-desc {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--taupe);
  line-height: 1.5;
  display: none;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}
.steps__tab--active .steps__tab-desc {
  display: block;
  opacity: 1;
}

/* Phone mockup */
.steps__phone-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: sticky;
  top: 6rem;
}
.phone {
  width: 320px;
  height: 640px;
  background: #1a1a1a;
  border-radius: 40px;
  padding: 12px;
  position: relative;
  box-shadow: 0 20px 60px rgba(59, 54, 50, 0.25),
              0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}
.phone__notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #1a1a1a;
  border-radius: 0 0 18px 18px;
  z-index: 10;
}
.phone__screen {
  width: 100%;
  height: 100%;
  background: var(--cream);
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}
.phone__home-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: rgba(59, 54, 50, 0.2);
  border-radius: 4px;
  z-index: 10;
}

/* App screens */
.app-screen {
  position: absolute;
  inset: 0;
  padding-top: 0;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  pointer-events: none;
  display: flex;
  flex-direction: column;
}
.app-screen--active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.app-header {
  background: var(--olive);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 28px 16px 12px;
  text-align: center;
  flex-shrink: 0;
}
.app-header--chat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}
.app-header__back {
  font-size: 18px;
  opacity: 0.8;
}

/* Profile screen */
.app-profile {
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.app-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.app-avatar--sage { background: var(--sage); }
.app-avatar--camel { background: var(--camel); }
.app-avatar--olive { background: var(--olive); }

.app-field { width: 100%; }
.app-field__label {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--taupe);
  margin-bottom: 4px;
}
.app-field__value {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--charcoal);
  padding: 8px 12px;
  background: white;
  border: 1px solid var(--sand);
  border-radius: 8px;
}
.app-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  width: 100%;
}
.app-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(95, 140, 98, 0.1);
  color: var(--olive);
}
.app-btn {
  width: 100%;
  padding: 10px 16px;
  background: var(--olive);
  color: var(--cream);
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  margin-top: 4px;
}

/* Match screen */
.app-match {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.app-match__top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.app-match__info {
  display: flex;
  flex-direction: column;
}
.app-match__name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
}
.app-match__dist {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--taupe);
}
.app-match__bio {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.5;
  color: var(--taupe);
}
.app-match__actions {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 6px;
}
.app-match__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all var(--transition-interactive);
}
.app-match__btn--pass { color: var(--taupe); }
.app-match__btn--pass:hover { border-color: var(--taupe); }
.app-match__btn--connect { color: var(--sage); border-color: var(--sage); }
.app-match__btn--connect:hover { background: var(--sage); color: white; }

/* Chat screen */
.app-chat {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
}
.app-chat__bubble {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.5;
  padding: 8px 12px;
  border-radius: 16px;
  max-width: 85%;
}
.app-chat__bubble--them {
  background: white;
  color: var(--charcoal);
  border: 1px solid var(--sand);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.app-chat__bubble--you {
  background: var(--olive);
  color: var(--cream);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.app-chat__input {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-top: 1px solid var(--sand);
  gap: 8px;
}
.app-chat__input-text {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--stone);
  flex: 1;
}
.app-chat__send {
  color: var(--olive);
  font-size: 14px;
}

/* Events screen */
.app-events {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.app-event {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--sand);
}
.app-event__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(71, 107, 71, 0.1);
  color: var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}
.app-event__details { flex: 1; min-width: 0; }
.app-event__title {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--charcoal);
}
.app-event__meta {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--taupe);
  line-height: 1.4;
}
.app-event__join {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--olive);
  padding: 5px 12px;
  border: 1px solid var(--olive);
  border-radius: var(--radius-full);
  background: transparent;
  flex-shrink: 0;
  transition: all var(--transition-interactive);
}
.app-event__join:hover {
  background: var(--olive);
  color: white;
}

/* ════════════════════════════════════════════════════════ */
/* PULL QUOTE */
/* ════════════════════════════════════════════════════════ */
.pullquote {
  padding: clamp(4rem, 10vw, 10rem) 1.5rem;
  background: var(--cream-dark);
  text-align: center;
}
.pullquote__inner {
  max-width: var(--content-default);
  margin: 0 auto;
}
.pullquote__text {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  font-style: italic;
  color: var(--olive);
  line-height: 1.35;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.pullquote__sub {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: var(--taupe);
  font-weight: 400;
}

/* ════════════════════════════════════════════════════════ */
/* ALL IN ONE — more than a matching app */
/* ════════════════════════════════════════════════════════ */
.allinone {
  background: var(--cream);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.allinone__inner {
  max-width: var(--content-default);
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}
.allinone__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.allinone__sub {
  font-size: var(--text-base);
  color: var(--taupe);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 3.5rem;
}
.allinone__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  text-align: left;
}
.allinone__item {
  background: var(--cream-dark);
  border: 1px solid var(--sand);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.5rem;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.allinone__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.allinone__icon {
  color: var(--sage);
  margin-bottom: 1rem;
}
.allinone__item-title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.allinone__item-desc {
  font-size: var(--text-sm);
  line-height: 1.65;
  color: var(--taupe);
}
.allinone__replace {
  border-top: 1px solid var(--sand);
  padding-top: 2.25rem;
}
.allinone__replace-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1rem;
  font-weight: 500;
}
.allinone__replace-apps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  justify-content: center;
}
.allinone__replace-apps span {
  background: var(--sand);
  color: var(--taupe);
  font-size: var(--text-xs);
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  text-decoration: line-through;
  font-family: var(--font-body);
}

@media (max-width: 900px) {
  .allinone__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .allinone__grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════ */
/* MID-PAGE WAITLIST */
/* ════════════════════════════════════════════════════════ */
.waitlist {
  padding: clamp(4rem, 8vw, 8rem) 1.5rem;
  background: var(--cream-dark);
  text-align: center;
}
.waitlist__inner {
  max-width: var(--content-narrow);
  margin: 0 auto;
}
.waitlist__logo {
  margin: 0 auto 1.5rem;
  width: 56px;
  height: 56px;
}
.waitlist__launch {
  display: inline-block;
  background: var(--olive);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(71, 107, 71, 0.3); }
  50% { box-shadow: 0 0 0 8px rgba(71, 107, 71, 0); }
}
.waitlist__headline {
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.waitlist__sub {
  font-size: var(--text-base);
  color: var(--taupe);
  margin-bottom: 2.5rem;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.waitlist__fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 480px) {
  .waitlist__fields {
    grid-template-columns: 1fr 1fr;
  }
}
.form-group {
  text-align: left;
}
.form-label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.375rem;
}
.form-label--light {
  color: rgba(250, 246, 241, 0.8);
}
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: white;
  border: 1px solid var(--sand);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  color: var(--charcoal);
  transition: border-color var(--transition-interactive),
              box-shadow var(--transition-interactive);
}
.form-input::placeholder {
  color: var(--stone);
}
.form-input:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(95, 140, 98, 0.15);
}
.form-input--dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(250, 246, 241, 0.15);
  color: var(--cream);
}
.form-input--dark::placeholder {
  color: rgba(250, 246, 241, 0.35);
}
.form-input--dark:focus {
  border-color: var(--camel);
  box-shadow: 0 0 0 3px rgba(198, 168, 130, 0.2);
  background: rgba(255, 255, 255, 0.12);
}
.waitlist__form .btn {
  width: 100%;
  margin-bottom: 1rem;
}
.form-consent {
  font-size: 11px;
  line-height: 1.5;
  color: #8C8278;
  text-align: center;
  max-width: 360px;
  margin: 0 auto;
}
.form-consent a {
  color: #8C8278;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-consent a:hover {
  color: #476B47;
}
.form-consent--light {
  color: rgba(250, 246, 241, 0.45);
}
.form-consent--light a {
  color: rgba(250, 246, 241, 0.45);
}
.form-consent--light a:hover {
  color: var(--camel);
}
.waitlist__disclaimer {
  font-size: var(--text-xs);
  color: var(--stone);
}
.waitlist__success {
  padding: 2rem 0;
}
.waitlist__success-icon {
  margin: 0 auto 1rem;
  width: 48px;
  height: 48px;
}
.waitlist__success-title {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.waitlist__success-text {
  font-size: var(--text-base);
  color: var(--taupe);
}

/* ════════════════════════════════════════════════════════ */
/* FEATURES */
/* ════════════════════════════════════════════════════════ */
.features {
  padding: 120px 1.5rem;
  background: var(--cream);
}
.features__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
}
.features__title {
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
}
.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 600px) {
  .features__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.feature-card {
  padding: 2rem;
  background: var(--cream);
  border: 1px solid rgba(71, 107, 71, 0.15);
  border-radius: var(--radius-xl);
  transition: transform var(--transition-interactive),
              box-shadow var(--transition-interactive);
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(95, 140, 98, 0.08);
  font-size: 1.25rem;
  color: var(--sage);
  margin-bottom: 1rem;
  line-height: 1;
}
.feature-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.feature-card__desc {
  font-size: var(--text-sm);
  color: var(--taupe);
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════════ */
/* FAQ */
/* ════════════════════════════════════════════════════════ */
.faq {
  padding: clamp(4rem, 8vw, 8rem) 1.5rem;
  background: var(--cream-dark);
}
.faq__inner {
  max-width: var(--content-narrow);
  margin: 0 auto;
}
.faq__title {
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2.5rem;
  letter-spacing: -0.02em;
}
.faq__list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid var(--sand);
}
.faq-item__q {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--charcoal);
  padding: 1.25rem 2.5rem 1.25rem 0;
  cursor: pointer;
  position: relative;
  list-style: none;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::marker { display: none; content: ''; }
.faq-item__q::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--taupe);
  transition: transform 0.3s var(--ease-out);
}
.faq-item[open] .faq-item__q::after {
  content: '\2212';
}
.faq-item__a p {
  font-size: var(--text-sm);
  color: var(--taupe);
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════════ */
/* FINAL CTA — grand finale waitlist */
/* ════════════════════════════════════════════════════════ */
.final-cta {
  padding: clamp(5rem, 10vw, 10rem) 1.5rem;
  background: var(--olive);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta__bg-mark {
  display: none;
}
.final-cta__inner {
  max-width: var(--content-narrow);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.final-cta__headline {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.final-cta__subheadline {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  font-style: italic;
  color: var(--camel);
  margin-bottom: 1.5rem;
}
.final-cta__copy {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: rgba(250, 246, 241, 0.75);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 3rem;
}
.final-cta__form .btn {
  width: 100%;
  margin-bottom: 1rem;
}
.final-cta__disclaimer {
  font-size: var(--text-xs);
  color: rgba(250, 246, 241, 0.45);
  margin-top: 0.25rem;
}
.final-cta__success {
  padding: 2rem 0;
}
.final-cta__success-title {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.final-cta__success-text {
  font-size: var(--text-base);
  color: rgba(250, 246, 241, 0.7);
}

/* ════════════════════════════════════════════════════════ */
/* FOOTER */
/* ════════════════════════════════════════════════════════ */
.footer {
  padding: 3rem 1.5rem;
  background: var(--charcoal);
  text-align: center;
}
.footer__inner {
  max-width: var(--content-default);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer__tagline {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  color: rgba(250, 246, 241, 0.8);
}
.footer__launch {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--camel);
}
.footer__links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__links a {
  font-size: var(--text-xs);
  color: rgba(250, 246, 241, 0.6);
  transition: color var(--transition-interactive);
}
.footer__links a:hover {
  color: var(--cream);
}
.footer__sep {
  color: rgba(250, 246, 241, 0.3);
}
.footer__legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.footer__legal a {
  font-size: var(--text-xs);
  color: rgba(250, 246, 241, 0.5);
  transition: color 0.2s;
}
.footer__legal a:hover {
  color: var(--camel);
}
.footer__copy {
  font-size: var(--text-xs);
  color: rgba(250, 246, 241, 0.4);
}

/* ════════════════════════════════════════════════════════ */
/* MATCH CAROUSEL — Swipeable match cards */
/* ════════════════════════════════════════════════════════ */
.match-carousel {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.match-carousel__cards {
  position: relative;
  height: 100%;
  min-height: 340px;
}
.match-card {
  position: absolute;
  inset: 0;
  padding: 20px 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  pointer-events: none;
}
.match-card--active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.match-card--exit-left {
  opacity: 0;
  transform: translateX(-40px);
}
.match-card--exit-right {
  opacity: 0;
  transform: translateX(40px);
}
.match-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.match-card__name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0;
}
.match-card__dist {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--taupe);
  margin-bottom: 4px;
}
.match-card__tags {
  justify-content: center;
}
.match-card__bio {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.55;
  color: var(--taupe);
  text-align: center;
  max-width: 200px;
  margin: 2px 0;
}
.match-card__actions {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 6px;
}
.match-card__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all var(--transition-interactive);
  background: white;
}
.match-card__btn--pass {
  color: var(--taupe);
}
.match-card__btn--pass:hover {
  border-color: var(--taupe);
  background: rgba(140, 130, 120, 0.06);
}
.match-card__btn--connect {
  color: var(--sage);
  border-color: var(--sage);
}
.match-card__btn--connect:hover {
  background: var(--sage);
  color: white;
}

/* Match flash overlay */
.match-flash {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(95, 140, 98, 0.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
  z-index: 5;
  border-radius: 4px;
}
.match-flash--visible {
  opacity: 1;
}
.match-flash__text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: white;
  letter-spacing: -0.01em;
}

/* Carousel navigation arrows & dots */
.match-carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 8px 0 12px;
  flex-shrink: 0;
}
.match-carousel__arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--charcoal);
  background: white;
  transition: all var(--transition-interactive);
}
.match-carousel__arrow:hover {
  border-color: var(--olive);
  background: rgba(71, 107, 71, 0.06);
}
.match-carousel__dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.match-carousel__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sand);
  transition: background 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.match-carousel__dot--active {
  background: var(--olive);
  transform: scale(1.25);
}

/* ════════════════════════════════════════════════════════ */
/* SCROLL ANIMATIONS */
/* ════════════════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scale-in for dramatic sections */
.scale-in {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.scale-in.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* ════════════════════════════════════════════════════════ */
/* HERO ENTRANCE ANIMATION */
/* ════════════════════════════════════════════════════════ */
.hero__headline,
.hero__pill,
.hero__sub,
.hero__actions {
  opacity: 0;
  transform: translateY(24px);
  animation: heroEnter 0.9s var(--ease-out) forwards;
}
.hero__headline { animation-delay: 0.15s; }
.hero__pill { animation-delay: 0.4s; }
.hero__sub { animation-delay: 0.55s; }
.hero__actions { animation-delay: 0.7s; }

@keyframes heroEnter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ════════════════════════════════════════════════════════ */
/* RESPONSIVE — Mobile */
/* ════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .hero {
    padding: 6rem 1.25rem 3rem;
    align-items: flex-end;
    min-height: 100svh;
  }
  .hero__content {
    padding-left: 0;
  }
  .hero__headline {
    font-size: clamp(2.25rem, 8vw, 3.5rem);
  }
  .hero__sub {
    font-size: var(--text-base);
  }
  .hero__bg-mark {
    right: -25%;
    opacity: 0.04;
  }
  .hero__bg-mark--small {
    display: none;
  }
  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .steps__phone-wrap {
    position: static;
    order: -1;
  }
  .phone {
    width: 240px;
    height: 500px;
    border-radius: 32px;
    padding: 10px;
  }
  .phone__notch {
    width: 100px;
    height: 24px;
    top: 10px;
    border-radius: 0 0 14px 14px;
  }
  .phone__screen {
    border-radius: 24px;
  }
  .phone__home-indicator {
    width: 80px;
    bottom: 16px;
  }
  .steps__tab {
    padding: 1rem;
  }

  .explainer__text {
    font-size: var(--text-lg);
  }

  .nav__links {
    display: none;
  }
  .nav__hamburger {
    display: flex;
  }
}

@media (max-width: 480px) {
  .hero__headline {
    font-size: clamp(2rem, 7vw, 2.75rem);
  }
}


/* ═══ SHARE WITH A FRIEND ══════════════════════════ */
.share {
  background: var(--cream);
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}
.share__inner {
  max-width: 520px;
  margin: 0 auto;
  padding: 0 40px;
}
.share__logo {
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  opacity: 0.6;
}
.share__title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  color: var(--olive-dark);
  margin-bottom: 12px;
  line-height: 1.2;
}
.share__sub {
  font-size: 15px;
  color: var(--taupe);
  line-height: 1.65;
  margin-bottom: 32px;
}
.share__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.share__copied {
  font-size: 13px;
  color: var(--olive-mid);
  margin-top: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
  height: 20px;
}
.share__copied.visible { opacity: 1; }

@media (max-width: 768px) {
  .share__inner { padding: 0 24px; }
}

/* ════════════════════════════════════════════════════════ */
/* DIVINE POLISH — Final elevated pass                     */
/* ════════════════════════════════════════════════════════ */

/* --- 11. WARM GRADIENT OVERLAY on body --- */
body {
  background: radial-gradient(ellipse at 50% 0%, #FAF4EE 0%, #FAF6F1 60%);
}

/* --- 13. TYPOGRAPHY REFINEMENT --- */
h1, h2, h3, h4, .hero__headline, .pullquote__text, .problem__headline,
.features__title, .allinone__title, .faq__title, .waitlist__headline,
.final-cta__headline, .stats__title {
  text-rendering: optimizeLegibility;
  font-feature-settings: "liga" 1, "kern" 1;
}
.hero__headline {
  letter-spacing: -0.02em;
}

/* --- 12. NAV camel border on scroll --- */
.nav--scrolled {
  border-bottom: 1px solid var(--camel);
}

/* --- 1. HERO STARDUST PARTICLES --- */
.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.hero__particle {
  position: absolute;
  font-size: 10px;
  color: var(--camel);
  opacity: 0;
  will-change: transform, opacity;
}

@media (prefers-reduced-motion: no-preference) {
  .hero__particle {
    animation: stardustFloat var(--float-duration, 10s) var(--float-delay, 0s) ease-in-out infinite;
  }
}

@keyframes stardustFloat {
  0% {
    opacity: 0;
    transform: translateY(0) translateX(0) scale(0.6);
  }
  15% {
    opacity: var(--particle-opacity, 0.25);
  }
  85% {
    opacity: var(--particle-opacity, 0.25);
  }
  100% {
    opacity: 0;
    transform: translateY(calc(-100vh * 0.6)) translateX(var(--drift-x, 20px)) scale(1);
  }
}

/* --- 2. HERO SCROLL INDICATOR --- */
.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  opacity: 1;
  transition: opacity 0.6s var(--ease-out);
}
@media (max-width: 768px) {
  .hero__scroll-indicator { display: none; }
}
.hero__scroll-indicator.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.hero__scroll-indicator span {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 500;
}
.hero__scroll-chevron {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--stone);
  border-bottom: 2px solid var(--stone);
  transform: rotate(45deg);
  opacity: 0.6;
}
@media (prefers-reduced-motion: no-preference) {
  .hero__scroll-chevron {
    animation: scrollBounce 2s ease-in-out infinite;
  }
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.4; }
  50% { transform: rotate(45deg) translateY(5px); opacity: 0.8; }
}

/* --- 3. SECTION DIVIDERS with Clover mark --- */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  background: var(--cream);
}
.section-divider--dark {
  background: var(--cream-dark);
}
.section-divider__line {
  flex: 1;
  height: 1px;
  background: var(--sand);
  max-width: 200px;
}
.section-divider__mark {
  width: 20px;
  height: 20px;
  margin: 0 1rem;
  opacity: 0.35;
  flex-shrink: 0;
}

/* --- 4. PULL QUOTE DRAMATIC UPGRADE --- */
.pullquote {
  background: var(--olive) !important;
  position: relative;
  overflow: hidden;
}
.pullquote__inner {
  position: relative;
  z-index: 1;
}
.pullquote__deco-quote {
  position: absolute;
  top: -0.15em;
  left: -0.1em;
  font-family: var(--font-display);
  font-size: clamp(150px, 20vw, 250px);
  line-height: 1;
  color: var(--cream);
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.pullquote__text {
  font-size: clamp(1.75rem, 1rem + 3vw, 3.5rem) !important;
  color: var(--cream) !important;
  position: relative;
  z-index: 1;
}
@media (prefers-reduced-motion: no-preference) {
  .pullquote__text {
    animation: quoteShimmer 6s ease-in-out infinite;
  }
}
@keyframes quoteShimmer {
  0%, 100% { text-shadow: 0 0 0 transparent; }
  50% { text-shadow: 0 0 40px rgba(250, 246, 241, 0.12), 0 0 80px rgba(198, 168, 130, 0.08); }
}
.pullquote__sub {
  color: var(--camel) !important;
}
.pullquote__mark {
  display: block;
  width: 24px;
  height: 24px;
  margin: 1.5rem auto 0;
  opacity: 0.4;
}

/* --- 5. PROBLEM SECTION — rotating watermark clover --- */
.problem {
  position: relative;
  overflow: hidden;
}
.problem__watermark {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  width: clamp(250px, 35vw, 500px);
  height: clamp(250px, 35vw, 500px);
  opacity: 0.04;
  color: var(--olive);
  pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .problem__watermark {
    animation: watermarkSpin 90s linear infinite;
  }
}
@keyframes watermarkSpin {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}

/* --- 6. SERENDIPITY EASTER EGG --- */
.nav__brand {
  position: relative;
}
.nav__easter-egg {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--camel);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  background: var(--cream);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  z-index: 200;
}
.nav__easter-egg.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* --- 8. WAITLIST CONFETTI --- */
.confetti-container {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
}
.confetti-piece {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  opacity: 1;
  will-change: transform, opacity;
}
@media (prefers-reduced-motion: no-preference) {
  .confetti-piece {
    animation: confettiFall 1.2s cubic-bezier(0.25, 0, 0.25, 1) forwards;
  }
}
@keyframes confettiFall {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(var(--confetti-x, 30px), var(--confetti-y, 120px)) rotate(var(--confetti-r, 360deg)) scale(0.4);
    opacity: 0;
  }
}

/* Button glow on submit */
@media (prefers-reduced-motion: no-preference) {
  .btn--submitting {
    animation: btnGlow 0.5s ease-out;
  }
}
@keyframes btnGlow {
  0% { box-shadow: 0 0 0 0 rgba(198, 168, 130, 0.5); }
  50% { box-shadow: 0 0 20px 6px rgba(198, 168, 130, 0.4); }
  100% { box-shadow: 0 0 0 0 rgba(198, 168, 130, 0); }
}

/* Success state scale-in */
.waitlist__success--animate,
.final-cta__success--animate {
  animation: successAppear 0.6s var(--ease-out) forwards;
}
@keyframes successAppear {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(12px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* --- 9. FAQ SMOOTH ACCORDION --- */
.faq-item__a {
  overflow: hidden;
  max-height: 0;
  padding-bottom: 0;
  transition: max-height 0.4s var(--ease-out), padding-bottom 0.4s var(--ease-out);
}
.faq-item[open] .faq-item__a {
  max-height: 300px;
  padding-bottom: 1.25rem;
}


/* --- 14. CLOSING BRAND MOMENT --- */
.brand-moment {
  padding: clamp(4rem, 8vw, 7rem) 1.5rem;
  background: var(--cream);
  text-align: center;
}
.brand-moment__logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  opacity: 0.7;
}
.brand-moment__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--camel);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.brand-moment__date {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--stone);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}


/* ═══ MENTAL LOAD HEADING ══════════════════════════ */
.allinone__replace-heading {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 600;
  font-style: italic;
  color: var(--olive-dark);
  margin-bottom: 8px;
}


/* ═══ FOUNDER STORY ════════════════════════════════ */
.founder {
  background: #476B47;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.founder__inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}
.founder__accent {
  position: absolute;
  top: 60px;
  right: -20px;
  opacity: 0.06;
  width: 240px;
  height: 240px;
}
.founder__accent img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.founder .section-label {
  color: var(--camel);
}
.founder__title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 600;
  color: #FAF6F1;
  line-height: 1.25;
  margin-bottom: 40px;
}
.founder__story p {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.85;
  color: rgba(250, 246, 241, 0.8);
  margin-bottom: 24px;
}
.founder__callout {
  font-family: var(--font-serif) !important;
  font-size: 22px !important;
  font-weight: 500;
  font-style: italic;
  color: var(--camel) !important;
  margin: 36px 0 !important;
  line-height: 1.5 !important;
}
.founder__sign {
  font-family: var(--font-serif);
  font-size: 15px;
  font-style: italic;
  color: var(--camel);
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(250, 246, 241, 0.15);
}

/* Poetic short-line format */
.founder__story--poetic p {
  margin-bottom: 20px;
}
.founder__divider {
  border: none;
  border-top: 1px solid rgba(250, 246, 241, 0.15);
  width: 60px;
  margin: 40px 0;
}

@media (max-width: 600px) {
  .founder__inner { padding: 0 24px; }
  .founder__callout { font-size: 19px !important; }
  .founder__accent { width: 160px; height: 160px; top: 40px; right: -10px; }
}

/* ═══ STATS SUBTITLE ═══════════════════════════════ */
.stats__subtitle {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.5vw, 26px);
  font-style: italic;
  font-weight: 400;
  color: var(--camel);
  margin-top: 8px;
  text-align: center;
}

/* Stats grid overrides removed — using original responsive rules */


@media (max-width: 768px) {
}
@media (max-width: 500px) {
}

/* ═══ REASONS CAROUSEL ═════════════════════════════ */
.reasons {
  background: #F2EDE7;
  padding: 100px 0;
  overflow: hidden;
}
.reasons__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.reasons__header {
  margin-bottom: 48px;
}
.reasons__title {
  font-family: 'Lora', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: #476B47;
  line-height: 1.2;
  margin-bottom: 16px;
}
.reasons__sub {
  font-size: 16px;
  color: #8C8278;
  line-height: 1.7;
  max-width: 480px;
}
.reasons__carousel-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}
.reasons__carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  /* scroll-snap removed — arrows handle alignment */
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 10px 0 20px;
  scrollbar-width: none;
}
.reasons__carousel::-webkit-scrollbar { display: none; }
.reason-card {
  flex: 0 0 320px;
  background: #FFFFFF;
  border: 1px solid rgba(71, 107, 71, 0.15);
  border-left: 4px solid #476B47;
  border-radius: 14px;
  padding: 32px 28px;
  min-height: 140px;
  display: flex;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.reason-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(71, 107, 71, 0.08);
}
.reason-card p {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.7;
  color: #3B3632;
  margin: 0;
}
.reasons__arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid #E8E2DA;
  color: #476B47;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.reasons__arrow:hover {
  background: #476B47;
  color: #FAF6F1;
  border-color: #476B47;
}
@media (max-width: 768px) {
  .reason-card { flex: 0 0 calc(100vw - 140px); }
  .reasons__arrow { width: 40px; height: 40px; font-size: 16px; }
  .reasons__inner { padding: 0 20px; }
  .reasons__carousel-wrap { gap: 12px; }
  .reasons__carousel { gap: 16px; }
}


/* ════════════════════════════════════════════════════════ */
/* SPARKLE PASS — Visual Polish                           */
/* ════════════════════════════════════════════════════════ */

/* --- #1 Accent lines above Features & Reasons section labels --- */
.features .section-label::before,
.reasons .section-label::before {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--olive);
  margin-bottom: 1rem;
}
/* Reasons header is left-aligned, features is default */
.reasons .section-label::before {
  margin-left: 0;
}

/* --- #2 Sand border between pullquote and next section --- */
.pullquote {
  border-bottom: 1px solid var(--sand) !important;
}

/* --- #3 Feature cards — olive gradient top accent bar --- */
.feature-card {
  position: relative;
  overflow: hidden;
  border-top: none;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--olive) 0%, var(--sage) 60%, var(--camel) 100%);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

/* --- #4 Social proof counter --- */
.waitlist-counter {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--olive);
  margin-bottom: 1.5rem;
}
.waitlist-counter::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
  animation: counterPulse 2s ease-in-out infinite;
}
@keyframes counterPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(95, 140, 98, 0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 4px rgba(95, 140, 98, 0); }
}
/* Light variant for final CTA section */
.waitlist-counter--light {
  color: rgba(250, 246, 241, 0.8);
}
.waitlist-counter--light::before {
  background: var(--camel);
  animation: counterPulseLight 2s ease-in-out infinite;
}
@keyframes counterPulseLight {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(198, 168, 130, 0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 4px rgba(198, 168, 130, 0); }
}

/* --- #5 Sticky mobile CTA --- */
.sticky-cta {
  display: none;
}
@media (max-width: 767px) {
  .sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: var(--olive);
    padding: 12px 16px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    transform: translateY(100%);
    transition: transform 0.35s var(--ease-out);
    box-shadow: 0 -4px 20px rgba(59, 54, 50, 0.15);
  }
  .sticky-cta--visible {
    transform: translateY(0);
  }
  .sticky-cta__btn {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: var(--camel);
    color: #fff;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    text-decoration: none;
    transition: background var(--transition-interactive);
  }
  .sticky-cta__btn:hover,
  .sticky-cta__btn:active {
    background: var(--camel-hover);
  }
}

/* --- #6 Platforms bar --- */
.platforms {
  background: var(--cream-dark);
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-top: 1px solid var(--sand);
}
.platforms__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.platforms__inner p {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--taupe);
  letter-spacing: 0.02em;
}
.platforms__icons {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.platforms__icons svg {
  width: 20px;
  height: 20px;
  color: var(--olive);
  opacity: 0.7;
}

/* --- #7 Share section improvements --- */
.share__illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}
.share__illustration img {
  width: 32px;
  height: 32px;
  opacity: 0.5;
}
.share__illustration svg {
  color: var(--camel);
  opacity: 0.6;
}
.btn--outline {
  background: transparent;
  border: 1.5px solid var(--olive);
  color: var(--olive);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition-interactive),
              color var(--transition-interactive);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn--outline:hover {
  background: var(--olive);
  color: var(--cream);
}

/* --- #8 Smooth hover states --- */

/* Nav links: underline slides in from left */
.nav__link:not(.nav__link--cta) {
  position: relative;
  overflow: hidden;
}
.nav__link:not(.nav__link--cta)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--sage);
  transform: translateX(-101%);
  transition: transform 0.3s var(--ease-out);
}
.nav__link:not(.nav__link--cta):hover::after {
  transform: translateX(0);
}

/* FAQ items: slight left padding on hover */
.faq-item__q {
  transition: padding-left 0.25s var(--ease-out), color 0.25s var(--ease-out);
}
.faq-item__q:hover {
  padding-left: 0.5rem;
  color: var(--olive);
}

/* Feature cards: border-color transitions to olive on hover */
.feature-card {
  transition: transform var(--transition-interactive),
              box-shadow var(--transition-interactive),
              border-color 0.3s var(--ease-out);
}
.feature-card:hover {
  border-color: var(--olive);
}

/* --- #9 Section labels — decorative dot --- */
.section-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
/* The dot pseudo-element — we use an inline approach to avoid conflict with accent line */
.section-label::after {
  content: none; /* reset just in case */
}
/* All section labels get a leading dot, EXCEPT ones that already have accent line ::before */
.problem .section-label::before,
.how-it-works .section-label::before,
.allinone .section-label::before,
.faq .section-label::before,
.founder .section-label::before,
.stats .section-label::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}
/* Light variant dot for dark backgrounds */
.stats .section-label::before,
.founder .section-label::before {
  background: var(--camel);
}
/* Features & Reasons already have accent line ::before, so add dot via a wrapper span — handled in HTML */
/* For features & reasons, put dot AFTER the accent line */
.features .section-label,
.reasons .section-label {
  flex-direction: column;
  align-items: flex-start;
}
.features .section-label::after,
.reasons .section-label::after {
  content: none; /* dot goes in the label text instead via HTML span */
}
/* Re-add dot inside features/reasons label text with a dedicated element — handled by adding a dot span in HTML */

/* --- #10 Page entrance fade-in --- */
/* page entrance removed */

/* Respect reduced motion for page entrance */
@media (prefers-reduced-motion: reduce) {
  body {
    opacity: 1 !important;
    transition: none !important;
  }
  .sticky-cta {
    transition: none !important;
  }
}

/* --- Problem section mobile padding fix --- */
@media (max-width: 767px) {
  .problem {
    padding: 80px 1.5rem;
  }
  .features {
    padding: 80px 1.5rem;
  }
}

/* ═══ PLATFORMS BAR ════════════════════════════════ */
.platforms-bar {
  background: var(--olive-dark);
  padding: 20px 0;
  text-align: center;
}
.platforms-bar,
.platforms-bar *,
.platforms-bar .platforms-bar__inner,
.platforms-bar span,
.platforms-bar svg {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}
.platforms-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.04em;
}
.platforms-bar__icon {
  width: 18px;
  height: 18px;
  color: var(--camel);
  flex-shrink: 0;
}

/* ═══ 3. FEATURE CARD ACCENTS ══════════════════════ */
.feature-card {
  border-top: 3px solid transparent;
}
.feature-card:nth-child(1) { border-top-color: #476B47; }
.feature-card:nth-child(2) { border-top-color: #5F8C62; }
.feature-card:nth-child(3) { border-top-color: #C6A882; }
.feature-card:nth-child(4) { border-top-color: #8C8278; }

/* ═══ 4. FAQ WARMER BACKGROUND ═════════════════════ */
.faq {
  background: var(--cream-dark) !important;
}

/* ═══ 5. SHARE SECTION WARMER ══════════════════════ */
.share__actions .btn {
  border-radius: 100px;
  padding: 14px 28px;
  font-size: 14px;
}

/* ═══ 6. INSTAGRAM FOLLOW LINE ═════════════════════ */
.waitlist-follow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  color: #8C8278;
  margin-top: 20px;
}
.waitlist-follow a {
  color: #476B47;
  font-weight: 500;
  text-decoration: none;
}
.waitlist-follow a:hover {
  text-decoration: underline;
}

/* ═══ STATS TIGHTER ON MOBILE ══════════════════════ */
@media (max-width: 599px) {
  .stats__grid {
    gap: 0.5rem !important;
  }
  .stat {
    padding: 1rem !important;
  }
}

/* ═══ STEP TABS — MORE OBVIOUS CLICKABILITY ════════ */
.steps__hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: #C6A882;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
  animation: hintPulse 2s ease infinite;
}
@keyframes hintPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ═══ FORCE FOOTER VISIBLE ═════════════════════════ */
.footer, .footer * {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

/* ═══ ENSURE BOTTOM SECTIONS VISIBLE ═══════════════ */
.founder, .founder *,
.share, .share *:not(.share__copied),
.faq-item:nth-child(n+6), .faq-item:nth-child(n+6) *,
.final-cta, .final-cta *,
.brand-moment, .brand-moment * {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}
.share__copied:not(.visible) {
  opacity: 0 !important;
}
