/* ============================================================
   SONARSPEAK — LANDING PAGE STYLES
   Design system: Vibrant Playful
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,600;12..96,700&family=Nunito:wght@400;600;700;800;900&display=swap');

/* ── CSS Custom Properties ──────────────────────────────── */
:root {
  --coral:         #FF6B6B;
  --coral-soft:    #FFE0E0;
  --ocean:         #4ECDC4;
  --ocean-soft:    #D4F5F2;
  --sunshine:      #FFE66D;
  --sunshine-soft: #FFF8D4;
  --violet:        #A78BFA;
  --violet-soft:   #EDE9FE;

  --bg:       #FFFBF5;
  --card-bg:  #FFFFFF;
  --ink:      #2D3436;
  --muted:    #9CA3AF;
  --border:   #F0ECE4;

  --font-heading: 'Bricolage Grotesque', sans-serif;
  --font-body:    'Nunito', sans-serif;

  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  12px;
  --space-lg:  16px;
  --space-xl:  18px;
  --space-2xl: 24px;
  --space-3xl: 26px;
  --space-4xl: 36px;
  --space-5xl: 42px;

  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-xl: 20px;

  --ease-bouncy: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:    ease-out;

  --shadow-cta:        0 4px 16px rgba(255, 107, 107, 0.30);
  --shadow-cta-hover:  0 8px 24px rgba(255, 107, 107, 0.40);
  --shadow-card-hover: 0 16px 48px rgba(0, 0, 0, 0.09);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font-body); border: none; outline: none; }

/* ── Keyframes ──────────────────────────────────────────── */
@keyframes popIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}

@keyframes float {
  0%,  100% { transform: translate(0,    0)    rotate(0deg);  }
  33%        { transform: translate(28px, -28px) rotate(5deg);  }
  66%        { transform: translate(-18px, 18px) rotate(-3deg); }
}

@keyframes wave {
  0%,  100% { transform: rotate(0deg);   }
  10%        { transform: rotate(14deg);  }
  20%        { transform: rotate(-8deg);  }
  30%        { transform: rotate(14deg);  }
  40%        { transform: rotate(-4deg);  }
  50%        { transform: rotate(10deg);  }
  60%        { transform: rotate(0deg);   }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes pulseGlow {
  0%,  100% { box-shadow: var(--shadow-cta); }
  50%        { box-shadow: 0 6px 28px rgba(255, 107, 107, 0.50); }
}

@keyframes scoreRing {
  from { stroke-dashoffset: 113; }
  to   { stroke-dashoffset: var(--offset); }
}

@keyframes blink {
  0%, 100% { opacity: 1;   }
  50%       { opacity: 0.2; }
}

@keyframes gradientShift {
  0%   { background-position: 0% 50%;   }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%;   }
}

/* ── Floating BG shapes ─────────────────────────────────── */
.bg-shapes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  animation: float 22s ease-in-out infinite;
}
.bg-shape-1 { width: 340px; height: 340px; background: var(--coral);    top: -110px; right: -60px;  animation-delay: 0s;   }
.bg-shape-2 { width: 220px; height: 220px; background: var(--ocean);    bottom: 8%;  left: -70px;  animation-delay: -7s;  }
.bg-shape-3 { width: 170px; height: 170px; background: var(--sunshine); top: 42%;    right: 4%;    animation-delay: -14s; }
.bg-shape-4 { width: 130px; height: 130px; background: var(--violet);   top: 65%;    left: 15%;   animation-delay: -10s; }

/* ── Layout helpers ─────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--space-4xl);
  position: relative;
  z-index: 1;
}

section { position: relative; z-index: 1; }

/* ─────────────────────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 251, 245, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--space-4xl);
  max-width: 1180px;
  margin: 0 auto;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
}
.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--coral), var(--ocean));
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-5deg);
  flex-shrink: 0;
}
.logo-mark span {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  display: block;
  transform: rotate(5deg); /* counter-rotate so S stays upright */
}
.logo-wordmark {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.3px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--coral); }

/* Nav CTA */
.btn-nav-cta {
  background: var(--coral);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  padding: 9px 22px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-cta);
  transition: all 0.2s;
}
.btn-nav-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: var(--shadow-cta-hover);
}

