/* ============================================================
   Airserve — Atoms-inspired marketing site
   Heavy sans-serif · full-VPH sections · pinned phone story
   ============================================================ */

:root {
  --bg: #ffffff;
  --bg-soft: #f6f5f1;
  --bg-cream: #ecebe2;        /* warm card / illustration bg */
  --bg-dark: #373643;
  --slate: #373643;
  --ink: #111111;
  --ink-2: #2a2a2a;
  --ink-3: #6e6e68;
  --ink-4: #b6b3a8;
  --rule: #ebe9df;
  /* Airserve green — placeholder, swap to your exact brand hex */
  --green: #0FA968;
  --green-deep: #0a8a55;
  --green-soft: #def0e4;
  --green-tint: #effaf3;
  --yellow: #f5c84b;          /* secondary accent dot (Atoms-style) */
  --maxw: 1240px;
  --gutter: 32px;
  --font-sans: "Manrope", "Geist", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv01";
}
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ============================================================
   TYPE
   ============================================================ */
.display {
  font-family: var(--font-sans);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.96;
  color: var(--ink);
}
.eyebrow {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.lede {
  font-size: 19px;
  color: var(--ink-2);
  line-height: 1.5;
  max-width: 56ch;
}
.muted { color: var(--ink-3); }

/* ============================================================
   LAYOUT
   ============================================================ */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section {
  min-height: calc(100vh - 80px);
  padding: 70px 0;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* Multi-card sections naturally exceed 100vh — let them grow */
.quotes-section {
  min-height: 0;
  padding: 110px 0;
  display: block;
}
.rule { height: 1px; background: var(--rule); border: 0; margin: 0; }

/* ============================================================
   ANNOUNCE / NAV
   ============================================================ */
.announce {
  background: var(--ink);
  color: var(--bg);
  text-align: center;
  font-size: 12.5px;
  padding: 7px 16px;
  letter-spacing: 0.01em;
}
.announce a {
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 4px;
  font-weight: 600;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease, padding .2s ease;
}
.nav.scrolled {
  border-bottom-color: var(--rule);
  background: rgba(255, 255, 255, 0.94);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  gap: 24px;
  transition: padding .2s ease;
}
.nav.scrolled .nav-inner { padding-top: 5px; padding-bottom: 5px; }
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.025em;
}
.brand-logo {
  height: 26px;
  width: auto;
  display: block;
}
.foot .brand-logo { filter: none; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14.5px;
  font-weight: 500;
}
.nav-links a { color: var(--ink-2); transition: color .2s ease; }
.nav-links a:hover { color: var(--green); }
.nav-cta { display: flex; align-items: center; gap: 14px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--green);
  color: #fff;
}
.btn-primary:hover { background: var(--green-deep); }
.btn-ink {
  background: var(--ink);
  color: var(--bg);
}
.btn-ink:hover { background: var(--green); }
.btn-ghost {
  color: var(--ink);
  border-color: var(--ink);
  background: transparent;
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); }
.btn-link {
  color: var(--ink-2);
  padding: 8px 0;
}
.btn-link:hover { color: var(--green); }
.btn-lg { padding: 17px 28px; font-size: 15.5px; }

/* Round chevron button (Atoms-style) */
.chev-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  display: grid;
  place-items: center;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.chev-btn:hover { background: var(--ink); color: var(--bg); transform: translateY(2px); }

/* ============================================================
   HERO  (100vh — heavy headline + iPhone)
   ============================================================ */
