/* =====================================================================
   Sprout — Marketing Landing Page
   ---------------------------------------------------------------------
   Tokens and components derived from the official Sprout Design System
   (figma "Sprout seller.fig" + Brand Guidelines + colors_and_type.css).
   No build step. Plain CSS custom properties + grid + flexbox.

   THEMES (toggle by adding a class to <body>):
     .theme-lime-on-white  default — white page, lime accents, teal text
     .theme-teal-dominant  dark teal sections dominate, lime accent
     .theme-cream          pale-lime page, lime CTAs, teal text

   DENSITY (toggle by adding a class to <body>):
     .density-tight   compact section padding and font sizes
     (default)        medium density — the brief target
     .density-long    generous section padding for editorial feel
   ===================================================================== */

/* ---------- 1. Base tokens ---------- */
:root {
  /* Brand colors */
  --sprout-lime: #DAF64F;
  --sprout-lime-bow: #CDEB45;          /* in-app bow shape uses this slightly different lime */
  --sprout-lime-soft: #F5F5F5;
  --sprout-teal: #003E3B;
  --sprout-teal-deep: #002523;
  --sprout-coral: #FE6B6A;
  --sprout-orange: #FEA94C;

  /* Neutrals */
  --white: #FFFFFF;
  --black: #000000;
  --grey-50: #FAFAFA;
  --grey-100: #F5F5F5;
  --grey-150: #F0F0F0;
  --grey-200: #E5E5EA;
  --grey-250: #E4E4E4;
  --grey-300: #DEDEDE;
  --grey-400: #C3C3C3;
  --grey-500: #9F9F9F;
  --grey-600: #5B5B5B;
  --grey-700: #292929;

  /* Semantic — overridden by theme classes */
  --color-bg: var(--white);
  --color-surface: var(--white);
  --color-surface-soft: var(--sprout-lime-soft);
  --color-fg: var(--sprout-teal);          /* body text — never lime on white */
  --color-fg-strong: var(--black);
  --color-fg-muted: var(--grey-600);
  --color-accent: var(--sprout-lime);
  --color-accent-fg: var(--sprout-teal);
  --color-border: var(--grey-300);
  --color-bow: var(--sprout-lime-bow);

  /* Typography — system SF Pro stack (no web fonts loaded) */
  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Type scale (medium density default) */
  --fs-hero:     clamp(2.5rem, 5.6vw, 4.5rem);   /* 40 -> 72 */
  --fs-display:  clamp(2rem, 4vw, 3rem);          /* 32 -> 48 */
  --fs-h2:       clamp(1.75rem, 3vw, 2.25rem);    /* 28 -> 36 */
  --fs-h3:       1.375rem;                         /* 22 */
  --fs-h4:       1.125rem;                         /* 18 */
  --fs-body:     1rem;                             /* 16 */
  --fs-small:    0.875rem;                         /* 14 */
  --fs-micro:    0.75rem;                          /* 12 */

  /* Weights */
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;
  --fw-heavy: 800;
  --fw-black: 900;

  /* Spacing (8px grid) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 32px;
  --space-8: 40px;
  --space-9: 48px;
  --space-10: 64px;
  --space-12: 96px;
  --space-16: 128px;

  /* Section vertical padding (medium density default) */
  --section-pad: clamp(64px, 9vw, 112px);
  --section-pad-tight: clamp(40px, 6vw, 72px);

  /* Container */
  --container-max: 1240px;
  --gutter: clamp(20px, 4vw, 40px);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  /* Shadows (lifted directly from design system) */
  --shadow-search: 0 3px 20px -8px rgba(0, 0, 0, 0.25);
  --shadow-card: 0 4px 16px -6px rgba(0, 0, 0, 0.12);
  --shadow-pop: 0 12px 32px -8px rgba(0, 62, 59, 0.18);
  --shadow-phone: 0 30px 60px -20px rgba(0, 0, 0, 0.35), 0 0 0 8px #1a1a1a;
  --shadow-nav: 0 7px 9.8px 3px rgba(0, 0, 0, 0.10);

  /* Motion */
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur-fast: 120ms;
  --dur-base: 200ms;
  --dur-slow: 320ms;
}

