/* ─────────────────────────────────────────────────────────────
   SPARKS — Brand Design System
   "Ignite Their Potential."
   ───────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --sparks-amber: #F2A33A;
  --sparks-amber-dim: #F2A33A22;
  --sparks-amber-soft: #FFF4E5;
  --midnight: #1D1D1F;
  --frost: #F5F5F7;
  --white: #FFFFFF;
  --slate: #86868B;
  --slate-light: #AEAEB2;
  --success: #10B981;
  --cobalt: #3B82F6;
  --violet: #8B5CF6;

  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --radius-xl: 48px;

  --shadow-sm: 0 2px 16px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 40px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
  --shadow-amber: 0 20px 60px rgba(242, 163, 58, 0.25);

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html, body {
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #FCFCFC;
  color: var(--midnight);
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

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

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
.eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--slate);
  text-transform: uppercase;
}

.display {
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--midnight);
}

.headline {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--midnight);
}

.subhead {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 500;
  line-height: 1.7;
  color: var(--slate);
}

.caption {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--slate);
}

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 160px 0;
}

.section-sm {
  padding: 80px 0;
}

/* ── SCROLL ANIMATIONS ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* ── NAV ────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1400px;
  z-index: 1000;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 100px;
  transition: all var(--transition);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.nav.scrolled {
  background: rgba(245, 245, 247, 0.8);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-mark {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.nav-logo-text {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--midnight);
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--slate);
  transition: color var(--transition-fast);
}

.nav-links a:hover {
  color: var(--midnight);
}

.nav-cta {
  background: var(--midnight);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 700 !important;
  font-size: 13px !important;
  transition: background var(--transition-fast), transform var(--transition-fast) !important;
}

.nav-cta:hover {
  background: var(--sparks-amber) !important;
  color: var(--white) !important;
  transform: scale(1.02);
}

.nav-toggle {
  display: none;
}

.mobile-menu {
  display: none;
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--white);
  padding-top: 64px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(242, 163, 58, 0.12) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  border-radius: 50%;
  pointer-events: none;
}

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

.hero-text {}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sparks-amber-soft);
  border: 1px solid rgba(242, 163, 58, 0.25);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 32px;
}

.hero-eyebrow span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sparks-amber);
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--sparks-amber);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

.hero-display {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700;
  letter-spacing: -3px;
  line-height: 1.0;
  color: var(--midnight);
  margin-bottom: 28px;
}

.hero-display em {
  font-style: normal;
  color: var(--sparks-amber);
}

.hero-subhead {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--slate);
  max-width: 420px;
  margin-bottom: 48px;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--midnight);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 8px 24px rgba(29, 29, 31, 0.2);
}

.btn-primary:hover {
  background: var(--sparks-amber);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(242, 163, 58, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--midnight);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  padding: 16px 8px;
  border-radius: 100px;
  transition: color var(--transition-fast);
}

.btn-secondary:hover {
  color: var(--sparks-amber);
}

.btn-secondary svg {
  transition: transform var(--transition-fast);
}

.btn-secondary:hover svg {
  transform: translateX(4px);
}

/* Hero scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--midnight));
  animation: scroll-line 2s infinite;
}

@keyframes scroll-line {
  0% {
    transform: scaleY(0) translateY(-100%);
    opacity: 0;
  }

  50% {
    transform: scaleY(1) translateY(0);
    opacity: 1;
  }

  100% {
    transform: scaleY(0) translateY(100%);
    opacity: 0;
  }
}

/* Hero phone mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-phone-wrap {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(-2deg);
  }

  50% {
    transform: translateY(-20px) rotate(-2deg);
  }
}

.hero-phone-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse, rgba(242, 163, 58, 0.20) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 1.0;
    transform: scale(1.05);
  }
}

.hero-phone-img {
  width: 320px;
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 
    0 10px 20px rgba(0, 0, 0, 0.05),
    0 30px 60px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  transform: perspective(1200px) rotateY(-8deg) rotateX(2deg);
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-phone-img:hover {
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg) scale(1.02);
}

/* Stat pills floating around phone */
.hero-stat {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.hero-stat-emoji {
  font-size: 22px;
}

.hero-stat-text {}

.hero-stat-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--midnight);
  letter-spacing: -0.5px;
}

