/* ═══════════════════════════════════════════════════════
   SpeechMaxx — Global Styles
   Premium dark liquid-glass design system
   ═══════════════════════════════════════════════════════ */

:root {
  /* Monochrome palette — near-black base, premium whites */
  --bg: #0A0A0B;
  --bg-warm: #101012;
  --surface-1: #121214;
  --surface-2: #18181C;
  --surface-3: #1F1F24;

  /* Typography colors */
  --text: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.62);
  --text-tertiary: rgba(255, 255, 255, 0.42);
  --text-muted: rgba(255, 255, 255, 0.32);

  /* Accents — restrained, premium, gold + platinum */
  --gold: #FFD98B;
  --gold-deep: #F2C059;
  --gold-glow: rgba(242, 192, 89, 0.32);
  --platinum: #E8E8EC;
  --silver: #B8B8BE;

  /* Functional accent (used sparingly for links/checks) */
  --accent: #FFFFFF;
  --accent-soft: rgba(255, 255, 255, 0.85);
  --accent-glow: rgba(255, 255, 255, 0.35);

  /* Success / status */
  --green: #34D399;
  --green-glow: rgba(52, 211, 153, 0.22);
  --red-soft: rgba(239, 68, 68, 0.18);

  /* Glass tokens (on dark) */
  --glass-bg: rgba(255, 255, 255, 0.045);
  --glass-bg-heavy: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.10);
  --glass-border-strong: rgba(255, 255, 255, 0.18);
  --glass-shadow: rgba(0, 0, 0, 0.5);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --spring: cubic-bezier(0.16, 1, 0.3, 1);
  --smooth: cubic-bezier(0.4, 0, 0.2, 1);

  --font: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", sans-serif;
  --font-title: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", system-ui, "Helvetica Neue", sans-serif;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background: var(--bg);
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 1200px 600px at 50% -10%, rgba(255, 255, 255, 0.035), transparent 62%),
    radial-gradient(ellipse 900px 520px at 78% 42%, rgba(242, 192, 89, 0.02), transparent 70%);
  pointer-events: none;
  z-index: -2;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* ── Liquid Background (ambient glows) ────────────── */

.liquid-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.liquid-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
  will-change: transform;
  mix-blend-mode: screen;
}

.blob-white {
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08) 45%, transparent 68%);
  top: -22%;
  left: -6%;
  animation: blob-drift-1 28s ease-in-out infinite;
}

.blob-gold {
  width: 780px;
  height: 780px;
  background: radial-gradient(circle, rgba(242, 192, 89, 0.18), rgba(255, 217, 139, 0.07) 50%, transparent 72%);
  top: 28%;
  right: -14%;
  animation: blob-drift-2 34s ease-in-out infinite;
}

.blob-silver {
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, rgba(200, 210, 220, 0.14), transparent 68%);
  bottom: -12%;
  left: 6%;
  animation: blob-drift-3 24s ease-in-out infinite;
}

.blob-side-left {
  width: 560px;
  height: 860px;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.08), rgba(242, 192, 89, 0.04) 55%, transparent 72%);
  left: -10%;
  top: 45%;
  animation: blob-drift-3 30s ease-in-out infinite;
}

.blob-side-right {
  width: 520px;
  height: 760px;
  background: radial-gradient(ellipse, rgba(255, 217, 139, 0.08), rgba(255, 255, 255, 0.04) 55%, transparent 72%);
  right: -10%;
  top: 55%;
  animation: blob-drift-1 26s ease-in-out infinite;
}

.blob-bottom-left {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.07), transparent 72%);
  left: 5%;
  bottom: 5%;
  animation: blob-drift-2 28s ease-in-out infinite;
}

@keyframes blob-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-80px, 60px) scale(1.1); }
  66% { transform: translate(40px, -40px) scale(0.95); }
}

@keyframes blob-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, -50px) scale(1.05); }
  66% { transform: translate(-40px, 80px) scale(0.9); }
}

@keyframes blob-drift-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-50px, -60px) scale(1.08); }
  66% { transform: translate(70px, 30px) scale(0.92); }
}

