/* ─────────── DESIGN TOKENS ─────────── */
:root {
  /* brand */
  --c-primary: #6C5CE7;
  --c-primary-light: #A29BFE;
  --c-primary-dark: #4A3DB8;
  --c-secondary: #FDA085;
  --c-accent: #FFECD2;
  --c-gold: #F9A825;
  --c-gold-light: #FFD54F;

  /* night surfaces */
  --bg-0: #0F0C29;
  --bg-1: #1A1640;
  --bg-2: #241F50;
  --bg-card: rgba(36, 31, 80, 0.55);
  --bg-glass: rgba(30, 25, 70, 0.72);
  --border-soft: rgba(108, 92, 231, 0.22);
  --border-medium: rgba(162, 155, 254, 0.32);

  /* text */
  --t-1: #F0EEFF;
  --t-2: #A29BFE;
  --t-3: #6B6399;

  /* gradients */
  --g-night: linear-gradient(180deg, #0F0C29 0%, #302B63 55%, #24243E 100%);
  --g-dream: linear-gradient(135deg, #6C5CE7 0%, #A29BFE 50%, #FDA085 100%);
  --g-sunset: linear-gradient(135deg, #FDA085 0%, #F6D365 100%);
  --g-premium: linear-gradient(135deg, #F9A825 0%, #FF6F00 100%);

  /* radii */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-2xl: 36px;
  --r-full: 999px;

  /* shadows */
  --shadow-soft: 0 8px 24px rgba(0,0,0,0.25);
  --shadow-glow-purple: 0 20px 60px -10px rgba(108, 92, 231, 0.55);
  --shadow-glow-peach:  0 20px 60px -10px rgba(253, 160, 133, 0.45);

  /* layout */
  --container: 1180px;
}

/* ─────────── RESET ─────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--g-night);
  background-attachment: fixed;
  color: var(--t-1);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { font-family: 'Fraunces', 'Inter', serif; font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; margin: 0; }
p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─────────── UTILITIES ─────────── */
.grad-text {
  background: linear-gradient(135deg, #A29BFE 0%, #6C5CE7 60%, #FDA085 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.grad-text-warm {
  background: linear-gradient(135deg, #FDA085 0%, #F9A825 50%, #FFD54F 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  font-weight: 600;
  color: var(--c-primary-light);
  padding: 8px 14px;
  margin-bottom: 18px;
  border-radius: var(--r-full);
  background: rgba(108, 92, 231, 0.10);
  border: 1px solid rgba(162, 155, 254, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.kicker::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c-primary-light);
  box-shadow: 0 0 8px rgba(162, 155, 254, 0.7);
}

/* ─────────── BUTTONS ─────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
}
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-primary {
  background: var(--g-dream);
  color: white;
  box-shadow: var(--shadow-glow-purple);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 24px 60px -8px rgba(108,92,231,0.7); }
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--t-1);
  border: 1px solid var(--border-medium);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--r-md);
  color: white;
  transition: transform 0.2s, background 0.2s;
}
.store-badge:hover { transform: translateY(-2px); background: rgba(0,0,0,0.7); }
.store-badge svg { flex-shrink: 0; }
.store-badge span { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.store-badge small { font-size: 10px; opacity: 0.75; letter-spacing: 0.04em; }
.store-badge strong { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }

/* ─────────── NAV ─────────── */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 12, 41, 0.65);
  backdrop-filter: saturate(160%) blur(20px);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
  border-bottom: 1px solid var(--border-soft);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  box-shadow: 0 4px 12px rgba(108,92,231,0.4);
}
.brand-name {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  margin-right: 12px;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--t-2);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--t-1); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--t-1); border-radius: 2px; }

/* ─────────── HERO ─────────── */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 18s ease-in-out infinite;
}
.orb-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, #6C5CE7, transparent 70%);
  top: -120px; left: -100px;
}
.orb-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, #FDA085, transparent 70%);
  top: 20%; right: -80px;
  animation-delay: -6s;
}
.orb-3 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, #A29BFE, transparent 70%);
  bottom: -120px; left: 30%;
  animation-delay: -12s;
}
@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.05); }
}
.stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 12% 18%, rgba(255,255,255,0.7), transparent),
    radial-gradient(1px 1px at 32% 64%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 58% 28%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1.4px 1.4px at 75% 82%, rgba(255,255,255,0.7), transparent),
    radial-gradient(1px 1px at 88% 12%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 22% 88%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1.2px 1.2px at 45% 8%, rgba(255,255,255,0.6), transparent);
  opacity: 0.7;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(108, 92, 231, 0.15);
  border: 1px solid var(--border-medium);
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-primary-light);
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 8px; height: 8px;
  background: #00B894;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(0,184,148,0.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(0,184,148,0.2); }
  50%      { box-shadow: 0 0 0 8px rgba(0,184,148,0); }
}
.hero-title {
  font-size: clamp(44px, 7vw, 84px);
  font-weight: 700;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 19px;
  color: var(--t-2);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--t-2);
}
.stars-row {
  color: var(--c-gold-light);
  letter-spacing: 2px;
  font-size: 14px;
}
.divider-v {
  width: 1px; height: 16px;
  background: var(--border-medium);
}
.trial-tag {
  font-size: 13.5px;
  color: var(--t-2);
}

