/* ===== Sprout marketing — design tokens ===== */
:root {
  --pitch: #08120E;
  --pitch-2: #0E1B16;
  --pitch-3: #142420;
  --cream: #F5F1E8;
  --cream-2: #EFEADD;
  --line: #E6E0D1;
  --ink: #0B1410;
  --ink-2: #2A3530;
  --ink-3: #5C6A65;
  --emerald: #10B981;
  --emerald-2: #0BA075;
  --mint: #A7F0CB;
  --chalk: #F7F4EC;
  --amber: #E9B949;
  --rose: #E96A6A;

  --font-display: "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
}
body.intro-locked { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ===== Reusable atoms ===== */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.eyebrow.on-dark { color: var(--mint); opacity: 0.85; }

.display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.96;
  font-optical-sizing: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--emerald); color: white; box-shadow: 0 10px 30px -8px rgba(16,185,129,.55), inset 0 -1px 0 rgba(0,0,0,.15); }
.btn-primary:hover { background: var(--emerald-2); transform: translateY(-1px); }
.btn-ghost-dark { color: white; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.04); }
.btn-ghost-dark:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.32); }
.btn-ghost-light { color: var(--ink); border: 1px solid var(--line); background: white; }
.btn-ghost-light:hover { border-color: var(--ink); }
.btn-sm { height: 38px; padding: 0 16px; font-size: 13.5px; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) { .container { padding: 0 20px; } }

/* =========================================================
   INTRO — DRAG-TO-PEEL FLAP + CINEMATIC WARP TUNNEL
========================================================= */
.intro {
  position: fixed; inset: 0;
  z-index: 100;
  display: grid; place-items: center;
  overflow: hidden;
  perspective: 1400px;
  background: var(--pitch);
}
.intro-warp { /* keep mounted; warp layer handles its own fade */ }

.intro-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 540px at 22% 25%, rgba(16,185,129,0.28), transparent 60%),
    radial-gradient(900px 540px at 80% 80%, rgba(11,160,117,0.22), transparent 60%),
    linear-gradient(180deg, #0a1611 0%, #08120E 60%);
  z-index: 0;
  transition: opacity .4s ease;
}
.intro-warp .intro-bg, .intro-peeling .intro-bg { opacity: .3; }
.intro-vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,18,14,0.0) 0%, rgba(8,18,14,0.45) 80%, rgba(8,18,14,0.85) 100%),
    radial-gradient(70% 60% at 50% 40%, transparent 0%, rgba(8,18,14,.55) 100%);
  z-index: 1;
  pointer-events: none;
  transition: opacity .4s ease;
}
.intro-warp .intro-vignette { opacity: 0; }

/* ----- Stage — drag progress lives on --peel (0..1) ----- */
.flap-stage {
  --peel: 0;
  --curl-base: 90px;
  --curl-max: 240px;
  --curl: calc(var(--curl-base) + (var(--curl-max) - var(--curl-base)) * var(--peel));
  position: relative;
  width: min(520px, 86vw);
  aspect-ratio: 5 / 6;
  z-index: 3;
  transform-style: preserve-3d;
  transition: opacity .35s ease;
}
.intro-warp .flap-stage { opacity: 0; }

/* ----- The sneak peek — ONLY visible in the top-right "cut corner" triangle ----- */
.flap-peek {
  position: absolute; inset: 0;
  overflow: hidden;
  z-index: 1;
  /* The ORIGINAL corner position — top-right triangle of the card.
     This is where the page beneath is revealed when the corner is lifted. */
  clip-path: polygon(
    calc(100% - var(--curl)) 0,
    100% 0,
    100% var(--curl)
  );
  transition: clip-path .2s linear;
}
.intro-peeling .flap-peek {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: clip-path .6s cubic-bezier(.3,.7,.3,1);
}
.flap-peek img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: left top;
  transform: scale(calc(1.05 + 0.08 * var(--peel)));
  filter: saturate(calc(110% + 20% * var(--peel))) brightness(calc(0.75 + 0.25 * var(--peel)));
  transition: transform .2s linear, filter .2s linear;
}
.intro-peeling .flap-peek img {
  transform: scale(1.2);
  filter: saturate(130%) brightness(1);
  transition: transform .8s ease, filter .8s ease;
}
.flap-peek-tint {
  position: absolute; inset: 0;
  background:
    linear-gradient(225deg, rgba(16,185,129,.18) 0%, transparent 50%),
    radial-gradient(circle at 100% 0%, rgba(8,18,14,.2), rgba(8,18,14,.6));
  opacity: calc(1 - 0.6 * var(--peel));
  transition: opacity .2s linear;
}
.intro-peeling .flap-peek-tint { opacity: 0; transition: opacity .5s ease; }

/* ----- Cast shadow on the revealed page beneath (sits IN the cut corner) -----
   This is the strong dark shadow JUST BENEATH the fold line — it's what makes
   the peeled corner look like it's hovering over the page below */
.flap-corner-shadow {
  position: absolute;
  top: 0; right: 0;
  width: var(--curl);
  height: var(--curl);
  z-index: 2;
  pointer-events: none;
  /* Top-right triangle only (matches the peek) */
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  /* Gradient PERPENDICULAR to the fold line — dark at the fold (top-left of this
     triangle's bounding box), fading toward the far corner */
  background:
    linear-gradient(225deg,
      rgba(0,0,0,calc(.85 + .1 * var(--peel))) 0%,
      rgba(0,0,0,.6) 18%,
      rgba(0,0,0,.3) 45%,
      rgba(0,0,0,.1) 75%,
      transparent 100%);
  opacity: 1;
  transition: opacity .3s ease;
}
.intro-peeling .flap-corner-shadow { opacity: 0; }