/* ---------- 2. Theme variants ---------- */
.theme-lime-on-white {
  --color-bg: var(--white);
  --color-surface: var(--white);
  --color-surface-soft: var(--sprout-lime-soft);
  --color-fg: var(--sprout-teal);
  --color-fg-strong: var(--black);
  --color-fg-muted: var(--grey-600);
  --color-accent: var(--sprout-lime);
  --color-accent-fg: var(--sprout-teal);
  --color-bow: var(--sprout-lime-bow);
}

.theme-teal-dominant {
  --color-bg: var(--sprout-teal);
  --color-surface: var(--sprout-teal);
  --color-surface-soft: var(--sprout-teal-deep);
  --color-fg: var(--white);
  --color-fg-strong: var(--white);
  --color-fg-muted: rgba(255, 255, 255, 0.72);
  --color-accent: var(--sprout-lime);
  --color-accent-fg: var(--sprout-teal);
  --color-border: rgba(255, 255, 255, 0.18);
  --color-bow: var(--sprout-lime);
}

.theme-cream {
  --color-bg: var(--sprout-lime-soft);
  --color-surface: var(--white);
  --color-surface-soft: #F8FCDD;
  --color-fg: var(--sprout-teal);
  --color-fg-strong: var(--sprout-teal);
  --color-fg-muted: var(--grey-600);
  --color-accent: var(--sprout-lime);
  --color-accent-fg: var(--sprout-teal);
  --color-bow: var(--sprout-lime-bow);
}

/* ---------- 3. Density variants ---------- */
.density-tight {
  --section-pad: clamp(40px, 6vw, 72px);
  --section-pad-tight: clamp(28px, 4vw, 48px);
  --fs-hero: clamp(2rem, 4.4vw, 3.5rem);
  --fs-display: clamp(1.625rem, 3.2vw, 2.375rem);
  --fs-h2: clamp(1.375rem, 2.4vw, 1.75rem);
  --fs-h3: 1.125rem;
}
.density-long {
  --section-pad: clamp(96px, 12vw, 168px);
  --section-pad-tight: clamp(64px, 8vw, 112px);
  --fs-hero: clamp(3rem, 6.4vw, 5.25rem);
  --fs-display: clamp(2.25rem, 4.4vw, 3.5rem);
}

/* ---------- 4. Reset + base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
body {
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  font-size: var(--fs-body);
  line-height: 1.5;
  color: var(--color-fg);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  transition: background var(--dur-slow) var(--ease-out), color var(--dur-slow) var(--ease-out);
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible, summary:focus-visible {
  outline: 3px solid var(--sprout-lime);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}
button { font: inherit; cursor: pointer; }

/* Skip link */
.skip-link {
  position: absolute; top: -40px; left: 16px;
  padding: 8px 16px;
  background: var(--sprout-teal); color: var(--white);
  border-radius: var(--radius-sm); z-index: 200;
}
.skip-link:focus { top: 16px; }