/* Lang toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  background: var(--border);
  border-radius: 30px;
  padding: 3px;
  gap: 2px;
}
.lang-btn {
  background: transparent;
  border: none;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
  padding: 4px 10px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s;
}
.lang-btn.active {
  background: var(--card-bg);
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* ─────────────────────────────────────────────────────────
   HERO SECTION
───────────────────────────────────────────────────────── */
.hero {
  padding: 80px 0 60px;
  overflow: hidden;
}

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

/* Hero copy */
.hero-copy { animation: popIn 0.6s var(--ease-bouncy) both; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--violet-soft);
  color: var(--violet);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 20px;
  letter-spacing: 0.4px;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--violet);
  border-radius: 50%;
  animation: blink 1.4s infinite;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-headline .accent-coral { color: var(--coral); }
.hero-headline .accent-ocean { color: var(--ocean); }

.hero-sub {
  font-size: 17px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 460px;
}

/* Waitlist form */
.waitlist-form {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.waitlist-input {
  flex: 1;
  min-width: 200px;
  padding: 13px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  background: var(--card-bg);
  outline: none;
  transition: border-color 0.2s;
}
.waitlist-input::placeholder { color: var(--muted); }
.waitlist-input:focus { border-color: var(--coral); }

.btn-primary {
  background: var(--coral);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  padding: 13px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-cta);
  white-space: nowrap;
  transition: all 0.2s;
  animation: pulseGlow 3s ease-in-out infinite;
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-cta-hover);
  animation: none;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}
.proof-avatars {
  display: flex;
  margin-right: 4px;
}
.proof-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-right: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
}
.proof-avatar-1 { background: linear-gradient(135deg, var(--coral), #ff9a9a); }
.proof-avatar-2 { background: linear-gradient(135deg, var(--ocean), var(--violet)); }
.proof-avatar-3 { background: linear-gradient(135deg, var(--sunshine), var(--coral)); }
.proof-avatar-4 { background: linear-gradient(135deg, var(--violet), var(--ocean)); }

.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: 24px;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
}
.trust-chip .chip-icon { font-size: 13px; }

/* ── Hero Visual (mock dashboard) ─────────────────────── */
.hero-visual {
  animation: popIn 0.7s var(--ease-bouncy) 0.15s both;
  position: relative;
}

.browser-frame {
  background: var(--card-bg);
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.13), 0 0 0 1.5px rgba(0,0,0,0.06);
  overflow: hidden;
  position: relative;
}

.browser-bar {
  background: #f0ece4;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1.5px solid var(--border);
}
.browser-dots { display: flex; gap: 6px; }
.browser-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.browser-dot-1 { background: #FF5F57; }
.browser-dot-2 { background: #FEBC2E; }
.browser-dot-3 { background: #28C840; }

.browser-url {
  flex: 1;
  background: var(--card-bg);
  border-radius: 8px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.browser-url::before {
  content: '🔒';
  font-size: 10px;
}

/* Mini dashboard inside browser */
.mock-dashboard {
  padding: 16px;
  background: var(--bg);
}

.mock-dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding: 10px 14px;
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--border);
}
.mock-logo-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.mock-logo-mark {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--coral), var(--ocean));
  display: flex; align-items: center; justify-content: center;
  transform: rotate(-5deg);
}
.mock-logo-mark span {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  transform: rotate(5deg);
  display: block;
}
.mock-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  color: var(--ink);
}
.mock-nav-pills {
  display: flex;
  gap: 4px;
  background: var(--border);
  border-radius: 8px;
  padding: 3px;
}
.mock-pill {
  font-size: 9px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  color: var(--muted);
}
.mock-pill.active {
  background: var(--card-bg);
  color: var(--ink);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.mock-avatar-sm {
  width: 22px; height: 22px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--ocean), var(--violet));
  display: flex; align-items: center; justify-content: center;
  font-size: 8px;
  font-weight: 800;
  color: #fff;
}

/* Greeting */
.mock-greeting {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

/* Score cards row */
.mock-score-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 10px;
}
.mock-score-card {
  background: var(--card-bg);
  border-radius: 12px;
  border: 1.5px solid var(--border);
  padding: 10px;
  position: relative;
  overflow: hidden;
}
.mock-score-card .card-decoration {
  position: absolute;
  width: 44px; height: 44px;
  border-radius: 50%;
  top: -10px; right: -10px;
  opacity: 0.18;
}
.mock-score-card-1 .card-decoration { background: var(--coral); }
.mock-score-card-2 .card-decoration { background: var(--ocean); }
.mock-score-card-3 .card-decoration { background: var(--violet); }