/* ----- The invisible card carrying logo + text ----- */
.flap-card {
  position: absolute; inset: 0;
  background: transparent;
  transform-origin: 50% 100%;
  /* While dragging: rotateX scales gently with peel — only a hint until commit */
  transform: perspective(1400px) rotateX(calc(var(--peel) * -10deg));
  transition: transform .2s linear;
  pointer-events: none;
  backface-visibility: hidden;
}
.intro-peeling .flap-card {
  transform: perspective(1400px) rotateX(-22deg) scale(0.94) translateY(-4%);
  opacity: 0;
  transition: transform .5s cubic-bezier(.4,0,.6,1), opacity .4s ease .08s;
}

.flap-front {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  padding: 40px 32px;
  text-align: center;
  pointer-events: none;
  opacity: calc(1 - 0.4 * var(--peel));
  transition: opacity .2s linear;
}
.intro-peeling .flap-front { opacity: 0; transition: opacity .4s ease; }

.flap-brand {
  display: inline-flex;
  align-items: flex-end;
  gap: 16px;
  animation: flapBrandBreathe 5s ease-in-out infinite;
}
@keyframes flapBrandBreathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.025); }
}
.flap-brand .flap-mark { display: flex; }
.flap-brand .flap-mark svg {
  display: block;
  filter: drop-shadow(0 8px 24px rgba(16,185,129,.45));
}
.flap-logo-img {
  height: clamp(64px, 10vw, 100px);
  width: auto;
  filter: drop-shadow(0 8px 28px rgba(16,185,129,.5));
}
.flap-word {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(46px, 6vw, 72px); letter-spacing: -0.02em;
  color: white;
  line-height: 0.78;
}
.flap-tag {
  font-family: var(--font-body);
  font-size: 16px; font-weight: 500;
  color: var(--mint);
  opacity: .85;
  margin-top: 16px;
  animation: flapTagBreathe 5s ease-in-out infinite;
}
@keyframes flapTagBreathe {
  0%, 100% { opacity: .75; }
  50% { opacity: 1; }
}

/* ----- The clickable corner trigger ----- */
.flap-corner-trigger {
  position: absolute;
  top: 0; right: 0;
  width: calc(var(--curl) + 40px);
  height: calc(var(--curl) + 40px);
  z-index: 10;
  padding: 0; border: 0; background: none;
  cursor: grab;
  pointer-events: auto;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  touch-action: none;
  -webkit-user-select: none; user-select: none;
  transition: width .2s linear, height .2s linear;
}
.intro-dragging .flap-corner-trigger { cursor: grabbing; }
.intro-peeling .flap-corner-trigger, .intro-warp .flap-corner-trigger { pointer-events: none; }

/* ----- The visible curled paper corner -----
   The curl sits in the REFLECTED position across the fold line.
   The box is positioned at top-right of card; the visible triangle is the
   bottom-left half — which is where a folded-over corner actually lies. */
.flap-corner {
  position: absolute;
  top: 0; right: 0;
  width: var(--curl); height: var(--curl);
  z-index: 4;
  pointer-events: none;
  /* Bottom-left triangle of the box = the reflected (folded) position */
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  /* Strong directional drop shadow — the curl looks RAISED off the page */
  filter:
    drop-shadow(-6px 8px 14px rgba(0,0,0,.85))
    drop-shadow(-2px 3px 4px rgba(0,0,0,.6));
  transition: width .2s linear, height .2s linear, filter .2s linear, opacity .3s ease;
}
.intro-peeling .flap-corner { opacity: 0; transition: opacity .3s ease; }

/* The underside of the folded paper — DARKER than the front, with a strong
   gradient suggesting cylindrical bend. */
.flap-corner-back {
  position: absolute; inset: 0;
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  background:
    /* Diagonal gradient — bright at the free tip (bottom-left of box),
       almost black near the crease (top-right area) */
    linear-gradient(45deg,
      #1f4a37 0%,           /* tip, catching the light */
      #133525 22%,
      #0a1e15 48%,
      #050E0A 78%,
      #02080A 100%);        /* crease shadow inside */
}

/* The CREASE — a sharp bright line right along the fold (the box's diagonal),
   suggesting light catching the bent edge of the paper. */
.flap-corner-back::before {
  content: "";
  position: absolute;
  /* The diagonal of the box is sqrt(2) ≈ 1.414× the side */
  width: 142%; height: 1.5px;
  top: 0; left: 0;
  transform-origin: 0 0;
  transform: rotate(45deg);
  background: linear-gradient(to right,
    rgba(167,240,203,.0),
    rgba(167,240,203,.65) 20%,
    rgba(255,255,255,.85) 50%,
    rgba(167,240,203,.65) 80%,
    rgba(167,240,203,.0));
  filter: blur(.4px);
  pointer-events: none;
}

/* Subtle dark band just INSIDE the crease (underside of bend) */
.flap-corner-back::after {
  content: "";
  position: absolute;
  width: 142%; height: 12px;
  top: 2px; left: 0;
  transform-origin: 0 0;
  transform: rotate(45deg);
  background: linear-gradient(to bottom,
    rgba(0,0,0,.6) 0%,
    rgba(0,0,0,.2) 60%,
    transparent 100%);
  filter: blur(2px);
  pointer-events: none;
}

/* The mint shine that pulses on the curl when idle */
.flap-corner-shine {
  position: absolute; inset: 0;
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  background:
    radial-gradient(70% 70% at 0% 100%, rgba(167,240,203,.45), transparent 55%);
  mix-blend-mode: screen;
  animation: cornerPulse 2.4s ease-in-out infinite;
  pointer-events: none;
}
.intro-dragging .flap-corner-shine { animation: none; opacity: 1; }
@keyframes cornerPulse {
  0%, 100% { opacity: .15; }
  50% { opacity: .75; }
}

/* =========================================================
   WARP TUNNEL — cinematic flythrough
========================================================= */
.warp {
  position: absolute; inset: 0;
  z-index: 20;
  perspective: 800px;
  perspective-origin: 50% 50%;
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
  background: #08120E;
}
.intro-warp .warp,
.warp.warp-active {
  opacity: 1;
  transition: opacity .12s ease;
}

.warp-stage {
  position: absolute; inset: 0;
  transform-style: preserve-3d;
}
.warp-layer {
  position: absolute; inset: 0;
  opacity: 0;
  transform: translate3d(0, 0, -1600px) scale(.3);
  animation: warpFly 1.5s cubic-bezier(.5, .02, .35, 1) forwards;
  animation-delay: calc(var(--i) * 90ms);
  will-change: transform, opacity, filter;
}
.warp-layer img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: left top;
  filter: saturate(140%) contrast(110%);
}
.warp-layer:nth-child(odd) img { object-position: right top; }
.warp-layer:nth-child(3n) img { object-position: center; }