/* Subtle starfield overlay */
.starfield {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 12% 18%, rgba(255,255,255,0.55), transparent 60%),
    radial-gradient(1px 1px at 78% 22%, rgba(255,255,255,0.5), transparent 60%),
    radial-gradient(1px 1px at 42% 72%, rgba(255,255,255,0.4), transparent 60%),
    radial-gradient(1px 1px at 88% 86%, rgba(255,255,255,0.45), transparent 60%),
    radial-gradient(1px 1px at 24% 52%, rgba(255,255,255,0.35), transparent 60%),
    radial-gradient(1px 1px at 62% 12%, rgba(255,255,255,0.4), transparent 60%),
    radial-gradient(1.2px 1.2px at 6% 88%, rgba(255,217,139,0.35), transparent 60%),
    radial-gradient(1px 1px at 94% 48%, rgba(255,255,255,0.35), transparent 60%);
  opacity: 0.7;
}

/* ── Glass Morphism (dark) ────────────────────────── */

.glass {
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 8px 32px var(--glass-shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.glass-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.45),
    0 2px 8px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3);
  transition: all 0.6s var(--spring);
}

.glass-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.55),
    0 4px 16px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.glass-grey {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.glass-heavy {
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(44px) saturate(180%);
  -webkit-backdrop-filter: blur(44px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  box-shadow:
    0 16px 56px rgba(0, 0, 0, 0.55),
    inset 0 2px 0 rgba(255, 255, 255, 0.10),
    inset 0 -1px 0 rgba(0, 0, 0, 0.4);
}

/* ── Navigation ──────────────────────────────────── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all 0.5s var(--smooth);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav.scrolled {
  background: rgba(10, 10, 11, 0.70);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.nav-logo img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #000;
  box-shadow:
    0 0 24px rgba(255, 255, 255, 0.18),
    0 4px 18px rgba(0, 0, 0, 0.6);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s var(--smooth);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #FFFFFF, var(--gold));
  border-radius: 1px;
  transition: width 0.3s var(--spring);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: #FFFFFF;
  color: #0A0A0B;
  font-size: 15px;
  font-weight: 600;
  border-radius: 100px;
  transition: all 0.4s var(--spring);
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  box-shadow:
    0 8px 24px rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.08);
}

.btn-download:hover {
  transform: scale(1.05);
  box-shadow:
    0 12px 36px rgba(255, 255, 255, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.35);
}

.btn-download svg {
  width: 18px;
  height: 18px;
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 6px 0;
  border-radius: 2px;
  transition: all 0.3s var(--smooth);
}

.nav-mobile-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-mobile-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ── Container ───────────────────────────────────── */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section Spacing ─────────────────────────────── */

section {
  padding: 120px 0;
  position: relative;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin-bottom: 20px;
  color: var(--text);
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 620px;
}

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

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ── Hero ────────────────────────────────────────── */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 100px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 820px;
  position: relative;
  z-index: 2;
  isolation: isolate;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 22px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}

.hero h1 {
  font-family: var(--font-title);
  font-size: clamp(48px, 7.2vw, 86px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.06;
  margin-bottom: 28px;
  color: var(--text);
}

.hero h1 .hero-highlight {
  position: relative;
  display: inline-block;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

.hero-hook-br {
  display: none;
}

.hero-highlight-join {
  white-space: pre;
}

/* Luminous silver-gold underline for the hook */
.hero h1 .hero-highlight::after,
.hero h1 .hero-highlight-line::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.04em;
  height: max(6px, 0.1em);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow:
    0 0 22px rgba(255, 255, 255, 0.16);
  pointer-events: none;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 1.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero h1 .hero-highlight-line {
  position: relative;
  display: inline;
}

/* Desktop / wide */
@media (min-width: 1101px) {
  .hero h1 .hero-highlight-line::after {
    display: none;
  }
  .hero h1 .hero-highlight::after {
    display: block;
  }
  .hero h1 .hero-highlight.active::after {
    transform: scaleX(1);
  }
}

/* Mobile / narrow */
@media (max-width: 1100px) {
  .hero-hook-br {
    display: block;
  }
  .hero-highlight-join {
    display: none;
  }
  .hero h1 .hero-highlight::after {
    display: none;
  }
  .hero h1 .hero-highlight-line {
    display: inline-block;
  }
  .hero h1 .hero-highlight-line::after {
    display: block;
  }
  .hero h1 .hero-highlight.active .hero-highlight-line::after {
    transform: scaleX(1);
  }
}

.hero p.hero-lead {
  font-size: clamp(18px, 2.5vw, 22px);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 44px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-laurels {
  margin-top: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.hero-laurels-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 700;
}

.hero-laurels-rating .stars {
  color: var(--gold);
  letter-spacing: 2px;
  text-shadow: 0 0 14px rgba(255, 217, 139, 0.55);
}

.laurel-leaf {
  width: 28px;
  height: 44px;
  color: var(--gold);
  filter: drop-shadow(0 0 8px rgba(255, 217, 139, 0.3));
}

/* Buttons */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: #FFFFFF;
  color: #0A0A0B;
  font-size: 16px;
  font-weight: 700;
  border-radius: 100px;
  transition: all 0.4s var(--spring);
  border: 1px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
  position: relative;
  box-shadow:
    0 10px 32px rgba(255, 255, 255, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 -1px 0 rgba(0, 0, 0, 0.1) inset;
  letter-spacing: -0.01em;
}

.btn-primary:hover {
  transform: scale(1.04);
  box-shadow:
    0 18px 48px rgba(255, 255, 255, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.25) inset;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 100px;
  transition: all 0.4s var(--spring);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-tertiary);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scroll-hint 2s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
}

@keyframes scroll-hint {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.4; transform: translateX(-50%) translateY(8px); }
}

/* ── Stats Bar ───────────────────────────────────── */

.stats-bar {
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-item {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  filter: blur(20px);
  opacity: 0.35;
  transition: opacity 0.4s;
}

.stat-item:nth-child(2)::before { background: rgba(242, 192, 89, 0.7); }
.stat-item:nth-child(4)::before { background: rgba(52, 211, 153, 0.6); }

.stat-item:hover::before {
  opacity: 0.6;
}

.stat-icon {
  font-size: 26px;
  margin-bottom: 10px;
  display: block;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.15));
}

.stat-number {
  font-family: var(--font-title);
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--text);
}