.hero-stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--slate);
}

.hero-stat-1 {
  top: 15%;
  right: -60px;
  animation: float-alt 7s ease-in-out infinite;
}

.hero-stat-2 {
  bottom: 25%;
  left: -60px;
  animation: float-alt 6s ease-in-out infinite 1s;
}

.hero-stat-3 {
  bottom: 8%;
  right: -40px;
  animation: float-alt 8s ease-in-out infinite 0.5s;
}

@keyframes float-alt {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* ── TRUST BAR ──────────────────────────────────────────────── */
.trust-bar {
  background: var(--white);
  padding: 100px 0;
}
.trust-bar .container {
  max-width: 1400px;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-icon {
  font-size: 20px;
}

.trust-icon-img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  flex-shrink: 0;
}

.badge-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin: 0 auto 12px;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.badge-card:hover .badge-img {
  transform: scale(1.1) translateY(-4px);
  filter: drop-shadow(0 8px 20px rgba(242, 163, 58, 0.3));
}

.trust-text {
  font-size: 20px;
  font-weight: 600;
  color: var(--slate);
  letter-spacing: -0.5px;
  line-height: 1.3;
}

.trust-text strong {
  color: var(--midnight);
}

/* ── PILLARS ────────────────────────────────────────────────── */
.pillars {
  background: var(--white);
  padding: 120px 0;
}

.pillars-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}

.pillars-header .eyebrow {
  margin-bottom: 20px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pillar-card {
  background: var(--frost);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
}

.pillar-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.pillar-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.pillar-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.12));
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pillar-card:hover .pillar-icon img {
  transform: scale(1.15) translateY(-8px);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.18));
}

.pillar-icon-amber,
.pillar-icon-green,
.pillar-icon-violet {
  background: transparent;
}

.pillar-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.pillar-body {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--slate);
}

.pillar-tag {
  display: inline-block;
  margin-top: 24px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sparks-amber);
  background: var(--sparks-amber-soft);
  padding: 6px 14px;
  border-radius: 100px;
}

/* ── FEATURES (alternating) ─────────────────────────────────── */
.features-section {
  background: var(--white);
  padding: 120px 0;
}

.feature-row {
  display: grid;
  grid-template-columns: 330.68px 480px; /* Fixed widths for perfect balance */
  gap: 120px;
  justify-content: center; /* Center the entire row block */
  align-items: center;
  padding: 100px 0;
}


.feature-row:last-child {
  border-bottom: none;
}


.feature-visual {
  width: 330.68px;
  height: 587.55px;
  border-radius: 40px; /* More pronounced radius like a phone */
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.6s var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.feature-visual:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: var(--shadow-lg);
}

.feature-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-visual-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  background: linear-gradient(135deg, var(--frost) 0%, var(--white) 100%);
}

.feature-content .eyebrow {
  margin-bottom: 20px;
}

.feature-content .headline {
  margin-bottom: 20px;
}

.feature-content .subhead {
  margin-bottom: 36px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--midnight);
  line-height: 1.5;
}

.feature-check {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: var(--sparks-amber-soft);
  border: 1.5px solid rgba(242, 163, 58, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.feature-check svg {
  width: 10px;
  height: 10px;
}

.feature-pitch {
  margin-top: 36px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--sparks-amber);
  font-size: 15px;
  font-weight: 700;
  font-style: italic;
  color: var(--midnight);
}

/* ── BADGES ─────────────────────────────────────────────────── */
.badges-section {
  background: var(--midnight);
  padding: 160px 0;
}

.badges-header {
  text-align: center;
  margin-bottom: 72px;
}

.badges-header .eyebrow {
  color: var(--slate-light);
  margin-bottom: 20px;
}

.badges-header .headline {
  color: var(--white);
}

.badges-header .subhead {
  color: var(--slate-light);
  margin-top: 16px;
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
}

.badge-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 28px 16px;
  text-align: center;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
  cursor: default;
}

