/* ═══════════════════════════════════════════════════════════════════════════
   TOPICK LANDING PAGE — MODERN STYLESHEET
   No Webflow. No jQuery. Pure CSS.
   Depends on: css/colors.css (loaded first)
   ═══════════════════════════════════════════════════════════════════════════ */

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: var(--font-primary); font-size: 16px; line-height: 1.6;
  color: var(--color-ink); background: var(--color-card-bottom); overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }

/* ── NAVBAR ────────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem 0;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  background: rgba(10, 40, 38, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hide navbar on scroll-down (mobile) */
.navbar-hidden {
  transform: translateY(-100%);
}

.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { height: 32px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 1.5rem; }

.nav-link { color: var(--color-slate-300); font-size: 0.9rem; font-weight: 500; transition: color 0.2s ease; }
.nav-link:hover { color: var(--color-white); }

.nav-cta {
  padding: 0.5rem 1.25rem; border-radius: 99px; background: var(--color-accent);
  color: var(--color-white); font-size: 0.85rem; font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}
.nav-cta:hover { background: var(--color-accent-bright); transform: translateY(-1px); }

/* ── NAV HAMBURGER ───────────────────────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── BUTTONS ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.85rem 1.75rem;
  border-radius: 99px; font-family: var(--font-primary); font-size: 0.95rem; font-weight: 600;
  transition: all 0.25s ease; cursor: pointer; border: none; white-space: nowrap;
}

.btn-primary { background: var(--color-accent); color: var(--color-white); }
.btn-primary:hover { background: var(--color-accent-bright); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(40, 181, 171, 0.3); }

.btn-secondary {
  background: rgba(255, 255, 255, 0.08); color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.12); backdrop-filter: blur(10px);
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.14); transform: translateY(-2px); }

.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn svg { flex-shrink: 0; transition: transform 0.25s ease; }
.btn:hover svg { transform: translateX(3px); }

/* ── KEYFRAMES ─────────────────────────────────────────────────────────────── */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUpLarge { from { opacity: 0; transform: translateY(48px); } to { opacity: 1; transform: translateY(0); } }
@keyframes gridPulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }
@keyframes glowFloat { 0%, 100% { transform: translate(0, 0) scale(1); } 33% { transform: translate(40px, -50px) scale(1.15); } 66% { transform: translate(-30px, 30px) scale(0.9); } }
@keyframes glowFloatSlow { 0%, 100% { transform: translate(0, 0) scale(1); } 33% { transform: translate(-40px, 40px) scale(1.1); } 66% { transform: translate(35px, -35px) scale(0.92); } }
@keyframes dotPulse { 0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(var(--glow-rgb), 0.4); } 50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(var(--glow-rgb), 0); } }
@keyframes chipFadeIn { from { opacity: 0; transform: translateY(12px) scale(0.9); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes gradientShift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes floatUpDown { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }
@keyframes floatChipSlow { 0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.35; } 33% { transform: translate(20px, -25px) rotate(2deg); opacity: 0.55; } 66% { transform: translate(-15px, 15px) rotate(-1deg); opacity: 0.4; } }
@keyframes floatChipSlowRev { 0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.35; } 33% { transform: translate(-18px, 22px) rotate(-2deg); opacity: 0.55; } 66% { transform: translate(22px, -18px) rotate(1deg); opacity: 0.4; } }
@keyframes scrollIndicatorBounce { 0%, 100% { transform: translate(-50%, 0); opacity: 0.5; } 50% { transform: translate(-50%, 10px); opacity: 0.9; } }
@keyframes scrollIndicatorBounceMobile { 0%, 100% { transform: translateY(0); opacity: 0.5; } 50% { transform: translateY(6px); opacity: 0.9; } }
@keyframes badgeBorderGlow { 0%, 100% { border-color: rgba(var(--glow-rgb), 0.2); } 50% { border-color: rgba(var(--glow-rgb), 0.45); } }
@keyframes heroBlurPulse { 0%, 100% { filter: blur(120px); } 50% { filter: blur(150px); } }

