/* ============================================
   AIR2O — Main Stylesheet
   ============================================

   HOW TO EDIT:

   COLORS — Change the variables below in :root to
   update colors globally across the entire site.

   FONTS — Change --font to swap the typeface.
   When you license Maison Neue, replace the
   Google Fonts link in index.html and update
   --font to: 'Maison Neue', sans-serif

   SPACING — Section padding is controlled by
   .section { padding: 140px 0; }

   LAYOUT — Max content width is set in .container

   ============================================ */

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

/* ===== DESIGN TOKENS ===== */
:root {
  /* Brand Colors */
  --lime: #ECF054;
  --lime-dim: rgba(236,240,84,0.15);
  --mint: #DEECED;
  --sage: #91BBBD;
  --teal: #6A9B9E;
  --dark: #2D4143;
  --deep: #142023;
  --black: #0F0F0F;

  /* Utility Colors */
  --white: #FFFFFF;
  --off-white: #F7F9F9;
  --text: #2D4143;
  --text-light: #6A9B9E;
  --text-muted: rgba(45,65,67,0.55);

  /* Typography — swap 'DM Sans' for 'Maison Neue' when licensed */
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

  /* Animation Curves */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}


/* ===== BASE ===== */
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }


/* ===== LAYOUT ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 32px; }


/* ===== NAVIGATION ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 24px 0;
  transition: all 0.5s var(--ease);
}
.nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  padding: 16px 0;
  border-bottom: 1px solid rgba(145,187,189,0.15);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; }

.nav-logo {
  display: inline-flex; align-items: center;
  transition: opacity 0.3s;
}
.nav-logo img { display: block; }
/* Light logo visible on dark hero, dark logo hidden */
.nav--light .nav-logo-light { display: block; }
.nav--light .nav-logo-dark { display: none; }
/* When scrolled (white bg), swap to dark logo */
.nav.scrolled .nav-logo-light { display: none; }
.nav.scrolled .nav-logo-dark { display: block; }

.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: 0.88rem; font-weight: 500; letter-spacing: 0.01em;
  transition: all 0.3s;
}
.nav--light .nav-links a { color: rgba(255,255,255,0.75); }
.nav--light .nav-links a:hover { color: var(--white); }
.nav.scrolled .nav-links a { color: var(--text-muted); }
.nav.scrolled .nav-links a:hover { color: var(--dark); }

.nav-cta {
  padding: 10px 24px; border-radius: 100px;
  font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.01em;
  transition: all 0.3s var(--ease);
}
.nav--light .nav-cta {
  background: rgba(255,255,255,0.15); color: var(--white) !important;
  border: 1px solid rgba(255,255,255,0.25);
}
.nav--light .nav-cta:hover { background: rgba(255,255,255,0.25); }
.nav.scrolled .nav-cta {
  background: var(--deep); color: var(--white) !important;
  border: 1px solid var(--deep);
}
.nav.scrolled .nav-cta:hover { background: var(--dark); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { width: 22px; height: 1.5px; transition: 0.3s; }
.nav--light .nav-toggle span { background: var(--white); }
.nav.scrolled .nav-toggle span { background: var(--dark); }


/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: var(--deep);
  overflow: hidden;
}

/* Hero Video */
.hero-video-wrap {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  top: 50%; left: 50%;
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.hero-video-placeholder {
  position: absolute; inset: 0;
  background: var(--deep);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 16px;
  transition: opacity 0.6s;
}
.hero-video-placeholder svg { opacity: 0.12; }
.hero-video-placeholder span {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(145,187,189,0.25);
}
.hero-video-wrap.has-video .hero-video-placeholder { opacity: 0; pointer-events: none; }

/* Hero Overlay — tints the video. Adjust opacity values to control darkness */
.hero-bg {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(106,155,158,0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(20,32,35,0.3) 0%, transparent 50%),
    linear-gradient(180deg, rgba(20,32,35,0.55) 0%, rgba(15,15,15,0.7) 100%);
  pointer-events: none;
}

/* Particle Canvas */
.hero-particles { position: absolute; inset: 0; z-index: 2; }

/* Hero Content */
.hero-content {
  position: relative; z-index: 3;
  max-width: 820px; padding: 0 32px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--sage);
  margin-bottom: 32px;
}
.hero-eyebrow sup {
  font-size: 0.55em; vertical-align: super;
  line-height: 0; position: relative; top: -0.3em;
}
/* Line removed per request */
.hero h1 {
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 700; letter-spacing: -0em;
  line-height: 1.06; color: var(--white);
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: normal; color: var(--lime);
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.7; color: var(--sage);
  max-width: 580px; margin: 0 auto 44px;
  font-weight: 400;
}
.hero-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 3; color: var(--sage); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.hero-scroll-line {
  width: 1px; height: 48px; background: linear-gradient(180deg, var(--teal), transparent);
  position: relative; overflow: hidden;
}
.hero-scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%; background: var(--lime);
  animation: scrollPulse 2s ease infinite;
}