@keyframes warpFly {
  0% {
    transform: translate3d(0, 0, -1600px) scale(.25);
    opacity: 0;
    filter: brightness(.5) blur(2px);
  }
  18% {
    opacity: 1;
    filter: brightness(.85) blur(1px);
  }
  60% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
    filter: brightness(1.05) blur(0px);
  }
  80% {
    transform: translate3d(0, 0, 600px) scale(1.8);
    opacity: .85;
    filter: brightness(1.3) blur(3px);
  }
  100% {
    transform: translate3d(0, 0, 1400px) scale(5);
    opacity: 0;
    filter: brightness(2) blur(10px);
  }
}

/* Radial speed streaks emanating from center */
.warp-streaks {
  position: absolute; inset: -50%;
  background:
    repeating-conic-gradient(from 0deg at 50% 50%,
      transparent 0deg,
      transparent 3deg,
      rgba(255,255,255,0.18) 3deg,
      rgba(167,240,203,0.25) 3.4deg,
      transparent 4deg
    );
  mask-image: radial-gradient(circle at center, transparent 0%, transparent 8%, black 22%, black 60%, transparent 92%);
  -webkit-mask-image: radial-gradient(circle at center, transparent 0%, transparent 8%, black 22%, black 60%, transparent 92%);
  mix-blend-mode: screen;
  opacity: 0;
  transform: scale(.4) rotate(0deg);
  animation: warpStreaks 1.5s cubic-bezier(.4,0,.6,1) forwards;
}
.warp-streaks-2 {
  animation-delay: .15s;
  animation-duration: 1.3s;
  filter: hue-rotate(20deg);
}
@keyframes warpStreaks {
  0% { transform: scale(.4) rotate(0deg); opacity: 0; }
  20% { opacity: .9; }
  100% { transform: scale(8) rotate(60deg); opacity: 0; }
}

/* Chromatic aberration overlay — RGB split for that "warp speed" tint */
.warp-aberration {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 49% 50%, rgba(255,80,120,.3), transparent 40%),
    radial-gradient(circle at 51% 50%, rgba(80,200,255,.3), transparent 40%);
  mix-blend-mode: screen;
  opacity: 0;
  animation: warpAberration 1.5s ease-in-out forwards;
}
@keyframes warpAberration {
  0% { opacity: 0; transform: scale(1); }
  30% { opacity: .6; transform: scale(1.2); }
  70% { opacity: .9; transform: scale(2.5); }
  90% { opacity: .3; }
  100% { opacity: 0; transform: scale(4); }
}

/* End-of-warp flash — bright burst that hands off to the real page */
.warp-flash {
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,.95), rgba(167,240,203,.6) 40%, transparent 80%);
  opacity: 0;
  animation: warpFlash 1.5s ease-in forwards;
}
@keyframes warpFlash {
  0%, 75% { opacity: 0; }
  88% { opacity: 1; }
  100% { opacity: 0; }
}

/* ----- WORD FLASH OVERLAY -----
   Each word slams in for ~280ms, scaling up + bloom, then snaps out.
   Interleaved with the screenshot flythrough to feel like a movie title card. */