/* ---------- 5. Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
section { padding-block: var(--section-pad); }
.section-tight { padding-block: var(--section-pad-tight); }

.eyebrow {
  display: inline-block;
  font-size: var(--fs-micro);
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-fg);
  background: var(--sprout-lime);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.h-eyebrow {
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--color-fg-muted);
  margin-bottom: 12px;
}

.section-title {
  font-size: var(--fs-display);
  font-weight: var(--fw-heavy);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--color-fg-strong);
  margin: 0 0 16px 0;
}
.section-lede {
  font-size: var(--fs-h4);
  font-weight: var(--fw-regular);
  color: var(--color-fg-muted);
  max-width: 60ch;
  margin: 0 0 var(--space-9) 0;
  line-height: 1.45;
}

/* ---------- 6. Buttons (pill, per design system) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 28px;
  border: none;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: var(--fs-body);
  font-weight: var(--fw-bold);
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-out),
              background var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--sprout-lime);
  color: var(--sprout-teal);
}
.btn-primary:hover { background: #E5FA68; box-shadow: var(--shadow-pop); }
.btn-secondary {
  background: var(--sprout-teal);
  color: var(--white);
}
.btn-secondary:hover { background: var(--sprout-teal-deep); }
.btn-ghost {
  background: transparent;
  color: var(--color-fg);
  border: 1.5px solid var(--color-fg);
}
.btn-ghost:hover { background: var(--color-fg); color: var(--color-bg); }
.btn-sm { height: 40px; padding: 0 18px; font-size: var(--fs-small); }
.btn-lg { height: 60px; padding: 0 36px; font-size: var(--fs-h4); }

/* ---------- 7. Top navigation ---------- */
.topnav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--dur-base) var(--ease-out);
}
.theme-teal-dominant .topnav {
  background: rgba(0, 62, 59, 0.92);
}
.theme-cream .topnav {
  background: rgba(239, 248, 197, 0.92);
}
.topnav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}
.topnav .logo { height: 28px; width: auto; }
.theme-teal-dominant .topnav .logo-default { display: none; }
.theme-teal-dominant .topnav .logo-inverted { display: block; }
.topnav .logo-inverted { display: none; }
.topnav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.topnav-links a {
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--color-fg);
  padding: 8px 4px;
  border-radius: var(--radius-sm);
  transition: color var(--dur-base) var(--ease-out);
}
.topnav-links a:hover { color: var(--sprout-teal); }
.theme-teal-dominant .topnav-links a:hover { color: var(--sprout-lime); }

.topnav-actions { display: flex; align-items: center; gap: 12px; }

.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: 1.5px solid var(--color-fg);
  border-radius: var(--radius-sm);
}
.menu-toggle svg { margin: 0 auto; }

@media (max-width: 900px) {
  .topnav-links { display: none; }
  .menu-toggle { display: flex; align-items: center; justify-content: center; }
  .topnav-cta-text { display: none; }
}

/* ---------- 9. Hero shared ---------- */
.hero-section { position: relative; overflow: hidden; }
.hero-label {
  font-size: var(--fs-micro);
  font-weight: var(--fw-bold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-fg-muted);
  margin-bottom: 24px;
}
.hero-headline {
  font-size: var(--fs-hero);
  font-weight: var(--fw-black);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--color-fg-strong);
  margin: 0 0 24px 0;
}
.hero-headline .accent {
  display: inline-block;
  background: var(--sprout-lime);
  color: var(--sprout-teal);
  padding: 0 14px;
  border-radius: var(--radius-md);
  transform: rotate(-1.5deg);
}
.hero-sub {
  font-size: var(--fs-h4);
  font-weight: var(--fw-regular);
  color: var(--color-fg-muted);
  max-width: 56ch;
  line-height: 1.5;
  margin: 0 0 var(--space-8) 0;
}
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-trust {
  display: flex; align-items: center; gap: 12px;
  margin-top: 28px;
  font-size: var(--fs-small);
  color: var(--color-fg-muted);
}
.hero-trust .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sprout-orange);
  display: inline-block;
}

/* Hero variant A — centered, two phones below */
.hero-a { text-align: center; padding-block: var(--section-pad); }
.hero-a .hero-inner { max-width: 880px; margin: 0 auto; }
.hero-a .hero-cta-row { justify-content: center; }
.hero-a .hero-sub { margin-inline: auto; }
.hero-a .phones-row {
  display: flex; justify-content: center; gap: 32px;
  margin-top: 64px;
}
.hero-a .phone-frame:nth-child(1) { transform: rotate(-3deg) translateY(8px); }
.hero-a .phone-frame:nth-child(2) { transform: rotate(3deg); }

