/* ══════════════════════════════════════════════
   CineRush — Landing Page Stylesheet
   ══════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --bg:    #080808;
  --bg2:   #0d0d0d;
  --bg3:   #111111;
  --card:  #161616;
  --card2: #1a1a1a;
  --border:  rgba(255,255,255,0.055);
  --border2: rgba(255,255,255,0.10);
  --accent:  #a855f7;
  --accent2: #ec4899;
  --accent-dim: rgba(168,85,247,0.12);
  --green: #22c55e;
  --text:  #f4f4f5;
  --text2: #a1a1aa;
  --text3: #52525b;
  --gradient: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
  --gradient-wide: linear-gradient(135deg, #a855f7 0%, #ec4899 60%, #f97316 100%);
  --radius:    14px;
  --radius-sm:  8px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow:  0 24px 64px rgba(0,0,0,0.5);
  --glow:    0 0 48px rgba(168,85,247,0.18);
  --nav-h:   72px;
  --ease:    cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
img { max-width: 100%; display: block; }
::selection { background: rgba(168,85,247,0.25); }

/* ── Grain overlay ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.6;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-animated {
  background: linear-gradient(135deg, #a855f7, #ec4899, #f97316, #a855f7);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s linear infinite;
}

/* ── Container ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: var(--gradient);
  color: #fff;
  border-radius: 11px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn-primary:hover::before  { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(168,85,247,0.45); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border2);
  color: var(--text);
  border-radius: 11px;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}

.btn-lg { padding: 16px 34px; font-size: 16px; border-radius: 13px; }

/* ── Section header ── */
.section-header { text-align: center; margin-bottom: 72px; }
.section-header h2 {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  margin: 18px 0 20px;
}
.section-header p { font-size: 18px; color: var(--text2); max-width: 520px; margin: 0 auto; }
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(168,85,247,0.08);
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* ─────────────────────────────────────
   ANIMATIONS
───────────────────────────────────── */
.animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--delay, 0s);
}
.animate.visible { opacity: 1; transform: translateY(0); }

.animate-right {
  opacity: 0;
  transform: translateX(44px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  transition-delay: 0.15s;
}
.animate-right.visible { opacity: 1; transform: translateX(0); }

.animate-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  transition-delay: var(--delay, 0s);
}
.animate-scale.visible { opacity: 1; transform: scale(1); }