.stat-item:nth-child(2) .stat-number {
  color: var(--gold);
}

.stat-item:nth-child(4) .stat-number {
  color: #34D399;
}

.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}

.stat-item:hover {
  transform: translateY(-4px) scale(1.02);
}

/* ── Problem Section ─────────────────────────────── */

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.problem-item {
  display: flex;
  gap: 18px;
  padding: 22px 24px;
  border-radius: var(--radius-md);
  transition: all 0.4s var(--spring);
}

.problem-item:hover {
  transform: translateX(4px);
  border-color: rgba(255, 255, 255, 0.15);
}

.problem-icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.problem-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.problem-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.comparison-card {
  padding: 40px;
  border-radius: var(--radius-xl);
}

.comparison-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-md);
  margin-bottom: 14px;
}

.comparison-row:last-child {
  margin-bottom: 0;
}

.comparison-row.old {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.16);
}

.comparison-row.new {
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.20);
  box-shadow: inset 0 0 30px rgba(52, 211, 153, 0.05);
}

.comparison-emoji {
  font-size: 28px;
}

.comparison-label {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
  color: var(--text);
  letter-spacing: 0.02em;
}

.comparison-flow {
  font-size: 13px;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

/* ── How It Works ────────────────────────────────── */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.pathways-grid {
  grid-template-columns: repeat(4, 1fr);
}

.step-card {
  padding: 44px 32px;
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #FFFFFF;
  color: #0A0A0B;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  box-shadow:
    0 8px 24px rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.12);
}

.step-emoji {
  font-size: 44px;
  margin-bottom: 20px;
  display: block;
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.15));
}