/* ── NEW SITE-WIDE ANIMATIONS ── */
@keyframes subtleFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes emojiBounce { 0%, 100% { transform: scale(1); } 40% { transform: scale(1.2); } 60% { transform: scale(0.95); } }
@keyframes borderGlowPulse { 0%, 100% { border-color: rgba(var(--glow-rgb), 0.12); } 50% { border-color: rgba(var(--glow-rgb), 0.35); } }
@keyframes cardFloatIn { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes numberPop { 0% { opacity: 0; transform: scale(0.5); } 60% { transform: scale(1.1); } 100% { opacity: 1; transform: scale(1); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes iconSpin { 0% { transform: rotate(0deg) scale(1); } 30% { transform: rotate(10deg) scale(1.1); } 100% { transform: rotate(0deg) scale(1); } }
@keyframes glowPulseCard { 0%, 100% { box-shadow: 0 0 0 0 rgba(var(--glow-rgb), 0); } 50% { box-shadow: 0 0 30px rgba(var(--glow-rgb), 0.15); } }
@keyframes underlineExpand { from { width: 0; } to { width: 100%; } }
@keyframes breathe { 0%, 100% { opacity: 0.7; transform: scale(1); } 50% { opacity: 1; transform: scale(1.03); } }
@keyframes linkSlide { from { width: 0; } to { width: 100%; } }

/* ── Walkthrough animations ── */
@keyframes barFill { from { width: 0%; } }
@keyframes barGrow { from { height: 0%; } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }
@keyframes walkthroughSlideIn { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes walkthroughSlideOut { from { opacity: 1; transform: translateX(0); } to { opacity: 0; transform: translateX(-40px); } }
@keyframes walkthroughSlideInRev { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes walkthroughSlideOutRev { from { opacity: 1; transform: translateX(0); } to { opacity: 0; transform: translateX(40px); } }
@keyframes walkthroughFadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes progressFill { from { width: 0%; } }
@keyframes phoneFloatSubtle { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes fillTo75 { from { width: 0%; } to { width: 75%; } }
@keyframes fillTo60 { from { width: 0%; } to { width: 60%; } }
@keyframes fillTo90 { from { width: 0%; } to { width: 90%; } }
@keyframes topicFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }

/* ── HERO ──────────────────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 110svh; min-height: 110vh; display: flex;
  align-items: center; justify-content: center;
  padding: 160px 2rem 100px; overflow: hidden; background: var(--color-card-bottom);
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(var(--glow-rgb), 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--glow-rgb), 0.05) 1px, transparent 1px);
  background-size: 60px 60px; animation: gridPulse 8s ease-in-out infinite;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, black 30%, transparent 70%);
  will-change: transform; transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-glow { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-glow--1 {
  width: 700px; height: 700px; background: rgba(var(--glow-rgb), 0.12);
  top: -15%; right: -10%; filter: blur(130px);
  animation: glowFloat 14s ease-in-out infinite, heroBlurPulse 8s ease-in-out infinite;
}
.hero-glow--2 {
  width: 550px; height: 550px; background: rgba(var(--glow-rgb), 0.08);
  bottom: -15%; left: -8%; filter: blur(120px);
  animation: glowFloatSlow 16s ease-in-out infinite, heroBlurPulse 10s ease-in-out -3s infinite;
}
.hero-glow--3 {
  width: 350px; height: 350px; background: rgba(40, 181, 171, 0.06);
  top: 50%; left: 60%; filter: blur(100px);
  animation: glowFloat 18s ease-in-out -9s infinite;
}

.hero-floating-chips {
  position: absolute; inset: 0; pointer-events: none; z-index: 2; overflow: hidden;
}
.hero-floating-chip {
  position: absolute; padding: 6px 16px; border-radius: 99px;
  font-size: 0.8rem; font-weight: 500; color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  white-space: nowrap; will-change: transform;
}
.hero-floating-chip:nth-child(1) { top: 15%; left: 8%; animation: floatChipSlow 14s ease-in-out infinite; }
.hero-floating-chip:nth-child(2) { top: 25%; right: 10%; animation: floatChipSlowRev 16s ease-in-out -3s infinite; }
.hero-floating-chip:nth-child(3) { bottom: 30%; left: 6%; animation: floatChipSlow 15s ease-in-out -6s infinite; }
.hero-floating-chip:nth-child(4) { top: 55%; right: 7%; animation: floatChipSlowRev 17s ease-in-out -9s infinite; }
.hero-floating-chip:nth-child(5) { top: 75%; left: 12%; animation: floatChipSlow 13s ease-in-out -4s infinite; }
.hero-floating-chip:nth-child(6) { bottom: 20%; right: 15%; animation: floatChipSlowRev 14s ease-in-out -7s infinite; }

.hero-content {
  position: relative; z-index: 10; max-width: 800px; text-align: center;
  display: flex; flex-direction: column; align-items: center;
  will-change: transform; transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-badge-wrapper {
  position: relative; z-index: 11;
  display: flex; flex-direction: column; align-items: center;
  margin-bottom: 32px;
  gap: 16px;
}

.hero-discover {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  max-width: 420px;
  text-align: center;
  line-height: 1.5;
  animation: fadeInUp 0.7s 0.08s ease both;
}
.hero-discover em { color: var(--color-secondary); font-style: italic; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 24px; border-radius: 99px;
  background: rgba(var(--glow-rgb), 0.1); border: 1px solid rgba(var(--glow-rgb), 0.2);
  color: var(--color-secondary); font-size: 0.88rem; font-weight: 500;
  margin-bottom: 18px; letter-spacing: 0.01em;
  animation: fadeInUp 0.7s ease forwards, badgeBorderGlow 3s ease-in-out 0.7s infinite;
}

.hero-badge-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--color-secondary); animation: dotPulse 2s ease-in-out infinite; }
.hero-badge em { font-style: italic; font-weight: 600; color: var(--color-white); }

.hero-heading {
  color: var(--color-white); font-family: var(--font-primary);
  font-size: clamp(3rem, 7vw, 5.25rem); font-weight: 700; line-height: 1.08;
  margin-bottom: 32px; letter-spacing: -0.03em;
  animation: fadeInUp 0.7s 0.15s ease both;
}

.hero-gradient-text {
  background: linear-gradient(135deg, var(--color-accent-bright), var(--color-secondary), var(--color-accent));
  background-size: 200% 200%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: gradientShift 5s ease-in-out infinite;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.2rem); color: rgba(255, 255, 255, 0.6);
  line-height: 1.75; max-width: 580px; margin-bottom: 44px;
  animation: fadeInUp 0.7s 0.3s ease both;
}

.hero-subtitle em { color: var(--color-secondary); font-style: italic; }

.hero-actions {
  display: flex; gap: 1.25rem; flex-wrap: wrap; justify-content: center;
  animation: fadeInUp 0.7s 0.45s ease both;
}

/* ── SCROLL-DOWN INDICATOR ───────────────────────────────────────────────── */
.hero-scroll-indicator {
  position: absolute; bottom: 32px; left: 0; right: 0; margin: 0 auto; z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  width: fit-content;
  cursor: pointer; background: none; border: none; padding: 8px;
  animation: fadeInUp 0.7s 0.7s ease both;
  -webkit-tap-highlight-color: transparent;
}
.hero-scroll-indicator span {
  display: block; color: rgba(255, 255, 255, 0.35);
  font-size: 0.7rem; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; transition: color 0.3s ease;
}
.hero-scroll-indicator:hover span { color: rgba(255, 255, 255, 0.6); }
.hero-scroll-chevron {
  width: 24px; height: 24px; color: rgba(255, 255, 255, 0.3);
  animation: scrollIndicatorBounce 2s ease-in-out infinite;
  transition: color 0.3s ease;
}
.hero-scroll-indicator:hover .hero-scroll-chevron { color: rgba(255, 255, 255, 0.55); }

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .hero-gradient-text { animation: none; }
  .hero-scroll-chevron { animation: none; }
  .hero-badge { animation: fadeInUp 0.7s ease forwards; }
  .hero-floating-chip { animation: none !important; opacity: 0.25 !important; }
}


/* ── LIGHT SECTION OVERRIDES ────────────────────────────────────────────────── */
body .section-light { background: var(--color-bone); }
body .section-light.section-paper { background: var(--color-paper); }

/* Override dark-mode decorations on light sections */
.section-light.stats-section::before,
.section-light.topic-storm-section::before,
.section-light.difference-section::before { display: none; }

/* Text overrides for light sections */
.section-light .section-heading { color: var(--color-ink); }
.section-light .section-label { color: var(--color-accent-ink); }
.section-light .stat-number { color: var(--color-ink); }
.section-light .stat-label { color: var(--color-ink-2); }
.section-light .stat-divider { background: var(--color-hair); }
.section-light .comparison-title { color: var(--color-ink); }
.section-light .comparison-list li { color: var(--color-ink-2); }
.section-light .topic-chip:hover { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 0 16px rgba(var(--glow-rgb), 0.12); }

/* Social proof on light */
.section-light.social-proof-section { background: var(--color-bone); min-height: 100vh; min-height: 100dvh; display: flex; align-items: center; justify-content: center; padding: 2rem 0; }
.section-light.social-proof-section::before,
.section-light.social-proof-section::after { display: none; }
.section-light .social-stat-number { color: var(--color-ink); }
.section-light .social-stat-label { color: var(--color-ink-2); }
.section-light .social-stat-divider { background: var(--color-hair); }
.section-light .social-proof-note { color: var(--color-ink-2); }

/* Comparison cards on light — keep their tinted bg but adjust */
.section-light .comparison-card--us { background: rgba(var(--glow-rgb), 0.08); border-color: rgba(var(--glow-rgb), 0.18); }
.section-light .comparison-card--them { background: rgba(207, 145, 145, 0.08); border-color: rgba(207, 145, 145, 0.18); }


/* ── LIGHT SECTION OVERRIDES: SUB-PAGES ─────────────────────────────────────── */

/* Sleek page content (privacy, terms) on light */
.section-light.sleek-page-content { background: var(--color-bone); }
.section-light .sleek-content-h3 { color: var(--color-ink); }
.section-light .sleek-content-wrapper p { color: var(--color-ink-2); }

/* Manifesto default sections on light */
.section-light.manifesto-section--default { background: var(--color-bone); }
.section-light .manifesto-section-heading { color: var(--color-ink); }
.section-light .manifesto-card p { color: var(--color-ink-2); }
.section-light .manifesto-pullquote p { color: var(--color-ink-2); }
.section-light .manifesto-section--default .manifesto-card {
  background: var(--color-paper);
  border-color: var(--color-hair);
}

/* ── STATS BAR ─────────────────────────────────────────────────────────────── */
.stats-section { background: var(--color-card-mid); padding: 3rem 0; position: relative; overflow: hidden; }
.stats-section::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 500px; height: 500px; background: radial-gradient(circle, rgba(var(--glow-rgb), 0.04) 0%, transparent 70%);
  pointer-events: none; animation: subtleFloat 8s ease-in-out infinite;
}
.stats-grid { display: flex; align-items: center; justify-content: center; gap: 4rem; flex-wrap: wrap; position: relative; z-index: 1; }
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-primary); font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700; color: var(--color-white); line-height: 1.1; margin-bottom: 0.25rem;
}
.stat-item:nth-child(1) .stat-number { animation: numberPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both; }
.stat-item:nth-child(3) .stat-number { animation: numberPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.25s both; }
.stat-item:nth-child(5) .stat-number { animation: numberPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both; }
.stat-plus { color: var(--color-accent); font-weight: 600; }
.stat-label { color: rgba(255, 255, 255, 0.5); font-size: 0.9rem; font-weight: 500; }
.stat-divider { width: 1px; height: 48px; background: rgba(255, 255, 255, 0.1); animation: subtleFloat 4s ease-in-out infinite; }
.stat-divider:nth-child(2) { animation-delay: 0.5s; }
.stat-divider:nth-child(4) { animation-delay: 1s; }

/* ── SECTION HEADINGS ──────────────────────────────────────────────────────── */
.section-label { display: block; color: var(--color-secondary); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; position: relative; }
.section-label::after { content: ''; display: block; width: 40px; height: 2px; background: var(--color-accent); margin: 10px auto 0; border-radius: 2px; transition: width 0.3s ease; }
.section-label:hover::after,
.reveal.visible .section-label::after { width: 60px; }
.section-heading { font-family: var(--font-primary); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; line-height: 1.3; margin-bottom: 1rem; letter-spacing: -0.01em; }
.text-center { text-align: center; }
.text-white { color: var(--color-white); }
.text-ink { color: var(--color-ink); }

/* ── TOPIC STORM ───────────────────────────────────────────────────────────── */
.topic-storm-section { padding: 140px 0; background: var(--color-card-bottom); overflow: hidden; position: relative; }
.topic-storm { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; max-width: 900px; margin: 56px auto 0; }
.topic-chip {
  padding: 10px 24px; border-radius: 99px; font-size: 0.95rem; font-weight: 500; white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  animation: chipFadeIn 0.4s ease both, topicFloat 3s ease-in-out 1.5s infinite; cursor: pointer;
  border: 2px solid transparent; font-family: inherit; outline: none;
  -webkit-tap-highlight-color: transparent;
}
.topic-chip:focus { outline: none; }
.topic-chip:focus-visible { outline: none; }
.topic-chip:hover { transform: translateY(-2px) scale(1.05); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), 0 0 20px rgba(var(--glow-rgb), 0.08); }
.topic-chip.selected {
  background: var(--color-accent) !important;
  color: var(--color-white) !important;
  border-color: var(--color-accent-bright);
  box-shadow: 0 0 16px rgba(40, 181, 171, 0.4), 0 4px 16px rgba(40, 181, 171, 0.3);
  transform: translateY(-2px) scale(1.05);
  animation: chipFadeIn 0.4s ease both, breathe 3s ease-in-out 0.4s infinite, topicFloat 4s ease-in-out 0s infinite;
}