@keyframes float-a {
  0%,100% { transform: translate(0,0) scale(1); }
  30%     { transform: translate(70px,-50px) scale(1.08); }
  65%     { transform: translate(-50px,70px) scale(0.93); }
}
@keyframes float-b {
  0%,100% { transform: translate(0,0) scale(1); }
  40%     { transform: translate(-90px,60px) scale(1.12); }
  70%     { transform: translate(60px,-80px) scale(0.90); }
}
@keyframes float-c {
  0%,100% { transform: translate(0,0); }
  50%     { transform: translate(50px,50px); }
}
@keyframes shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 300% center; }
}
@keyframes pulse-ring {
  0%,100% { box-shadow: 0 0 0 0 rgba(168,85,247,0.45); }
  50%     { box-shadow: 0 0 0 8px rgba(168,85,247,0); }
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes bob2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes progress-fill {
  0%   { width: 0%; }
  100% { width: 72%; }
}
@keyframes bar-in { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* ─────────────────────────────────────
   NAVBAR
───────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}
.navbar.scrolled {
  background: rgba(8,8,8,0.8);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}
.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 20px;
  flex-shrink: 0;
  letter-spacing: -0.03em;
}
.logo-icon {
  width: 36px; height: 36px;
  background: var(--gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(168,85,247,0.4);
}
.nav-links { display: flex; gap: 28px; flex: 1; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text2);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-actions { margin-left: auto; }
.btn-nav {
  padding: 9px 20px;
  background: var(--gradient);
  color: white;
  border-radius: 9px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.25s var(--ease);
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(168,85,247,0.4); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 28px 22px;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-mobile a {
  padding: 12px 0;
  font-size: 15px;
  color: var(--text2);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav-mobile a:last-of-type { border-bottom: none; }
.nav-mobile a:hover { color: var(--text); }
.nav-mobile.open { display: flex; }

/* ─────────────────────────────────────
   HERO
───────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 72px) 0 100px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  will-change: transform;
}
.orb-1 {
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(168,85,247,0.2), transparent 65%);
  top: -180px; left: -160px;
  animation: float-a 28s ease-in-out infinite;
}
.orb-2 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(236,72,153,0.16), transparent 65%);
  bottom: -80px; right: 5%;
  animation: float-b 35s ease-in-out infinite;
}
.orb-3 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(99,102,241,0.12), transparent 65%);
  top: 40%; right: 40%;
  animation: float-c 22s ease-in-out infinite;
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 20%, transparent 80%);
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(168,85,247,0.08);
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: 100px;
  font-size: 12.5px;
  color: var(--accent);
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-ring 2.2s ease infinite;
}
.hero-title {
  font-size: clamp(38px, 5.2vw, 66px);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 26px;
  letter-spacing: -0.03em;
}
.hero-subtitle {
  font-size: 18px;
  color: var(--text2);
  line-height: 1.75;
  margin-bottom: 38px;
  max-width: 460px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  align-items: center;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text3);
  flex-wrap: wrap;
}
.hero-trust span:first-child { color: #fbbf24; }

/* ── App mockup ── */
.hero-visual { position: relative; padding: 30px 40px 30px 10px; }
.app-mockup {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 80px rgba(168,85,247,0.07);
  position: relative;
  z-index: 1;
}
.mockup-bar {
  background: var(--bg3);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}
.mockup-dots { display: flex; gap: 7px; }
.mockup-dots span { width: 11px; height: 11px; border-radius: 50%; }
.mockup-dots span:nth-child(1) { background: #ef4444; }
.mockup-dots span:nth-child(2) { background: #f59e0b; }
.mockup-dots span:nth-child(3) { background: #22c55e; }
.mockup-title { font-size: 12px; color: var(--text3); font-weight: 500; margin: 0 auto; letter-spacing: 0.02em; }
.mockup-body { padding: 20px; }
.mockup-input { margin-bottom: 14px; }
.mockup-label { font-size: 10.5px; color: var(--text3); margin-bottom: 6px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; }
.mockup-field {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 12.5px;
  color: var(--text3);
  display: flex;
  align-items: center;
  gap: 4px;
}
.mockup-field.active { border-color: rgba(168,85,247,0.5); color: var(--text2); }
.mockup-cursor { width: 1px; height: 13px; background: var(--accent); animation: blink 1s step-end infinite; }
.mockup-toggles { display: flex; gap: 8px; margin-bottom: 14px; }
.mockup-toggle {
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 500;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  color: #4ade80;
}
.mockup-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  background: var(--gradient);
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: white;
  margin-bottom: 16px;
}
.mockup-steps { display: flex; flex-direction: column; gap: 9px; margin-bottom: 14px; }
.mockup-step { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: var(--text3); }
.mockup-step .sdot { width: 8px; height: 8px; border-radius: 50%; background: var(--border2); flex-shrink: 0; }
.mockup-step.done  { color: #4ade80; }
.mockup-step.done .sdot { background: #22c55e; }
.mockup-step.running { color: var(--accent); }
.mockup-step.running .sdot { background: var(--accent); animation: pulse-ring 1.5s ease infinite; }
.step-check  { margin-left: auto; font-size: 11px; color: #4ade80; }
.step-loading { margin-left: auto; animation: blink 0.8s step-end infinite; color: var(--accent); }
.mockup-progress {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin: 4px 0 14px;
}
.mockup-progress-fill {
  height: 100%;
  background: var(--gradient);
  border-radius: 2px;
  animation: progress-fill 2.2s ease-out 0.5s both;
}
.mockup-headline {
  background: rgba(168,85,247,0.06);
  border: 1px solid rgba(168,85,247,0.15);
  border-radius: 9px;
  padding: 10px 12px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.hl-badge {
  font-size: 10px;
  background: var(--gradient);
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
  letter-spacing: 0.04em;
}
.hl-text { font-size: 12px; color: var(--text2); line-height: 1.5; }

/* Floating cards */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(18,18,18,0.92);
  border: 1px solid var(--border2);
  border-radius: 13px;
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  min-width: 200px;
  z-index: 2;
}
.float-1 { bottom: 10px; left: -20px; animation: bob 5s ease-in-out infinite; }
.float-2 { top: 10px; right: 20px; animation: bob2 4s ease-in-out infinite 0.8s; }
.float-icon { font-size: 24px; line-height: 1; }
.float-title { font-size: 13px; font-weight: 600; }
.float-sub { font-size: 11px; color: var(--text3); margin-top: 2px; }

/* ─────────────────────────────────────
   STATS
───────────────────────────────────── */
.stats {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(168,85,247,0.04), transparent);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item {
  padding: 28px 16px;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 44px;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.stat-label { font-size: 13.5px; color: var(--text3); font-weight: 500; }

/* ─────────────────────────────────────
   FEATURES
───────────────────────────────────── */
.features { padding: 110px 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  padding: 30px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover { transform: translateY(-5px); border-color: rgba(168,85,247,0.22); box-shadow: 0 20px 50px rgba(0,0,0,0.35), var(--glow); }
.feature-card:hover::after { opacity: 1; }
.feature-icon {
  width: 50px; height: 50px;
  background: var(--accent-dim);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
  transition: background 0.3s, box-shadow 0.3s;
}
.feature-card:hover .feature-icon { background: rgba(168,85,247,0.18); box-shadow: 0 0 20px rgba(168,85,247,0.2); }
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; }
.feature-card p { font-size: 14px; color: var(--text2); line-height: 1.75; }

/* ─────────────────────────────────────
   HOW IT WORKS
───────────────────────────────────── */
.how-it-works {
  padding: 110px 0;
  background: linear-gradient(to bottom, var(--bg), var(--bg2) 50%, var(--bg));
  position: relative;
  overflow: hidden;
}
.how-it-works::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(168,85,247,0.06), transparent 60%);
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.steps-wrap {
  display: grid;
  grid-template-columns: 1fr 60px 1fr 60px 1fr;
  gap: 0;
  align-items: center;
  position: relative;
  z-index: 1;
}
.step-card {
  padding: 36px 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s;
}
.step-card:hover { transform: translateY(-5px); border-color: rgba(168,85,247,0.25); box-shadow: 0 24px 60px rgba(0,0,0,0.4), var(--glow); }
.step-card:hover::before { opacity: 0.04; }
.step-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 52px;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 24px;
}
.step-icon {
  width: 58px; height: 58px;
  background: var(--accent-dim);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin: 0 auto 18px;
}
.step-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.01em; }
.step-card p { font-size: 14px; color: var(--text2); line-height: 1.7; }
.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.step-connector::before {
  content: '';
  width: 48px; height: 2px;
  background: linear-gradient(to right, rgba(168,85,247,0.3), rgba(236,72,153,0.3));
  border-radius: 1px;
}
.step-connector::after {
  content: '›';
  position: absolute;
  color: rgba(168,85,247,0.5);
  font-size: 18px;
}

/* ─────────────────────────────────────
   PRICING
───────────────────────────────────── */
.pricing { padding: 110px 0; }
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 56px;
}
.toggle-lbl {
  font-size: 15px;
  font-weight: 500;
  color: var(--text3);
  transition: color 0.25s;
  cursor: pointer;
}
.toggle-lbl.active { color: var(--text); }
.p-toggle input { display: none; }
.p-toggle .ttrack {
  display: block;
  width: 52px; height: 28px;
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: 100px;
  cursor: pointer;
  position: relative;
  transition: background 0.3s, border-color 0.3s;
}
.p-toggle .ttrack::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 20px; height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s var(--ease);
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.p-toggle input:checked + .ttrack { background: var(--gradient); border-color: transparent; }
.p-toggle input:checked + .ttrack::after { transform: translateX(24px); }
.save-badge {
  padding: 2px 7px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 5px;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.04em;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.p-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
  position: relative;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.p-card:hover { transform: translateY(-4px); border-color: rgba(168,85,247,0.2); }
.p-card.featured {
  /* fundo OPACO p/ a borda em gradiente (::before) não vazar por dentro do card */
  background: #14101c;
  border-color: rgba(168,85,247,0.3);
  transform: scale(1.04);
  box-shadow: 0 0 0 1px rgba(168,85,247,0.15), var(--glow), var(--shadow);
}
.p-card.featured:hover { transform: scale(1.04) translateY(-5px); }
.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: var(--gradient);
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 700;
  color: white;
  white-space: nowrap;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 16px rgba(168,85,247,0.4);
}
.plan-name { font-size: 19px; font-weight: 700; margin-bottom: 4px; letter-spacing: -0.02em; }
.plan-desc { font-size: 13px; color: var(--text3); margin-bottom: 26px; }
.plan-price { display: flex; align-items: baseline; gap: 3px; margin-bottom: 4px; }
.price-cur { font-size: 18px; font-weight: 700; color: var(--text2); margin-right: 2px; }
.price-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  transition: all 0.4s var(--ease);
}
.price-per { font-size: 14px; color: var(--text3); margin-left: 2px; }
/* Preço original + selo, no canto superior do valor atual */
.price-old-wrap {
  display: inline-flex; flex-direction: column; align-items: flex-start;
  align-self: flex-start;        /* sobe pro topo do número grande */
  gap: 4px; margin-left: 8px; margin-top: 2px;
}
.price-old {
  font-size: 15px; font-weight: 600; color: var(--text3);
  text-decoration: line-through; text-decoration-color: rgba(239,68,68,.7);
}
.discount-badge {
  font-size: 10.5px; font-weight: 800; letter-spacing: .02em;
  color: #fff; background: linear-gradient(135deg, #22c55e, #16a34a);
  padding: 2px 7px; border-radius: 6px; line-height: 1.4; width: fit-content;
}
.price-note { font-size: 12px; color: var(--text3); margin-bottom: 26px; min-height: 16px; }
.plan-feats { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.pf {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text2);
}
.pf .check { color: var(--green); flex-shrink: 0; }
.pf.off { opacity: 0.3; }
.pf.off .check { color: var(--text3); }
.btn-plan {
  display: block;
  width: 100%;
  padding: 13px;
  text-align: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border2);
  border-radius: 10px;
  font-weight: 600;
  font-size: 14.5px;
  transition: all 0.25s var(--ease);
}
.btn-plan:hover { background: rgba(255,255,255,0.1); }
.btn-plan.featured-btn {
  background: var(--gradient);
  border-color: transparent;
  color: white;
}
.btn-plan.featured-btn:hover { box-shadow: 0 6px 24px rgba(168,85,247,0.45); }
.pricing-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 44px;
  font-size: 14px;
  color: var(--green);
}

/* ─────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────── */
.testimonials { padding: 110px 0; background: var(--bg2); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
}
.testi-card {
  padding: 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.testi-card:hover { transform: translateY(-3px); border-color: var(--border2); }
.testi-stars { color: #fbbf24; font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.testi-text { font-size: 14.5px; color: var(--text2); line-height: 1.7; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.testi-name { font-size: 13.5px; font-weight: 600; }
.testi-role { font-size: 12px; color: var(--text3); margin-top: 2px; }

/* ─────────────────────────────────────
   FAQ
───────────────────────────────────── */
.faq { padding: 110px 0; }
.faq-wrap { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--border2); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  color: var(--text);
  transition: color 0.2s;
  gap: 16px;
}
.faq-q svg { transition: transform 0.35s var(--ease); flex-shrink: 0; color: var(--text3); }
.faq-q.open svg { transform: rotate(180deg); color: var(--accent); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-a.open { max-height: 220px; }
.faq-a p {
  padding: 0 24px 22px;
  font-size: 14.5px;
  color: var(--text2);
  line-height: 1.75;
  border-top: 1px solid var(--border);
}

/* ─────────────────────────────────────
   CTA
───────────────────────────────────── */
.cta-section { padding: 110px 0; }
.cta-wrap {
  text-align: center;
  background: var(--card);
  border: 1px solid rgba(168,85,247,0.18);
  border-radius: var(--radius-xl);
  padding: 88px 40px;
  position: relative;
  overflow: hidden;
}
.cta-wrap::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(168,85,247,0.1), transparent 60%);
  top: -150px; left: -100px;
  pointer-events: none;
}
.cta-wrap::after {
  content: '';
  position: absolute;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(236,72,153,0.08), transparent 60%);
  bottom: -120px; right: -80px;
  pointer-events: none;
}
.cta-wrap .section-badge { margin-bottom: 22px; }
.cta-wrap h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.cta-wrap p {
  font-size: 17px;
  color: var(--text2);
  max-width: 460px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}
.cta-actions { position: relative; z-index: 1; display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ─────────────────────────────────────
   FOOTER
───────────────────────────────────── */
.footer {
  padding: 72px 0 36px;
  border-top: 1px solid var(--border);
  background: var(--bg2);
}
.footer-top {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
  margin-bottom: 56px;
}
.footer-brand p { font-size: 14px; color: var(--text3); line-height: 1.75; margin-top: 14px; max-width: 220px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title { font-size: 11.5px; font-weight: 700; color: var(--text); letter-spacing: 0.09em; text-transform: uppercase; margin-bottom: 6px; }
.footer-col a { font-size: 14px; color: var(--text3); transition: color 0.2s; }
.footer-col a:hover { color: var(--text2); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text3);
}

/* ─────────────────────────────────────
   AUTH PAGE
───────────────────────────────────── */
.auth-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}
.auth-left {
  background: var(--bg2);
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 48px 56px;
}
.auth-left-content { position: relative; z-index: 1; width: 100%; }
.auth-pitch-title { font-size: clamp(26px,3vw,40px); font-weight: 900; line-height: 1.15; margin-bottom: 12px; letter-spacing: -0.03em; }
.auth-pitch-sub { font-size: 15px; color: var(--text2); margin-bottom: 36px; }
.auth-feats { display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; }
.auth-feat { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text2); }
.af-icon { width: 24px; height: 24px; background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.2); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: var(--green); flex-shrink: 0; }
.auth-quote { padding: 20px; background: rgba(168,85,247,0.05); border: 1px solid rgba(168,85,247,0.12); border-radius: var(--radius); }
.auth-quote p { font-size: 14px; color: var(--text2); font-style: italic; margin-bottom: 14px; line-height: 1.7; }
.auth-quote-author { display: flex; align-items: center; gap: 10px; }
.auth-right { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 48px 40px; background: var(--bg); position: relative; }
.auth-back { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); font-size: 13px; color: var(--text3); transition: color 0.2s; white-space: nowrap; }
.auth-back:hover { color: var(--text2); }
.auth-form-wrap { width: 100%; max-width: 380px; }
.auth-tabs { display: grid; grid-template-columns: 1fr 1fr; background: var(--bg3); border: 1px solid var(--border); border-radius: 11px; padding: 4px; margin-bottom: 28px; position: relative; }
.auth-tab { padding: 10px; font-size: 14px; font-weight: 600; color: var(--text3); border-radius: 8px; transition: color 0.25s; position: relative; z-index: 1; }
.auth-tab.active { color: var(--text); }
.auth-tab-indicator { position: absolute; top: 4px; left: 4px; width: calc(50% - 4px); height: calc(100% - 8px); background: var(--card2); border: 1px solid var(--border2); border-radius: 8px; transition: transform 0.3s var(--ease); pointer-events: none; }
.btn-google { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 12px; background: rgba(255,255,255,0.04); border: 1px solid var(--border2); border-radius: 10px; font-size: 14px; font-weight: 500; color: var(--text); transition: all 0.25s var(--ease); cursor: pointer; margin-bottom: 20px; font-family: inherit; }
.btn-google:hover { background: rgba(255,255,255,0.08); transform: translateY(-1px); }
.auth-divider { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; font-size: 12px; color: var(--text3); }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.auth-form { display: flex; flex-direction: column; gap: 18px; }
.af-field { display: flex; flex-direction: column; gap: 6px; }
.af-field label { font-size: 12px; font-weight: 600; color: var(--text2); letter-spacing: 0.04em; display: flex; justify-content: space-between; align-items: center; }
.af-field input { padding: 12px 14px; background: var(--bg3); border: 1px solid var(--border2); border-radius: 9px; color: var(--text); font-size: 15px; font-family: inherit; transition: border-color 0.2s, box-shadow 0.2s; outline: none; }
.af-field input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(168,85,247,0.12); }
.af-forgot { font-size: 11.5px; color: var(--accent); font-weight: 400; }
.af-forgot:hover { text-decoration: underline; }
.af-password-wrap { position: relative; }
.af-password-wrap input { width: 100%; padding-right: 44px; }
.af-eye { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); color: var(--text3); opacity: 0.4; transition: opacity 0.2s; display: flex; align-items: center; cursor: pointer; background: none; border: none; }
.af-eye:hover { opacity: 0.8; }
.pwd-strength-bar { height: 3px; background: var(--border); border-radius: 2px; margin-top: 8px; overflow: hidden; }
.pwd-strength-bar div { height: 100%; width: 0; border-radius: 2px; transition: width 0.3s, background 0.3s; }
.af-error { padding: 10px 14px; background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.2); border-radius: 8px; font-size: 13px; color: #fca5a5; }
.btn-auth { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 14px; background: var(--gradient); color: white; border-radius: 10px; font-size: 15px; font-weight: 700; cursor: pointer; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); position: relative; overflow: hidden; border: none; font-family: inherit; }
.btn-auth::before { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.1); opacity: 0; transition: opacity 0.2s; }
.btn-auth:hover::before { opacity: 1; }
.btn-auth:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(168,85,247,0.4); }
.btn-auth:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; box-shadow: none !important; }
.btn-auth-text { transition: opacity 0.2s; }
.btn-auth-spinner { width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.3); border-top-color: white; border-radius: 50%; animation: spin-slow 0.7s linear infinite; position: absolute; }
.af-legal { font-size: 12px; color: var(--text3); line-height: 1.6; text-align: center; }
.af-legal a, .af-switch a { color: var(--text2); }
.af-legal a:hover, .af-switch a:hover { color: var(--accent); }
.af-switch { font-size: 13px; color: var(--text3); text-align: center; }
.af-switch a { font-weight: 500; }