.badge-card:hover {
  background: rgba(242, 163, 58, 0.12);
  border-color: rgba(242, 163, 58, 0.3);
  transform: translateY(-6px);
}

.badge-emoji {
  font-size: 36px;
  margin-bottom: 12px;
}

.badge-name {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.badge-desc {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 8px;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s, transform 0.3s;
}

.badge-card:hover .badge-desc {
  opacity: 1;
  transform: translateY(0);
}

/* ── PRIVACY ────────────────────────────────────────────────── */
.privacy-section {
  background: var(--white);
  padding: 120px 0;
}

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

.privacy-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.privacy-lock-img {
  width: 300px;
  filter: drop-shadow(0 20px 40px rgba(242, 163, 58, 0.2));
  animation: float 8s ease-in-out infinite;
}

.privacy-badges {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}

.privacy-badge {
  background: var(--frost);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 800;
  color: var(--midnight);
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.privacy-content .headline {
  margin-bottom: 20px;
}

.privacy-content .subhead {
  margin-bottom: 36px;
}

.privacy-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.privacy-stat {
  padding: 24px;
  background: var(--frost);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.privacy-stat-icon {
  font-size: 24px;
  margin-bottom: 12px;
}

.privacy-stat-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 6px;
}

.privacy-stat-body {
  font-size: 13px;
  font-weight: 500;
  color: var(--slate);
  line-height: 1.5;
}

/* ── PRICING ────────────────────────────────────────────────── */
.pricing-section {
  background: var(--white);
  padding: 120px 0;
  overflow: hidden;
}

.pricing-header {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 64px;
}

.pricing-header .eyebrow {
  margin-bottom: 20px;
}

.pricing-header .headline {
  margin-bottom: 16px;
}

.pricing-trial-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 100px;
  padding: 8px 20px;
  margin-top: 20px;
}

.pricing-trial-badge span {
  font-size: 13px;
  font-weight: 700;
  color: var(--success);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 2px solid rgba(0, 0, 0, 0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}

.price-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
}

.price-card.featured {
  border-color: var(--sparks-amber);
  box-shadow: var(--shadow-amber);
  transform: translateY(-8px);
}

.price-card.featured:hover {
  transform: translateY(-16px);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sparks-amber);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.price-tier {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sparks-amber);
  margin-bottom: 16px;
}

.price-amount {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -2px;
  color: var(--midnight);
  line-height: 1;
}

.price-period {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate);
  margin-top: 6px;
  margin-bottom: 24px;
}

.price-save {
  display: inline-block;
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

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

.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--midnight);
}

.price-features li::before {
  content: '✓';
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: var(--sparks-amber-soft);
  color: var(--sparks-amber);
  font-size: 10px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-cta {
  width: 100%;
  padding: 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.price-cta-dark {
  background: var(--midnight);
  color: var(--white);
}

.price-cta-dark:hover {
  background: var(--sparks-amber);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(242, 163, 58, 0.35);
}

.price-cta-outline {
  background: transparent;
  color: var(--midnight);
  border: 2px solid rgba(0, 0, 0, 0.1);
}

.price-cta-outline:hover {
  border-color: var(--sparks-amber);
  color: var(--sparks-amber);
}

/* ── MANIFESTO ──────────────────────────────────────────────── */
.manifesto-section {
  background: var(--white);
  padding: 160px 0; /* Reverted to more restrained space */
  text-align: center;
  position: relative;
}

.manifesto-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.manifesto-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 60px;
}

.manifesto-lines {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 72px;
}

.manifesto-line {
  font-size: clamp(18px, 2.5vw, 24px); /* Reverted to subtle size */
  font-weight: 700;
  color: var(--midnight);
  line-height: 1.6;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.manifesto-line em {
  font-style: normal;
  color: var(--sparks-amber);
}

.manifesto-line.visible {
  opacity: 1;
  transform: translateY(0);
}

.manifesto-line em {
  font-style: normal;
  color: var(--sparks-amber);
}

.manifesto-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.manifesto-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--slate);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--midnight);
  padding: 60px 0 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 32px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-mark {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.footer-logo-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.footer-tagline {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--sparks-amber);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 500;
}