.hero {
  min-height: calc(100vh - 80px);
  height: calc(100vh - 80px);
  max-height: calc(100vh - 80px);
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: clip;
  position: relative;
}
.hero .wrap { width: 100%; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 880px) {
  .hero-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 50px;
    align-items: center;
  }
}
.hero h1 {
  font-size: clamp(36px, 4.6vw, 68px);
  letter-spacing: -0.035em;
  font-weight: 800;
  line-height: 1.0;
  margin: 10px 0 14px;
  max-width: 14ch;
}
.hero h1 .accent { color: var(--green); }
.hero-lede {
  font-size: 17px;
  max-width: 50ch;
  color: var(--ink-2);
  margin: 0 0 20px;
  line-height: 1.5;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.hero-meta {
  font-size: 13.5px;
  color: var(--ink-3);
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-meta .dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  display: inline-block;
}

/* Hero phone column */
.hero-phone-wrap {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-phone-bg {
  position: absolute;
  inset: 8% -6% 8% 6%;
  background: var(--bg-cream);
  border-radius: 48% 52% 50% 50% / 50% 48% 52% 50%;
  z-index: 0;
}

/* Hero desktop window mockup — bare screenshot, no chrome */
.hero-mac {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--rule);
  box-shadow:
    0 1px 0 rgba(0,0,0,0.04),
    0 30px 60px -28px rgba(0,0,0,0.32),
    0 8px 22px -8px rgba(0,0,0,0.14);
  transform: rotate(-1deg);
  z-index: 2;
}
.hero-mac-bar { display: none; }
.hero-mac img {
  width: 100%;
  height: auto;
  display: block;
  background: #f6f5f1;
}
@media (max-width: 880px) {
  .hero-mac { transform: none; max-width: 100%; }
}

/* ============================================================
   IPHONE FRAME
   ============================================================ */
.iphone {
  position: relative;
  aspect-ratio: 9 / 19.5;
  width: 100%;
  max-width: 320px;
  background: #0a0a0a;
  border-radius: 44px;
  padding: 9px;
  z-index: 2;
  box-shadow:
    0 0 0 1.5px #1d1d1d,
    0 30px 60px -28px rgba(0,0,0,0.4),
    0 8px 22px -8px rgba(0,0,0,0.18),
    inset 0 0 0 1px rgba(255,255,255,0.04);
}
.iphone--hero { max-width: 280px; transform: rotate(-1.5deg); }
.iphone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 36px;
  overflow: hidden;
  background: var(--bg-soft);
}
.iphone-island {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 26px;
  background: #0a0a0a;
  border-radius: 15px;
  z-index: 8;
}
.iphone-screen > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Float pill cards positioned around the hero iPhone */
.hero-float {
  position: absolute;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 14px;
  box-shadow: 0 12px 28px -16px rgba(0,0,0,0.18);
  padding: 12px 14px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 4;
  white-space: nowrap;
}
.hero-float .ico {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--green-deep);
  display: grid; place-items: center;
  flex: none;
}
.hero-float strong { display: block; font-weight: 700; font-size: 13.5px; }
.hero-float span { color: var(--ink-3); font-size: 12px; }
.hero-float--a { top: 4%; right: -2%; transform: rotate(3deg); }
.hero-float--b { bottom: 8%; left: -4%; transform: rotate(-3deg); }
@media (max-width: 879px) {
  .iphone--hero { max-width: 270px; }
  .hero-float--a { right: -6px; top: 0; }
  .hero-float--b { left: -6px; bottom: 0; }
}

/* ============================================================
   FEATURES — sticky scrollytelling with progressive word reveal
   ============================================================ */
.feat-scroll {
  position: relative;
  background: var(--bg);
  min-height: 0;
  padding: 0;
  display: block;
}
/* Per-feature block: each pins, reveals words, then scrolls away naturally */
.feat-block {
  position: relative;
  height: 200vh;
}
.feat-sticky {
  position: sticky;
  top: 80px;
  height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.feat-sticky .wrap { width: 100%; }

/* Fixed dot progress on the left of the stage */
.feat-dots {
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 5;
}
.feat-dots span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ink-4);
  transition: background .3s ease, transform .3s ease;
}
.feat-dots span.on {
  background: var(--green);
  transform: scale(1.4);
}
@media (max-width: 879px) {
  .feat-dots { display: none; }
}

/* Pane content layout */
.feat-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
  padding-left: 60px; /* leave room for dot column */
}
@media (min-width: 880px) {
  .feat-cols {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
  }
}
@media (max-width: 879px) {
  .feat-cols { padding-left: 0; }
}

.feat-text { max-width: 36rem; }
.feat-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 18px;
}

