/* ═══════════════════════════════════════════════════════════
   The Banana Stand — Full Marketing Landing Page
   Design: Dark slate, amber accents, Inter + Playfair Display
   ═══════════════════════════════════════════════════════════ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Palette */
  --slate-50:  #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;

  --amber-300: #fcd34d;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;

  /* Typography */
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  /* Spacing */
  --section-pad: 60px;
  --container-w: 1180px;
  --container-px: 24px;

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.25s;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--slate-950);
  color: var(--slate-50);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Ambient Background ───────────────────────────────────── */
.bg-glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.bg-glow::before,
.bg-glow::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.12;
  animation: drift 14s ease-in-out infinite alternate;
}
.bg-glow::before {
  width: 700px;
  height: 700px;
  background: var(--amber-500);
  top: -260px;
  right: -180px;
}
.bg-glow::after {
  width: 600px;
  height: 600px;
  background: var(--amber-400);
  bottom: -200px;
  left: -160px;
  animation-delay: -7s;
}
@keyframes drift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(50px, 40px) scale(1.08); }
}

.bg-grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
}

/* ── Layout Utilities ─────────────────────────────────────── */
.container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section {
  position: relative;
  z-index: 2;
  padding: var(--section-pad) 0;
}

.features,
.pricing,
.faq {
  background: linear-gradient(180deg, transparent 0%, rgba(15,23,42,0.6) 50%, transparent 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 32px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-header p {
  color: var(--slate-400);
  font-size: 1.125rem;
  font-weight: 300;
}

/* ── Gradient Text ────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--slate-50) 0%, var(--amber-400) 45%, var(--amber-300) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 7s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--slate-950);
  background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
  border-radius: 12px;
  text-decoration: none;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  box-shadow: 0 4px 20px rgba(251,191,36,0.25);
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(251,191,36,0.35);
}
.btn-primary:active { transform: translateY(0); }
.btn-large { padding: 1.1rem 2.5rem; font-size: 1rem; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--slate-200);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: all var(--dur) var(--ease);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(251,191,36,0.3);
  color: var(--amber-300);
}

/* ── Badge ────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-400);
  border: 1px solid rgba(251,191,36,0.25);
  border-radius: 100px;
  background: rgba(251,191,36,0.06);
}

/* ── Navbar ───────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.nav-scrolled {
  background: rgba(2,6,23,0.85);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--slate-50);
  text-decoration: none;
  white-space: nowrap;
}
.nav-logo img { border-radius: 0; }
.nav-logo span { letter-spacing: -0.01em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate-400);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
  white-space: nowrap;
}
.nav-link:hover { color: var(--slate-50); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--slate-950);
  background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
  border-radius: 10px;
  text-decoration: none;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  box-shadow: 0 2px 12px rgba(251,191,36,0.2);
  white-space: nowrap;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(251,191,36,0.3);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--slate-300);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(2,6,23,0.96);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 16px 24px 24px;
  gap: 4px;
  backdrop-filter: blur(16px);
}
.mobile-menu.is-open { display: flex; }

.mobile-link {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--slate-300);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color var(--dur) ease;
}
.mobile-link:hover { color: var(--slate-50); }

.mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 0.85rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--slate-950);
  background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
  border-radius: 12px;
  text-decoration: none;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 60px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  animation: fadeUp 0.8s var(--ease) both;
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hero-sub {
  font-size: 1.0625rem;
  font-weight: 300;
  color: var(--slate-400);
  line-height: 1.7;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-note {
  font-size: 0.8125rem;
  color: var(--slate-600);
}

/* ── Before / After Showcase ─────────────────────────────── */
.hero-visual {
  position: relative;
  animation: fadeUp 1s var(--ease) 0.15s both;
}

.before-after-showcase {
  display: flex;
  align-items: center;
  gap: 0;
}

/* ── Phone frame (Before) ────────────────────────────────── */
.ba-phone {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.ba-phone-frame {
  position: relative;
  width: 140px;
  background: #1a1a2e;
  border: 3px solid rgba(255,255,255,0.15);
  border-radius: 24px;
  padding: 8px 6px 12px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 20px 50px -10px rgba(0,0,0,0.8),
    inset 0 1px 0 rgba(255,255,255,0.08);
  overflow: hidden;
}

.ba-phone-notch {
  width: 48px;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  margin: 0 auto 6px;
}

.ba-phone-img {
  display: block;
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.ba-label-below {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--slate-500);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── Connector (Arrow + Bolt) ────────────────────────────── */
.ba-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  padding: 0 8px;
  z-index: 3;
}

.ba-arrow-svg {
  width: 80px;
  height: 28px;
}

.ba-arrow-dash {
  animation: dashFlow 1.5s linear infinite;
}

@keyframes dashFlow {
  from { stroke-dashoffset: 20; }
  to   { stroke-dashoffset: 0; }
}

.ba-bolt-badge {
  width: 32px;
  height: 32px;
  background: var(--slate-950);
  border: 1.5px solid rgba(251,191,36,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  box-shadow: 0 0 20px rgba(251,191,36,0.25);
  animation: boltPulse 2s ease-in-out infinite;
}

@keyframes boltPulse {
  0%, 100% { box-shadow: 0 0 12px rgba(251,191,36,0.2); }
  50%      { box-shadow: 0 0 28px rgba(251,191,36,0.5); }
}

/* ── Scene frame (After) ─────────────────────────────────── */
.ba-scene {
  flex: 1;
  min-width: 0;
}

.ba-scene-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow:
    0 24px 60px -12px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,255,255,0.04),
    0 0 80px -20px rgba(251,191,36,0.1);
}

.ba-scene-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 40%;
}

.ba-label {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-500);
  background: rgba(0,0,0,0.5);
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
  z-index: 1;
}
.ba-label-gold { color: var(--amber-400); }
.ba-label-br {
  top: auto;
  left: auto;
  bottom: 44px;
  right: 14px;
}