/* ===== BUTTONS ===== */
.btn-lime {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--lime); color: var(--deep);
  padding: 16px 36px; border-radius: 100px;
  font-size: 0.92rem; font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.35s var(--ease);
}
.btn-lime:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(236,240,84,0.25); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(145,187,189,0.3); color: var(--sage);
  padding: 15px 36px; border-radius: 100px;
  font-size: 0.92rem; font-weight: 500;
  transition: all 0.35s var(--ease);
}
.btn-ghost:hover { border-color: var(--sage); color: var(--white); background: rgba(145,187,189,0.08); }

.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--deep); color: var(--white);
  padding: 16px 36px; border-radius: 100px;
  font-size: 0.92rem; font-weight: 600;
  transition: all 0.35s var(--ease);
}
.btn-dark:hover { background: var(--dark); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(20,32,35,0.15); }

.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(45,65,67,0.2); color: var(--dark);
  padding: 15px 36px; border-radius: 100px;
  font-size: 0.92rem; font-weight: 500;
  transition: all 0.35s var(--ease);
}
.btn-outline-dark:hover { border-color: var(--dark); background: rgba(45,65,67,0.04); }


/* ===== FEATURES BAR ===== */
.features-bar {
  padding: 48px 0;
  background: var(--off-white);
  border-bottom: 1px solid rgba(145,187,189,0.12);
}
.features-bar .container {
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.feature-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; font-weight: 500; color: var(--dark);
}

/* Feature icons */
.feature-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
}
.feature-icon svg {
  width: 20px; height: 20px;
}

/* Sun ray animation */
.feature-icon--sun svg .sun-ray {
  transform-origin: 12px 12px;
  animation: sunSpin 12s linear infinite;
}
.feature-icon--sun svg .sun-core {
  animation: sunPulse 3s ease-in-out infinite;
}
@keyframes sunSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes sunPulse {
  0%, 100% { r: 5; }
  50% { r: 5.5; }
}

/* Feature icon pop-in — initial state before GSAP */
[data-feature] .feature-icon {
  will-change: transform, opacity;
}


/* ===== SECTION SYSTEM ===== */
.section { padding: 140px 0; }
.section--mint { background: var(--mint); }
.section--deep { background: var(--deep); color: var(--white); }
.section--off { background: var(--off-white); }
.section--dark { background: var(--dark); color: var(--white); }

.section-eyebrow {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 20px;
}
.section--deep .section-eyebrow { color: var(--sage); }
.section--dark .section-eyebrow { color: var(--sage); }

.section-heading {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700; letter-spacing: -0.00em;
  line-height: 1.12; margin-bottom: 20px;
}

.section-text {
  font-size: 1.08rem; line-height: 1.75; color: var(--text-muted);
  max-width: 600px;
}
.section--deep .section-text { color: var(--sage); }
.section--dark .section-text { color: rgba(222,236,237,0.6); }


/* ===== CRISIS SECTION ===== */
.crisis-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.crisis-visual {
  position: relative; border-radius: 20px; overflow: hidden;
  aspect-ratio: 4/5;
  background: url('DrinkWater.png') center / cover no-repeat;
}
.crisis-visual-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 24px; padding: 48px;
  text-align: center;
}
.crisis-stat-big {
  font-size: 6.5rem; font-weight: 900; letter-spacing: -0.02em;
  line-height: 1; color: var(--lime); opacity: 0.7;
}
.crisis-stat-sub {
  font-size: 1rem; color: rgba(255,255,255,0.9);
  line-height: 1.2; max-width: 240px;
}
.crisis-content .section-text + .section-text { margin-top: 20px; }
.crisis-pullquote {
  font-size: 1.35rem; font-weight: 600; line-height: 1.45;
  color: var(--dark); letter-spacing: -0.01em;
  margin-top: 36px; padding: 28px 32px;
  background: var(--mint); border-radius: 12px;
  position: relative;
}
.crisis-pullquote::before {
  content: '\201C'; position: absolute; top: 5px; left: 20px;
  font-size: 3.5rem; font-weight: 700; line-height: 1;
  color: var(--sage); font-family: Georgia, serif;
  opacity: 0.7;
}