/* Nav user state */
.nav-user { display: flex; align-items: center; gap: 8px; }
.nav-avatar { width: 32px; height: 32px; background: var(--gradient); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: white; cursor: pointer; transition: opacity 0.2s; flex-shrink: 0; }
.nav-avatar:hover { opacity: 0.85; }
.nav-plan-badge { padding: 3px 8px; font-size: 11px; font-weight: 700; border-radius: 5px; letter-spacing: 0.04em; text-transform: uppercase; }
.nav-plan-badge.free  { background: rgba(82,82,91,0.3); color: var(--text3); border: 1px solid var(--border2); }
.nav-plan-badge.trial { background: rgba(251,191,36,0.1); color: #fbbf24; border: 1px solid rgba(251,191,36,0.2); }
.nav-plan-badge.pro   { background: rgba(168,85,247,0.12); color: var(--accent); border: 1px solid rgba(168,85,247,0.25); }

@media (max-width: 768px) {
  .auth-layout { grid-template-columns: 1fr; }
  .auth-left { display: none; }
  .auth-right { min-height: 100vh; padding: 48px 24px; justify-content: flex-start; }
  .auth-back { position: static; transform: none; margin-top: 24px; display: block; text-align: center; }
}

/* ─────────────────────────────────────
   INNER PAGES (Privacy / Terms / About)
───────────────────────────────────── */
.inner-hero {
  padding: calc(var(--nav-h) + 80px) 0 64px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.inner-hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(168,85,247,0.1), transparent 60%);
  top: -200px; right: -100px;
  pointer-events: none;
}
.inner-hero .section-badge { margin-bottom: 20px; }
.inner-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}
.inner-hero p { font-size: 16px; color: var(--text3); }