/* phone */
.hero-phone {
  position: relative;
  display: flex;
  justify-content: center;
}
.phone-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(108,92,231,0.4), transparent 60%);
  filter: blur(60px);
  z-index: 0;
}
.phone {
  position: relative;
  z-index: 1;
  width: 320px;
  aspect-ratio: 9 / 19.5;
  background: #1A1640;
  border-radius: 48px;
  padding: 12px;
  border: 2px solid rgba(255,255,255,0.08);
  box-shadow:
    0 40px 80px -20px rgba(0,0,0,0.7),
    0 0 0 1px rgba(108,92,231,0.4),
    inset 0 0 0 2px rgba(0,0,0,0.6);
  animation: phoneFloat 6s ease-in-out infinite;
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.phone-notch {
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 28px;
  background: #000;
  border-radius: 999px;
  z-index: 2;
}
.phone-screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 38px;
  overflow: hidden;
  background: var(--g-night);
}
.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.phone-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 18px 22px;
  background: linear-gradient(180deg, transparent, rgba(15,12,41,0.92) 70%);
  display: flex;
  align-items: flex-end;
  gap: 12px;
}
.play-pulse {
  width: 52px; height: 52px;
  flex-shrink: 0;
  background: var(--g-dream);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(108,92,231,0.6);
  position: relative;
}
.play-pulse::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 2px solid rgba(108,92,231,0.5);
  border-radius: 50%;
  animation: ripple 2s ease-out infinite;
}
@keyframes ripple {
  0%   { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}
.now-playing {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.now-playing small { font-size: 11px; color: var(--t-2); margin-bottom: 2px; }
.now-playing strong { font-size: 14px; font-weight: 600; }

/* ─────────── TRUST BAR ─────────── */
.trust {
  padding: 40px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: rgba(15,12,41,0.4);
}
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--t-3);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.trust-logos {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-logos span {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--t-2);
  text-transform: none;
  letter-spacing: -0.01em;
  opacity: 0.7;
}

/* ─────────── SECTIONS ─────────── */
.section {
  padding: 110px 0;
  position: relative;
}
.section-alt {
  background: linear-gradient(180deg, rgba(26, 22, 64, 0.4), rgba(36, 31, 80, 0.6));
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-head h2 {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.section-head p {
  font-size: 18px;
  line-height: 1.55;
  color: var(--t-2);
  max-width: 560px;
  margin: 0 auto;
}

/* ─────────── FEATURES ─────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  position: relative;
  padding: 40px 36px 36px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0) 40%),
    rgba(26, 22, 64, 0.55);
  border: 1px solid rgba(162, 155, 254, 0.14);
  border-radius: var(--r-xl);
  backdrop-filter: blur(24px) saturate(1.15);
  -webkit-backdrop-filter: blur(24px) saturate(1.15);
  transition:
    transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.5s ease,
    background 0.5s ease,
    box-shadow 0.5s ease;
  overflow: hidden;
  isolation: isolate;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.16) 0%,
    rgba(255,255,255,0.02) 28%,
    rgba(255,255,255,0) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}
.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(420px circle at 50% -10%,
    rgba(108, 92, 231, 0.22),
    transparent 55%);
  opacity: 0;
  transition: opacity 0.55s ease;
  pointer-events: none;
  z-index: 0;
}
.feature-card > * { position: relative; z-index: 2; }
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(162, 155, 254, 0.30);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0) 40%),
    rgba(36, 31, 80, 0.65);
  box-shadow:
    0 30px 60px -24px rgba(108, 92, 231, 0.45),
    0 1px 0 0 rgba(255, 255, 255, 0.04) inset;
}
.feature-card:hover::after { opacity: 1; }

.feature-icon {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  color: white;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.28),
    inset 0 -1px 0 rgba(0,0,0,0.18),
    0 6px 18px -6px var(--c1);
  transition:
    transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.55s ease;
}
.feature-icon::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), transparent 50%);
  pointer-events: none;
}
.feature-card:hover .feature-icon {
  transform: translateY(-2px) scale(1.06);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.32),
    inset 0 -1px 0 rgba(0,0,0,0.18),
    0 14px 28px -8px var(--c1);
}

.feature-card h3 {
  font-size: 21px;
  letter-spacing: -0.018em;
  margin-bottom: 12px;
  color: var(--t-1);
}
.feature-card p {
  color: var(--t-2);
  font-size: 15px;
  line-height: 1.65;
}

/* ─────────── HOW IT WORKS ─────────── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.how-step {
  position: relative;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-xl);
  text-align: center;
  overflow: hidden;
}
.how-num {
  position: absolute;
  top: 18px; right: 24px;
  font-family: 'Fraunces', serif;
  font-size: 56px;
  font-weight: 700;
  background: var(--g-dream);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.45;
  line-height: 1;
}
.how-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-lg);
  margin-bottom: 22px;
}
.how-step h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.how-step p {
  color: var(--t-2);
  font-size: 15px;
}

/* ─────────── SCREENSHOTS GALLERY ─────────── */
.screenshots { position: relative; overflow: hidden; }
.screens-bg {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
}
.screens-bg .orb-1 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, #6C5CE7, transparent 70%);
  top: 15%; left: -100px;
  opacity: 0.35;
}
.screens-bg .orb-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, #FDA085, transparent 70%);
  bottom: 10%; right: -80px;
  opacity: 0.3;
}
.screens-scroller {
  position: relative;
  z-index: 1;
}
.screens-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 12px 4px 32px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  scroll-padding-left: 4px;
}
.screens-track::-webkit-scrollbar { display: none; }
.screen {
  margin: 0;
  flex: 0 0 280px;
  scroll-snap-align: start;
  border-radius: 32px;
  overflow: hidden;
  background: #1A1640;
  border: 1px solid var(--border-soft);
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,0.6),
    0 0 0 1px rgba(108,92,231,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}