/* ===== HOW IT WORKS ===== */
.how-intro { max-width: 640px; margin-bottom: 80px; }
.how-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
}
.how-step {
  padding: 40px 32px;
  background: rgba(255,255,255,0.04);
  border-radius: 2px;
  position: relative;
  transition: background 0.4s;
}
.how-step:hover { background: rgba(255,255,255,0.08); }
.how-step-num {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--lime);
  margin-bottom: 20px;
}
.how-step h3 {
  font-size: 1.05rem; font-weight: 600; color: var(--white);
  margin-bottom: 12px; letter-spacing: -0.01em;
}
.how-step p {
  font-size: 0.88rem; line-height: 1.65; color: rgba(222,236,237,0.5);
}
.how-bottom {
  margin-top: 64px; padding-top: 40px;
  border-top: 1px solid rgba(145,187,189,0.1);
  display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
}
.how-callout {
  font-size: 1.15rem; font-weight: 600; color: var(--white);
  line-height: 1.4;
}
.how-callout em { font-style: normal; color: var(--lime); }


/* ===== PRODUCTS ===== */
.products-header {
  text-align: center; max-width: 640px; margin: 0 auto 80px;
}
.products-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.product-card {
  border-radius: 16px; overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(145,187,189,0.15);
  transition: all 0.4s var(--ease);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(20,32,35,0.08);
  border-color: rgba(145,187,189,0.3);
}
.product-visual {
  height: 200px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.product-img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.product-body { padding: 32px; }
.product-tag {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 10px;
}
.product-card h3 {
  font-size: 1.25rem; font-weight: 700; color: var(--deep);
  letter-spacing: -0.02em; margin-bottom: 10px;
}
.product-card p {
  font-size: 0.9rem; line-height: 1.65; color: var(--text-muted);
}
.product-footer {
  padding: 20px 32px; border-top: 1px solid rgba(145,187,189,0.1);
}
.product-link {
  font-size: 0.82rem; font-weight: 600; color: var(--teal);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.3s;
}
.product-card:hover .product-link { gap: 10px; color: var(--dark); }


/* ===== APPLICATIONS ===== */
.app-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 64px;
}
.app-card {
  padding: 36px 28px; border-radius: 12px;
  background: var(--white);
  border: 1px solid rgba(145,187,189,0.12);
  transition: all 0.35s var(--ease);
}
.app-card:hover {
  border-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(20,32,35,0.06);
}
.app-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--mint);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.app-icon svg { width: 22px; height: 22px; stroke: var(--dark); fill: none; stroke-width: 1.5; }
.app-card h3 {
  font-size: 1rem; font-weight: 600; color: var(--deep);
  letter-spacing: -0.01em; margin-bottom: 8px;
}
.app-card p {
  font-size: 0.85rem; line-height: 1.6; color: var(--text-muted);
}


/* ===== BIG STATEMENT ===== */
.statement {
  padding: 160px 0;
  text-align: center;
  background: var(--deep);
  position: relative; overflow: hidden;
}
.statement::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(106,155,158,0.08), transparent 70%);
}
.statement .container { position: relative; z-index: 2; }
.statement h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700; letter-spacing: -0.02em;
  line-height: 1.15; color: var(--white);
  max-width: 720px; margin: 0 auto;
}
.statement h2 em { font-style: normal; color: var(--lime); }
.statement-typewriter {
  color: var(--lime);
  display: inline;
}
.statement-typewriter .typewriter-cursor {
  background: var(--lime);
}


/* ===== TRACTION ===== */
.traction-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 64px;
}
.traction-card {
  padding: 32px 24px; border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(145,187,189,0.1);
  transition: all 0.3s;
}
.traction-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(145,187,189,0.2);
}
.traction-card h3 {
  font-size: 0.95rem; font-weight: 600; color: var(--white);
  margin-bottom: 10px;
}
.traction-card p {
  font-size: 0.82rem; line-height: 1.6; color: rgba(222,236,237,0.45);
}
.traction-highlight {
  font-size: 1.6rem; font-weight: 700; color: var(--lime);
  margin-bottom: 8px; letter-spacing: -0.02em;
}