.step-card h3 {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.step-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Feature / Mission Grids ─────────────────────── */

.missions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 60px;
}

.audience-grid {
  grid-template-columns: repeat(3, 1fr);
}

.mission-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  text-align: left;
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  opacity: 0;
  transition: opacity 0.4s var(--smooth);
}

.mission-card:hover::before {
  opacity: 1;
}

.mission-card.m1::before { background: linear-gradient(90deg, #FFFFFF, rgba(255,255,255,0.35)); }
.mission-card.m2::before { background: linear-gradient(90deg, #FFD98B, rgba(242, 192, 89, 0.4)); }
.mission-card.m3::before { background: linear-gradient(90deg, #34D399, rgba(52, 211, 153, 0.4)); }
.mission-card.m4::before { background: linear-gradient(90deg, #C8C8CE, rgba(200, 200, 206, 0.4)); }
.mission-card.m5::before { background: linear-gradient(90deg, #FFFFFF, rgba(255, 217, 139, 0.6)); }
.mission-card.m6::before { background: linear-gradient(90deg, #E8E8EC, rgba(232, 232, 236, 0.4)); }

.mission-emoji {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.14));
}

.mission-card h3 {
  font-family: var(--font-title);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.mission-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 18px;
}

.mission-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mission-tag {
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
}

.mission-tag.more {
  color: var(--gold);
  background: rgba(242, 192, 89, 0.06);
  border-color: rgba(242, 192, 89, 0.22);
}

/* ── Feature Highlight Sections ──────────────────── */

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}

.feature-row:last-child {
  margin-bottom: 0;
}

.feature-row.reverse {
  direction: rtl;
}

.feature-row.reverse > * {
  direction: ltr;
}

.feature-visual {
  position: relative;
}

.feature-visual-card {
  padding: 48px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  position: relative;
  overflow: hidden;
}

.feature-visual-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 55% at 50% 50%,
    rgba(255, 255, 255, 0.06) 0%,
    transparent 70%);
  pointer-events: none;
}

.feature-visual-emoji {
  font-size: 128px;
  filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.25));
  transition: transform 0.3s var(--spring);
  position: relative;
  z-index: 1;
}

.feature-content .section-label {
  margin-bottom: 12px;
}

.feature-content h2 {
  font-family: var(--font-title);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin-bottom: 20px;
  color: var(--text);
}

.feature-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}

.feature-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #FFFFFF;
  color: #0A0A0B;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.18);
}
/* ── Score Card (Before/After) ───────────────────── */

.score-card {
  width: 100%;
  max-width: 320px;
  display: grid;
  grid-template-rows: auto auto auto auto;
  gap: 14px;
  margin: 0 auto;
  text-align: center;
}

.score-card-top,
.score-card-bot {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: center;
}

.score-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 auto;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.score-chip.gold {
  color: rgba(10, 10, 11, 0.92);
  border-color: rgba(242, 192, 89, 0.35);
  background: var(--gold);
}

.score-num {
  font-family: var(--font-title);
  font-size: 84px;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
  color: var(--text);
}

.score-num.gold {
  color: var(--gold);
  text-shadow: 0 0 26px rgba(242, 192, 89, 0.22);
}

.score-card-mid {
  display: flex;
  align-items: center;
  justify-content: center;
}

.score-arrow {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-tertiary);
}

.score-caption {
  font-size: 13px;
  color: var(--text-tertiary);
  letter-spacing: 0.02em;
}

/* ── Testimonials ────────────────────────────────── */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 60px;
}

.testimonial-card {
  padding: 30px 28px;
  border-radius: var(--radius-lg);
  text-align: left;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
  text-shadow: 0 0 12px rgba(255, 217, 139, 0.4);
}

.testimonial-quote {
  font-size: 15px;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 20px;
}

.testimonial-attr {
  font-size: 13px;
  color: var(--text-tertiary);
  letter-spacing: 0.02em;
}

.testimonial-attr strong {
  color: var(--text-secondary);
  font-weight: 600;
}

/* ── Pricing ─────────────────────────────────────── */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 980px;
  margin: 60px auto 0;
}