.prose-section { padding: 72px 0 100px; }
.prose-wrap { max-width: 740px; }
.prose-wrap h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 48px 0 14px;
  letter-spacing: -0.01em;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.prose-wrap h2:first-of-type { margin-top: 0; border-top: none; padding-top: 0; }
.prose-wrap h3 { font-size: 16px; font-weight: 600; color: var(--text2); margin: 24px 0 8px; }
.prose-wrap p { font-size: 15px; color: var(--text2); line-height: 1.85; margin-bottom: 16px; }
.prose-wrap ul, .prose-wrap ol { padding-left: 22px; margin-bottom: 16px; }
.prose-wrap li { font-size: 15px; color: var(--text2); line-height: 1.8; margin-bottom: 6px; }
.prose-wrap a { color: var(--accent); transition: opacity 0.2s; }
.prose-wrap a:hover { opacity: 0.8; text-decoration: underline; }
.prose-wrap strong { color: var(--text); font-weight: 600; }
.prose-callout {
  background: rgba(168,85,247,0.06);
  border: 1px solid rgba(168,85,247,0.15);
  border-left: 3px solid var(--accent);
  border-radius: 0 10px 10px 0;
  padding: 18px 22px;
  margin: 28px 0;
}
.prose-callout p { margin: 0; color: var(--text2); }
.prose-callout p strong { color: var(--accent); }