/* Hero variant B — split: text left, phones right */
.hero-b { padding-block: var(--section-pad); }
.hero-b .hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-b .phones-stack {
  position: relative;
  height: 620px;
}
.hero-b .phones-stack .phone-frame {
  position: absolute;
  transform-origin: center;
}
.hero-b .phones-stack .phone-frame:nth-child(1) {
  left: 0; top: 24px;
  transform: rotate(-6deg);
  z-index: 1;
}
.hero-b .phones-stack .phone-frame:nth-child(2) {
  right: 0; top: 0;
  transform: rotate(4deg);
  z-index: 2;
}

@media (max-width: 900px) {
  .hero-b .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-b .phones-stack { height: 560px; }
}

/* Hero variant C — bow header at top, phones overlap */
.hero-c {
  padding-top: 0;
  padding-bottom: var(--section-pad);
  background: var(--color-bg);
}
.hero-c .bow-band {
  position: relative;
  background: var(--color-bow);
  padding-block: clamp(120px, 12vw, 160px) clamp(80px, 9vw, 130px);
  margin-bottom: -100px;
}
.hero-c .bow-band::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: -1px;
  height: 90px;
  background: var(--color-bg);
  -webkit-mask: radial-gradient(120% 90px at 50% 100%, transparent 99%, black 100%);
          mask: radial-gradient(120% 90px at 50% 100%, transparent 99%, black 100%);
}
.hero-c .bow-band::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: -1px;
  height: 90px;
  background: var(--color-bg);
  -webkit-mask: radial-gradient(120% 90px at 50% 100%, transparent 99%, black 100%);
          mask: radial-gradient(120% 90px at 50% 100%, transparent 99%, black 100%);
}
.hero-c .bow-band::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 90px;
  background: var(--color-bg);
  -webkit-mask: radial-gradient(120% 90px at 50% 0, transparent 99%, black 100%);
          mask: radial-gradient(120% 90px at 50% 0, transparent 99%, black 100%);
}
.hero-c .bow-inner {
  max-width: 880px; margin: 0 auto; text-align: center;
  position: relative; z-index: 2;
  padding-inline: var(--gutter);
}
.hero-c .bow-inner .hero-headline { color: var(--sprout-teal); }
.hero-c .bow-inner .hero-sub { color: var(--sprout-teal); opacity: 0.8; }
.hero-c .phones-row {
  display: flex; justify-content: center; gap: 28px;
  position: relative; z-index: 3;
  margin-bottom: 48px;
  padding-inline: var(--gutter);
}
.hero-c .phones-row .phone-frame:nth-child(1) { transform: rotate(-4deg) translateY(20px); }
.hero-c .phones-row .phone-frame:nth-child(2) { transform: rotate(4deg); }

/* Hero divider label */
.hero-variant-tag {
  text-align: center;
  font-size: var(--fs-micro);
  font-weight: var(--fw-bold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-fg-muted);
  padding: 24px 0 8px;
  background: var(--color-bg);
  border-top: 1px dashed var(--color-border);
}

/* ---------- 10. Phone mockups (CSS-only) ---------- */
.phone-frame {
  width: 280px;
  height: 580px;
  background: #1a1a1a;
  border-radius: 36px;
  padding: 8px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.35);
  flex: 0 0 auto;
  position: relative;
}
.phone-screen {
  width: 100%; height: 100%;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  font-size: 11px;
  color: var(--sprout-teal);
}
.phone-notch {
  position: absolute;
  top: 14px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 22px;
  background: #1a1a1a;
  border-radius: 12px;
  z-index: 5;
}