.ba-caption {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--slate-200);
  background: rgba(0,0,0,0.55);
  padding: 5px 14px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
  z-index: 1;
  white-space: nowrap;
}
.ba-caption-gold { color: var(--amber-300); }

/* Floating stat chips */
.stat-chip {
  position: absolute;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate-200);
  background: rgba(15,23,42,0.85);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 6px 14px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  white-space: nowrap;
}
.chip-1 {
  bottom: -16px;
  left: 20px;
  animation: float 4s ease-in-out infinite;
}
.chip-2 {
  top: -14px;
  right: 20px;
  animation: float 4s ease-in-out 2s infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* ── Hero Fade Up ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Social Proof Strip ───────────────────────────────────── */
.proof-strip {
  position: relative;
  z-index: 2;
  padding: 16px 0;
}
.proof-strip .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  justify-content: center;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 16px 24px;
  border: 1px solid #D4A017;
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(212, 160, 23, 0.3);
}
.proof-label {
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  white-space: normal;
  word-break: break-word;
  width: 100%;
}
.proof-platforms {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
}
.proof-platforms i {
  font-size: 3rem;
  color: #FFFFFF;
  transition: color var(--dur) ease;
}
.proof-platforms i:hover {
  color: var(--slate-300);
}

/* ── Features Grid ────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 28px 24px;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.feature-card-has-img {
  padding-top: 0;
  overflow: hidden;
}
.feature-card-img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
  margin-bottom: 20px;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(251,191,36,0.2);
  background: rgba(255,255,255,0.04);
}

.feature-icon {
  font-size: 1.75rem;
  margin-bottom: 14px;
  line-height: 1;
}
.feature-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--slate-50);
}
.feature-card p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--slate-400);
  line-height: 1.65;
}

/* Quote testimonial card */
.feature-card-quote {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  min-height: 100%;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--amber-400);
  margin-bottom: 4px;
}
.quote-text {
  font-size: 1rem !important;
  font-style: italic;
  font-weight: 400 !important;
  color: var(--slate-200) !important;
  line-height: 1.7 !important;
  margin-bottom: 16px;
}
.quote-attr {
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  color: var(--slate-500) !important;
  font-style: normal;
}

/* ── Mid-page CTA ────────────────────────────────────────── */
.mid-cta {
  position: relative;
  z-index: 2;
  padding: 64px 0;
  min-height: 400px;
  display: flex;
  align-items: center;
  text-align: center;
  background: url('/images/mid-cta-bg.webp') center center / cover no-repeat;
  overflow: hidden;
}
.mid-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  z-index: 0;
}
.mid-cta .container {
  position: relative;
  z-index: 1;
}
.mid-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
}
.mid-cta-eyebrow {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--slate-500);
  letter-spacing: 0.02em;
}
.mid-cta-headline {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--slate-50);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.mid-cta-body {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--slate-400);
  line-height: 1.65;
  margin-bottom: 4px;
}
.mid-cta-btn {
  margin-top: 4px;
}
.mid-cta-note {
  font-size: 0.78rem;
  color: #D4A017;
}

/* ── How It Works ─────────────────────────────────────────── */
.how-it-works { background: none; }

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}
.step-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
}