/* ===== FOUNDER ===== */
.founder-split {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px;
  align-items: center;
}
.founder-portrait {
  aspect-ratio: 3/4; border-radius: 16px; overflow: hidden;
  background: linear-gradient(135deg, var(--mint), var(--sage));
  display: flex; align-items: center; justify-content: center;
}
.founder-portrait-placeholder {
  color: var(--dark); opacity: 0.25; text-align: center;
  font-size: 0.85rem;
}
.founder-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700; letter-spacing: -0.03em;
  line-height: 1.12; color: var(--deep);
  margin-bottom: 24px;
}
.founder-quote {
  font-size: 1.2rem; font-weight: 500; line-height: 1.55;
  color: var(--dark); 
  padding: 28px 32px; background: var(--mint);
  border-radius: 12px; margin-bottom: 24px;
  position: relative;
}
.founder-quote::before {
  content: '\201C'; position: absolute; top: 5px; left: 20px; 
  font-size: 3.5rem; font-weight: 700; line-height: 1;
  color: var(--sage); font-family: Georgia, serif;
  opacity: 0.7;
}
.founder-text {
  font-size: 0.95rem; line-height: 1.75; color: var(--text-muted); 
}
.founder-text + .founder-text { margin-top: 16px; }
.founder-stats {
  display: flex; gap: 40px; margin-top: 36px;
  padding-top: 28px; border-top: 1px solid rgba(145,187,189,0.15);
}
.founder-stat-val {
  font-size: 1.8rem; font-weight: 700; color: var(--dark);
  letter-spacing: -0.02em;
}
.founder-stat-label {
  font-size: 0.75rem; color: var(--text-muted); margin-top: 2px;
  font-weight: 500;
}


/* ===== WAITLIST / CONSUMER CTA ===== */
.waitlist {
  position: relative;
  padding: 120px 0; text-align: center;
  background: var(--mint);
  overflow: hidden;
}
#condensation-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 767px) {
  #condensation-canvas { display: none; }
}
.waitlist-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--teal);
  background: rgba(106,155,158,0.12);
  padding: 8px 20px; border-radius: 100px;
  margin-bottom: 28px;
}
.waitlist h2 {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 700; letter-spacing: -0.03em;
  line-height: 1.15; color: var(--deep);
  max-width: 520px; margin: 0 auto 16px;
}
.waitlist p {
  font-size: 1rem; line-height: 1.7; color: var(--text-muted);
  max-width: 440px; margin: 0 auto 36px;
}
.waitlist-form {
  display: flex; gap: 10px; max-width: 440px; margin: 0 auto;
}
.waitlist-form input {
  flex: 1; padding: 15px 20px; border-radius: 100px;
  border: 1px solid rgba(106,155,158,0.25);
  background: var(--white); color: var(--dark);
  font-size: 0.9rem; font-family: var(--font);
  outline: none; transition: border-color 0.3s;
}
.waitlist-form input::placeholder { color: var(--sage); }
.waitlist-form input:focus { border-color: var(--teal); }
.waitlist-form button {
  padding: 15px 28px; background: var(--deep);
  color: var(--white); font-weight: 600; font-size: 0.88rem;
  border-radius: 100px; white-space: nowrap;
  transition: all 0.3s;
}
.waitlist-form button:hover { background: var(--dark); }


/* ===== FINAL CTA ===== */
.final-cta {
  padding: 140px 0; text-align: center;
  background: var(--white);
}
.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; letter-spacing: -0.03em;
  line-height: 1.15; color: var(--deep);
  max-width: 600px; margin: 0 auto 16px;
}
.final-cta p {
  font-size: 1.05rem; line-height: 1.7; color: var(--text-muted);
  max-width: 460px; margin: 0 auto 40px;
}
.final-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }


/* ===== FOOTER ===== */
.footer {
  background: var(--black); color: var(--white);
  padding: 72px 0 36px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-brand p {
  font-size: 0.85rem; color: rgba(222,236,237,0.4);
  line-height: 1.7; margin-top: 16px; max-width: 300px;
}
.footer h4 {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(222,236,237,0.3);
  margin-bottom: 20px;
}
.footer-links a {
  display: block; font-size: 0.85rem; color: rgba(222,236,237,0.55);
  padding: 5px 0; transition: color 0.3s;
}
.footer-links a:hover { color: var(--sage); }
.footer-bottom {
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.2); }


/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0% { top: -100%; }
  100% { top: 200%; }
}

/* Old CSS reveal classes removed — GSAP ScrollTrigger now handles all scroll animations */


/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .crisis-split { grid-template-columns: 1fr; gap: 48px; }
  .crisis-visual { max-width: 480px; }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .traction-grid { grid-template-columns: repeat(2, 1fr); }
  .founder-split { grid-template-columns: 1fr; gap: 48px; }
  .founder-portrait { max-width: 400px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 100px 0; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.active {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
    padding: 24px 32px; gap: 16px;
    border-bottom: 1px solid rgba(145,187,189,0.1);
  }
  .nav-links.active a { color: var(--dark) !important; }
  .nav-links.active .nav-cta {
    background: var(--deep) !important; color: var(--white) !important;
    border-color: var(--deep) !important;
    text-align: center; justify-content: center;
  }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-scroll { display: none; }
  .features-bar .container { gap: 24px; }
  .how-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .app-grid { grid-template-columns: 1fr; }
  .traction-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .waitlist-form { flex-direction: column; }
  .how-bottom { flex-direction: column; gap: 20px; }
  .founder-stats { flex-wrap: wrap; gap: 24px; }
  .crisis-pullquote { font-size: 1.15rem; }
}


/* ============================================
   GSAP / SCROLLSMOOTHER ADDITIONS
   ============================================ */

/* Lenis smooth scroll base */
html.lenis, html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

/* SplitType — word/line styles */
[data-split-text] .word {
  display: inline-block;
  will-change: transform, opacity;
}
[data-split-text] .line {
  overflow: hidden;
}

/* Statement split-reveal — words start dim, scrub to full */
[data-split-reveal] .word {
  display: inline-block;
  transition: none; /* GSAP handles this */
}

/* Horizontal line expand element */
.horizontal-line {
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin: 12px 0;
  transform-origin: left center;
  will-change: transform;
}
.horizontal-line--light {
  background: rgba(145,187,189,0.15);
  width: 100%;
  margin-top: 24px;
}

/* Nav hide/show transition */
.nav {
  will-change: transform;
}

/* Product cards — will-change for GSAP scrub */
[data-product] {
  will-change: transform, opacity;
}

/* Hero heading — ensure proper rendering during split */
.hero-heading {
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 28px;
  perspective: 400px;
}
.hero-heading em,
.hero-heading .word em {
  font-style: normal;
  color: var(--lime);
}

/* Typewriter effect */
.typewriter {
  color: var(--teal);
  display: inline;
}
.typewriter-cursor {
  display: inline-block;
  width: 3px;
  margin-left: 2px;
  background: var(--lime);
  animation: cursorBlink 0.75s ease infinite;
  vertical-align: baseline;
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Override old .reveal class — GSAP now handles everything */
.reveal-gsap {
  /* Initial state set by GSAP, not CSS */
  visibility: visible;
}


/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-hero {
  padding: 160px 0 60px;
  background: var(--off-white);
}

.contact-form-section {
  padding: 60px 0 140px;
  background: var(--off-white);
}

.contact-form {
  background: var(--white);
  border-radius: 16px;
  padding: 48px;
  border: 1px solid rgba(145,187,189,0.12);
  box-shadow: 0 8px 40px rgba(20,32,35,0.04);
  position: relative;
}

.form-group {
  margin-bottom: 28px;
}

.form-label {
  display: block;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.02em; color: var(--dark);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(145,187,189,0.25);
  border-radius: 10px;
  background: var(--white);
  color: var(--dark);
  font-size: 0.95rem;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-input::placeholder {
  color: var(--sage); opacity: 0.7;
}
.form-input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(106,155,158,0.1);
}
.form-input.error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231,76,60,0.08);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.form-error {
  display: block;
  font-size: 0.78rem; font-weight: 500;
  color: #e74c3c;
  margin-top: 6px;
  opacity: 0; height: 0; overflow: hidden;
  transition: opacity 0.3s;
}
.form-error.visible {
  opacity: 1; height: auto;
}