.mock-card-label {
  font-size: 8px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.mock-card-score {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}
.mock-card-score span {
  font-size: 9px;
  color: var(--ocean);
  font-family: var(--font-body);
  font-weight: 800;
}
.mock-chip {
  display: inline-block;
  font-size: 7px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  margin-top: 3px;
}
.chip-coral   { background: var(--coral-soft);    color: var(--coral); }
.chip-ocean   { background: var(--ocean-soft);    color: #2AA69A; }
.chip-violet  { background: var(--violet-soft);   color: var(--violet); }
.chip-yellow  { background: var(--sunshine-soft); color: #C4940A; }

/* Mini table */
.mock-table {
  background: var(--card-bg);
  border-radius: 12px;
  border: 1.5px solid var(--border);
  overflow: hidden;
}
.mock-table-header {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1fr;
  padding: 7px 12px;
  background: linear-gradient(to right, var(--coral-soft), var(--ocean-soft));
  gap: 4px;
}
.mock-th {
  font-size: 7px;
  font-weight: 800;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.mock-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1fr;
  padding: 7px 12px;
  border-top: 1px solid var(--border);
  align-items: center;
  gap: 4px;
  transition: background 0.2s;
}
.mock-row:hover { background: #FEFCF8; }
.mock-student-cell {
  display: flex;
  align-items: center;
  gap: 5px;
}
.mini-avatar {
  width: 18px; height: 18px;
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px;
  flex-shrink: 0;
}
.mini-avatar-1 { background: var(--coral-soft); }
.mini-avatar-2 { background: var(--ocean-soft); }
.mini-avatar-3 { background: var(--violet-soft); }
.mini-avatar-4 { background: var(--sunshine-soft); }
.mini-name {
  font-size: 8px;
  font-weight: 700;
  color: var(--ink);
}
.mini-score {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  color: var(--ocean);
}
.mock-badge {
  font-size: 7px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 5px;
  display: inline-block;
}
.badge-graded   { background: var(--ocean-soft);    color: #2AA69A; }
.badge-pending  { background: #F3F4F6;              color: var(--muted); }
.badge-analyzing {
  background: var(--sunshine-soft);
  color: #C4940A;
  display: flex;
  align-items: center;
  gap: 3px;
}
.blink-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #C4940A;
  animation: blink 1.2s infinite;
  flex-shrink: 0;
}
.mock-time { font-size: 7px; font-weight: 700; color: var(--muted); }

/* Floating decoration on hero visual */
.hero-deco-chip {
  position: absolute;
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  animation: popIn 0.7s var(--ease-bouncy) both;
}
.hero-deco-1 {
  top: -18px;
  left: -24px;
  animation-delay: 0.4s;
}
.hero-deco-2 {
  bottom: -18px;
  right: -20px;
  animation-delay: 0.55s;
}
.deco-icon { font-size: 20px; }
.deco-text-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
}
.deco-text-value {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

/* ─────────────────────────────────────────────────────────
   STATS BAR
───────────────────────────────────────────────────────── */
.stats-bar {
  padding: 40px 0;
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
  background: var(--card-bg);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  text-align: center;
}

.stat-item {}

.stat-number {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 4px;
}
.stat-number .stat-accent { color: var(--coral); }
.stat-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

/* ─────────────────────────────────────────────────────────
   FEATURES SECTION
───────────────────────────────────────────────────────── */
.features {
  padding: 90px 0;
}

.section-eyebrow {
  text-align: center;
  margin-bottom: 12px;
}
.eyebrow-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--coral-soft);
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 30px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.section-sub {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.6;
}

/* Feature cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.feature-card {
  background: var(--card-bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease-bouncy);
  opacity: 0;
  transform: translateY(30px);
}
.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.feature-card:hover {
  transform: translateY(-8px);
  border-color: transparent;
  box-shadow: var(--shadow-card-hover);
}

.feature-card-accent {
  position: absolute;
  width: 90px; height: 90px;
  border-radius: 50%;
  top: -20px; right: -20px;
  opacity: 0.18;
}

.feature-card-1 .feature-card-accent { background: var(--coral); }
.feature-card-2 .feature-card-accent { background: var(--ocean); }
.feature-card-3 .feature-card-accent { background: var(--violet); }

.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  transition: transform 0.3s;
}
.feature-card:hover .feature-icon { transform: scale(1.15) rotate(-6deg); }
.icon-coral   { background: var(--coral-soft); }
.icon-ocean   { background: var(--ocean-soft); }
.icon-violet  { background: var(--violet-soft); }

.feature-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}

.feature-desc {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.feature-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feature-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.feature-bullets li::before {
  content: '';
  width: 16px; height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='8' fill='%23D4F5F2'/%3E%3Cpath d='M5 8l2 2 4-4' stroke='%232AA69A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
}

/* Feature "spotlight" — large featured row */
.feature-spotlight {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  background: var(--card-bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  overflow: hidden;
  position: relative;
}
.feature-spotlight-accent {
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: var(--sunshine);
  opacity: 0.08;
  top: -80px; right: -80px;
}
.spotlight-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--sunshine-soft);
  color: #C4940A;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.spotlight-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 14px;
}
.spotlight-desc {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 24px;
}
.spotlight-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--coral);
  font-weight: 800;
  font-size: 14px;
  transition: gap 0.2s;
}
.spotlight-link:hover { gap: 10px; }

/* AI suggestion widget mock */
.ai-widget {
  background: var(--bg);
  border-radius: 16px;
  border: 1.5px solid var(--border);
  padding: 18px;
}
.ai-widget-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.ai-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, var(--coral), var(--ocean));
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
}
.ai-widget-title {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
}
.ai-suggestion-list { display: flex; flex-direction: column; gap: 8px; }
.ai-suggestion-item {
  background: var(--card-bg);
  border-radius: 10px;
  border: 1.5px solid var(--border);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.suggestion-priority {
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px;
  font-weight: 800;
  flex-shrink: 0;
  color: #fff;
}
.priority-1 { background: var(--coral); }
.priority-2 { background: var(--sunshine); color: #C4940A; }
.priority-3 { background: var(--ocean); }
.suggestion-text {
  flex: 1;
}
.suggestion-main {
  font-size: 10px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 1px;
}
.suggestion-meta { font-size: 9px; font-weight: 700; color: var(--muted); }
.suggestion-pct {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  color: var(--coral);
}

/* ─────────────────────────────────────────────────────────
   BENEFITS SECTION
───────────────────────────────────────────────────────── */
.benefits {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(78, 205, 196, 0.04) 100%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: 56px;
}

.benefit-card {
  background: var(--card-bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease-bouncy);
  opacity: 0;
  transform: translateY(30px);
}
.benefit-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}

.benefit-card-bg {
  position: absolute;
  inset: 0;
  opacity: 0.03;
}
.benefit-card-1 .benefit-card-bg { background: var(--coral); }
.benefit-card-2 .benefit-card-bg { background: var(--ocean); }
.benefit-card-3 .benefit-card-bg { background: var(--sunshine); }

.benefit-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  opacity: 0.06;
  color: var(--ink);
}