/* Topic chip color variants — using design tokens from colors.css */
.chip-cyan-1 { background: rgba(166,212,207,0.12); color: var(--topic-cyan-1); }
.chip-cyan-2 { background: rgba(184,212,206,0.12); color: var(--topic-cyan-2); }
.chip-cyan-3 { background: rgba(193,216,210,0.12); color: var(--topic-cyan-3); }
.chip-cyan-4 { background: rgba(173,210,204,0.12); color: var(--topic-cyan-4); }
.chip-cyan-5 { background: rgba(158,200,192,0.12); color: var(--topic-cyan-5); }
.chip-cyan-6 { background: rgba(180,207,202,0.12); color: var(--topic-cyan-6); }
.chip-cyan-7 { background: rgba(200,219,212,0.12); color: var(--topic-cyan-7); }
.chip-cyan-8 { background: rgba(187,208,203,0.12); color: var(--topic-cyan-8); }

/* Staggered fade-in + float offsets for topic chips */
.topic-chip:nth-child(1)  { animation: chipFadeIn 0.4s ease 0s both, topicFloat 4s ease-in-out 0s infinite; }
.topic-chip:nth-child(2)  { animation: chipFadeIn 0.4s ease 0.05s both, topicFloat 4s ease-in-out -0.2s infinite; }
.topic-chip:nth-child(3)  { animation: chipFadeIn 0.4s ease 0.1s both, topicFloat 4s ease-in-out -0.4s infinite; }
.topic-chip:nth-child(4)  { animation: chipFadeIn 0.4s ease 0.15s both, topicFloat 4s ease-in-out -0.6s infinite; }
.topic-chip:nth-child(5)  { animation: chipFadeIn 0.4s ease 0.2s both, topicFloat 4s ease-in-out -0.8s infinite; }
.topic-chip:nth-child(6)  { animation: chipFadeIn 0.4s ease 0.25s both, topicFloat 4s ease-in-out -1.0s infinite; }
.topic-chip:nth-child(7)  { animation: chipFadeIn 0.4s ease 0.3s both, topicFloat 4s ease-in-out -1.2s infinite; }
.topic-chip:nth-child(8)  { animation: chipFadeIn 0.4s ease 0.35s both, topicFloat 4s ease-in-out -1.4s infinite; }
.topic-chip:nth-child(9)  { animation: chipFadeIn 0.4s ease 0.4s both, topicFloat 4s ease-in-out -1.6s infinite; }
.topic-chip:nth-child(10) { animation: chipFadeIn 0.4s ease 0.45s both, topicFloat 4s ease-in-out -1.8s infinite; }
.topic-chip:nth-child(11) { animation: chipFadeIn 0.4s ease 0.5s both, topicFloat 4s ease-in-out -2.0s infinite; }
.topic-chip:nth-child(12) { animation: chipFadeIn 0.4s ease 0.55s both, topicFloat 4s ease-in-out -2.2s infinite; }
.topic-chip:nth-child(13) { animation: chipFadeIn 0.4s ease 0.6s both, topicFloat 4s ease-in-out -2.4s infinite; }
.topic-chip:nth-child(14) { animation: chipFadeIn 0.4s ease 0.65s both, topicFloat 4s ease-in-out -2.6s infinite; }
.topic-chip:nth-child(15) { animation: chipFadeIn 0.4s ease 0.7s both, topicFloat 4s ease-in-out -2.8s infinite; }
.topic-chip:nth-child(16) { animation: chipFadeIn 0.4s ease 0.75s both, topicFloat 4s ease-in-out -3.0s infinite; }
.topic-chip:nth-child(17) { animation: chipFadeIn 0.4s ease 0.8s both, topicFloat 4s ease-in-out -3.2s infinite; }
.topic-chip:nth-child(18) { animation: chipFadeIn 0.4s ease 0.85s both, topicFloat 4s ease-in-out -3.4s infinite; }
.topic-chip:nth-child(19) { animation: chipFadeIn 0.4s ease 0.9s both, topicFloat 4s ease-in-out -3.6s infinite; }
.topic-chip:nth-child(20) { animation: chipFadeIn 0.4s ease 0.95s both, topicFloat 4s ease-in-out -3.8s infinite; }

/* ── HOW IT WORKS ──────────────────────────────────────────────────────────── */
.how-it-works { padding: 100px 0; background: var(--color-card-mid); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 56px; }
.step-card {
  background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 20px;
  padding: 2.5rem 2rem; text-align: center; position: relative; overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  opacity: 0; animation: cardFloatIn 0.7s ease forwards;
}
.step-card:nth-child(1) { animation-delay: 0.1s; }
.step-card:nth-child(2) { animation-delay: 0.25s; }
.step-card:nth-child(3) { animation-delay: 0.4s; }
.step-card:hover { transform: translateY(-6px); border-color: rgba(var(--glow-rgb), 0.25); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(var(--glow-rgb), 0.08); }
.step-card:hover .step-icon { animation: iconSpin 0.6s ease; }
.step-number { font-size: 4rem; font-weight: 700; color: rgba(var(--glow-rgb), 0.15); line-height: 1; margin-bottom: 16px; }
.step-title { color: var(--color-white); font-size: 1.25rem; font-weight: 600; margin-bottom: 12px; }
.step-description { color: rgba(255, 255, 255, 0.55); font-size: 0.95rem; line-height: 1.65; }
.step-icon { width: 48px; height: 48px; margin: 0 auto 20px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.step-icon--teal { background: rgba(var(--glow-rgb), 0.15); color: var(--color-secondary); }
.step-icon--accent { background: rgba(40, 181, 171, 0.15); color: var(--color-accent); }
.step-icon--coral { background: rgba(207, 159, 142, 0.15); color: #CF9F8E; }

/* ── APP WALKTHROUGH ────────────────────────────────────────────────────────── */
.app-walkthrough { padding: 120px 0; background: var(--color-card-bottom); overflow: hidden; }

/* Step dots */
.walkthrough-dots {
  display: flex; align-items: center; justify-content: center; gap: 2rem;
  margin: 48px 0 40px;
}

.walkthrough-dot {
  background: none; border: none; cursor: pointer; padding: 8px 12px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--font-primary); transition: opacity 0.3s ease;
  opacity: 0.45; position: relative;
}
.walkthrough-dot::before {
  content: ''; width: 10px; height: 10px; border-radius: 50%;
  background: var(--color-accent); transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.walkthrough-dot.active { opacity: 1; }
.walkthrough-dot.active::before {
  transform: scale(1.4);
  box-shadow: 0 0 12px rgba(40, 181, 171, 0.5);
}
.walkthrough-dot-label {
  font-size: 0.75rem; font-weight: 600; color: var(--color-white);
  text-transform: uppercase; letter-spacing: 0.05em; white-space: nowrap;
}

/* Slides container */
.walkthrough-slides {
  position: relative; min-height: 520px;
}

/* Individual slide */
.walkthrough-slide {
  display: none;
  align-items: center; gap: 4rem;
  max-width: 960px; margin: 0 auto;
  animation: walkthroughFadeIn 0.5s ease;
}
.walkthrough-slide.active { display: flex; }

/* Phone wrapper */
.walkthrough-phone-wrap {
  flex-shrink: 0;
  animation: phoneFloatSubtle 5s ease-in-out infinite;
}

/* Phone frame */
.walkthrough-phone {
  position: relative; width: 280px;
  background: var(--color-card-bottom);
  border-radius: 32px; border: 2px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 0 40px rgba(40, 181, 171, 0.08);
  overflow: hidden; transition: box-shadow 0.5s ease;
}
.walkthrough-slide.active .walkthrough-phone {
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 0 60px rgba(40, 181, 171, 0.2);
}

/* Phone notch */
.walkthrough-phone-notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 100px; height: 24px; background: var(--color-card-bottom);
  border-radius: 0 0 16px 16px; z-index: 5;
}

/* Phone shine overlay */
.walkthrough-phone-shine {
  position: absolute; inset: 0; border-radius: 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, transparent 50%, rgba(255, 255, 255, 0.03) 100%);
  pointer-events: none; z-index: 6;
}