/* The headline — words start muted and light up */
.feat-headline {
  font-size: clamp(36px, 4.8vw, 68px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 0 0 26px;
  color: var(--ink);
}
.feat-headline .word {
  display: inline-block;
  color: rgba(17, 17, 17, 0.18);
  transition: color .25s ease;
}
.feat-headline .word.lit { color: var(--ink); }
.feat-headline .word.accent.lit { color: var(--green); }
.feat-headline .word.accent { color: rgba(15, 169, 104, 0.22); }
.feat-headline br { content: ''; display: block; margin: 0; }

.feat-body {
  font-size: 18px;
  color: var(--ink-3);
  line-height: 1.5;
  max-width: 40ch;
  margin: 0;
}

.feat-illo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.feat-illo {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.feat-illo .illo-disc {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1.05 / 1;
  background: var(--bg-cream);
  border-radius: 48% 52% 50% 50% / 50% 48% 52% 50%;
  display: grid;
  place-items: center;
  position: relative;
  overflow: visible;
}
.feat-illo svg {
  width: 88%;
  height: 88%;
}
.feat-illo .illo-shot {
  width: 130%;
  max-width: none;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow:
    0 1px 0 rgba(0,0,0,0.04),
    0 30px 60px -28px rgba(0,0,0,0.32),
    0 8px 22px -8px rgba(0,0,0,0.14);
  background: #fff;
  position: relative;
  z-index: 2;
}
@media (max-width: 879px) {
  .feat-illo .illo-shot { width: 110%; }
}

/* Floating callout cards around the feature illustration */
.feat-float {
  position: absolute;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 14px;
  box-shadow: 0 18px 36px -22px rgba(0,0,0,0.22), 0 4px 10px -4px rgba(0,0,0,0.06);
  padding: 12px 14px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
  white-space: nowrap;
}
.feat-float .ico {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--green-deep);
  display: grid; place-items: center;
  flex: none;
}
.feat-float strong {
  display: block;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ink);
  line-height: 1.2;
}
.feat-float span {
  color: var(--ink-3);
  font-size: 11.5px;
}
.feat-float--tl { top: 4%;  left: -6%;  transform: rotate(-3deg); }
.feat-float--tr { top: 6%;  right: -8%; transform: rotate(3deg); }
.feat-float--bl { bottom: 8%; left: -8%; transform: rotate(-3deg); }
.feat-float--br { bottom: 6%; right: -6%; transform: rotate(3deg); }

@media (max-width: 879px) {
  .feat-float { font-size: 12px; padding: 9px 11px; }
  .feat-float strong { font-size: 12px; }
  .feat-float span { font-size: 10.5px; }
  .feat-float--tl { left: -4%; }
  .feat-float--tr { right: -4%; }
  .feat-float--bl { left: -4%; }
  .feat-float--br { right: -4%; }
}

/* ============================================================
   APP STORY — pinned phone with scroll-in text cards (Atoms-style)
   Section is ONE × 100vh sticky stage. Track contains N step
   viewports. The phone + slab stay fixed; cards translate from
   below, snap to center, translate out the top as scroll continues.
   ============================================================ */
.story {
  position: relative;
  background: var(--bg);
  display: block;
  min-height: 0;
  padding: 0;
}
.story-intro {
  padding: 30px 0 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: auto;
}
.story-intro h2 {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin: 8px 0 8px;
  max-width: 26ch;
}
.story-intro h2 .accent { color: var(--green); }
.story-intro p {
  font-size: 14.5px;
  color: var(--ink-3);
  max-width: 60ch;
  margin: 0;
}

.story-track {
  position: relative;
  height: 600vh;
}
.story-stage {
  position: sticky;
  top: 80px;
  height: calc(100vh - 80px);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.story-stage-inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
  position: relative;
  height: 100%;
}
@media (min-width: 880px) {
  .story-stage-inner {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
  }
}

/* Organic cloud/blob shape behind phone */
.story-blob {
  position: absolute;
  inset: 4vh 0 4vh 0;
  background: var(--bg-dark);
  z-index: 0;
  /* Cloud-shape with multiple radii — feels organic */
  border-radius: 38% 42% 46% 36% / 44% 36% 48% 40%;
  filter: drop-shadow(0 10px 50px rgba(0,0,0,0.06));
}
@media (min-width: 880px) {
  .story-blob {
    inset: 7vh 11% 7vh 7%;
    /* Distinctly irregular, asymmetric organic shape */
    border-radius: 46% 54% 38% 62% / 58% 42% 64% 40%;
  }
}

/* Phone column — pinned visually within the stage */
.story-phone-col {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-left: 32px;
}
.story-phone-col .iphone {
  max-width: 240px;
  max-height: 80vh;
  transform: rotate(-2deg);
}
.story-phone-stack {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.story-phone-img {
  display: block;
  width: 100%;
  max-width: 340px;
  max-height: 84vh;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.45));
  opacity: 0;
  transition: opacity .5s ease;
}
.story-phone-img:not(:first-child) {
  position: absolute;
  inset: 0;
  margin: auto;
}
.story-phone-img.is-active {
  opacity: 1;
}