.step-number {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--amber-500);
  margin-bottom: 12px;
}

.step-visual {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-width: 240px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: border-color var(--dur) ease;
}
.step-visual-img {
  padding: 0;
  background: none;
}
.step-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.step-visual:hover { border-color: rgba(251,191,36,0.2); }

.step-icon-large { font-size: 2.2rem; line-height: 1; }

.step-lines {
  display: flex;
  gap: 4px;
  flex-direction: column;
  width: 60%;
}
.step-line {
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.07);
}
.sl1 { width: 100%; }
.sl2 { width: 75%; }
.sl3 { width: 55%; }

.mode-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}
.mode-pill {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--slate-500);
}
.mode-pill-active {
  background: rgba(251,191,36,0.1);
  border-color: rgba(251,191,36,0.25);
  color: var(--amber-400);
}

.download-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}
.dl-tag {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--slate-500);
}
.dl-tag-active {
  background: rgba(251,191,36,0.1);
  border-color: rgba(251,191,36,0.25);
  color: var(--amber-400);
}

.step h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--slate-50);
}
.step p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--slate-400);
  line-height: 1.65;
}

.step-connector {
  font-size: 1.25rem;
  color: var(--amber-600);
  opacity: 0.4;
  padding: 0 4px;
  padding-top: 60px;
  flex-shrink: 0;
}

/* ── Fast vs Fantastic Compare ───────────────────────────── */
.fast-fantastic .section-header {
  margin-bottom: 8px;
}
.ff-slider-caption {
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  color: var(--slate-400);
  margin-bottom: 20px;
}
.ff-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto 28px;
}
.ff-compare-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.ff-compare-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ff-label-pill {
  position: absolute;
  bottom: 12px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(15,23,42,0.75);
  backdrop-filter: blur(6px);
  pointer-events: none;
}
.ff-label-fast {
  left: 12px;
  color: #fff;
}
.ff-label-fantastic {
  right: 12px;
  color: #D4A017;
}

/* ── Pricing ──────────────────────────────────────────────── */
.pricing .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px;
  border: 1px solid #D4A017;
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(212, 160, 23, 0.3);
}
.pricing-carousel {
  position: relative;
}
.pricing-arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(15, 23, 42, 0.85);
  color: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: opacity 0.2s ease, background 0.2s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.pricing-arrow:hover {
  background: rgba(15, 23, 42, 1);
  border-color: rgba(255,255,255,0.3);
}
.pricing-arrow.hidden {
  opacity: 0;
  pointer-events: none;
}
.pricing-arrow-left { left: 4px; }
.pricing-arrow-right { right: 4px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: start;
}

.pricing-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.12);
}

.pricing-card-featured {
  border-color: rgba(251,191,36,0.35);
  background: rgba(251,191,36,0.04);
}
.pricing-card-featured:hover {
  border-color: rgba(251,191,36,0.5);
}

.plan-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-950);
  background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
  padding: 4px 14px;
  border-radius: 0 0 8px 8px;
  white-space: nowrap;
  z-index: 5;
}

.plan-name {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-bottom: 8px;
}

.plan-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--slate-50);
  margin-bottom: 20px;
  line-height: 1.1;
}
.plan-price span {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--slate-500);
}
.plan-price-muted { color: var(--slate-400); font-size: 1.5rem; }

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.plan-features li {
  display: flex;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--slate-400);
  line-height: 1.4;
  align-items: flex-start;
}
.check {
  color: var(--amber-400);
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.4;
}
.check-no {
  color: #ef4444;
  opacity: 0.7;
}

.plan-btn {
  display: block;
  text-align: center;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--slate-950);
  background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
  border-radius: 10px;
  text-decoration: none;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  box-shadow: 0 2px 12px rgba(251,191,36,0.2);
}
.plan-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(251,191,36,0.3);
}

.plan-btn-ghost {
  color: var(--slate-300);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: none;
}
.plan-btn-ghost:hover {
  background: rgba(255,255,255,0.09);
  color: var(--slate-50);
  border-color: rgba(251,191,36,0.2);
}

.pricing-footnote {
  text-align: center;
  margin-top: 28px;
  font-size: 0.8125rem;
  color: var(--slate-600);
  line-height: 1.6;
}
.pricing-footnote a {
  color: var(--amber-500);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--dur) ease;
}
.pricing-footnote a:hover { color: var(--amber-400); }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-inner {
  max-width: 720px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.06); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 4px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate-100);
  cursor: pointer;
  list-style: none;
  transition: color var(--dur) ease;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--amber-500);
  flex-shrink: 0;
  transition: transform var(--dur) ease;
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-q:hover { color: var(--slate-50); }