/* Phone bow */
.p-bow {
  position: relative;
  background: var(--sprout-lime-bow);
  padding: 28px 18px 36px;
  height: 130px;
}
.p-bow::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 24px;
  background: #fff;
  -webkit-mask: radial-gradient(110% 24px at 50% 0, transparent 99%, black 100%);
          mask: radial-gradient(110% 24px at 50% 0, transparent 99%, black 100%);
}
.p-bow-row { display: flex; align-items: center; justify-content: space-between; }
.p-wordmark { font-size: 14px; font-weight: 900; color: var(--black); letter-spacing: -0.01em; }
.p-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--sprout-teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: var(--sprout-teal);
}
.p-welcome { font-size: 11px; font-weight: 600; color: var(--black); margin-top: 14px; }
.p-search {
  margin-top: 8px;
  height: 32px;
  background: white;
  border-radius: 99px;
  padding: 0 12px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-search);
  font-size: 9px; color: var(--grey-400);
}
.p-search::before {
  content: "";
  width: 11px; height: 11px;
  border: 1.5px solid var(--grey-500);
  border-radius: 50%;
  position: relative;
  flex: 0 0 auto;
}

.p-body { padding: 14px 18px 60px; }
.p-section-title { font-size: 11px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.p-cats {
  display: flex; gap: 12px;
  overflow-x: hidden;
  padding-bottom: 4px;
}
.p-cat {
  flex: 0 0 auto;
  display: flex; flex-direction: column; align-items: center;
  width: 44px;
  text-align: center;
}
.p-cat-icon {
  width: 38px; height: 38px;
  background: var(--sprout-lime-soft);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.p-cat-icon svg { width: 22px; height: 22px; color: var(--sprout-teal); }
.p-cat-label { font-size: 8px; line-height: 1.1; margin-top: 4px; color: var(--black); }

.p-banner {
  margin-top: 12px;
  background: #F4F8E1;
  border-radius: 12px;
  padding: 10px 12px;
  display: flex; align-items: center; gap: 10px;
}
.p-banner-badge {
  width: 38px; height: 38px;
  background: var(--sprout-lime);
  color: var(--sprout-teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 900;
  flex: 0 0 auto;
}
.p-banner-text { font-size: 10px; font-weight: 700; color: var(--sprout-teal); line-height: 1.15; }

.p-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.p-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
}
.p-card-thumb {
  aspect-ratio: 1;
  background: var(--sprout-lime-soft);
  display: flex; align-items: center; justify-content: center;
}
.p-card-thumb svg { width: 40%; height: 40%; color: var(--sprout-teal); opacity: 0.65; }
.p-card-meta { padding: 4px 2px 0; }
.p-card-title { font-size: 9px; font-weight: 600; color: var(--black); }
.p-card-price { font-size: 9px; font-weight: 700; color: var(--sprout-teal); }

/* Phone bottom nav */
.p-nav {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 52px;
  background: var(--white);
  display: flex; justify-content: space-around; align-items: center;
  box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.05);
  border-top: 1px solid var(--grey-250);
}
.p-nav-tab {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  font-size: 7px;
  color: var(--grey-500);
}
.p-nav-tab svg { width: 18px; height: 18px; color: currentColor; }
.p-nav-tab.is-active {
  color: var(--black);
  font-weight: 600;
}
.p-nav-tab.is-active svg { color: var(--sprout-teal); }
.p-nav-tab.is-active .p-nav-pill {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--sprout-lime);
  display: flex; align-items: center; justify-content: center;
}
.p-nav-tab.is-active .p-nav-pill svg { width: 14px; height: 14px; }

/* Seller phone variants */
.p-stats {
  display: flex; justify-content: space-between;
  margin-top: 14px;
  padding: 0 8px;
}
.p-stat { text-align: center; }
.p-stat-num { font-size: 14px; font-weight: 700; color: var(--black); }
.p-stat-label { font-size: 8px; color: var(--grey-500); }