.warp-words {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  z-index: 30;
  pointer-events: none;
}
.warp-word {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(64px, 13vw, 200px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: white;
  text-shadow:
    0 0 40px rgba(167,240,203,.6),
    0 0 90px rgba(16,185,129,.5);
  opacity: 0;
  transform: scale(.45);
  filter: blur(28px);
  white-space: nowrap;
  animation: warpWord 380ms cubic-bezier(.2,.7,.2,1) forwards;
}
.warp-word.grad {
  background: linear-gradient(180deg, #FFFFFF 0%, #A7F0CB 60%, #10B981 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 0 50px rgba(167,240,203,.8)) blur(28px);
  font-style: italic;
  font-weight: 700;
}
.warp-word:nth-child(1) { animation-delay: 80ms; }
.warp-word:nth-child(2) { animation-delay: 430ms; }
.warp-word:nth-child(3) { animation-delay: 780ms; }
.warp-word:nth-child(4) { animation-delay: 1130ms; animation-duration: 480ms; }
.warp-word:nth-child(4).grad {
  /* hold the final word a touch longer */
  animation-duration: 500ms;
  animation-timing-function: cubic-bezier(.2,.7,.2,1);
}
@keyframes warpWord {
  0%   { opacity: 0; transform: scale(.45); filter: blur(28px); }
  18%  { opacity: 1; transform: scale(1); filter: blur(0); }
  72%  { opacity: 1; transform: scale(1.08); filter: blur(0); }
  100% { opacity: 0; transform: scale(1.6); filter: blur(14px); }
}

@media (prefers-reduced-motion: reduce) {
  .flap-brand, .flap-tag, .flap-corner-shine, .warp-layer, .warp-streaks, .warp-aberration, .warp-flash { animation: none !important; }
}

/* ===== Page lives beneath the intro ===== */
.page {
  position: relative;
  transition: opacity .6s ease;
}
.page.page-peek { opacity: 0; pointer-events: none; }
.page.page-in { opacity: 1; }

/* =========================================================
   SCROLL REVEAL
========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1), filter .9s ease;
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal-up { transform: translateY(36px); }
.reveal-up.in { transform: none; }
.reveal-fade { transform: translateY(8px) scale(.985); }
.reveal-fade.in { transform: none; }
.reveal-right { transform: translateX(-32px); }
.reveal-right.in { transform: none; }
.reveal-left { transform: translateX(32px); }
.reveal-left.in { transform: none; }

/* When intro is gone, the very first hero reveals via their own delays without scrolling. */

/* =========================================================
   NAV
========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .25s ease, backdrop-filter .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8, 18, 14, 0.7);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  border-bottom-color: rgba(255,255,255,.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; color: white; }
.nav-logo { height: 32px; width: auto; display: block; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  color: rgba(255,255,255,.72);
  font-size: 14px; font-weight: 500;
  transition: color .15s ease;
  position: relative;
}
.nav-links a:hover { color: white; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .signin {
  color: rgba(255,255,255,.78); font-size: 14px; font-weight: 500;
}
.nav-cta .signin:hover { color: white; }
@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-cta .signin { display: none; }
}

/* =========================================================
   HERO
========================================================= */
.hero {
  position: relative;
  background: var(--pitch);
  color: white;
  overflow: hidden;
  padding: 140px 0 0;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 480px at 22% 18%, rgba(16,185,129,0.20), transparent 60%),
    radial-gradient(900px 600px at 100% 0%, rgba(11,160,117,0.12), transparent 55%),
    linear-gradient(180deg, #0a1611 0%, #08120E 60%);
  z-index: 0;
}
.hero-pitch {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(70% 70% at 50% 30%, black 0%, transparent 90%);
  z-index: 0;
}
.hero-inner { position: relative; z-index: 1; padding-bottom: 0; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: stretch;
  padding-bottom: 80px;
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 24px; } }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--mint);
  background: rgba(16,185,129,.08);
  border: 1px solid rgba(16,185,129,.22);
  padding: 7px 14px;
  border-radius: 999px;
}
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 10px var(--mint); animation: pulseDot 1.8s ease-in-out infinite; }

.hero-h1 {
  font-size: clamp(54px, 7.5vw, 116px);
  margin: 22px 0 24px;
}
.hero-h1 .grad {
  background: linear-gradient(180deg, #A7F0CB 0%, #10B981 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 600;
}
.hero-sub {
  font-size: 19px; line-height: 1.55;
  color: rgba(245, 241, 232, 0.72);
  max-width: 560px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.hero-trust {
  display: flex; gap: 22px; flex-wrap: wrap;
  margin-top: 26px;
  font-family: var(--font-mono); font-size: 12px;
  color: rgba(255,255,255,.55); letter-spacing: 0.04em;
}
.hero-trust .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--emerald); display: inline-block; vertical-align: middle; margin-right: 8px; }

.hero-dash-wrap {
  position: relative;
  z-index: 2;
}

/* =========================================================
   HERO PHONE CAROUSEL — fanned 3D stack, auto-rotating
========================================================= */
.hpc {
  position: relative;
  width: 100%;
  min-height: 620px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hpc-stage {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 540px;
  perspective: 1400px;
  transform-style: preserve-3d;
}
.hpc-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 280px;
  height: 580px;
  margin-left: -140px;
  margin-top: -290px;
  background: transparent;
  transition:
    transform .9s cubic-bezier(.25,.8,.25,1),
    opacity .9s cubic-bezier(.25,.8,.25,1),
    filter .9s ease;
  will-change: transform, opacity, filter;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,.55));
}
.hpc-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.hpc-glow {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(70% 40% at 50% 0%, rgba(167,240,203,.12), transparent 65%),
    linear-gradient(180deg, rgba(255,255,255,.04) 0%, transparent 30%);
}

/* Positions in a circular carousel */
.hpc-pos-0 {
  transform: translate3d(0, 0, 120px) rotateY(0deg) scale(1.08);
  opacity: 1; z-index: 5;
  filter: brightness(1);
  animation: hpcBreathe 6s ease-in-out infinite;
}
.hpc-pos--1 {
  transform: translate3d(-180px, 14px, 0) rotateY(28deg) scale(.85);
  opacity: .55; z-index: 3;
  filter: brightness(.7) saturate(.9);
}
.hpc-pos-1 {
  transform: translate3d(180px, 14px, 0) rotateY(-28deg) scale(.85);
  opacity: .55; z-index: 3;
  filter: brightness(.7) saturate(.9);
}
.hpc-pos--2 {
  transform: translate3d(-310px, 26px, -200px) rotateY(40deg) scale(.65);
  opacity: .18; z-index: 1;
  filter: brightness(.5) saturate(.7) blur(1px);
}
.hpc-pos-2 {
  transform: translate3d(310px, 26px, -200px) rotateY(-40deg) scale(.65);
  opacity: .18; z-index: 1;
  filter: brightness(.5) saturate(.7) blur(1px);
}