.pricing-card {
  padding: 40px 32px;
  border-radius: var(--radius-xl);
  position: relative;
  text-align: center;
}

.pricing-card.glass-card {
  overflow: visible;
}

.pricing-card.featured {
  border: 1px solid rgba(242, 192, 89, 0.35);
  padding-top: 48px;
  background: rgba(242, 192, 89, 0.035);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(242, 192, 89, 0.06),
    inset 0 1px 0 rgba(255, 217, 139, 0.18);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  padding: 7px 22px;
  background: var(--gold);
  color: #1A1208;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(242, 192, 89, 0.4);
  z-index: 3;
}

.pricing-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-amount {
  font-family: var(--font-title);
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--text);
}

.pricing-period {
  font-size: 14px;
  color: var(--text-tertiary);
  margin-bottom: 10px;
}

.pricing-note {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.pricing-features {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-features li {
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: '✓';
  color: var(--text);
  font-weight: 800;
}

.btn-pricing {
  width: 100%;
  padding: 14px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--spring);
  letter-spacing: -0.01em;
}

.btn-pricing.primary {
  background: #FFFFFF;
  color: #0A0A0B;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.12);
}

.btn-pricing.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(255, 255, 255, 0.2);
}

.btn-pricing.secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-pricing.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
}

.pricing-trial {
  margin-top: 28px;
  font-size: 14px;
  color: var(--text-secondary);
}

/* ── CTA Section ─────────────────────────────────── */

.cta-section {
  text-align: center;
}

.cta-card {
  padding: 90px 40px;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.08), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(242, 192, 89, 0.08), transparent 50%);
  animation: cta-glow 10s ease-in-out infinite;
  z-index: 0;
}

@keyframes cta-glow {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(2%, 2%) rotate(3deg); }
}

.cta-card > * {
  position: relative;
  z-index: 1;
}

.cta-card h2 {
  font-family: var(--font-title);
  font-size: clamp(32px, 5.2vw, 56px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 18px;
  color: var(--text);
}

.cta-card p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

/* ── Footer ──────────────────────────────────────── */

footer {
  padding: 64px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: 14px;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--text-tertiary);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
  color: var(--text-tertiary);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--text-tertiary);
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: var(--text);
}

/* ── Scroll Animations ───────────────────────────── */

.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--spring), transform 0.8s var(--spring);
}

.animate.slide-left { transform: translateX(-40px); }
.animate.slide-right { transform: translateX(40px); }
.animate.scale-in { transform: scale(0.92); }
.animate.visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

.stagger > .animate:nth-child(1) { transition-delay: 0ms; }
.stagger > .animate:nth-child(2) { transition-delay: 80ms; }
.stagger > .animate:nth-child(3) { transition-delay: 160ms; }
.stagger > .animate:nth-child(4) { transition-delay: 240ms; }
.stagger > .animate:nth-child(5) { transition-delay: 320ms; }
.stagger > .animate:nth-child(6) { transition-delay: 400ms; }
.stagger > .animate:nth-child(7) { transition-delay: 480ms; }
.stagger > .animate:nth-child(8) { transition-delay: 560ms; }

/* ── Legal Pages ─────────────────────────────────── */

.legal-page {
  padding-top: 140px;
  padding-bottom: 80px;
}

.legal-page h1 {
  font-family: var(--font-title);
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  color: var(--text);
}

.legal-meta {
  font-size: 14px;
  color: var(--text-tertiary);
  margin-bottom: 48px;
}

.legal-content h2 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.legal-content h3 {
  font-size: 17px;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--text);
}

.legal-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(242, 192, 89, 0.35);
  transition: text-decoration-color 0.3s;
}

.legal-content a:hover {
  text-decoration-color: var(--gold);
}

/* ── Page Hero (inner pages) ─────────────────────── */

.page-hero {
  padding-top: 160px;
  padding-bottom: 80px;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-title);
  font-size: clamp(42px, 6vw, 66px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 20px;
  color: var(--text);
}