.screen:hover {
  transform: translateY(-6px);
  box-shadow:
    0 40px 80px -20px rgba(0,0,0,0.75),
    0 0 0 1px rgba(108,92,231,0.4);
}
.screen img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1320 / 2868;
  object-fit: cover;
}
.screens-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(15,12,41,0.85);
  border: 1px solid var(--border-medium);
  color: var(--t-1);
  cursor: pointer;
  z-index: 2;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.2s, transform 0.2s;
}
.screens-nav:hover { background: var(--c-primary); transform: translateY(-50%) scale(1.05); }
.screens-prev { left: -16px; }
.screens-next { right: -16px; }
@media (max-width: 720px) {
  .screen { flex: 0 0 240px; }
  .screens-nav { display: none; }
}

/* ─────────── STORIES MARQUEE ─────────── */
.stories-marquee {
  position: relative;
  overflow: hidden;
  margin: 0 -24px;
  padding: 8px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.stories-track {
  display: flex;
  gap: 22px;
  animation: marquee 50s linear infinite;
  width: max-content;
}
.stories-marquee:hover .stories-track { animation-play-state: paused; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.stories-track figure {
  margin: 0;
  width: 220px;
  flex-shrink: 0;
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s;
}
.stories-track figure:hover { transform: translateY(-6px) scale(1.03); }
.stories-track img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.stories-track figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 16px 14px;
  background: linear-gradient(180deg, transparent, rgba(15,12,41,0.95));
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 600;
}

/* ─────────── TESTIMONIALS ─────────── */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quote {
  margin: 0;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-xl);
  position: relative;
}
.quote::before {
  content: '“';
  position: absolute;
  top: -8px; left: 18px;
  font-family: 'Fraunces', serif;
  font-size: 80px;
  color: var(--c-secondary);
  line-height: 1;
  opacity: 0.5;
}
.quote p {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  color: var(--t-1);
  margin: 0 0 18px;
  line-height: 1.5;
}
.quote footer {
  font-size: 14px;
  color: var(--t-2);
  font-weight: 500;
}