@keyframes hpcBreathe {
  0%, 100% { transform: translate3d(0, 0, 120px) rotateY(0deg) scale(1.08); }
  50% { transform: translate3d(0, -6px, 140px) rotateY(0deg) scale(1.092); }
}

/* Caption + dots */
.hpc-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 8px;
  padding: 12px 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.hpc-caption-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  color: white;
  letter-spacing: -0.01em;
  min-width: 120px;
  text-align: center;
}
.hpc-dots {
  display: flex;
  gap: 8px;
}
.hpc-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  border: 0;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease, width .25s ease;
  padding: 0;
}
.hpc-dot:hover { background: rgba(255,255,255,.4); }
.hpc-dot.active {
  background: var(--mint);
  width: 22px;
  border-radius: 4px;
}

@media (max-width: 980px) {
  .hpc { min-height: 540px; }
  .hpc-stage { min-height: 480px; }
  .hpc-card { width: 240px; height: 500px; margin-left: -120px; margin-top: -250px; }
  .hpc-pos--1 { transform: translate3d(-150px, 12px, 0) rotateY(28deg) scale(.8); }
  .hpc-pos-1 { transform: translate3d(150px, 12px, 0) rotateY(-28deg) scale(.8); }
  .hpc-pos--2 { transform: translate3d(-260px, 22px, -180px) rotateY(40deg) scale(.6); }
  .hpc-pos-2 { transform: translate3d(260px, 22px, -180px) rotateY(-40deg) scale(.6); }
}

@media (prefers-reduced-motion: reduce) {
  .hpc-pos-0 { animation: none; }
}

.hero-bleed {
  position: relative;
  height: 80px;
  background: linear-gradient(180deg, var(--pitch) 0%, var(--pitch) 50%, var(--cream) 50%, var(--cream) 100%);
  z-index: 0;
}
.hero-bleed-pitch {
  position: absolute; left: 0; right: 0; top: 0; height: 50%;
  background: radial-gradient(800px 200px at 50% 0%, rgba(16,185,129,0.10), transparent 70%);
}

/* =========================================================
   SCREENSHOT FRAMES — high-resolution, subtly breathing
========================================================= */
.shot {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #0A1410;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.06) inset,
    0 30px 60px -20px rgba(0,0,0,.55),
    0 12px 30px -10px rgba(16,185,129,.18);
  transform-origin: center;
  /* preserve resolution */
  image-rendering: auto;
}
.shot-dark { background: #0A1410; }
.shot-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  image-rendering: auto;
  image-rendering: -webkit-optimize-contrast;
}
.shot-glow {
  position: absolute; inset: -1px;
  pointer-events: none;
  background:
    radial-gradient(70% 50% at 50% 0%, rgba(167, 240, 203, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.04) 0%, transparent 30%);
  z-index: 1;
}

/* Subtle "breathing" — scale and lift, ~6s loop */
@keyframes breathe {
  0%, 100% { transform: scale(1) translateY(0); box-shadow: 0 0 0 1px rgba(255,255,255,.06) inset, 0 30px 60px -20px rgba(0,0,0,.55), 0 12px 30px -10px rgba(16,185,129,.18); }
  50% { transform: scale(1.012) translateY(-4px); box-shadow: 0 0 0 1px rgba(255,255,255,.08) inset, 0 40px 80px -20px rgba(0,0,0,.6), 0 18px 40px -12px rgba(16,185,129,.28); }
}
.breathe { animation: breathe 6.5s ease-in-out infinite; }

@keyframes breatheSoft {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.008) translateY(-3px); }
}
.breathe-soft { animation: breatheSoft 7s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  .breathe, .breathe-soft, .intro-stage, .intro-ring { animation: none !important; }
}

/* =========================================================
   PHONE SHOT
========================================================= */
.phone {
  position: relative;
  display: inline-block;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,.45)) drop-shadow(0 10px 20px rgba(16,185,129,.15));
}
.phone img {
  width: 100%;
  height: auto;
  display: block;
  image-rendering: -webkit-optimize-contrast;
}
/* Dark sections: blend away white backgrounds on phone mockup images */
.section.dark .phone img { mix-blend-mode: multiply; }