/* Phone screen */
.walkthrough-phone-screen {
  width: 100%; aspect-ratio: 9 / 16;
  padding: 32px 12px 12px;
  display: flex; flex-direction: column; overflow: hidden;
  background: linear-gradient(180deg, var(--color-card-top) 0%, var(--color-card-mid) 40%, var(--color-card-bottom) 100%);
}
.wt-screen--feed,
.wt-screen--progress { overflow-y: auto; scrollbar-width: none; }
.wt-screen--feed::-webkit-scrollbar,
.wt-screen--progress::-webkit-scrollbar { display: none; }

/* ── Daily activity line chart ── */
.daily-chart {
  margin-top: 14px;
  padding: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
}
.daily-chart-header {
  display: flex; align-items: center; gap: 6px;
  color: var(--color-white); font-size: 0.68rem; font-weight: 600;
  margin-bottom: 10px;
}
.daily-chart-svg {
  width: 100%; height: 90px;
}
.daily-chart-labels {
  display: flex; justify-content: space-between;
  padding: 0 4px; margin-top: 6px;
  color: rgba(255,255,255,0.3); font-size: 0.52rem;
}

/* ═══ SCREEN 0: TOPIC PICKER ═══ */
.picker-header { text-align: center; margin-bottom: 16px; }
.picker-title { color: var(--color-white); font-size: 0.95rem; font-weight: 700; display: block; }
.picker-sub { color: rgba(255, 255, 255, 0.4); font-size: 0.68rem; margin-top: 2px; display: block; }

.picker-search {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px; color: rgba(255, 255, 255, 0.35); font-size: 0.75rem;
}

.picker-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px; flex: 1;
}

.picker-chip {
  display: flex; align-items: center; gap: 4px;
  padding: 10px 12px; border-radius: 12px;
  background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.55); font-size: 0.72rem; font-weight: 500;
  transition: all 0.3s ease;
}
.picker-chip.selected {
  background: rgba(40, 181, 171, 0.15);
  border-color: var(--color-accent);
  color: var(--color-accent-bright);
}
.walkthrough-slide.active .picker-chip:nth-child(1) { animation: walkthroughFadeIn 0.4s 0.1s ease both; }
.walkthrough-slide.active .picker-chip:nth-child(2) { animation: walkthroughFadeIn 0.4s 0.15s ease both; }
.walkthrough-slide.active .picker-chip:nth-child(3) { animation: walkthroughFadeIn 0.4s 0.2s ease both; }
.walkthrough-slide.active .picker-chip:nth-child(4) { animation: walkthroughFadeIn 0.4s 0.25s ease both; }
.walkthrough-slide.active .picker-chip:nth-child(5) { animation: walkthroughFadeIn 0.4s 0.3s ease both; }
.walkthrough-slide.active .picker-chip:nth-child(6) { animation: walkthroughFadeIn 0.4s 0.35s ease both; }
.walkthrough-slide.active .picker-chip:nth-child(7) { animation: walkthroughFadeIn 0.4s 0.4s ease both; }
.walkthrough-slide.active .picker-chip:nth-child(8) { animation: walkthroughFadeIn 0.4s 0.45s ease both; }

.picker-footer {
  margin-top: auto; padding-top: 12px; text-align: center;
  color: var(--color-accent); font-size: 0.7rem; font-weight: 600;
}

/* ═══ SCREEN 1: DAILY FEED ═══ */
/* Topic filter chips */
.feed-chips {
  display: flex; gap: 6px; margin-bottom: 12px;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; -ms-overflow-style: none;
}
.feed-chips::-webkit-scrollbar { display: none; }

.feed-chip {
  padding: 5px 14px; border-radius: 99px; white-space: nowrap;
  background: rgba(255, 255, 255, 0.06); color: rgba(255, 255, 255, 0.55);
  font-size: 0.65rem; font-weight: 500; cursor: default;
  transition: background 0.2s ease, color 0.2s ease;
}
.feed-chip.active {
  background: rgba(40, 181, 171, 0.2); color: var(--color-accent-bright);
  font-weight: 600;
}

/* Post cards */
.post-card {
  background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px; padding: 12px; margin-bottom: 8px;
  opacity: 0; animation: walkthroughFadeIn 0.5s ease forwards;
}
.walkthrough-slide.active .post-card:nth-child(2) { animation-delay: 0.1s; }
.walkthrough-slide.active .post-card:nth-child(3) { animation-delay: 0.25s; }
.walkthrough-slide.active .post-card:nth-child(4) { animation-delay: 0.4s; }