.page-hero p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Support / FAQ ───────────────────────────────── */

.support-page-hero .support-cta-card {
  max-width: 500px;
  margin: 48px auto 0;
  padding: 36px 32px 40px;
  text-align: center;
}

.support-cta-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 10px;
}

.support-cta-email {
  font-size: clamp(17px, 3.5vw, 22px);
  font-weight: 600;
  margin-bottom: 24px;
  word-break: break-all;
  color: var(--text);
}

.support-cta-email a {
  color: var(--gold);
  transition: opacity 0.3s var(--smooth);
}

.support-cta-email a:hover {
  opacity: 0.85;
}

.support-quick-section {
  padding-top: 0;
  padding-bottom: 100px;
}

.support-section-heading {
  font-family: var(--font-title);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 12px;
  color: var(--text);
}

.support-section-lead {
  text-align: center;
  color: var(--text-secondary);
  font-size: 17px;
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

.support-quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.support-quick-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px 20px;
  text-align: left;
  color: inherit;
  transition: transform 0.45s var(--spring), box-shadow 0.45s var(--spring);
}

.support-quick-card:hover {
  transform: translateY(-4px);
}

.support-quick-icon {
  font-size: 20px;
  opacity: 0.8;
  margin-bottom: 12px;
  line-height: 1;
  color: var(--gold);
}

.support-quick-title {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  color: var(--text);
}

.support-quick-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.45;
}

.support-faq-section {
  padding-top: 40px;
}

.support-faq-section .section-title,
.support-faq-section .section-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.faq-category {
  margin-bottom: 56px;
}

.faq-category:last-of-type {
  margin-bottom: 0;
}

.faq-category-title {
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(242, 192, 89, 0.18);
}

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

.faq-item {
  border-radius: var(--radius-md);
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.01) 100%);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: border-color 0.35s var(--smooth), box-shadow 0.35s var(--smooth);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

.faq-item[open] {
  border-color: rgba(242, 192, 89, 0.3);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 24px rgba(242, 192, 89, 0.08);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 48px 18px 22px;
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.4;
  color: var(--text);
  position: relative;
  user-select: none;
  transition: color 0.25s var(--smooth);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--text-tertiary);
  border-bottom: 2px solid var(--text-tertiary);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.45s var(--spring), border-color 0.25s;
}

.faq-item[open] summary::after {
  transform: translateY(-25%) rotate(225deg);
  border-color: var(--gold);
}

.faq-item[open] summary {
  padding-bottom: 12px;
}

.faq-answer {
  padding: 0 22px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.faq-answer p,
.faq-answer ul,
.faq-answer ol {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0 0 12px;
}

.faq-answer ul,
.faq-answer ol {
  padding-left: 22px;
}

.faq-answer li {
  margin-bottom: 8px;
}

.faq-answer li:last-child,
.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-steps {
  list-style: decimal;
}

.faq-answer a {
  color: var(--gold);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(242, 192, 89, 0.35);
  transition: text-decoration-color 0.25s;
}

.faq-answer a:hover {
  text-decoration-color: var(--gold);
}

.faq-inline-links {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.faq-inline-links li {
  margin-bottom: 10px;
}

/* ── (Removed) Glass Card Light Sweep ─────────────── */

/* Emoji hover animations */

.feature-visual-card:hover .feature-visual-emoji {
  animation: emoji-pulse 1.2s ease-in-out;
}

@keyframes emoji-pulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 40px rgba(255,255,255,0.25)); }
  50% { transform: scale(1.08); filter: drop-shadow(0 0 60px rgba(255,255,255,0.45)); }
}

.step-emoji {
  transition: transform 0.3s var(--spring);
  display: inline-block;
}

.step-card:hover .step-emoji {
  animation: emoji-bounce 0.7s var(--spring);
}

@keyframes emoji-bounce {
  0%, 100% { transform: translateY(0) scale(1); }
  25% { transform: translateY(-18px) scale(1.14); }
  55% { transform: translateY(-4px) scale(1.03); }
  75% { transform: translateY(-8px) scale(1.06); }
}