/* =========================================================
   MARQUEE
========================================================= */
.marquee {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 22px 0;
}
.marquee-track {
  display: flex; gap: 64px;
  animation: marquee 42s linear infinite;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--ink-2);
}
.marquee-track .dot { color: var(--emerald); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* =========================================================
   SECTION SCAFFOLD
========================================================= */
.section { padding: 120px 0; position: relative; }
.section.dark { background: var(--pitch); color: white; }
.section.cream { background: var(--cream); }
@media (max-width: 720px) { .section { padding: 80px 0; } }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}
@media (max-width: 880px) { .section-head { grid-template-columns: 1fr; gap: 16px; } }
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.98;
  font-size: clamp(40px, 5.2vw, 68px);
  margin: 12px 0 0;
}
.section-title .grad {
  background: linear-gradient(180deg, #A7F0CB 0%, #10B981 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 600;
}
.section-kicker {
  font-size: 17px;
  color: var(--ink-3);
  max-width: 460px;
  line-height: 1.55;
}
.section.dark .section-kicker { color: rgba(255,255,255,.6); }

/* =========================================================
   TOUR (showcase tabs + big screenshot)
========================================================= */
.tour {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 980px) { .tour { grid-template-columns: 1fr; } }
.tour-tabs { display: flex; flex-direction: column; gap: 8px; }
.tour-tab {
  text-align: left;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid transparent;
  transition: background .2s ease, border-color .2s ease;
  display: flex; gap: 14px; align-items: flex-start;
}
.tour-tab:hover { background: var(--cream-2); }
.tour-tab.active { background: white; border-color: var(--line); box-shadow: 0 1px 0 rgba(0,0,0,.04); }
.tour-tab .ix {
  font-family: var(--font-mono); font-size: 11px; color: var(--ink-3);
  margin-top: 4px; letter-spacing: .08em;
}
.tour-tab.active .ix { color: var(--emerald-2); }
.tour-tab .ttl {
  font-family: var(--font-display); font-weight: 600; letter-spacing: -0.02em;
  font-size: 19px; margin: 0 0 4px;
}
.tour-tab .desc { font-size: 13.5px; color: var(--ink-3); line-height: 1.5; margin: 0; }
.tour-stage {
  position: relative;
}
.tour-stage .shot { aspect-ratio: 16 / 9; }
.tour-caption {
  position: absolute;
  bottom: -22px; left: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px 8px 10px;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: var(--ink);
  box-shadow: 0 8px 20px -8px rgba(0,0,0,.15);
}
.tour-caption .ix {
  font-family: var(--font-mono); font-size: 10.5px;
  color: white; background: var(--emerald);
  padding: 3px 8px; border-radius: 999px;
  letter-spacing: .08em;
}

/* =========================================================
   DUO — two-column feature deep-dives (Companion, Picker)
========================================================= */
.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 980px) { .duo { grid-template-columns: 1fr; gap: 48px; } }

.duo-copy { padding: 0; }
.point-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 18px;
}
.point-list li {
  display: grid; grid-template-columns: 36px 1fr;
  gap: 16px;
  align-items: start;
}
.point-list .pl-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(16,185,129,.12);
  color: var(--mint);
  display: grid; place-items: center;
  font-family: var(--font-mono); font-weight: 600; font-size: 13px;
  border: 1px solid rgba(16,185,129,.28);
}
.point-list b {
  font-family: var(--font-display); font-weight: 600;
  font-size: 19px; letter-spacing: -0.02em;
  color: white;
  display: block; margin-bottom: 4px;
}
.point-list p {
  margin: 0; color: rgba(255,255,255,.6);
  font-size: 14.5px; line-height: 1.5;
}

.duo-light .point-list b { color: var(--ink); }
.duo-light .point-list p { color: var(--ink-3); }
.duo-light .point-list .pl-num {
  background: rgba(16,185,129,.08);
  color: var(--emerald-2);
  border-color: rgba(16,185,129,.22);
}

.duo-phone {
  position: relative;
  display: flex; justify-content: center;
}
.duo-phone .phone {
  max-width: 360px;
}
.duo-phone-tag {
  position: absolute; top: 22px; right: 24px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--mint);
  background: rgba(8,18,14,.7);
  border: 1px solid rgba(16,185,129,.3);
  padding: 6px 12px; border-radius: 999px;
  backdrop-filter: blur(8px);
}

.picker-stat-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.picker-stat {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
}
.picker-stat .ps-label {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-3);
}
.picker-stat .ps-value {
  font-family: var(--font-display); font-weight: 700;
  font-size: 22px; letter-spacing: -0.02em;
  margin: 6px 0 8px;
  color: var(--ink);
}
.picker-stat .ps-value .muted { color: var(--ink-3); font-weight: 400; }
.picker-stat p {
  margin: 0; color: var(--ink-3);
  font-size: 13.5px; line-height: 1.5;
}

/* =========================================================
   FEATURE GRID
========================================================= */
.fgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}
@media (max-width: 880px) { .fgrid { grid-template-columns: 1fr; } }
.fcard-wrap { display: contents; }
.fcard {
  background: var(--cream);
  padding: 36px 32px 32px;
  position: relative;
  transition: background .25s ease;
  min-height: 240px;
  display: flex; flex-direction: column;
  cursor: default;
}
.fcard:hover { background: white; }
.fcard .num {
  font-family: var(--font-mono); font-size: 11px; color: var(--ink-3);
  letter-spacing: .12em;
}
.fcard .icn {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--pitch); color: var(--mint);
  display: grid; place-items: center;
  margin: 18px 0 22px;
}
.fcard h3 {
  font-family: var(--font-display); font-weight: 600;
  font-size: 22px; letter-spacing: -0.025em; margin: 0 0 8px;
}
.fcard p { color: var(--ink-3); margin: 0; font-size: 14.5px; line-height: 1.55; }

/* =========================================================
   PHONE TRIO
========================================================= */
.phone-trio {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 32px;
  align-items: end;
}
@media (max-width: 980px) { .phone-trio { grid-template-columns: 1fr; } }

.phone-cell {
  display: flex; flex-direction: column; align-items: center;
}
.phone-cell .phone {
  max-width: 320px;
  width: 100%;
}
.phone-cell-tall .phone { max-width: 360px; }
.phone-cap {
  margin-top: 28px;
  text-align: center;
  max-width: 320px;
}
.phone-cap b {
  font-family: var(--font-display); font-weight: 600;
  font-size: 19px; letter-spacing: -0.02em;
  color: white; display: block; margin-bottom: 6px;
}
.phone-cap span {
  color: rgba(255,255,255,.58);
  font-size: 14px; line-height: 1.5;
}