/* Phone screen stack */
.screen-stack {
  position: absolute;
  inset: 0;
  border-radius: 36px;
  overflow: hidden;
  background: var(--bg-soft);
}
.scr {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(0.985);
  transition: opacity .5s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
  background: var(--bg-soft);
}
.scr.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.scr--real img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
}
.scr-ph {
  flex: 1; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 22px;
  gap: 12px;
  background:
    repeating-linear-gradient(135deg, transparent 0 14px, rgba(0,0,0,0.018) 14px 15px),
    var(--bg-cream);
}
/* Intro card variant — sits inside the blob as the first "slide" */
.story-card--intro h3 {
  font-size: clamp(40px, 5vw, 64px);
  max-width: 16ch;
}
.story-card--intro .story-intro-tag {
  color: rgba(255,255,255,0.6);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
/* Intro phone screen — branded ready state */
.scr--intro {
  background: linear-gradient(180deg, var(--green-tint) 0%, var(--bg-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  padding: 30px;
  text-align: center;
}
.scr--intro .scr-intro-logo {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.04em;
}
.scr--intro strong {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.scr--intro span {
  font-size: 12px;
  color: var(--ink-3);
  max-width: 22ch;
}
.scr-ph-ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--green-soft);
  color: var(--green-deep);
  display: grid; place-items: center;
}
.scr-ph strong {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.scr-ph span {
  font-size: 12.5px;
  color: var(--ink-3);
  max-width: 24ch;
}
.scr-ph em {
  font-style: normal;
  font-size: 10.5px;
  color: var(--green);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Right column — text cards that scroll in from below */
.story-cards {
  position: relative;
  z-index: 2;
  color: #fff;
  height: 100%;
  display: flex;
  align-items: center;
  padding-right: 60px;
}
.story-card {
  position: absolute;
  left: 0;
  right: 60px;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
  will-change: transform, opacity;
  max-width: 520px;
}
.story-card.is-active { pointer-events: auto; }
.story-card .story-eyebrow {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin: 0 0 16px;
}
.story-card h3 {
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin: 0 0 18px;
  color: #fff;
}
.story-card h3 .accent { color: var(--green); }
.story-card p {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.8);
  margin: 0 0 22px;
  max-width: 44ch;
}
.story-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
  font-size: 14.5px;
  color: rgba(255,255,255,0.76);
}
.story-card ul li {
  padding-left: 22px;
  position: relative;
}
.story-card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
}

/* Scroll triggers (invisible) */
.story-step {
  height: 100vh;
  pointer-events: none;
}

/* Right-edge dot progress — pinned to the section's right edge, mirroring
   .feat-dots (which sits at left: 32px). Anchored to the full-width sticky
   stage so it stays a fixed gutter from the edge at every screen size. */
.story-dots {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 5;
}
.story-dots span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ink-4);
  transition: background .3s ease, transform .3s ease;
  display: block;
}
.story-dots span.on {
  background: var(--green);
  transform: scale(1.4);
}

/* Persistent app-store badges inside the pinned story stage */
.story-stores {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 9vh; /* sits inside the blob (blob bottom inset is 7vh) */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  z-index: 3;
}
.story-store-badge { display: inline-block; transition: transform .15s ease, opacity .2s ease; }
.story-store-badge:hover { transform: translateY(-2px); }
/* Both badges are now trimmed edge-to-edge, so an equal height matches them. */
.story-store-badge img { display: block; width: auto; height: 44px; }

/* Mobile fallback */
@media (max-width: 879px) {
  .story-track { height: auto; }
  .story-stage { position: relative; height: auto; min-height: auto; padding: 40px 0; }
  .story-blob {
    position: relative; inset: auto;
    padding: 30px 22px;
    border-radius: 32px;
    min-height: 70vh;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .story-phone-col { height: auto; padding: 0; }
  .story-cards { height: auto; padding: 0; }
  .story-card {
    position: relative;
    top: auto; left: auto; right: auto;
    opacity: 1;
    transform: none !important;
    margin-bottom: 32px;
  }
  .story-step { display: none; }
  .story-dots { display: none; }
  .story-stores { position: relative; left: auto; right: auto; bottom: auto; margin-top: 20px; }
}

/* ============================================================
   STATS BAND  (full vh, dark)
   ============================================================ */
/* stats */
.stats {
  background: var(--ink);
  color: var(--bg);
  min-height: calc(100vh - 80px);
  padding: 70px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stats .intro h2 { color: var(--bg); }
.stats .eyebrow,
.stats .intro p { color: rgba(255,255,255,0.62); }
.stat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.16);
  margin-top: 50px;
}
@media (min-width: 800px) { .stat-grid { grid-template-columns: repeat(3, 1fr); } }
.stat {
  padding: 48px 36px 48px 0;
  border-bottom: 1px solid rgba(255,255,255,0.16);
}
@media (min-width: 800px) {
  .stat { border-bottom: 0; border-right: 1px solid rgba(255,255,255,0.16); padding: 56px 36px 0 36px; }
  .stat:first-child { padding-left: 0; }
  .stat:last-child { border-right: 0; padding-right: 0; }
}
.stat-num {
  font-weight: 800;
  font-size: clamp(64px, 7.5vw, 104px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin: 0 0 18px;
  color: var(--bg);
}
.stat-num .accent { color: var(--green); }
.stat h4 {
  margin: 0 0 8px;
  font-weight: 700;
  font-size: 17px;
}
.stat p {
  margin: 0;
  color: rgba(255,255,255,0.62);
  font-size: 14.5px;
  max-width: 30ch;
}

/* ============================================================
   GENERIC SECTION INTRO
   ============================================================ */
.intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: end;
  max-width: var(--maxw);
}
@media (min-width: 900px) {
  .intro { grid-template-columns: 1.05fr 1fr; gap: 60px; }
}
.intro h2 {
  font-weight: 800;
  font-size: clamp(36px, 4.8vw, 68px);
  letter-spacing: -0.035em;
  line-height: 1.0;
  margin: 14px 0 0;
  max-width: 14ch;
}
.intro h2 .accent { color: var(--green); }
.intro p { margin: 0; }