.faq-a {
  padding: 0 4px 20px;
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--slate-400);
  line-height: 1.7;
}

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  position: relative;
  z-index: 2;
  padding: 60px 0;
  text-align: center;
}
.cta-banner-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.cta-banner p {
  color: var(--slate-400);
  font-size: 1.0625rem;
  font-weight: 300;
  margin-bottom: 32px;
}
.cta-small-print {
  margin-top: 16px;
  margin-bottom: 0 !important;
  font-size: 0.8rem !important;
  color: var(--slate-600) !important;
}

/* ── Fast vs Fantastic ────────────────────────────────────── */
.fast-fantastic {
  background: linear-gradient(180deg, rgba(15,23,42,0.5) 0%, transparent 100%);
}

.ff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}

.ff-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.ff-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.1);
}
.ff-card-featured {
  border-color: rgba(251,191,36,0.3);
  background: rgba(251,191,36,0.04);
}
.ff-card-featured:hover {
  border-color: rgba(251,191,36,0.5);
}

.ff-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  width: fit-content;
}
.ff-badge-fast {
  background: rgba(255,255,255,0.06);
  color: var(--slate-300);
  border: 1px solid rgba(255,255,255,0.1);
}
.ff-badge-fantastic {
  background: rgba(251,191,36,0.1);
  color: var(--amber-400);
  border: 1px solid rgba(251,191,36,0.25);
}

/* Image placeholder for FF cards */
.ff-image-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.2);
}
.ff-image-fast { background: rgba(255,255,255,0.03); }
.ff-image-fantastic { background: radial-gradient(ellipse at 60% 30%, rgba(251,191,36,0.1) 0%, rgba(15,23,42,0.3) 70%); }

.ff-scene-blobs { position: absolute; inset: 0; pointer-events: none; }
.ff-blob { position: absolute; border-radius: 50%; filter: blur(28px); }
.fb1 { width: 100px; height: 100px; background: rgba(100,116,139,0.1); top: -20px; right: -20px; }
.fb2 { width: 70px; height: 70px; background: rgba(100,116,139,0.06); bottom: 0; left: 0; }
.ffb1 { width: 120px; height: 120px; background: rgba(251,191,36,0.12); top: -30px; right: -30px; }
.ffb2 { width: 80px; height: 80px; background: rgba(251,191,36,0.08); bottom: -10px; left: -10px; }
.ffb3 { width: 60px; height: 60px; background: rgba(100,200,255,0.04); top: 40%; left: 25%; }

.ff-product {
  position: relative;
  width: 60px;
  height: 90px;
  background: rgba(255,255,255,0.07);
  border-radius: 30% 70% 45% 55%;
  border: 1px solid rgba(255,255,255,0.08);
  z-index: 1;
}
.ff-product-glow {
  background: linear-gradient(135deg, rgba(251,191,36,0.25), rgba(251,191,36,0.1));
  box-shadow: 0 0 28px rgba(251,191,36,0.2);
  border-color: rgba(251,191,36,0.2);
}

.ff-label {
  position: absolute;
  bottom: 10px;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--slate-600);
  background: rgba(0,0,0,0.4);
  padding: 3px 10px;
  border-radius: 100px;
  z-index: 1;
}
.ff-label-gold { color: rgba(251,191,36,0.6); }

.ff-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--slate-50);
}
.ff-card p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--slate-400);
  line-height: 1.65;
}

.ff-credit-tag {
  display: inline-flex;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--slate-500);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 6px 14px;
  margin-top: auto;
  width: fit-content;
}
.ff-credit-tag-gold {
  color: var(--amber-500);
  background: rgba(251,191,36,0.06);
  border-color: rgba(251,191,36,0.15);
}

.ff-footnote {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--slate-600);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Founder Story ────────────────────────────────────────── */
.founder {
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.founder-inner {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  max-width: 760px;
  margin: 0 auto;
}

.founder-quote-mark {
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 0.7;
  color: var(--amber-500);
  opacity: 0.3;
  flex-shrink: 0;
  user-select: none;
  padding-top: 12px;
}

.founder-content { flex: 1; }

.founder-content h2 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.founder-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.founder-copy p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--slate-400);
  line-height: 1.75;
}

.founder-sign {
  color: var(--amber-500) !important;
  font-size: 1.0625rem !important;
  font-weight: 400 !important;
  margin-top: 8px;
}