/* =========================================================
   FOUNDERS PROGRAMME
========================================================= */
.founders {
  position: relative;
  background: var(--pitch);
  color: white;
  border-radius: 28px;
  overflow: hidden;
  padding: 56px 56px;
  box-shadow: 0 30px 60px -20px rgba(8,18,14,.35);
}
.founders-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 320px at 100% 0%, rgba(16,185,129,.45), transparent 60%),
    radial-gradient(600px 300px at 0% 100%, rgba(167,240,203,.18), transparent 55%);
  z-index: 0;
}
.founders-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 880px) { .founders-inner { grid-template-columns: 1fr; gap: 32px; } .founders { padding: 36px 28px; } }

.founders-h {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(40px, 5vw, 62px); letter-spacing: -0.035em;
  line-height: 0.98; margin: 14px 0 18px;
}
.founders-h .grad {
  background: linear-gradient(180deg, #A7F0CB 0%, #10B981 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 600;
}
.founders-sub {
  font-size: 17px; line-height: 1.55;
  color: rgba(255,255,255,.7);
  max-width: 540px; margin: 0 0 28px;
}
.founders-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

.founders-right {
  display: flex; flex-direction: column; gap: 22px;
}
.counter {
  display: inline-flex; align-items: baseline; gap: 16px;
  padding: 24px 28px;
  border: 1px solid rgba(167,240,203,.28);
  border-radius: 18px;
  background: rgba(16,185,129,.08);
}
.counter-num {
  font-family: var(--font-display); font-weight: 700;
  font-size: 96px; letter-spacing: -0.05em; line-height: 0.9;
  color: white;
  background: linear-gradient(180deg, #fff 0%, #A7F0CB 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.counter-lbl {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--mint);
}
.founders-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.founders-list li {
  display: flex; gap: 10px; align-items: center;
  font-size: 14.5px; color: rgba(255,255,255,.78);
}
.founders-list svg { color: var(--mint); }

/* =========================================================
   PRICING
========================================================= */
.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 980px) { .plans { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .plans { grid-template-columns: 1fr; } }
.plan {
  background: white; border: 1px solid var(--line); border-radius: 20px;
  padding: 28px 24px; display: flex; flex-direction: column;
  position: relative;
}
.plan.featured {
  background: var(--pitch); color: white; border-color: var(--pitch);
}
.plan .name { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }
.plan.featured .name { color: var(--mint); }
.pricing-row {
  display: flex; align-items: baseline; gap: 8px;
  margin: 10px 0 4px;
  flex-wrap: wrap;
}
.price-strike {
  font-family: var(--font-display); font-weight: 600;
  font-size: 22px; letter-spacing: -0.02em;
  color: var(--ink-3);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--rose);
}
.plan.featured .price-strike { color: rgba(255,255,255,.45); }
.plan .price { font-family: var(--font-display); font-weight: 700; font-size: 44px; letter-spacing: -0.03em; }
.plan .per { font-family: var(--font-mono); font-size: 12px; color: var(--ink-3); margin-left: 2px; }
.plan.featured .per { color: rgba(255,255,255,.55); }
.founder-note {
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--emerald-2);
  margin-bottom: 8px;
}
.plan.featured .founder-note { color: var(--mint); }
.plan .pdesc { font-size: 13.5px; color: var(--ink-3); margin: 4px 0 18px; }
.plan.featured .pdesc { color: rgba(255,255,255,.55); }
.plan ul { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 10px; }
.plan li { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; line-height: 1.45; }
.plan li svg { flex-shrink: 0; margin-top: 3px; color: var(--emerald); }
.plan.featured li svg { color: var(--mint); }
.plan .pcta { margin-top: auto; }
.plan-flag {
  position: absolute; top: -12px; left: 24px;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .14em;
  background: var(--mint); color: var(--pitch); padding: 5px 10px;
  border-radius: 6px;
  font-weight: 600;
}
.plan-founder {
  position: absolute; top: -12px; right: 24px;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .14em;
  background: var(--emerald); color: white; padding: 5px 10px;
  border-radius: 6px;
  font-weight: 600;
  box-shadow: 0 6px 16px -4px rgba(16,185,129,.45);
}

.pricing-fineprint {
  margin: 36px auto 0;
  text-align: center;
  max-width: 640px;
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.55;
}

/* =========================================================
   FAQ
========================================================= */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; padding: 28px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-family: var(--font-display); font-weight: 600; font-size: 22px; letter-spacing: -0.02em;
}
.faq-q .pm { font-family: var(--font-mono); font-size: 22px; color: var(--ink-3); transition: transform .2s ease, color .2s ease; }
.faq-item.open .faq-q .pm { transform: rotate(45deg); color: var(--emerald); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
  color: var(--ink-3); font-size: 15.5px; line-height: 1.6;
}
.faq-item.open .faq-a { max-height: 420px; padding: 0 0 28px; }