.post-header { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.post-avatar {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: rgba(40, 181, 171, 0.2); color: var(--color-accent-bright);
  font-size: 0.7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.post-meta { display: flex; flex-direction: column; gap: 1px; }
.post-username { color: var(--color-white); font-size: 0.68rem; font-weight: 600; }
.post-time { color: rgba(255, 255, 255, 0.35); font-size: 0.58rem; }

.post-topic-badge {
  display: inline-block; padding: 2px 10px; border-radius: 99px;
  background: rgba(40, 181, 171, 0.12); color: var(--color-accent-bright);
  font-size: 0.6rem; font-weight: 600; margin-bottom: 6px;
}
.post-body { color: var(--color-white); font-size: 0.78rem; font-weight: 600; margin-bottom: 4px; }
.post-text {
  color: rgba(255, 255, 255, 0.4); font-size: 0.65rem; line-height: 1.5; margin-bottom: 8px;
}

.post-image-placeholder {
  width: 100%; height: 80px; border-radius: 10px; margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex; align-items: center; justify-content: center;
}
.post-image-placeholder span { font-size: 1.5rem; opacity: 0.6; }

.post-image {
  width: 100%; border-radius: 10px; margin-bottom: 8px;
  aspect-ratio: 16 / 9; object-fit: cover;
  display: block;
}

.post-actions { display: flex; gap: 16px; }
.post-actions span { color: rgba(255, 255, 255, 0.35); font-size: 0.62rem; }

/* ═══ SCREEN 2: PROGRESS ═══ */

/* Summary stat cards — coloured tint backgrounds matching app */
.stats-summary-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px;
  margin-bottom: 14px;
}
.stat-card {
  border-radius: 12px; padding: 10px 6px; text-align: center;
  opacity: 0; animation: walkthroughFadeIn 0.5s ease forwards;
}
.stat-card:nth-child(1) { background: rgba(155, 184, 212, 0.1); border: 1px solid rgba(155, 184, 212, 0.2); }
.stat-card:nth-child(2) { background: rgba(157, 196, 163, 0.1); border: 1px solid rgba(157, 196, 163, 0.2); }
.stat-card:nth-child(3) { background: rgba(212, 190, 150, 0.1); border: 1px solid rgba(212, 190, 150, 0.2); }
.walkthrough-slide.active .stat-card:nth-child(1) { animation-delay: 0.05s; }
.walkthrough-slide.active .stat-card:nth-child(2) { animation-delay: 0.15s; }
.walkthrough-slide.active .stat-card:nth-child(3) { animation-delay: 0.25s; }

.stat-icon { display: block; font-size: 1rem; margin-bottom: 3px; }
.stat-card:nth-child(1) .stat-value { color: var(--color-stat-blue); }
.stat-card:nth-child(2) .stat-value { color: var(--color-stat-green); }
.stat-card:nth-child(3) .stat-value { color: var(--color-stat-orange); }
.stat-value { display: block; font-size: 0.85rem; font-weight: 800; }
.stat-label { display: block; color: rgba(255, 255, 255, 0.4); font-size: 0.52rem; margin-top: 1px; }

/* Interest breakdown section header */
.stats-section-label {
  color: var(--color-white); font-size: 0.72rem; font-weight: 700;
  margin-bottom: 10px;
}

/* Interest row — mirrors app's _StatsInterestRow */
.interest-row {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px; padding: 10px 12px; margin-bottom: 8px;
  opacity: 0; animation: walkthroughFadeIn 0.5s ease forwards;
}
.walkthrough-slide.active .interest-row:nth-child(3) { animation-delay: 0.1s; }
.walkthrough-slide.active .interest-row:nth-child(4) { animation-delay: 0.2s; }
.walkthrough-slide.active .interest-row:nth-child(5) { animation-delay: 0.3s; }

.interest-icon-box {
  width: 32px; height: 32px; border-radius: 9px; flex-shrink: 0;
  background: rgba(40, 181, 171, 0.15);
  display: flex; align-items: center; justify-content: center;
}
.interest-icon-box span { font-size: 1rem; }

.interest-info { flex: 1; min-width: 0; }
.interest-name { display: block; color: var(--color-white); font-size: 0.68rem; font-weight: 700; }
.interest-meta {
  display: block; color: rgba(255, 255, 255, 0.4); font-size: 0.55rem;
  margin-top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.interest-bar-col { flex-shrink: 0; text-align: right; }
.interest-hours { display: block; color: var(--color-white); font-size: 0.7rem; font-weight: 700; margin-bottom: 3px; }
.interest-mini-bar {
  width: 48px; height: 4px; background: rgba(255, 255, 255, 0.08);
  border-radius: 99px; overflow: hidden;
}
.interest-mini-fill {
  height: 100%; border-radius: 99px;
  background: var(--color-accent);
}
.walkthrough-slide.active .interest-mini-fill { animation: progressFill 1.2s ease forwards; }

.weekly-bar {
  width: 4px; background: var(--color-accent);
  border-radius: 99px;
}
.walkthrough-slide.active .weekly-bar { animation: barGrow 1s ease forwards; }

/* Activity streak card — mirrors app */
.streak-card {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px; padding: 10px 12px; margin-bottom: 10px;
  opacity: 0; animation: walkthroughFadeIn 0.5s 0.4s ease forwards;
}
.streak-icon-box {
  width: 32px; height: 32px; border-radius: 9px; flex-shrink: 0;
  background: rgba(212, 168, 148, 0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.streak-info { flex: 1; min-width: 0; }
.streak-title { display: block; color: var(--color-white); font-size: 0.68rem; font-weight: 700; }
.streak-sub { display: block; color: rgba(255, 255, 255, 0.4); font-size: 0.58rem; margin-top: 1px; }

/* ═══ WALKTHROUGH COPY ═══ */
.walkthrough-copy { flex: 1; min-width: 0; }
.walkthrough-step-num {
  font-family: var(--font-primary); font-size: 4rem; font-weight: 700;
  color: rgba(var(--glow-rgb), 0.12); line-height: 1; margin-bottom: 8px;
}
.walkthrough-title {
  color: var(--color-white); font-size: 1.5rem; font-weight: 700;
  line-height: 1.3; margin-bottom: 16px;
}
.walkthrough-title em { font-style: italic; color: var(--color-accent-bright); }
.walkthrough-desc {
  color: rgba(255, 255, 255, 0.55); font-size: 0.95rem; line-height: 1.65;
  margin-bottom: 24px;
}
.walkthrough-desc strong { color: var(--color-white); font-weight: 600; }

.walkthrough-features { display: flex; flex-direction: column; gap: 12px; }
.walkthrough-feature {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255, 255, 255, 0.65); font-size: 0.88rem; line-height: 1.4;
}
.walkthrough-feature-icon { font-size: 1.2rem; flex-shrink: 0; }

/* Navigation arrows */
.walkthrough-arrows {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  margin-top: 48px;
}
.walkthrough-arrow {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-white); cursor: pointer;
  transition: all 0.25s ease;
}
.walkthrough-arrow:hover:not(:disabled) {
  background: rgba(40, 181, 171, 0.15); border-color: var(--color-accent);
  transform: scale(1.05);
}
.walkthrough-arrow:disabled { opacity: 0.3; cursor: default; }

/* ═══ RESPONSIVE: Walkthrough ═══ */
@media screen and (max-width: 767px) {
  .walkthrough-dots { gap: 1rem; margin: 36px 0 32px; }
  .walkthrough-dot-label { font-size: 0.65rem; }
  
  .walkthrough-slide { flex-direction: column; gap: 2rem; text-align: center; }
  .walkthrough-slide.active { display: flex; }
  
  .walkthrough-phone { width: 240px; margin: 0 auto; }
  .walkthrough-phone-wrap { animation: none; }
  
  .walkthrough-copy { text-align: center; }
  .walkthrough-step-num { font-size: 2.5rem; }
  .walkthrough-title { font-size: 1.25rem; }
  .walkthrough-desc { font-size: 0.9rem; }
  .walkthrough-feature { justify-content: center; font-size: 0.82rem; }
  
  .walkthrough-arrows { margin-top: 32px; }
}


/* ── THE DIFFERENCE ─────────────────────────────────────────────────────────── */
.difference-section { padding: 100px 0; background: var(--color-card-mid); }
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 56px; }

.comparison-card { border-radius: 20px; padding: 2.5rem 2rem; border: 1px solid rgba(255, 255, 255, 0.06); transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; }
.comparison-card--them { background: rgba(207, 145, 145, 0.06); border-color: rgba(207, 145, 145, 0.15); animation: slideInRight 0.7s ease 0.2s both; }
.comparison-card--us { background: rgba(var(--glow-rgb), 0.06); border-color: rgba(var(--glow-rgb), 0.2); animation: slideInLeft 0.7s ease 0.2s both; }
.comparison-card:hover { transform: translateY(-4px); }
.comparison-card--us:hover { border-color: rgba(var(--glow-rgb), 0.35); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 24px rgba(var(--glow-rgb), 0.08); }
.comparison-card--them:hover { border-color: rgba(207, 145, 145, 0.25); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3); }

.comparison-label { display: inline-block; padding: 4px 14px; border-radius: 99px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.comparison-card--them .comparison-label { background: rgba(207, 145, 145, 0.15); color: var(--color-error); }
.comparison-card--us .comparison-label { background: rgba(var(--glow-rgb), 0.15); color: var(--color-secondary); }

.comparison-title { color: var(--color-white); font-size: 1.3rem; font-weight: 700; margin-bottom: 16px; }

.comparison-list { display: flex; flex-direction: column; gap: 12px; }
.comparison-list li { display: flex; align-items: flex-start; gap: 10px; color: rgba(255, 255, 255, 0.6); font-size: 0.93rem; line-height: 1.5; }
.comparison-list .icon { flex-shrink: 0; margin-top: 2px; }
.comparison-card--them .icon { color: var(--color-error); }
.comparison-card--us .icon { color: var(--color-accent); }

/* ── QUOTE ──────────────────────────────────────────────────────────────────── */
.quote-section { padding: 100px 0; background: var(--color-card-bottom); position: relative; overflow: hidden; }

.quote-section::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 600px; background: radial-gradient(circle, rgba(var(--glow-rgb), 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.quote-wrapper { max-width: 620px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.quote-mark { font-family: var(--font-serif); font-size: 6rem; color: var(--color-secondary); opacity: 0.2; line-height: 1; margin-bottom: -20px; animation: subtleFloat 6s ease-in-out infinite; }

.quote-text {
  font-family: var(--font-primary); font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 500; color: var(--color-white); line-height: 1.6; font-style: italic; margin-bottom: 32px;
}

.quote-attribution { display: flex; align-items: center; justify-content: center; gap: 12px; }
.quote-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--color-secondary), var(--color-tertiary)); }
.quote-name { font-size: 0.9rem; font-weight: 600; color: var(--color-white); text-align: left; }
.quote-role { font-size: 0.8rem; color: rgba(255, 255, 255, 0.5); text-align: left; }

/* ── CTA ────────────────────────────────────────────────────────────────────── */
.cta-section { padding: 80px 0 100px 0; background: var(--color-card-bottom); }

.cta-card {
  max-width: 600px; margin: 0 auto; text-align: center; padding: 56px 40px; border-radius: 24px;
  background: linear-gradient(135deg, rgba(var(--glow-rgb), 0.08) 0%, rgba(var(--glow-rgb), 0.03) 100%);
  border: 1px solid rgba(var(--glow-rgb), 0.12); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  animation: glowPulseCard 4s ease-in-out infinite;
  transition: transform 0.3s ease;
}
.cta-card:hover { transform: translateY(-4px); }

.cta-heading { font-family: var(--font-primary); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: var(--color-white); line-height: 1.3; margin-bottom: 12px; }
.cta-subtitle { color: rgba(255, 255, 255, 0.6); font-size: 1.05rem; line-height: 1.6; margin-bottom: 32px; max-width: 420px; margin-left: auto; margin-right: auto; }

/* ── FOOTER ─────────────────────────────────────────────────────────────────── */
.footer { background: var(--color-card-bottom); border-top: 1px solid rgba(255, 255, 255, 0.06); padding: 64px 0 32px; position: relative; }

.footer::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 50%; height: 1px; background: linear-gradient(90deg, transparent, rgba(var(--glow-rgb), 0.2), transparent);
}

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 3rem; margin-bottom: 40px; }
.footer-brand-logo { height: 28px; margin-bottom: 16px; }
.footer-tagline { color: rgba(255, 255, 255, 0.5); font-size: 0.9rem; line-height: 1.6; margin-bottom: 20px; }