/* ── Who It's For ─────────────────────────────────────────── */
.who-for {
  padding-top: 40px;
}
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.who-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px;
  padding: 20px 18px;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.who-card:hover {
  transform: translateY(-3px);
  border-color: rgba(251,191,36,0.18);
  background: rgba(255,255,255,0.035);
}

.who-icon {
  font-size: 1.5rem;
  margin-bottom: 10px;
  line-height: 1;
}
.who-card h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--slate-100);
  margin-bottom: 6px;
  line-height: 1.3;
}
.who-card p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--slate-500);
  line-height: 1.55;
}

/* Responsive for new sections */
@media (max-width: 900px) {
  .ff-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .founder-inner { flex-direction: column; gap: 16px; }
  .founder-quote-mark { font-size: 5rem; padding-top: 0; }
}

@media (max-width: 600px) {
  .who-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .who-card { padding: 16px 14px; }
  .founder-content h2 { font-size: 1.5rem; }
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 48px 0;
  text-align: center;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--slate-300);
}
.footer-tagline {
  font-size: 0.8125rem;
  color: var(--slate-600);
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8125rem;
}
.footer-links a {
  color: var(--slate-500);
  transition: color var(--dur) ease;
  padding: 2px 4px;
}
.footer-links a:hover { color: var(--amber-400); }
.footer-sep {
  color: var(--slate-700);
  padding: 0 2px;
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--slate-700);
  margin-top: 4px;
}

/* ── Scroll Reveal ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Add stagger via nth-child within grids */
.features-grid .reveal:nth-child(2)  { transition-delay: 0.07s; }
.features-grid .reveal:nth-child(3)  { transition-delay: 0.14s; }
.features-grid .reveal:nth-child(4)  { transition-delay: 0.21s; }
.features-grid .reveal:nth-child(5)  { transition-delay: 0.28s; }
.features-grid .reveal:nth-child(6)  { transition-delay: 0.35s; }

.pricing-grid .reveal:nth-child(2) { transition-delay: 0.07s; }
.pricing-grid .reveal:nth-child(3) { transition-delay: 0.14s; }
.pricing-grid .reveal:nth-child(4) { transition-delay: 0.21s; }

/* ── Responsive ───────────────────────────────────────────── */

/* Tablet */
@media (max-width: 900px) {
  :root { --section-pad: 72px; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-copy { align-items: center; text-align: center; }
  .hero-sub  { text-align: center; max-width: 540px; margin: 0 auto; }
  .hero-h1   { font-size: clamp(2.2rem, 6vw, 3rem); }

  .before-after-showcase { justify-content: center; }
  .ba-phone-frame { width: 120px; }
  .ba-arrow-svg { width: 60px; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }

  .steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .step { width: 100%; max-width: 440px; }
  .step-content { flex-direction: row; text-align: left; align-items: flex-start; gap: 20px; }
  .step-visual  { flex-shrink: 0; width: 120px; aspect-ratio: 1; margin-bottom: 0; }
  .step-connector { font-size: 1.5rem; padding: 12px 0; transform: rotate(90deg); }

  .pricing-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    gap: 16px;
    padding: 0 10vw 8px;
  }
  .pricing-grid::-webkit-scrollbar { display: none; }
  .pricing-grid .pricing-card {
    flex: 0 0 80vw;
    min-width: 0;
    scroll-snap-align: center;
  }
  .pricing-arrow { display: flex; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* Mobile */
@media (max-width: 600px) {
  :root { --section-pad: 56px; --container-px: 16px; }

  .hero { padding-top: 112px; padding-bottom: 48px; }
  .hero-inner { gap: 20px; }
  .hero-h1 { font-size: 2.1rem; }

  .before-after-showcase {
    flex-direction: column;
    gap: 0;
  }
  .ba-phone { order: 0; }
  .ba-phone-frame { width: 100px; }
  .ba-connector {
    flex-direction: row;
    padding: 8px 0;
  }
  .ba-arrow-svg {
    width: 50px;
    transform: rotate(90deg);
  }
  .ba-scene-img { aspect-ratio: 4 / 3; }

  .features-grid { grid-template-columns: 1fr; }
  .ff-compare { grid-template-columns: 1fr; }

  .pricing-card-featured { order: 0; }

  .section-header h2 { font-size: 1.8rem; }

  .hero-actions { flex-direction: column; width: 100%; align-items: stretch; }
  .btn-primary, .btn-ghost { text-align: center; justify-content: center; }

  .step-content { flex-direction: column; align-items: center; text-align: center; }
  .step-visual  { width: 100%; max-width: 200px; }
}