.p-shelves {
  margin-top: 14px;
  display: grid; gap: 8px;
  grid-template-columns: 1fr 1fr;
}
.p-shelf-card {
  border: 1px solid var(--grey-250);
  border-radius: 10px;
  padding: 6px;
}
.p-shelf-thumb {
  aspect-ratio: 1;
  border-radius: 8px;
  background: var(--sprout-lime-soft);
  display: flex; align-items: center; justify-content: center;
}
.p-shelf-thumb svg { width: 50%; color: var(--sprout-teal); opacity: 0.6; }
.p-shelf-title { font-size: 9px; font-weight: 600; color: var(--black); margin-top: 4px; }
.p-shelf-price { font-size: 8px; color: var(--sprout-teal); font-weight: 700; }
.p-shelf-edit {
  margin-top: 4px;
  font-size: 7px; font-weight: 700;
  background: var(--sprout-teal);
  color: white;
  padding: 3px 6px;
  border-radius: 99px;
  text-align: center;
}
.p-fab {
  position: absolute;
  right: 14px; bottom: 64px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--sprout-lime);
  color: var(--sprout-teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 900;
  box-shadow: var(--shadow-pop);
}

/* ---------- 11. How it works ---------- */
.how {
  background: var(--color-surface);
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 880px) {
  .how-grid { grid-template-columns: 1fr; gap: 56px; }
}
.how-col {
  background: var(--color-surface-soft);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
}
.theme-teal-dominant .how-col { background: rgba(255,255,255,0.05); border: 1px solid var(--color-border); }
.how-col-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--fs-micro);
  font-weight: var(--fw-bold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-fg);
  background: var(--sprout-lime);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.how-col-title {
  font-size: var(--fs-h2);
  font-weight: var(--fw-heavy);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--color-fg-strong);
  margin: 0 0 32px 0;
}
.how-step {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--color-border);
}
.how-step:first-of-type { border-top: 0; padding-top: 0; }
.how-step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--sprout-teal);
  color: var(--sprout-lime);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-weight: var(--fw-black);
  flex: 0 0 auto;
}
.theme-teal-dominant .how-step-num {
  background: var(--sprout-lime);
  color: var(--sprout-teal);
}
.how-step-title {
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  color: var(--color-fg-strong);
  margin: 4px 0 6px;
}
.how-step-body {
  font-size: var(--fs-small);
  color: var(--color-fg-muted);
  line-height: 1.5;
}

/* ---------- 12. Categories ---------- */
.cats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 880px) { .cats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .cats-grid { grid-template-columns: 1fr; } }
.cat-tile {
  background: var(--sprout-lime-soft);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex; align-items: center; gap: 18px;
  transition: border-color var(--dur-base) var(--ease-out);
  border: 1.5px solid transparent;
}
.theme-teal-dominant .cat-tile {
  background: rgba(218, 246, 79, 0.08);
  border-color: rgba(218, 246, 79, 0.2);
}
.cat-tile:hover {
  border-color: var(--sprout-teal);
}
.cat-tile:active {
  transform: none;
}
.theme-teal-dominant .cat-tile:hover {
  border-color: var(--sprout-lime);
}
.cat-icon {
  width: 120px; height: 120px;
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
}

.cat-icon svg,
.cat-icon img {
  width: 112px;
  height: 112px;
  color: var(--sprout-teal);
  object-fit: contain;
}
.theme-teal-dominant .cat-icon svg { color: var(--sprout-lime); }
.cat-label {
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  color: var(--color-fg-strong);
}
.cat-sub {
  font-size: var(--fs-small);
  color: var(--color-fg-muted);
  margin-top: 2px;
}