/* ============================================================
   PRICING / FAQ / TESTIMONIALS / CTA / FOOTER
   ============================================================ */

/* testimonials */
.quotes-section { background: var(--bg-soft); }
.quotes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 50px;
}
@media (min-width: 700px) { .quotes { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .quotes { grid-template-columns: repeat(3, 1fr); } }
.quote {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 22px;
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.quote h5 {
  font-weight: 700;
  font-size: 19px;
  line-height: 1.3;
  margin: 0;
  letter-spacing: -0.015em;
}
.quote h5 .accent { color: var(--green); }
.quote p {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-3);
  line-height: 1.55;
}
.quote .who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
}
.quote .av {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-deep);
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 14px;
}
.quote .who div { font-size: 13.5px; line-height: 1.3; }
.quote .who strong { display: block; font-weight: 700; }
.quote .who span { color: var(--ink-3); }

/* pricing — title on left, cards on right, fits in 100vh */
#pricing {
  min-height: calc(100vh - 80px);
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pricing-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 960px) {
  .pricing-layout {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
  }
}
.pricing-head h2 {
  font-weight: 800;
  font-size: clamp(36px, 4.8vw, 68px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  margin: 12px 0 18px;
  max-width: 14ch;
}
.pricing-head h2 .accent { color: var(--green); }
.pricing-head p {
  font-size: 16px;
  color: var(--ink-3);
  max-width: 36ch;
  margin: 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) { .pricing-grid { grid-template-columns: 1fr; } }
.price {
  border-radius: 18px;
  padding: 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--rule);
  background: #fff;
  position: relative;
}
.price h3 {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.015em;
  margin: 0;
}
.price .price-num {
  font-weight: 800;
  font-size: 38px;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 2px 0 0;
}
.price .price-num small {
  font-weight: 500;
  font-size: 13px;
  color: var(--ink-3);
  margin-left: 4px;
}
.price p {
  margin: 4px 0;
  color: var(--ink-3);
  font-size: 13px;
}
.price ul {
  list-style: none;
  padding: 0;
  margin: 6px 0 14px;
  display: grid;
  gap: 5px;
  font-size: 12.5px;
  color: var(--ink-2);
  line-height: 1.4;
}
.price ul li { padding-left: 18px; position: relative; }
.price ul li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 12px;
}
.price--paid {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.price--paid ul { color: rgba(255,255,255,0.84); }
.price--paid .price-num small { color: rgba(255,255,255,0.6); }
.price--paid p { color: rgba(255,255,255,0.66); }
.price-badge {
  position: absolute; top: 14px; right: 16px;
  background: var(--green);
  color: #fff;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}
.price .btn { margin-top: auto; align-self: flex-start; padding: 9px 16px; font-size: 13px; }
.price .price-num small {
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-3);
  margin-left: 4px;
}
.price--paid .price-num small { color: rgba(255,255,255,0.6); }
.price p { margin: 0; color: var(--ink-3); }
.price--paid p { color: rgba(255,255,255,0.66); }
.price ul {
  list-style: none;
  padding: 0;
  margin: 14px 0 24px;
  display: grid;
  gap: 9px;
  font-size: 14.5px;
  color: var(--ink-2);
}
.price--paid ul { color: rgba(255,255,255,0.84); }
.price ul li { padding-left: 22px; position: relative; }
.price ul li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--green);
  font-weight: 700;
}
.price-badge {
  position: absolute; top: 18px; right: 22px;
  background: var(--green);
  color: #fff;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

/* FAQ — full vh, two-column with intro on left and items on right */
#faq {
  min-height: calc(100vh - 80px);
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 960px) {
  .faq-layout { grid-template-columns: 0.85fr 1.15fr; gap: 60px; }
}
.faq-head h2 {
  font-weight: 800;
  font-size: clamp(36px, 4.8vw, 68px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  margin: 12px 0 14px;
  max-width: 14ch;
}
.faq-head h2 .accent { color: var(--green); }
.faq-head p { color: var(--ink-3); margin: 0; font-size: 15px; max-width: 36ch; }
.faq-list {
  border-top: 1px solid var(--rule);
  margin: 0;
  padding: 0;
}
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  padding: 14px 4px 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--ink);
  transition: color .2s ease;
}
.faq-q:hover { color: var(--green); }
.faq-q .plus {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  display: grid; place-items: center;
  transition: transform .3s ease, border-color .2s ease, background .2s ease, color .2s ease;
  font-size: 14px;
  color: var(--ink-2);
}
.faq-item[data-open="true"] .plus {
  transform: rotate(45deg);
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner {
  padding: 0 0 16px;
  max-width: 60ch;
  color: var(--ink-3);
  font-size: 14px;
  line-height: 1.5;
}
.faq-item[data-open="true"] .faq-a { max-height: 240px; }

/* final CTA — used twice: pain-point (after hero) + close (bottom) */
.cta-final {
  text-align: center;
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0;
  background: var(--bg);
}
.cta-final h2 {
  font-weight: 800;
  font-size: clamp(34px, 4.8vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 18px auto 22px;
  max-width: 22ch;
  text-wrap: balance;
}
.cta-final h2 .accent { color: var(--green); }
.cta-final .hero-cta { justify-content: center; }
/* Pain-point variant — slightly different bg so it feels distinct from the close */
.cta-pain {
  background: var(--bg-soft);
}
.cta-final h2 .accent { color: var(--green); }
.cta-final p {
  max-width: 52ch;
  margin: 0 auto 36px;
  color: var(--ink-3);
  font-size: 18px;
}
.cta-final .hero-cta { justify-content: center; }

/* footer */
.foot {
  background: #373643;
  color: #ffffff;
  padding: 80px 0 36px;
  min-height: auto;
}
.foot-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
@media (min-width: 700px) {
  .foot-top { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.foot h6 {
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin: 0 0 18px;
}
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; font-size: 14.5px; }
.foot ul a { color: rgba(255,255,255,0.86); transition: color .2s ease; }
.foot ul a:hover { color: var(--green); }
.foot-tag {
  font-weight: 800;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 14px 0 0;
  max-width: 18ch;
  color: #ffffff;
}
.foot-tag .accent { color: var(--green); }
.foot-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 12px;
}
.foot .brand { color: #ffffff; }
.foot .brand-logo { filter: none; height: 26px; }
.foot-stores { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }
.foot-stores a { display: inline-block; transition: opacity .2s ease; }
.foot-stores a:hover { opacity: .85; }
.foot-stores img { height: 36px; width: auto; display: block; }

/* ============================================================
   FADE-UP
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-up.in { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE / MOBILE
   ============================================================ */
@media (max-width: 879px) {
  :root { --gutter: 22px; }
  .nav-links { display: none; }
  section { padding: 50px 0; min-height: auto; }
  .hero { min-height: calc(100vh - 80px); padding: 20px 0; }
  .hero h1 { font-size: clamp(32px, 8vw, 48px); }
  .hero-lede { font-size: 15px; }
  .hero-cta { gap: 10px; }
  .btn-lg { padding: 13px 20px; font-size: 14px; }

  /* Features scrollytelling: stack, no sticky, show all words lit */
  .feat-scroll { min-height: auto; }
  .feat-block { height: auto; }
  .feat-sticky { position: relative; top: auto; height: auto; padding: 50px 0; overflow: visible; }
  .feat-cols { padding-left: 0; gap: 30px; }
  .feat-headline { font-size: clamp(32px, 8vw, 48px); }
  /* No word reveal on mobile — show all words at full color */
  .feat-headline .word { color: var(--ink) !important; }
  .feat-headline .word.accent { color: var(--green) !important; }
  .feat-illo .illo-disc { max-width: 240px; }
  .feat-dots { display: none; }

  /* Pinned story: stack, no sticky */
  .story-track { height: auto; }
  .story-stage { position: relative; top: auto; height: auto; padding: 40px 0; }
  .story-stage-inner { grid-template-columns: 1fr; gap: 24px; height: auto; }
  .story-blob {
    position: relative;
    inset: auto;
    border-radius: 28px;
    padding: 30px 22px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .story-phone-col { height: auto; padding: 0; }
  .story-phone-col .iphone { max-width: 220px; max-height: none; transform: none; }
  .story-phone-img { max-width: 280px; max-height: none; }
  /* On mobile cards are not cross-faded by JS the same way — show first phone */
  .story-phone-stack { min-height: 0; }
  .story-cards {
    height: auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .story-card {
    position: relative;
    top: auto; left: auto; right: auto; inset: auto;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto;
    max-width: none;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.05);
  }
  .story-card.is-active { background: rgba(255,255,255,0.08); }
  .story-card h3 { font-size: clamp(24px, 6vw, 32px); }
  .story-card p { font-size: 15px; }
  .story-card ul { font-size: 13px; }
  .story-dots { display: none; }

  /* Pricing: stack title above cards */
  #pricing { min-height: auto; padding: 60px 0; }
  .pricing-layout { grid-template-columns: 1fr; gap: 30px; }
  .pricing-head h2 { font-size: clamp(32px, 7.5vw, 44px); }
  .pricing-grid { grid-template-columns: 1fr; gap: 14px; }

  /* FAQ */
  #faq { min-height: auto; padding: 60px 0; }
  .faq-layout { grid-template-columns: 1fr; gap: 24px; }
  .faq-head h2 { font-size: clamp(28px, 7vw, 40px); }

  /* Stats */
  .stats { min-height: auto; padding: 60px 0; }
  .stat-grid { grid-template-columns: 1fr; }
  .stat { padding: 36px 0; }

  /* CTAs */
  .cta-final { min-height: auto; padding: 70px 0; }
  .cta-final h2 { font-size: clamp(40px, 10vw, 64px); }
  .cta-final p { font-size: 15px; }

  /* Testimonials */
  .quotes-section { padding: 60px 0; }
  .quotes { grid-template-columns: 1fr; }

  /* Footer — brand block full-width, link groups in a 2-column grid */
  .foot { padding: 50px 0 24px; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 32px 20px; padding-bottom: 30px; }
  .foot-top > div:first-child { grid-column: 1 / -1; }
  .foot-tag { font-size: 22px; }

  /* Intro card inside story */
  .story-card--intro h3 { font-size: clamp(28px, 7vw, 40px); }

  /* Section intro grid — stack */
  .intro { grid-template-columns: 1fr; gap: 14px; }
  .intro h2 { font-size: clamp(32px, 7.5vw, 44px); }
  .lede { font-size: 15px; }

  /* Hero phone */
  .iphone--hero { max-width: 220px; transform: none; }
  .hero-phone-bg { display: none; }
  .hero-float { font-size: 12px; padding: 9px 11px; }
  .hero-float strong { font-size: 12.5px; }
  .hero-float span { font-size: 11px; }
}

/* Tiny phones */
@media (max-width: 380px) {
  .nav-cta .btn-link { display: none; }
  .hero h1 { font-size: clamp(30px, 9vw, 42px); }
}


/* ============================================================
   VALUES SCROLL — dark, sticky stage, cross-fade headlines
   ============================================================ */
.values-scroll {
  position: relative;
  background: var(--ink);
  color: #fff;
}
.values-track {
  position: relative;
  height: 900vh;
}
.values-stage {
  position: sticky;
  top: 80px;
  height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 40px 0;
}
.values-eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin: 0 0 36px;
  text-align: center;
}
.values-stack {
  position: relative;
  height: 280px;
  max-width: 920px;
  margin: 0 auto;
}
.values-item {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.values-item.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.values-item.is-past {
  opacity: 0;
  transform: translateY(-40px);
}
.values-item h2 {
  font-weight: 800;
  font-size: clamp(40px, 6vw, 96px);
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin: 0 0 22px;
  color: #fff;
  white-space: nowrap;
}
.values-item h2 .accent { color: var(--green); }
.values-item p {
  font-size: clamp(17px, 1.6vw, 22px);
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
  max-width: 50ch;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
}
.values-item.show-sub p {
  opacity: 1;
  transform: translateY(0);
}

.values-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 40px;
}
.values-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: background .3s ease, transform .3s ease;
}
.values-dots span.on {
  background: var(--green);
  transform: scale(1.4);
}

@media (max-width: 879px) {
  .values-track { height: auto; }
  .values-stage { position: relative; top: auto; height: auto; padding: 60px 0; }
  .values-stack { height: auto; }
  .values-item {
    position: relative;
    inset: auto;
    opacity: 1 !important;
    transform: none !important;
    margin-bottom: 50px;
  }
  .values-item:last-child { margin-bottom: 0; }
  .values-item h2 { white-space: normal; font-size: clamp(36px, 9vw, 56px); }
  .values-item.show-sub p, .values-item p { opacity: 1; transform: none; }
  .values-dots { display: none; }
}
.bento .feat-card {
  cursor: pointer;
}
.bento .feat-card--featured { cursor: default; }

/* Mockup image inside a non-featured card is hidden — shown only when promoted */
.bento .feat-card .mockup { display: none; }
.bento .feat-card--featured .mockup { display: block; }
.bento .feat-card--featured .mockup-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}


/* ===== STICKY CATEGORY NAV ===== */
.cat-nav {
  position: sticky;
  top: 50px;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.cat-nav.is-stuck {
  border-bottom-color: var(--rule);
  box-shadow: 0 6px 18px -12px rgba(0,0,0,0.08);
}
.cat-nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 12px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;          /* centre the leading dot on the text, not the 1.5 line-box */
  letter-spacing: -0.01em;
  color: var(--ink-3);
  transition: background .2s ease, color .2s ease;
  cursor: pointer;
}
.cat-pill::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ink-3);
  opacity: 0.4;
  transition: background .2s ease, opacity .2s ease;
}
.cat-pill:hover { background: var(--bg-soft); color: var(--ink); }
.cat-pill.is-active {
  background: var(--green);
  color: #fff;
}
.cat-pill.is-active::before { background: #fff; opacity: 1; }

@media (max-width: 879px) {
  .cat-nav-inner { padding: 10px 12px; gap: 4px; overflow-x: auto; justify-content: flex-start; }
  .cat-pill { padding: 7px 14px; font-size: 13px; flex: none; min-height: 44px; } /* ≥44pt tap target */
}


/* ============================================================
   MOBILE FIX — app-story readability
   On mobile the cards stack out of the dark "blob", so their white
   text landed on the white page. Give the section a dark backdrop
   (matching the desktop blob) and drop the now-empty blob box.
   ============================================================ */
@media (max-width: 879px) {
  .story { background: var(--bg-dark); }
  .story-blob { display: none; }
  /* Stack the stage so the badges aren't placed as a flex column to the
     right — they should sit centred at the bottom of the whole section. */
  .story-stage { display: block; }
  .story-stores {
    position: relative;
    left: auto; right: auto; bottom: auto;
    margin: 30px 0 0;
    justify-content: center;
  }
}

/* ============================================================
   MOBILE NAV — hamburger menu + edge padding
   ============================================================ */
.nav-toggle { display: none; }            /* desktop: hidden */
.mobile-menu { display: none; }           /* desktop: hidden */

@media (max-width: 879px) {
  /* Give the nav its gutter back (the .nav-inner shorthand had zeroed it) */
  .nav-inner { padding-left: var(--gutter); padding-right: var(--gutter); }
  /* On mobile the links + CTAs live in the dropdown, not the top bar */
  .nav-links { display: none; }
  .nav-cta { display: none; }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px; height: 44px;   /* ≥44pt tap target */
    margin-right: -8px;          /* optical: pull the icon toward the edge a touch */
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
  }
  .nav-toggle span {
    display: block;
    width: 22px; height: 2px;
    margin: 0 auto;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-menu {
    position: absolute;
    top: 100%; left: 0; right: 0;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-bottom: 1px solid var(--rule);
    box-shadow: 0 16px 28px -18px rgba(0,0,0,0.22);
    padding: 0 var(--gutter);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
  }
  .mobile-menu.open { max-height: 420px; padding-top: 6px; padding-bottom: 18px; }
  .mobile-menu a {
    font-size: 16px;
    font-weight: 600;
    color: var(--ink-2);
    padding: 13px 2px;
    border-bottom: 1px solid var(--rule);
  }
  .mobile-menu a:last-of-type { border-bottom: 0; }
  .mobile-menu a.btn-primary {
    color: #fff;
    margin-top: 14px;
    align-self: flex-start;
    padding: 12px 22px;
    border-bottom: 0;
  }
}