.mission-emoji {
  transition: transform 0.3s var(--spring);
  display: inline-block;
}

.mission-card:hover .mission-emoji {
  animation: emoji-wiggle 0.55s ease-in-out;
}

@keyframes emoji-wiggle {
  0%, 100% { transform: rotate(0) scale(1); }
  20% { transform: rotate(-10deg) scale(1.12); }
  40% { transform: rotate(10deg) scale(1.12); }
  60% { transform: rotate(-6deg) scale(1.06); }
  80% { transform: rotate(4deg) scale(1.02); }
}

.step-card {
  transition: all 0.5s var(--spring);
}

.step-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.22);
}

.mission-card {
  transition: all 0.5s var(--spring);
}

.mission-card:hover {
  transform: translateY(-6px) scale(1.01);
}

.feature-visual-card {
  transition: all 0.5s var(--spring);
}

.feature-visual-card:hover {
  transform: scale(1.02);
  border-color: rgba(255, 255, 255, 0.18);
}

.comparison-row {
  transition: all 0.4s var(--spring);
}

.comparison-row:hover {
  transform: translateX(6px);
}

.comparison-emoji {
  transition: transform 0.3s var(--spring);
  display: inline-block;
}

.pricing-card.featured:hover {
  border-color: rgba(242, 192, 89, 0.5);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.6),
    0 0 48px rgba(242, 192, 89, 0.12),
    inset 0 1px 0 rgba(255, 217, 139, 0.25);
}

/* ── Section accent glows ────────────────────────── */

#problem::before,
#scenarios::before,
#analysis::before,
#progress::before,
#pathways::before,
#transformation::before {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  pointer-events: none;
  z-index: -1;
}

#problem::before { background: #FFFFFF; top: 15%; left: -100px; }
#scenarios::before { background: #FFFFFF; top: 20%; left: -100px; }
#analysis::before { background: #FFD98B; top: 20%; right: -100px; }
#progress::before { background: #FFFFFF; top: 10%; left: -100px; }
#pathways::before { background: #FFD98B; bottom: 15%; right: -100px; }
#transformation::before { background: #FFFFFF; top: 20%; right: -100px; }

/* ── Waveform dividers ───────────────────────────── */

.wave-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 12px 0 28px;
  height: 28px;
}

.wave-divider span {
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(242, 192, 89, 0.3));
  animation: wave-pulse 1.4s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

.wave-divider span:nth-child(1) { height: 10px; animation-delay: 0s; }
.wave-divider span:nth-child(2) { height: 18px; animation-delay: 0.1s; }
.wave-divider span:nth-child(3) { height: 26px; animation-delay: 0.2s; }
.wave-divider span:nth-child(4) { height: 14px; animation-delay: 0.3s; }
.wave-divider span:nth-child(5) { height: 22px; animation-delay: 0.4s; }
.wave-divider span:nth-child(6) { height: 10px; animation-delay: 0.5s; }
.wave-divider span:nth-child(7) { height: 18px; animation-delay: 0.6s; }