/* =========================================================
   CTA STRIP
========================================================= */
.cta-strip {
  background: var(--pitch);
  color: white;
  position: relative; overflow: hidden;
  border-radius: 28px;
  padding: 60px 64px;
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 32px; align-items: center;
}
@media (max-width: 880px) { .cta-strip { grid-template-columns: 1fr; padding: 40px 28px; } }
.cta-strip::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(600px 200px at 90% 110%, rgba(16,185,129,.5), transparent 60%),
    radial-gradient(500px 200px at 0% -20%, rgba(167,240,203,.18), transparent 60%);
  pointer-events: none;
}
.cta-strip > * { position: relative; }
.cta-strip h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(36px, 4.5vw, 52px); letter-spacing: -0.03em; line-height: 1;
  margin: 0;
}
.cta-strip p { color: rgba(255,255,255,.7); margin: 16px 0 0; max-width: 480px; line-height: 1.55; }
.cta-strip .cta-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-self: end; }
@media (max-width: 880px) { .cta-strip .cta-actions { justify-self: start; } }

/* =========================================================
   FOOTER
========================================================= */
.footer {
  background: var(--pitch);
  color: rgba(255,255,255,.7);
  padding: 80px 0 32px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 880px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-logo { height: 36px; width: auto; display: block; }
.foot-tag { margin-top: 16px; color: rgba(255,255,255,.55); font-size: 14px; line-height: 1.5; max-width: 320px; }
.foot-col h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--mint); margin: 0 0 18px; font-weight: 500; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-col a { font-size: 14px; transition: color .15s ease; }
.foot-col a:hover { color: white; }
.foot-news { display: flex; gap: 8px; margin-top: 14px; }
.foot-news input {
  flex: 1; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  color: white; border-radius: 999px; height: 44px; padding: 0 18px;
  font: inherit; font-size: 14px; outline: none;
  transition: border-color .15s ease, background .15s ease;
}
.foot-news input::placeholder { color: rgba(255,255,255,.4); }
.foot-news input:focus { border-color: var(--mint); background: rgba(255,255,255,.08); }
.foot-news button {
  background: var(--mint); color: var(--pitch);
  padding: 0 18px; border-radius: 999px; height: 44px;
  font-weight: 600; font-size: 14px;
  transition: background .15s ease;
}
.foot-news button:hover { background: white; }
.foot-bottom {
  padding-top: 28px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 11.5px; color: rgba(255,255,255,.45); letter-spacing: .08em;
}


/* ══════════════════════════════════════════════════════════
   INTRO v2 — breathing mark + wordmark entry
   ══════════════════════════════════════════════════════════ */

.logo-entry {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: transparent; border: none; cursor: pointer;
  outline: none; -webkit-tap-highlight-color: transparent;
  gap: 0;
}
.logo-entry:focus-visible { outline: none; }

/* Concentric pulsing rings */
.logo-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(74,222,128,0.2); pointer-events: none;
}
.logo-ring-1 { width: 200px; height: 200px; animation: ring-pulse 3.2s ease-in-out infinite; }
.logo-ring-2 { width: 290px; height: 290px; animation: ring-pulse 3.2s ease-in-out infinite .7s; }
.logo-ring-3 { width: 390px; height: 390px; animation: ring-pulse 3.2s ease-in-out infinite 1.4s; }

@keyframes ring-pulse {
  0%,100% { opacity: 0.12; transform: scale(0.96); }
  50%      { opacity: 0.5;  transform: scale(1.04); }
}

/* Soft radial glow */
.logo-glow {
  position: absolute; width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(74,222,128,0.18) 0%, transparent 68%);
  animation: glow-breathe 3.2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes glow-breathe {
  0%,100% { transform: scale(1);    opacity: 0.8; }
  50%      { transform: scale(1.2); opacity: 1;   }
}

/* Leaf mark — breathing scale */
.logo-breathe-img {
  width: 210px; height: auto; position: relative; z-index: 1;
  filter: drop-shadow(0 0 28px rgba(74,222,128,0.5));
  animation: mark-breathe 3.2s ease-in-out infinite;
  transition: filter .25s ease, transform .25s ease;
}
.logo-entry:hover .logo-breathe-img,
.logo-entry:focus .logo-breathe-img {
  filter: drop-shadow(0 0 44px rgba(74,222,128,0.9));
}
@keyframes mark-breathe {
  0%,100% { transform: scale(1);    }
  50%      { transform: scale(1.08); }
}

/* Wordmark — hidden; logo-white.png already contains the text */
.logo-wordmark { display: none; } .logo-wordmark-hidden {
  position: relative; z-index: 1;
  margin-top: 20px;
  font-family: var(--font-sans, system-ui, sans-serif);
  font-size: 36px; font-weight: 800; letter-spacing: -0.04em;
  color: white; animation: mark-breathe 3.2s ease-in-out infinite;
}

/* Animated "tap to enter" hint */
.logo-hint {
  margin-top: 36px; position: relative; z-index: 1;
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono, monospace);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  animation: hint-pulse 2.4s ease-in-out infinite;
}
.logo-hint-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--mint, #4ade80);
  animation: dot-blink 2.4s ease-in-out infinite;
}
@keyframes hint-pulse {
  0%,100% { opacity: 0.4; }
  50%      { opacity: 0.85; }
}
@keyframes dot-blink {
  0%,100% { opacity: 0.5; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.4); }
}

/* Click ripple */
.logo-ripple {
  position: absolute; width: 140px; height: 140px; border-radius: 50%;
  background: rgba(74,222,128,0.25);
  animation: ripple-out 0.4s ease-out forwards;
  pointer-events: none; z-index: 2;
}
@keyframes ripple-out {
  0%   { transform: scale(0.7); opacity: 1; }
  100% { transform: scale(3.5); opacity: 0; }
}

/* Flash-bright on click */
.logo-entry--ripple .logo-breathe-img {
  filter: drop-shadow(0 0 64px rgba(74,222,128,1)) brightness(1.4);
  transform: scale(1.12);
}