.footer-social { display: flex; gap: 12px; }
.footer-social-link { width: 36px; height: 36px; border-radius: 50%; background: rgba(255, 255, 255, 0.06); display: flex; align-items: center; justify-content: center; color: rgba(255, 255, 255, 0.5); transition: background 0.2s ease, color 0.2s ease; }
.footer-social-link:hover { background: rgba(var(--glow-rgb), 0.15); color: var(--color-white); }

.footer-col-title { color: var(--color-white); font-size: 0.85rem; font-weight: 600; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { color: rgba(255, 255, 255, 0.5); font-size: 0.9rem; transition: color 0.2s ease, transform 0.2s ease; display: inline-block; position: relative; }
.footer-link::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: var(--color-secondary); transition: width 0.3s ease; }
.footer-link:hover { color: var(--color-white); transform: translateX(4px); }
.footer-link:hover::after { width: 100%; }

.footer-cta-text { color: rgba(255, 255, 255, 0.5); font-size: 0.9rem; line-height: 1.5; margin-bottom: 16px; }
.footer-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.65rem 1.25rem; border-radius: 99px; background: var(--color-accent); color: var(--color-white); font-size: 0.85rem; font-weight: 600; transition: background 0.2s ease; }
.footer-btn:hover { background: var(--color-accent-bright); }

.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.06); color: rgba(255, 255, 255, 0.3); font-size: 0.8rem; text-align: center; }

/* ── SCROLL-REVEAL ──────────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ─────────────────────────────────────────────────────────────── */