/* About page specifics */
.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 48px 0; }
.about-val {
  padding: 26px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.3s, border-color 0.3s;
}
.about-val:hover { transform: translateY(-3px); border-color: rgba(168,85,247,0.2); }
.about-val-icon { font-size: 28px; margin-bottom: 14px; }
.about-val h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.about-val p { font-size: 13.5px; color: var(--text2); line-height: 1.7; }
.about-team { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 32px; }
.team-card {
  padding: 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.3s, border-color 0.3s;
}
.team-card:hover { transform: translateY(-3px); border-color: rgba(168,85,247,0.2); }
.team-avatar {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.team-name { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--text3); }

/* ─────────────────────────────────────
   RESPONSIVE
───────────────────────────────────── */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle { margin: 0 auto 38px; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--border); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .p-card.featured { transform: none; }
  .p-card.featured:hover { transform: translateY(-4px); }
  .about-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  .features-grid, .pricing-grid, .testi-grid, .about-team { grid-template-columns: 1fr; }
  .steps-wrap { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .about-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none !important; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .cta-wrap { padding: 56px 24px; }
}
@media (max-width: 500px) {
  .container { padding: 0 18px; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { justify-content: center; }
  .footer-cols { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   MOTION ENHANCEMENTS — CineRush Premium
   ══════════════════════════════════════════════ */

/* Scroll progress bar */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 10000;
  background: linear-gradient(90deg, #a855f7, #ec4899, #f97316);
  width: 0%; transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(168,85,247,.8);
}

/* cursor glow removido */

/* Particles */
.particle {
  position: fixed; border-radius: 50%;
  pointer-events: none; z-index: 0;
}
@keyframes float-particle {
  0%,100% { transform: translateY(0px) translateX(0px); opacity: .15; }
  25%     { transform: translateY(-30px) translateX(15px); opacity: .4; }
  50%     { transform: translateY(-60px) translateX(-10px); opacity: .2; }
  75%     { transform: translateY(-30px) translateX(-20px); opacity: .35; }
}

/* Nav link underline */
.nav-links a { position: relative; }
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -3px; left: 0; width: 0; height: 1.5px;
  background: linear-gradient(90deg, #a855f7, #ec4899);
  transition: width .3s ease; border-radius: 2px;
}
.nav-links a:hover::after { width: 100%; }

/* Feature card glow on hover */
.feature-card {
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  will-change: transform;
}
.feature-card:hover {
  box-shadow: 0 0 0 1px rgba(168,85,247,.25), 0 24px 64px rgba(0,0,0,.5), 0 0 40px rgba(168,85,247,.1);
  border-color: rgba(168,85,247,.2);
}
.feature-icon {
  transition: transform .35s ease, box-shadow .35s ease;
}
.feature-card:hover .feature-icon {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 8px 24px rgba(168,85,247,.4);
}

/* Card principal: borda roxa FIXA + brilho pulsante simples (psicologia: roxo = premium) */
.p-card.featured {
  position: relative; z-index: 0;
  animation: featured-glow 2.6s ease-in-out infinite;
}
.p-card.featured::before {
  content: ''; position: absolute; inset: -1.5px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: linear-gradient(135deg, #a855f7, #c026d3);  /* roxo fixo, sem arco-íris */
  z-index: -1;
}
@keyframes featured-glow {
  0%,100% { box-shadow: 0 0 0 1px rgba(168,85,247,.25), 0 0 22px rgba(168,85,247,.22); }
  50%     { box-shadow: 0 0 0 1px rgba(168,85,247,.5),  0 0 42px rgba(168,85,247,.5); }
}

/* Pricing card hover */
.p-card {
  transition: transform .35s ease, box-shadow .35s ease;
  will-change: transform;
}
.p-card:hover { transform: translateY(-6px); }
.p-card.featured:hover { transform: translateY(-8px); }

/* Testimonial card hover */
.testi-card {
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
  will-change: transform;
}
.testi-card:hover {
  transform: perspective(800px) rotateX(-2deg) translateY(-6px);
  border-color: rgba(168,85,247,.2);
  box-shadow: 0 24px 64px rgba(0,0,0,.4), 0 0 30px rgba(168,85,247,.08);
}

/* Hero title reveal animation */
@keyframes char-reveal {
  from { opacity: 0; transform: translateY(20px) rotateX(-30deg); filter: blur(4px); }
  to   { opacity: 1; transform: translateY(0) rotateX(0); filter: blur(0); }
}
.hero-title .word {
  display: inline-block;
  animation: char-reveal .6s ease both;
}

/* Stats section glow on numbers */
.stat-number {
  transition: color .3s;
}
.stat-item:hover .stat-number {
  background: linear-gradient(135deg, #a855f7, #ec4899);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* Magnetic button smooth */
.btn-primary, .btn-nav, .btn-lg, .btn-ghost {
  will-change: transform;
  transition: transform .2s cubic-bezier(.23,1,.32,1), box-shadow .2s ease, background .2s;
}

/* How-it-works step highlight */
.step-item {
  transition: transform .35s ease, border-color .35s ease;
}
.step-item:hover {
  transform: translateX(6px);
  border-color: rgba(168,85,247,.3);
}

/* Floating cards extra glow */
.float-card {
  animation: bob 3.5s ease-in-out infinite !important;
  transition: box-shadow .3s ease;
}
.float-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,.6), 0 0 24px rgba(168,85,247,.25) !important;
}

/* CTA section pulse */
@keyframes cta-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(168,85,247,.3); }
  50%     { box-shadow: 0 0 0 20px rgba(168,85,247,.0); }
}
.cta-wrap {
  animation: cta-pulse 4s ease-in-out infinite;
}

/* Smooth page transitions */
body { animation: page-in .5s ease both; }
@keyframes page-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