@keyframes wave-pulse {
  0%, 100% { transform: scaleY(0.6); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ── Analysis score bars (feature visual) ────────── */

.analysis-bars {
  width: 100%;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.analysis-bar-row {
  display: grid;
  grid-template-columns: 90px 1fr 34px;
  align-items: center;
  gap: 12px;
}

.analysis-bar-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.analysis-bar-track {
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.analysis-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #FFFFFF, var(--gold));
  border-radius: 3px;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
}

.analysis-bar-score {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  text-align: right;
}

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

@media (max-width: 1100px) {
}

@media (max-width: 1024px) {
  .missions-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pathways-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-row {
    gap: 48px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

@media (max-width: 768px) {
  body.menu-open {
    overflow: hidden;
    touch-action: none;
  }

  .nav {
    padding: 0 14px;
  }

  .nav-inner {
    height: 66px;
  }

  .nav-logo {
    font-size: 18px;
    gap: 8px;
  }

  .nav-logo img {
    width: 32px;
    height: 32px;
  }

  .btn-download {
    display: none;
  }

  section {
    padding: 80px 0;
    overflow-x: hidden;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg,
      rgba(10, 10, 11, 0.97) 0%,
      rgba(18, 18, 20, 0.95) 100%);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 16px calc(20px + env(safe-area-inset-bottom, 0px));
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 999;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    max-height: calc(100svh - 66px);
    overflow-y: auto;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 10px 2px;
    font-size: 16px;
  }

  .nav-mobile-toggle {
    display: block;
  }

  .hero {
    padding: max(100px, calc(env(safe-area-inset-top, 0px) + 82px)) 20px 86px;
    min-height: 100svh;
    overflow: hidden;
  }

  .hero h1 {
    font-size: clamp(34px, 9.5vw, 52px);
    line-height: 1.12;
    letter-spacing: -0.04em;
    text-wrap: balance;
  }

  .hero p.hero-lead {
    font-size: clamp(16px, 4.2vw, 18px);
    line-height: 1.7;
    margin-bottom: 32px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 340px;
    justify-content: center;
    text-align: center;
  }

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

  .stat-item {
    padding: 24px 16px;
  }

  .stat-number {
    font-size: 34px;
  }

  .problem-grid,
  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    direction: ltr;
  }

  .feature-visual-card {
    min-height: 260px;
  }

  .feature-visual-emoji {
    font-size: 88px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pathways-grid,
  .audience-grid {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .missions-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .liquid-blob {
    opacity: 0.35;
  }

  .blob-white,
  .blob-gold {
    width: 100vw;
    height: 100vw;
  }

  .cta-card {
    padding: 60px 24px;
  }

  .cta-card h2 {
    font-size: clamp(28px, 8vw, 40px);
  }

  .comparison-card {
    padding: 28px 20px;
  }

  .comparison-flow {
    font-size: 12px;
    line-height: 1.5;
  }

  .analysis-bars {
    max-width: 100%;
  }

  .analysis-bar-row {
    grid-template-columns: 76px 1fr 28px;
    gap: 8px;
  }

  .analysis-bar-label {
    font-size: 11px;
  }

  .score-num {
    font-size: clamp(56px, 19vw, 72px);
  }

  .score-caption {
    font-size: 12px;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 18px;
  }

  .support-quick-grid {
    grid-template-columns: 1fr;
  }

  .faq-item summary {
    padding: 16px 40px 16px 18px;
    font-size: 15px;
  }

  .faq-answer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-scroll-indicator {
    display: none;
  }
}

@media (max-width: 768px) {
  .blob-side-left,
  .blob-side-right,
  .blob-bottom-left {
    display: none;
  }
}

@media (max-height: 740px) and (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-bottom: 56px;
  }

  .hero-laurels {
    margin-top: 24px;
  }
}

@media (max-width: 480px) {
  section {
    padding: 72px 0;
  }

  .hero {
    padding: max(96px, calc(env(safe-area-inset-top, 0px) + 78px)) 16px 76px;
  }

  .hero h1 {
    font-size: clamp(30px, 10.5vw, 44px);
    line-height: 1.12;
  }

  .container,
  .container-narrow {
    padding: 0 16px;
  }

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

  .step-card,
  .mission-card,
  .pricing-card,
  .testimonial-card {
    padding: 28px 20px;
  }

  .feature-visual-card {
    min-height: 220px;
    padding: 30px 20px;
  }

  .feature-visual-emoji {
    font-size: 72px;
  }

  .feature-list-item {
    font-size: 14px;
  }

  .feature-check {
    width: 20px;
    height: 20px;
    font-size: 11px;
  }

  .pricing-card.featured {
    padding-top: 42px;
  }

  .pricing-badge {
    top: -12px;
  }

  .section-title {
    font-size: clamp(28px, 9vw, 42px);
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .liquid-blob,
  .wave-divider span,
  .hero-scroll-indicator {
    animation: none !important;
  }
}