/* Tablet (≤991px) */
@media screen and (max-width: 991px) {
  .container { padding: 0 2rem; }

  /* Nav */
  .nav-hamburger { display: flex; }
  .nav-links { 
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    flex-direction: column; align-items: flex-start; gap: 1.25rem;
    background: rgba(10, 40, 38, 0.97); backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 100px 2rem 2rem; z-index: 100;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav-links.open { right: 0; }
  .nav-link { font-size: 1.05rem; padding: 0.5rem 0; }
  .nav-cta { align-self: flex-start; margin-top: 0.5rem; }

  .hero { padding: 120px 2rem 80px; min-height: 100svh; min-height: 100vh; }
  .hero-floating-chip { display: none; }
  .hero-scroll-indicator { bottom: 20px; }
  .section-heading br { display: none; }

  .steps { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .comparison-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  
  

  .sleek-page-hero { padding: 120px 2rem 60px; }
  .sleek-content-wrapper { padding: 0 1rem; }
}

/* Phone (≤767px) */
@media screen and (max-width: 767px) {
  .container { padding: 0 1.25rem; width: 100%; }
  body, main { width: 100%; max-width: 100%; }

  .navbar { padding: 0.75rem 0; }
  .nav-links { width: 100%; }
  .nav-logo { height: 28px; }

  .hero {
    padding: 80px 1.5rem 100px;
    min-height: 100dvh;
    min-height: 100svh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-scroll-indicator {
    bottom: 24px;
    padding: 6px 8px;
  }
  .hero-scroll-chevron {
    animation: scrollIndicatorBounceMobile 2s ease-in-out infinite;
  }
  .hero-heading { font-size: clamp(1.8rem, 8vw, 2.8rem); margin-bottom: 20px; }
  .hero-subtitle { font-size: 1rem; margin-bottom: 32px; line-height: 1.75; max-width: 480px; }
  .hero-badge { font-size: 0.78rem; padding: 6px 16px; margin-bottom: 24px; }
  .hero-actions { flex-direction: column; align-items: center; width: 100%; gap: 0.75rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Sections — one page per section on phone */
  .topic-storm-section,
  .how-it-works,
  .app-walkthrough,
  .difference-section,
  .quote-section,
  .cta-section,
  .level-up-section {
    min-height: 100svh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0;
  }

  .cta-section { padding: 60px 0 120px 0; min-height: auto; }

  .stats-section { padding: 2.5rem 0; }
  .stats-grid { gap: 2rem; flex-wrap: wrap; }
  .stat-divider { display: none; }
  .stat-number { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  .section-heading { font-size: clamp(1.4rem, 5vw, 1.8rem); margin-bottom: 1.25rem; }
  .section-label { margin-bottom: 14px; }

  .topic-storm { gap: 12px; margin-top: 48px; }
  .topic-chip { font-size: 0.85rem; padding: 9px 20px; }

  .steps { gap: 1.5rem; margin-top: 40px; max-width: 420px; margin-left: auto; margin-right: auto; }
  .step-card { padding: 2rem 1.5rem; }
  .step-description { font-size: 0.95rem; line-height: 1.7; }

  .level-up-subtitle { font-size: 0.95rem; margin-bottom: 1.5rem; }
  .level-up-card { padding: 1.75rem; }

  .comparison-grid { gap: 1.5rem; margin-top: 40px; }
  .comparison-card { padding: 2rem 1.5rem; }
  .comparison-title { font-size: 1.1rem; margin-bottom: 20px; }
  .comparison-list li { font-size: 0.9rem; line-height: 1.6; }
  .comparison-list { gap: 14px; }

  .quote-mark { font-size: 4rem; margin-bottom: -12px; }
  .quote-text { font-size: clamp(1.1rem, 3.5vw, 1.3rem); line-height: 1.7; margin-bottom: 28px; }

  .cta-card { padding: 40px 24px; }
  .cta-heading { font-size: clamp(1.5rem, 5vw, 2rem); margin-bottom: 16px; }
  .cta-subtitle { font-size: 0.95rem; line-height: 1.7; margin-bottom: 28px; }

  .footer { padding: 48px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .sleek-page-hero { padding: 100px 1.25rem 48px; }
  .sleek-page-title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .sleek-page-content { padding: 48px 0; }
}

/* Small phone (≤479px) */
@media screen and (max-width: 479px) {
  .container { padding: 0 1.25rem; }

  .nav-logo { height: 24px; }
  .nav-links { width: 100%; padding: 90px 1.5rem 1.5rem; }

  .hero { padding: 60px 1rem 80px; }
  .hero-scroll-indicator { padding: 4px 8px; }
  .hero-heading { font-size: clamp(1.6rem, 9vw, 2.2rem); margin-bottom: 16px; }
  .hero-subtitle { font-size: 0.9rem; margin-bottom: 28px; }
  .hero-badge { font-size: 0.72rem; padding: 5px 12px; margin-bottom: 20px; }

  .stats-grid { flex-direction: column; gap: 1.5rem; }

  .topic-chip { font-size: 0.8rem; padding: 9px 16px; }
  .topic-storm { gap: 10px; }

  .step-card { padding: 1.75rem 1.25rem; }
  .step-number { font-size: 3rem; }
  .step-title { font-size: 1.1rem; }

  .comparison-card { padding: 1.5rem 1.25rem; }

  .cta-card { padding: 32px 20px; }

  .btn { width: 100%; justify-content: center; }
  .btn-lg { padding: 0.85rem 1.5rem; font-size: 0.95rem; }
}

/* ── SUB-PAGE STYLES (manifesto, privacy, terms, 404, 401) ────────────────── */
.sleek-page-hero {
  position: relative;
  background: var(--color-card-bottom);
  padding: 140px 2rem 80px;
  overflow: hidden;
  text-align: center;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sleek-page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--glow-rgb), 0.2), transparent);
}

.sleek-page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.sleek-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 28px;
  transition: color 0.2s ease;
}

.sleek-back-link:hover { color: var(--color-accent-bright); }
.sleek-back-link svg { transition: transform 0.2s ease; }
.sleek-back-link:hover svg { transform: translateX(-3px); }

.sleek-page-title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.sleek-page-subtitle {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.05rem;
  line-height: 1.6;
}

.sleek-page-content {
  background: var(--color-card-mid);
  padding: 80px 0;
}

.sleek-content-wrapper {
  max-width: 720px;
  margin: 0 auto;
}

.sleek-content-wrapper p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.sleek-content-wrapper p a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sleek-content-h3 {
  color: var(--color-white);
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.sleek-content-h3:first-child { margin-top: 0; }

.sleek-content-image {
  border-radius: 12px;
  margin: 2rem 0;
}

.sleek-blockquote {
  border-left: 3px solid var(--color-accent);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: rgba(var(--glow-rgb), 0.05);
  border-radius: 0 8px 8px 0;
}

.sleek-blockquote--accent {
  border-left-color: var(--color-accent-bright);
  background: rgba(40, 181, 171, 0.05);
}

.sleek-content-cta {
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(var(--glow-rgb), 0.08);
  border-radius: 16px;
  border: 1px solid rgba(var(--glow-rgb), 0.12);
  text-align: center;
}

.sleek-content-cta-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.sleek-content-cta-text a {
  color: var(--color-accent);
  font-weight: 600;
}

/* Error pages */
.sleek-error-page {
  position: relative;
  background: var(--color-card-bottom);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sleek-error-page::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(var(--glow-rgb), 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ── LEVEL UP SECTION ──────────────────────────────────────────────────────── */
.level-up-section {
  padding: 120px 0;
  background: var(--color-card-bottom);
  position: relative;
  overflow: hidden;
}

.level-up-subtitle {
  color: rgba(255, 255, 255, 0.55); text-align: center; max-width: 520px;
  margin: 0 auto 1.25rem; font-size: 1rem; line-height: 1.7;
}

.level-up-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  gap: 2rem;
  margin-top: 48px;
}

.level-up-card {
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.level-up-card:hover { transform: translateY(-4px); border-color: rgba(255, 255, 255, 0.15); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3); }
.level-up-card:hover .level-up-emoji { animation: emojiBounce 0.5s ease; }

.level-up-card--blue { background: rgba(155, 184, 212, 0.08); border-color: rgba(155, 184, 212, 0.15); }
.level-up-card--green { background: rgba(157, 196, 163, 0.08); border-color: rgba(157, 196, 163, 0.15); }
.level-up-card--peach { background: rgba(212, 168, 148, 0.08); border-color: rgba(212, 168, 148, 0.15); }

.level-up-emoji { font-size: 2.5rem; margin-bottom: 1rem; }

.level-up-topic {
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.level-up-stat {
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.level-up-card--blue .level-up-stat { color: var(--color-stat-blue); }
.level-up-card--green .level-up-stat { color: var(--color-stat-green); }
.level-up-card--peach .level-up-stat { color: var(--color-stat-deep-orange); }

.level-up-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  overflow: hidden;
}

.level-up-fill {
  height: 100%;
  border-radius: 99px;
  width: 0%;
}

.level-up-fill--75 { background: var(--color-stat-blue); }
.level-up-fill--60 { background: var(--color-stat-green); }
.level-up-fill--90 { background: var(--color-stat-deep-orange); }

.reveal.visible .level-up-fill--75 { animation: fillTo75 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards; }
.reveal.visible .level-up-fill--60 { animation: fillTo60 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards; }
.reveal.visible .level-up-fill--90 { animation: fillTo90 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s forwards; }

/* ── ERROR / WAITLIST / PASSWORD PAGES ──────────────────────────────────────── */

.error-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 1;
}

.error-glow-number {
  font-family: var(--font-primary);
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 800;
  background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(var(--glow-rgb), 0.15) 50%, rgba(255,255,255,0.08) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.error-heading {
  font-family: var(--font-primary);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.3;
  margin-bottom: 12px;
}

.error-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 420px;
  margin-bottom: 32px;
}

/* ── Navbar variants for sub-pages ─────────────────────────────────────── */

.nav-wrapper {
  justify-content: space-between;
  align-items: center;
  height: 100%;
  display: flex;
}

.sleek-nav {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background-color: rgba(10, 40, 38, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-logo {
  width: auto;
  max-width: none;
  height: auto;
  max-height: 10vh;
}

/* Generic text link (used in waitlist navbar) */
.link {
  color: var(--color-slate-300);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.link:hover { color: var(--color-white); }

/* ── Password form (401 page) ──────────────────────────────────────────── */

.sleek-password-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 360px;
  margin-top: 4px;
}

.sleek-password-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: var(--color-white);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.sleek-password-input:focus {
  border-color: var(--color-secondary);
  background: rgba(255, 255, 255, 0.09);
}

.sleek-password-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.sleek-form-error {
  margin-top: 8px;
  color: #ff7b7b;
  font-family: var(--font-primary);
  font-size: 0.85rem;
  text-align: center;
}

/* ── Viral Loops widget overrides — ensure text is visible on dark bg ─── */

/* Override any red error/validation text from the Viral Loops widget
   to be brighter and more readable against the dark background */
.form-widget .vl-error,
.form-widget .vl-error-message,
.form-widget [class*="error"],
form-widget .vl-error,
form-widget .vl-error-message,
form-widget [class*="error"] {
  color: #ff9b9b !important;
}

/* Lighten any default dark text that the widget may inject */
.form-widget,
form-widget {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-primary);
}

/* Make form labels readable on dark background */
.form-widget label,
form-widget label {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Ensure input fields are styled for dark background */
.form-widget input[type="email"],
.form-widget input[type="text"],
form-widget input[type="email"],
form-widget input[type="text"] {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: var(--color-white) !important;
  border-radius: 10px !important;
  padding: 12px 16px !important;
  font-family: var(--font-primary) !important;
}

.form-widget input[type="email"]:focus,
.form-widget input[type="text"]:focus,
form-widget input[type="email"]:focus,
form-widget input[type="text"]:focus {
  border-color: var(--color-accent) !important;
  background: rgba(255, 255, 255, 0.12) !important;
  outline: none !important;
}

/* Style the submit button for dark background */
.form-widget button[type="submit"],
.form-widget .vl-btn,
form-widget button[type="submit"],
form-widget .vl-btn {
  background: var(--color-accent) !important;
  color: var(--color-white) !important;
  border: none !important;
  border-radius: 99px !important;
  padding: 12px 28px !important;
  font-family: var(--font-primary) !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  cursor: pointer !important;
  transition: background 0.2s ease, transform 0.2s ease !important;
}

.form-widget button[type="submit"]:hover,
.form-widget .vl-btn:hover,
form-widget button[type="submit"]:hover,
form-widget .vl-btn:hover {
  background: var(--color-accent-bright) !important;
  transform: translateY(-1px) !important;
}

/* Success messages should be white/light */
.form-widget .vl-success-message,
.form-widget [class*="success"],
form-widget .vl-success-message,
form-widget [class*="success"] {
  color: var(--color-success) !important;
}

/* ── Page wrapper (used by waitlist and sub-pages) ─────────────────────── */
.page-wrapper {
  overflow: clip;
  background-color: var(--color-card-bottom);
}

/* ── Sleek footer variant (used by waitlist page) ─────────────────────── */

.sleek-footer {
  background: var(--color-card-bottom);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 72px 0 0 0;
  position: relative;
  overflow: hidden;
}

.sleek-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(var(--glow-rgb), 0.3) 25%,
    rgba(var(--glow-rgb), 0.6) 50%,
    rgba(var(--glow-rgb), 0.3) 75%,
    transparent 100%
  );
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col--brand { gap: 16px; }
.footer-col--cta { gap: 16px; }

.footer-brand-link {
  display: inline-block;
  transition: opacity 0.2s ease;
}
.footer-brand-link:hover { opacity: 0.85; }

.footer-link-item {
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--font-primary);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
  padding: 2px 0;
}
.footer-link-item:hover {
  color: var(--color-secondary);
  transform: translateX(4px);
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.3);
  font-family: var(--font-primary);
  font-size: 0.8rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .sleek-footer { padding: 48px 0 0 0; }
  .footer-col--brand { gap: 12px; }
  .footer-col--cta { gap: 12px; }
  .footer-bottom-bar { padding: 14px 0; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   MANIFESTO PAGE — full redesign
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── HERO ────────────────────────────────────────────────────────────────── */
.manifesto-hero {
  position: relative;
  background: var(--color-card-bottom);
  padding: 160px 2rem 120px;
  overflow: hidden;
  text-align: center;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.manifesto-hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.manifesto-hero .hero-grid {
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 70%);
}

.manifesto-hero .sleek-back-link {
  margin-bottom: 36px;
}

.manifesto-hero .hero-badge {
  margin-bottom: 24px;
}

.manifesto-hero-title {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.6s 0.1s ease both;
}

.manifesto-hero-title span {
  background: linear-gradient(135deg, var(--color-accent-bright), var(--color-secondary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.manifesto-hero-subtitle {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 500px;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.6s 0.25s ease both;
}

/* ── SECTIONS ────────────────────────────────────────────────────────────── */
.manifesto-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.manifesto-section--default {
  background: var(--color-card-bottom);
}

.manifesto-section--alt {
  background: var(--color-card-mid);
}

.manifesto-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.manifesto-section-num {
  display: block;
  font-family: var(--font-primary);
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 800;
  color: rgba(var(--glow-rgb), 0.06);
  line-height: 0.8;
  margin-bottom: -2rem;
  user-select: none;
  pointer-events: none;
}

.manifesto-section-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.75rem;
}

.manifesto-section-heading {
  font-family: var(--font-primary);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.3;
}

/* ── CONTENT CARD ────────────────────────────────────────────────────────── */
.manifesto-card {
  max-width: 680px;
  margin: 0 auto;
  border-radius: 20px;
  padding: 2.5rem;
}

.manifesto-section--default .manifesto-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.manifesto-section--alt .manifesto-card {
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.manifesto-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.manifesto-card p:last-child {
  margin-bottom: 0;
}

/* ── ILLUSTRATION ────────────────────────────────────────────────────────── */
.manifesto-illustration {
  margin-top: 1.5rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.manifesto-illustration img {
  width: 100%;
  display: block;
}

/* ── PULL-QUOTE ──────────────────────────────────────────────────────────── */
.manifesto-pullquote {
  max-width: 680px;
  margin: 3rem auto 0;
  text-align: center;
  padding: 2.5rem 2rem;
  background: rgba(var(--glow-rgb), 0.05);
  border: 1px solid rgba(var(--glow-rgb), 0.12);
  border-radius: 20px;
  position: relative;
}

.manifesto-pullquote::before {
  content: '\201C';
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--color-accent);
  opacity: 0.25;
  line-height: 1;
}

.manifesto-pullquote p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.7;
  margin: 0;
}

.manifesto-pullquote--accent {
  background: rgba(40, 181, 171, 0.05);
  border-color: rgba(40, 181, 171, 0.15);
}

.manifesto-pullquote--accent::before {
  color: var(--color-accent-bright);
}

/* ── PROGRESS CARDS ──────────────────────────────────────────────────────── */
.manifesto-progress-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.manifesto-progress-card {
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.3s ease;
}

.manifesto-progress-card:hover {
  transform: translateY(-4px);
}

.manifesto-progress-card--blue {
  background: rgba(155, 184, 212, 0.08);
  border-color: rgba(155, 184, 212, 0.15);
}

.manifesto-progress-card--green {
  background: rgba(157, 196, 163, 0.08);
  border-color: rgba(157, 196, 163, 0.15);
}

.manifesto-progress-card--peach {
  background: rgba(212, 168, 148, 0.08);
  border-color: rgba(212, 168, 148, 0.15);
}

.manifesto-progress-emoji {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.manifesto-progress-label {
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.manifesto-progress-stat {
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.manifesto-progress-card--blue .manifesto-progress-stat {
  color: var(--color-stat-blue);
}

.manifesto-progress-card--green .manifesto-progress-stat {
  color: var(--color-stat-green);
}

.manifesto-progress-card--peach .manifesto-progress-stat {
  color: var(--color-stat-deep-orange);
}

.manifesto-progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  overflow: hidden;
}

.manifesto-progress-fill {
  height: 100%;
  border-radius: 99px;
  animation: barFill 1.5s ease forwards;
}

.manifesto-progress-fill--75 {
  width: 75%;
  background: var(--color-stat-blue);
  animation-delay: 0.2s;
}

.manifesto-progress-fill--60 {
  width: 60%;
  background: var(--color-stat-green);
  animation-delay: 0.5s;
}

.manifesto-progress-fill--90 {
  width: 90%;
  background: var(--color-stat-deep-orange);
  animation-delay: 0.8s;
}

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media screen and (max-width: 767px) {
  .manifesto-hero {
    padding: 120px 1.25rem 80px;
  }

  .manifesto-section {
    padding: 64px 0;
  }

  .manifesto-card {
    padding: 1.5rem;
  }

  .manifesto-progress-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
  }

  .manifesto-section-num {
    font-size: 4rem;
    margin-bottom: -1.5rem;
  }

  .manifesto-pullquote {
    padding: 2rem 1.25rem;
  }

  .manifesto-pullquote p {
    font-size: 1rem;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   WAITLIST PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

.waitlist-section {
  position: relative;
  background: var(--color-card-bottom);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 2rem 100px;
  overflow: hidden;
}

.waitlist-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.waitlist-content .sleek-back-link {
  margin-bottom: 32px;
}

.waitlist-heading {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.waitlist-subtitle {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 420px;
  margin-bottom: 32px;
}

/* ── FORM ────────────────────────────────────────────────────────────────── */
.waitlist-form-wrapper {
  width: 100%;
  max-width: 480px;
}

.waitlist-form {
  width: 100%;
}

.waitlist-input-group {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.waitlist-input-group:focus-within {
  border-color: var(--color-accent);
  background: rgba(255, 255, 255, 0.09);
}

.waitlist-input-icon {
  flex-shrink: 0;
  margin-left: 16px;
  color: rgba(255, 255, 255, 0.3);
}

.waitlist-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 14px 12px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: var(--color-white);
  min-width: 0;
}

.waitlist-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.waitlist-input:-webkit-autofill,
.waitlist-input:-webkit-autofill:hover,
.waitlist-input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #0A2826 inset;
  -webkit-text-fill-color: var(--color-white);
}

.waitlist-submit {
  flex-shrink: 0;
  margin: 4px;
  padding: 0.65rem 1.25rem !important;
  font-size: 0.9rem !important;
}

.waitlist-note {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
  margin-top: 12px;
}

.waitlist-error {
  color: #f87171;
  font-size: 0.85rem;
  margin-top: 10px;
  padding: 8px 12px;
  background: rgba(248, 113, 113, 0.08);
  border: 1px solid rgba(248, 113, 113, 0.18);
  border-radius: 8px;
}

/* ── SUCCESS STATE ───────────────────────────────────────────────────────── */
.waitlist-success {
  width: 100%;
  max-width: 420px;
  padding: 3rem 2rem;
  background: rgba(var(--glow-rgb), 0.08);
  border: 1px solid rgba(var(--glow-rgb), 0.15);
  border-radius: 20px;
  animation: fadeInUp 0.5s ease forwards;
}

.waitlist-success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(40, 181, 171, 0.15);
  color: var(--color-accent);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.waitlist-success-heading {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 8px;
}

.waitlist-success-text {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .waitlist-section {
    padding: 120px 1.25rem 80px;
  }

  .waitlist-input-group {
    flex-direction: column;
    border-radius: 14px;
    background: transparent;
    border: none;
    gap: 12px;
  }

  .waitlist-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 14px 16px;
  }

  .waitlist-input:focus {
    border-color: var(--color-accent);
  }

  .waitlist-input-icon {
    display: none;
  }

  .waitlist-submit {
    width: 100%;
    margin: 0;
    justify-content: center;
    padding: 0.85rem 1.5rem !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   MODERNIZATION — Staggered hero, social proof, count-up, CTA upgrade
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Staggered hero word reveal ─────────────────────────────────────────── */
.hero-heading .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  animation: wordReveal 0.55s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@keyframes wordReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* Gradient span words should inherit the gradient styling */
.hero-gradient-text .word {
  background: linear-gradient(135deg, var(--color-accent-bright), var(--color-secondary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Social proof section ───────────────────────────────────────────────── */
.social-proof-section {
  padding: 100px 0;
  background: var(--color-card-bottom);
  position: relative;
  overflow: hidden;
}

.social-proof-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--glow-rgb), 0.25), transparent);
}

.social-proof-section::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(var(--glow-rgb), 0.04) 0%, transparent 70%);
  pointer-events: none; animation: subtleFloat 8s ease-in-out infinite;
}

.social-proof-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  margin-top: 48px;
  flex-wrap: wrap;
}

.social-stat {
  text-align: center;
}

.social-stat-number {
  font-family: var(--font-primary);
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 0.5rem;
  animation: numberPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.social-stat:nth-child(1) .social-stat-number { animation-delay: 0.15s; }
.social-stat:nth-child(3) .social-stat-number { animation-delay: 0.3s; }
.social-stat:nth-child(5) .social-stat-number { animation-delay: 0.45s; }

.social-stat-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  font-weight: 500;
  max-width: 180px;
  margin: 0 auto;
}

.social-stat-divider {
  width: 1px;
  height: 56px;
  background: rgba(255, 255, 255, 0.08);
}

.social-proof-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.85rem;
  font-style: italic;
  margin-top: 40px;
}

/* ── CTA upgrades ───────────────────────────────────────────────────────── */
.cta-card {
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(var(--glow-rgb), 0.06) 0%, transparent 60%);
  animation: ctaGlowPulse 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ctaGlowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.cta-trust {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

/* ── App store badges ── */
.cta-stores {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.cta-stores-label {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cta-store-badges {
  display: flex;
  gap: 12px;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.72rem;
  font-weight: 500;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.store-badge:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

/* ── Mobile overrides for social proof ──────────────────────────────────── */
@media screen and (max-width: 767px) {
  .social-proof-grid {
    flex-direction: column;
    gap: 2rem;
    margin-top: 36px;
  }

  .social-stat-divider {
    width: 48px;
    height: 1px;
  }

  .social-stat-label {
    max-width: 220px;
  }

  .social-proof-note {
    margin-top: 28px;
    font-size: 0.8rem;
  }

  .hero-heading .word {
    animation: wordReveal 0.45s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  }
}