/* ---------- 13. Why Sprout ---------- */
.why { background: var(--color-bg); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1100px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex; flex-direction: column; gap: 14px;
}
.theme-teal-dominant .why-card { background: rgba(255,255,255,0.04); }
.why-illust {
  width: 120px; height: 120px;
  background: var(--sprout-lime);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.theme-teal-dominant .why-illust { background: var(--sprout-lime); }
.why-illust img { width: 100%; height: 100%; object-fit: contain; padding: 8px; mix-blend-mode: multiply; }
.why-card h3 {
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  letter-spacing: -0.01em;
  color: var(--color-fg-strong);
  margin: 0;
}
.why-card p {
  font-size: var(--fs-small);
  color: var(--color-fg-muted);
  line-height: 1.55;
  margin: 0;
}

/* ---------- 14. Featured creators carousel ---------- */
.creators {
  background: var(--color-surface-soft);
}
.theme-lime-on-white .creators { background: var(--sprout-lime-soft); }
.creators-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
  scrollbar-width: thin;
}
.shelf-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  display: flex; flex-direction: column;
}
.theme-teal-dominant .shelf-card {
  background: rgba(255,255,255,0.06);
}
.shelf-thumb {
  aspect-ratio: 1.3;
  background: var(--grey-200);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.shelf-thumb img { width: 90%; height: 90%; object-fit: contain; }
.shelf-tag {
  position: absolute; top: 12px; left: 12px;
  font-size: var(--fs-micro);
  font-weight: var(--fw-bold);
  background: var(--sprout-teal);
  color: var(--white);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.shelf-meta { padding: 16px 18px 20px; }
.shelf-name {
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  color: var(--color-fg-strong);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.shelf-creator {
  font-size: var(--fs-small);
  color: var(--color-fg-muted);
  margin: 0 0 12px;
}
.shelf-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: var(--fs-small);
  color: var(--color-fg);
  font-weight: var(--fw-medium);
}
.shelf-area {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--color-fg-muted);
}
.shelf-price { font-weight: var(--fw-bold); color: var(--sprout-teal); }
.theme-teal-dominant .shelf-price { color: var(--sprout-lime); }
.creators-row::-webkit-scrollbar { height: 6px; }
.creators-row::-webkit-scrollbar-thumb { background: var(--color-border); border-radius: 99px; }

/* ---------- 15. Trust & safety ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .trust-grid { grid-template-columns: 1fr; } }
.trust-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 18px;
}
.theme-teal-dominant .trust-card { background: rgba(255,255,255,0.04); }
.trust-illust {
  width: 80px; height: 80px;
  background: var(--sprout-lime-soft);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.theme-teal-dominant .trust-illust { background: rgba(218, 246, 79, 0.14); }
.trust-illust svg { width: 44px; height: 44px; color: var(--sprout-teal); }
.theme-teal-dominant .trust-illust svg { color: var(--sprout-lime); }
.trust-card h3 {
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  margin: 0;
  color: var(--color-fg-strong);
}
.trust-card p {
  font-size: var(--fs-small);
  color: var(--color-fg-muted);
  line-height: 1.55; margin: 0;
}

/* ---------- 16. Bahrain story ---------- */
.story { padding-block: var(--section-pad); }
.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .story-grid { grid-template-columns: 1fr; gap: 32px; } }
.story-art {
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 1.1;
}
.story-art img { width: 100%; height: auto; }
.story-art svg { width: 100%; height: auto; }
.story-eyebrow {
  font-size: var(--fs-micro);
  font-weight: var(--fw-bold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-fg);
  display: inline-block;
  background: var(--sprout-lime);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}
.story h2 {
  font-size: var(--fs-display);
  font-weight: var(--fw-heavy);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-fg-strong);
  margin: 0 0 20px;
}
.story p {
  font-size: var(--fs-h4);
  color: var(--color-fg-muted);
  line-height: 1.5; margin: 0 0 16px;
}
.story-foot {
  display: inline-block;
  font-size: var(--fs-small);
  color: var(--color-fg);
  background: var(--sprout-lime-soft);
  border: 1px solid var(--color-border);
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  margin-top: 12px;
  font-weight: var(--fw-medium);
}
.theme-teal-dominant .story-foot { background: rgba(255,255,255,0.06); }