.contact-submit {
  width: 50%;
  justify-content: center;
  margin-top: 8px;
  padding: 18px 36px;
  font-size: 1rem;
}
.contact-submit:disabled {
  opacity: 0.7; cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}
.form-success.visible { display: block; }
.form-success h3 {
  font-size: 1.3rem; font-weight: 700;
  color: var(--deep); margin: 16px 0 8px;
  letter-spacing: -0.02em;
}
.form-success p {
  font-size: 0.95rem; color: var(--text-muted);
  line-height: 1.6;
}

/* Hide form fields when submitted */
.contact-form.submitted .form-group,
.contact-form.submitted .contact-submit {
  display: none;
}

/* Alternative contact */
.contact-alt {
  text-align: center;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(145,187,189,0.12);
}
.contact-alt > p {
  font-size: 0.85rem; color: var(--text-muted);
  font-weight: 500; margin-bottom: 16px;
}
.contact-alt-links {
  display: flex; gap: 32px; justify-content: center;
  flex-wrap: wrap;
}
.contact-alt-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.88rem; font-weight: 500; color: var(--teal);
  transition: color 0.3s;
}
.contact-alt-item:hover { color: var(--dark); }

/* Contact page responsive */
@media (max-width: 768px) {
  .contact-hero { padding: 130px 0 40px; }
  .contact-form { padding: 28px 20px; }
  .contact-alt-links { flex-direction: column; gap: 16px; align-items: center; }
}


/* ============================================
   PARTNERSHIPS PAGE
   ============================================ */

.partnerships-section {
  padding: 60px 0 140px;
  background: var(--off-white);
}

.partnerships-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
}

.partnerships-block {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(145,187,189,0.12);
  box-shadow: 0 8px 40px rgba(20,32,35,0.04);
}

.partnerships-block-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(145,187,189,0.12);
}
.partnerships-block-header h2 {
  font-size: 1.2rem; font-weight: 700;
  color: var(--deep); letter-spacing: -0.02em;
}

.partnerships-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 10px; background: var(--mint);
  display: flex; align-items: center; justify-content: center;
}
.partnerships-icon svg {
  width: 20px; height: 20px; stroke: var(--teal);
}

.partner-card {
  padding: 20px 0;
  border-bottom: 1px solid rgba(145,187,189,0.08);
}
.partner-card:last-child { border-bottom: none; }
.partner-card h3 {
  font-size: 1rem; font-weight: 600;
  color: var(--dark); letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.partner-card p {
  font-size: 0.85rem; color: var(--text-muted);
  line-height: 1.55;
}
.partner-link {
  color: var(--dark);
  text-decoration: none;
  transition: color 0.3s;
}
.partner-link:hover {
  color: var(--teal);
}

/* Investor page layout */
.investor-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}
.investor-image {
  border-radius: 16px;
  overflow: hidden;
}
.investor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  max-height: 420px;
}
@media (max-width: 768px) {
  .investor-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .investor-image { order: -1; }
  .investor-image img { max-height: 280px; }
}

.partnerships-cta {
  text-align: center;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(145,187,189,0.12);
}
.partnerships-cta p {
  font-size: 1.05rem; color: var(--text-muted);
  font-weight: 500; margin-bottom: 20px;
}

@media (max-width: 768px) {
  .partnerships-grid { grid-template-columns: 1fr; }
  .partnerships-block { padding: 28px 20px; }
}


/* ============================================
   404 PAGE
   ============================================ */

.error-page {
  min-height: 70vh;
  display: flex; align-items: center; justify-content: center;
  padding: 160px 0 100px;
  background: var(--off-white);
}
.error-droplet {
  margin-bottom: 24px;
}
.error-code {
  font-size: clamp(5rem, 12vw, 8rem);
  font-weight: 700; letter-spacing: -0.04em;
  line-height: 1; color: var(--mint);
  margin-bottom: 8px;
}
.error-heading {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700; letter-spacing: -0.02em;
  color: var(--deep);
  margin-bottom: 12px;
}
.error-text {
  font-size: 1rem; line-height: 1.7;
  color: var(--text-muted);
  max-width: 420px; margin: 0 auto 32px;
}
.error-actions {
  display: flex; gap: 14px;
  justify-content: center; flex-wrap: wrap;
}