/* ─────────── PRICING ─────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}
.plan {
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-2xl);
  display: flex;
  flex-direction: column;
  position: relative;
}
.plan-featured {
  background: linear-gradient(180deg, rgba(108,92,231,0.18), rgba(253,160,133,0.08));
  border: 1px solid var(--c-primary);
  box-shadow: var(--shadow-glow-purple);
}
.plan-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--g-premium);
  color: white;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: var(--r-full);
}
.plan-head h3 {
  font-size: 28px;
  margin-bottom: 12px;
}
.plan-price {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}
.plan-price span {
  font-size: 16px;
  color: var(--t-2);
  font-weight: 500;
}
.plan-head small {
  display: block;
  margin-top: 8px;
  color: var(--c-gold-light);
  font-size: 13px;
  font-weight: 600;
}
.plan-features {
  margin: 28px 0;
  flex-grow: 1;
}
.plan-features li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  color: var(--t-2);
  font-size: 15px;
  border-bottom: 1px solid var(--border-soft);
}
.plan-features li:last-child { border-bottom: 0; }
.plan-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 18px; height: 18px;
  background: var(--g-dream);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/contain no-repeat;
}
.plan-features strong { color: var(--t-1); }
.pricing-note {
  text-align: center;
  margin-top: 32px;
  font-size: 13px;
  color: var(--t-3);
}

/* ─────────── FAQ ─────────── */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq details {
  border: 1px solid var(--border-soft);
  background: var(--bg-card);
  border-radius: var(--r-lg);
  margin-bottom: 12px;
  transition: border-color 0.2s;
  overflow: hidden;
}
.faq details[open] { border-color: var(--border-medium); }
.faq summary {
  padding: 22px 24px;
  font-weight: 600;
  font-size: 16.5px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  position: relative;
  user-select: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 26px;
  font-weight: 300;
  color: var(--c-primary-light);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  padding: 0 24px 24px;
  color: var(--t-2);
  font-size: 15px;
  line-height: 1.65;
}

/* ─────────── CTA ─────────── */
.cta { padding: 80px 0; }
.cta-inner {
  position: relative;
  text-align: center;
  padding: 80px 32px;
  background: linear-gradient(135deg, rgba(108,92,231,0.18), rgba(253,160,133,0.14));
  border: 1px solid var(--border-medium);
  border-radius: var(--r-2xl);
  overflow: hidden;
}
.cta-orb {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(108,92,231,0.5), transparent 60%);
  filter: blur(60px);
  top: -200px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.cta-inner h2 {
  position: relative;
  font-size: clamp(34px, 5vw, 52px);
  margin-bottom: 16px;
}
.cta-inner p {
  position: relative;
  font-size: 18px;
  color: var(--t-2);
  max-width: 540px;
  margin: 0 auto 32px;
}
.cta-inner .hero-ctas { position: relative; justify-content: center; margin-bottom: 0; }

.notify-form {
  position: relative;
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.notify-form input[type="email"] {
  flex: 1 1 240px;
  min-width: 0;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid var(--border-medium);
  background: rgba(255,255,255,0.06);
  color: var(--t-1);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color .2s, background .2s;
}
.notify-form input[type="email"]::placeholder { color: var(--t-3); }
.notify-form input[type="email"]:focus {
  border-color: var(--c-primary-light);
  background: rgba(255,255,255,0.09);
}
.notify-form .btn { flex: 0 0 auto; }

/* ─────────── FOOTER ─────────── */
.footer {
  padding: 60px 0 30px;
  border-top: 1px solid var(--border-soft);
  background: rgba(15,12,41,0.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p {
  color: var(--t-3);
  font-size: 14px;
  margin-top: 14px;
  max-width: 240px;
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-primary-light);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  margin-bottom: 10px;
  font-size: 14.5px;
  color: var(--t-2);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--t-1); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom small { color: var(--t-3); font-size: 13px; }
.socials { display: flex; gap: 14px; }
.socials a {
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: var(--t-2);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.socials a:hover {
  background: var(--c-primary);
  color: white;
  transform: translateY(-2px);
}

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

/* ─────────── RESPONSIVE ─────────── */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas, .hero-meta { justify-content: center; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0;
                background: var(--bg-1); border-top: 1px solid var(--border-soft);
                flex-direction: column; padding: 20px 24px; gap: 16px; }
  .nav-links.is-open { display: flex; }
  .nav-toggle { display: flex; }
  .section { padding: 80px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .phone { width: 280px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