/* ---------- 17. FAQ ---------- */
.faq { background: var(--color-surface); }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
}
.faq details {
  background: var(--color-surface-soft);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: background var(--dur-base) var(--ease-out);
}
.theme-teal-dominant .faq details { background: rgba(255,255,255,0.04); }
.faq summary {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 24px;
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  color: var(--color-fg-strong);
  cursor: pointer;
  list-style: none;
  gap: 24px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  width: 14px; height: 14px;
  border-right: 2.5px solid currentColor;
  border-bottom: 2.5px solid currentColor;
  transform: rotate(45deg);
  flex: 0 0 auto;
  transition: transform var(--dur-base) var(--ease-out);
  margin-bottom: 4px;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-bottom: -4px; }
.faq-body {
  padding: 0 24px 22px;
  font-size: var(--fs-body);
  color: var(--color-fg-muted);
  line-height: 1.55;
  max-width: 60ch;
}

/* ---------- 18. Waitlist ---------- */
.waitlist {
  background: var(--sprout-lime);
  color: var(--sprout-teal);
}
.waitlist-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.waitlist h2 {
  font-size: var(--fs-display);
  font-weight: var(--fw-black);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--sprout-teal);
  margin: 0 0 16px;
}
.waitlist p {
  font-size: var(--fs-h4);
  color: var(--sprout-teal);
  opacity: 0.85;
  margin: 0 0 36px;
}
.waitlist-form {
  display: flex;
  gap: 8px;
  background: var(--white);
  border-radius: var(--radius-pill);
  padding: 6px;
  max-width: 520px;
  margin: 0 auto;
  box-shadow: var(--shadow-pop);
}
.waitlist-form input[type="email"] {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  padding: 0 18px;
  font-family: inherit;
  font-size: var(--fs-body);
  color: var(--sprout-teal);
  min-width: 0;
}
.waitlist-form input[type="email"]::placeholder { color: var(--grey-500); }
.waitlist-form .btn { height: 48px; }
.waitlist-success {
  display: none;
  background: var(--sprout-teal);
  color: var(--sprout-lime);
  padding: 18px 28px;
  border-radius: var(--radius-pill);
  font-size: var(--fs-body);
  font-weight: var(--fw-bold);
  max-width: 520px;
  margin: 0 auto;
  animation: fadeIn var(--dur-slow) var(--ease-out);
}
.waitlist-success.is-visible { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.waitlist-fineprint {
  margin-top: 18px;
  font-size: var(--fs-small);
  color: var(--sprout-teal);
  opacity: 0.7;
}

/* ---------- 19. Footer ---------- */
.footer {
  background: var(--sprout-teal);
  color: var(--white);
  padding-block: var(--space-10) var(--space-7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer .logo { height: 32px; margin-bottom: 16px; }
.footer-tag {
  font-size: var(--fs-small);
  opacity: 0.78;
  line-height: 1.5;
  max-width: 30ch;
}
.footer-col h4 {
  font-size: var(--fs-small);
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 16px;
  color: var(--sprout-lime);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.75);
  transition: color var(--dur-base) var(--ease-out);
}
.footer-col a:hover { color: var(--sprout-lime); }
.footer-social { display: flex; gap: 10px; margin-top: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: background var(--dur-base) var(--ease-out);
}
.footer-social a:hover { background: var(--sprout-lime); color: var(--sprout-teal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: var(--fs-small);
  color: rgba(255,255,255,0.6);
}
.footer-bottom .built {
  display: inline-flex; align-items: center; gap: 8px;
}
.footer-bottom .built::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sprout-orange);
}

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

/* Mobile: stack nav links vertically when open */
.topnav-links.is-open {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: absolute;
  top: 72px; left: 0; right: 0;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding: 16px var(--gutter);
}
.topnav-links.is-open a { padding: 14px 0; border-bottom: 1px solid var(--color-border); }
.topnav-links.is-open a:last-child { border-bottom: none; }