.footer-made {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 500;
}

.footer-made span {
  color: var(--sparks-amber);
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .hero-inner {
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .badges-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .trust-bar-inner {
    gap: 24px;
  }
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
  }

  .nav-toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--midnight);
    border-radius: 10px;
    transition: all 0.3s ease;
  }

  .nav.menu-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
  }

  .nav.menu-open .nav-toggle-bar:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    z-index: 999;
    padding: 140px 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform: scale(1.05);
  }

  .mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }

  .mobile-menu-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    width: 100%;
  }

  .mobile-menu-links a {
    font-size: 32px;
    font-weight: 800;
    color: var(--midnight);
    letter-spacing: -2px;
    text-align: center;
    transition: opacity 0.3s ease;
  }

  .mobile-menu-links a:active {
    opacity: 0.5;
  }

  .mobile-menu-cta {
    background: var(--sparks-amber) !important;
    color: var(--white) !important;
    padding: 16px 32px !important;
    border-radius: 100px;
    display: inline-block;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
    padding-top: 40px;
    width: 100%;
  }

  .hero-subhead {
    margin: 0 auto 48px;
    max-width: 100%;
    padding: 0;
  }

  .hero-actions {
    justify-content: center;
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-text {
    order: 1;
  }

  .hero-phone-wrap {
    display: inline-block !important;
    position: relative;
    max-width: 100%;
  }

  .hero-visual {
    order: 2;
    padding: 20px 0;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
  }

  .hero-stat-1,
  .hero-stat-2,
  .hero-stat-3 {
    display: flex;
    padding: 8px 12px;
    gap: 8px;
    z-index: 10;
  }

  .hero-stat-emoji {
    font-size: 16px;
  }

  .hero-stat-value {
    font-size: 13px;
  }

  .hero-stat-label {
    font-size: 8px;
  }

  .hero-stat {
    position: absolute;
    white-space: nowrap;
  }

  .hero-stat-1 {
    top: 5%;
    right: -24px;
  }

  .hero-stat-2 {
    bottom: 40%;
    left: -24px;
  }

  .hero-stat-3 {
    bottom: 5%;
    right: -12px;
  }

  .hero-phone-img {
    width: 100%;
    max-width: 280px;
    height: auto;
    box-shadow: 
      0 20px 80px rgba(0, 0, 0, 0.1),
      0 0 0 1px rgba(0, 0, 0, 0.03);
    border-radius: 40px;
    transform: none !important;
  }

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

  .pillar-card {
    padding: 40px 24px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  }

  .pillars-header {
    margin-bottom: 56px;
    padding: 0 12px;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 80px 0;
  }

  .feature-content {
    padding: 0 8px;
  }

  .feature-row.reverse .feature-visual {
    order: 0;
  }

  .privacy-inner {
    grid-template-columns: 1fr;
  }

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

  .price-card.featured {
    transform: translateY(0);
  }

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

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

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

@media (max-width: 480px) {
  .nav {
    top: 10px;
    width: calc(100% - 20px);
    height: 56px;
  }

  .hero-display {
    font-size: clamp(34px, 12vw, 58px);
    letter-spacing: -2px;
    margin-bottom: 24px;
    padding: 0;
    line-height: 1.05;
    word-wrap: break-word;
    display: block;
  }

  .hero-display br,
  .headline br,
  .subhead br {
    display: none;
  }
  
  .trust-item {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    width: 100%;
    margin-bottom: 32px;
  }

  .trust-icon-img {
    width: 64px;
    height: 64px;
  }

  .trust-text {
    font-size: 16px;
    line-height: 1.4;
  }

  .container {
    padding: 0 24px;
  }

  .section {
    padding: 80px 0;
  }

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

/* ── UTILS ──────────────────────────────────────────────────── */
.text-amber {
  color: var(--spark-amber);
}

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

.mt-8 {
  margin-top: 8px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}