.benefit-emoji {
  font-size: 42px;
  margin-bottom: 16px;
  display: block;
  transition: transform 0.3s;
}
.benefit-card:hover .benefit-emoji { transform: scale(1.18) rotate(-6deg); }

.benefit-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}

.benefit-desc {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.benefit-stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 800;
}
.benefit-card-1 .benefit-stat { background: var(--coral-soft);    color: var(--coral); }
.benefit-card-2 .benefit-stat { background: var(--ocean-soft);    color: #2AA69A; }
.benefit-card-3 .benefit-stat { background: var(--sunshine-soft); color: #C4940A; }

/* ─────────────────────────────────────────────────────────
   HOW IT WORKS
───────────────────────────────────────────────────────── */
.how-it-works {
  padding: 90px 0;
}

.hiw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  margin-top: 56px;
  position: relative;
}

/* Connector line */
.hiw-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(to right, var(--coral-soft), var(--ocean-soft));
  z-index: 0;
}

.hiw-step {
  text-align: center;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s var(--ease-bouncy);
}
.hiw-step.visible {
  opacity: 1;
  transform: translateY(0);
}

.hiw-step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  position: relative;
  z-index: 1;
}
.step-1 { background: linear-gradient(135deg, var(--coral),    #ff9a9a); }
.step-2 { background: linear-gradient(135deg, var(--ocean),    var(--violet)); }
.step-3 { background: linear-gradient(135deg, var(--sunshine), var(--coral)); }
.step-4 { background: linear-gradient(135deg, var(--violet),   var(--ocean)); }

.hiw-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}
.hiw-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.hiw-desc {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.55;
}

/* ─────────────────────────────────────────────────────────
   TESTIMONIAL / QUOTE SECTION
───────────────────────────────────────────────────────── */
.testimonials {
  padding: 80px 0;
  background: var(--card-bg);
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: 48px;
}

.testimonial-card {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.4s var(--ease-bouncy);
}
.testimonial-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.testimonial-card:hover {
  border-color: var(--coral-soft);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.star { color: var(--sunshine); font-size: 15px; }

.testimonial-quote {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial-avatar {
  width: 36px; height: 36px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.ta-1 { background: linear-gradient(135deg, var(--coral),   #ff9a9a); }
.ta-2 { background: linear-gradient(135deg, var(--ocean),   var(--violet)); }
.ta-3 { background: linear-gradient(135deg, var(--violet),  var(--ocean)); }
.testimonial-name {
  font-weight: 800;
  font-size: 13px;
  color: var(--ink);
}
.testimonial-role {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
}

/* ─────────────────────────────────────────────────────────
   FINAL CTA
───────────────────────────────────────────────────────── */
.cta-section {
  padding: 100px 0;
}

.cta-card {
  background: linear-gradient(135deg, var(--coral) 0%, #ff9a6c 50%, var(--ocean) 100%);
  background-size: 200% 200%;
  animation: gradientShift 6s ease infinite;
  border-radius: 28px;
  padding: 64px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card-deco-1 {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255, 0.08);
  top: -100px; right: -80px;
}
.cta-card-deco-2 {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255, 0.06);
  bottom: -60px; left: -60px;
}

.cta-emoji {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
  animation: wave 2.5s ease-in-out infinite;
  transform-origin: 70% 70%;
  position: relative;
  z-index: 1;
}

.cta-headline {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.cta-sub {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.cta-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto 18px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-input {
  flex: 1;
  min-width: 180px;
  padding: 13px 18px;
  border: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  outline: none;
}
.cta-input::placeholder { color: var(--muted); }

.btn-cta-white {
  background: #fff;
  color: var(--coral);
  font-weight: 800;
  font-size: 14px;
  padding: 13px 28px;
  border-radius: var(--radius-lg);
  white-space: nowrap;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.btn-cta-white:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.cta-note {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  position: relative;
  z-index: 1;
}

/* ─────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────── */
.footer {
  padding: 44px 0 32px;
  border-top: 2px solid var(--border);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}
.footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
}
.footer-links a {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--coral); }

/* ─────────────────────────────────────────────────────────
   SUCCESS TOAST
───────────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  transition: transform 0.4s var(--ease-bouncy), opacity 0.3s;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.toast-icon { font-size: 18px; }

/* ─────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .container { padding: 0 20px; }
  .nav-inner  { padding: 12px 20px; }

  .hero-inner      { grid-template-columns: 1fr; gap: 40px; }
  .hero-headline   { font-size: 38px; }
  .hero-visual     { display: none; }

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

  .features-grid   { grid-template-columns: 1fr; }
  .feature-spotlight { grid-template-columns: 1fr; gap: 28px; padding: 28px; }

  .benefits-grid   { grid-template-columns: 1fr; }
  .hiw-grid        { grid-template-columns: repeat(2, 1fr); }
  .hiw-grid::before { display: none; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .section-title   { font-size: 28px; }
  .cta-card        { padding: 44px 28px; }
  .cta-headline    { font-size: 28px; }
  .nav-links       { display: none; }
}

@media (max-width: 480px) {
  .hero-headline  { font-size: 30px; }
  .stats-grid     { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hiw-grid       { grid-template-columns: 1fr; }
  .waitlist-form  { flex-direction: column; }
  .cta-form       { flex-direction: column; }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
