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

:root {
  /* Brand Colors */
  --primary: #6C63FF;
  --primary-dark: #4C46C9;
  --primary-light: #A09CFF;
  --accent: #FFD700;
  --accent-2: #FF6B6B;

  /* Neutrals (Default Dark Mode) */
  --bg: #0A0A0F;
  --bg-2: #111118;
  --bg-card: #16161E;
  --bg-card-hover: #1E1E2E;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(108, 99, 255, 0.4);
  --btn-surface: rgba(255, 255, 255, 0.06);
  --btn-surface-hover: rgba(255, 255, 255, 0.12);
  --btn-border: rgba(255, 255, 255, 0.12);
  --btn-border-hover: rgba(255, 255, 255, 0.2);

  /* Text */
  --text-primary: #F0F0FF;
  --text-secondary: #9898B0;
  --text-muted: #5A5A72;

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #6C63FF 0%, #A09CFF 100%);
  --grad-hero: linear-gradient(135deg, #6C63FF 0%, #FF6B6B 50%, #FFD700 100%);

  /* Spacing */
  --section-py: 100px;
  --container-max: 1200px;

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

/* Light Mode Overrides */
:root[data-theme="light"],
html.light-mode,
body.light-mode {
  --bg: #F4F5FA !important;
  --bg-2: #EAEAEE !important;
  --bg-card: #FFFFFF !important;
  --bg-card-hover: #F0F2FA !important;
  --border: rgba(0, 0, 0, 0.12) !important;
  --border-hover: rgba(108, 99, 255, 0.6) !important;
  --text-primary: #1E1E2D !important;
  --text-secondary: #5E6278 !important;
  --text-muted: #8E92A8 !important;
  --btn-surface: #FFFFFF !important;
  --btn-surface-hover: #F0F2FA !important;
  --btn-border: rgba(0, 0, 0, 0.12) !important;
  --btn-border-hover: rgba(108, 99, 255, 0.6) !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.2;
}

.gradient-text {
  background: var(--grad-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── LAYOUT ─── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: var(--section-py) 0;
}

/* ─── BUTTONS ─── */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: var(--radius-md);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 8px 32px rgba(108, 99, 255, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(108, 99, 255, 0.5);
}

.btn-secondary {
  background: var(--btn-surface);
  color: var(--text-primary);
  border: 1px solid var(--btn-border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--btn-surface-hover);
  border-color: var(--btn-border-hover);
  transform: translateY(-3px);
}

.btn-primary i, .btn-secondary i {
  font-size: 20px;
}

.btn-primary span, .btn-secondary span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.btn-primary small, .btn-secondary small {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 11px;
  opacity: 0.8;
}

/* ─── SECTION HEADER ─── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  background: rgba(108, 99, 255, 0.12);
  color: var(--primary-light);
  border: 1px solid rgba(108, 99, 255, 0.3);
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 22px;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.06);
}

.nav-link.active {
  color: var(--primary-light);
  background: rgba(108, 99, 255, 0.1);
}

.nav-cta {
  background: var(--grad-primary);
  color: #fff !important;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(108, 99, 255, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(108, 99, 255, 0.5);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(108, 99, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108, 99, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orb-float 8s ease-in-out infinite alternate;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(108, 99, 255, 0.25), transparent 70%);
  top: -100px;
  left: -150px;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 107, 0.15), transparent 70%);
  bottom: 50px;
  right: -100px;
  animation-delay: 3s;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1), transparent 70%);
  top: 50%;
  left: 50%;
  animation-delay: 6s;
}

@keyframes orb-float {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(30px, -30px) scale(1.1); }
}

.hero-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(108, 99, 255, 0.1);
  border: 1px solid rgba(108, 99, 255, 0.3);
  color: var(--primary-light);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  animation: fade-up 0.6s ease both;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #4ECDC4;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
  animation: fade-up 0.6s 0.1s ease both;
}

.hero-desc {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  animation: fade-up 0.6s 0.2s ease both;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  animation: fade-up 0.6s 0.3s ease both;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  animation: fade-up 0.6s 0.4s ease both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}

.trust-item i {
  color: var(--accent);
  font-size: 14px;
}

.trust-divider {
  width: 1px;
  height: 16px;
  background: var(--border);
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Phone Mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fade-up 0.6s 0.2s ease both;
}

.phone-mockup {
  position: relative;
}

.phone-frame {
  width: 280px;
  height: 560px;
  background: linear-gradient(145deg, #1E1E2E, #13131C);
  border-radius: 40px;
  border: 2px solid rgba(255,255,255,0.1);
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.05),
    inset 0 1px 0 rgba(255,255,255,0.1);
  animation: phone-float 4s ease-in-out infinite alternate;
}

@keyframes phone-float {
  from { transform: translateY(0px); }
  to { transform: translateY(-12px); }
}

.phone-screen {
  width: 100%;
  height: 100%;
  padding: 16px;
  background: linear-gradient(180deg, #0D0D1A 0%, #111124 100%);
  overflow: hidden;
}

.app-screen { height: 100%; display: flex; flex-direction: column; gap: 12px; }

.app-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-primary);
}

.app-logo-sm { width: 24px; height: 24px; object-fit: contain; }

.app-greeting {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  font-family: 'Space Grotesk', sans-serif;
}

.app-subtitle {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: -8px;
}

.app-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.app-card {
  padding: 14px 10px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s;
}

.app-card:hover { transform: scale(1.03); }

.app-card i { font-size: 20px; }

.app-card.blue  { background: rgba(108, 99, 255, 0.2); color: #A09CFF; border: 1px solid rgba(108,99,255,0.2); }
.app-card.purple{ background: rgba(168, 85, 247, 0.2); color: #c084fc; border: 1px solid rgba(168,85,247,0.2); }
.app-card.green { background: rgba(78, 205, 196, 0.2); color: #4ECDC4;  border: 1px solid rgba(78,205,196,0.2); }
.app-card.orange{ background: rgba(255, 166, 48, 0.2); color: #FFA630;  border: 1px solid rgba(255,166,48,0.2); }

.app-progress-label {
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 600;
  margin-top: 4px;
}

.app-progress-bar {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
}

.app-progress-fill {
  height: 100%;
  background: var(--grad-primary);
  border-radius: 999px;
  animation: progress-grow 1.5s 1s ease both;
}

@keyframes progress-grow {
  from { width: 0 !important; }
}

.app-progress-pct {
  font-size: 11px;
  color: var(--primary-light);
  font-weight: 600;
}

.phone-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at center, rgba(108, 99, 255, 0.2), transparent 70%);
  z-index: -1;
  border-radius: 50%;
}

/* Floating badges */
.float-badge {
  position: absolute;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: badge-float 3s ease-in-out infinite alternate;
}

.float-badge i { color: var(--primary-light); }

.float-badge-1 { top: 60px; left: -60px; animation-delay: 0s; }
.float-badge-2 { top: 50%; right: -50px; animation-delay: 1s; }
.float-badge-3 { bottom: 80px; left: -70px; animation-delay: 2s; }

@keyframes badge-float {
  from { transform: translateY(0px); }
  to { transform: translateY(-8px); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-dot {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  position: relative;
}

.scroll-dot::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--primary-light);
  border-radius: 2px;
  animation: scroll-anim 2s ease-in-out infinite;
}

@keyframes scroll-anim {
  0% { transform: translateX(-50%) translateY(0); opacity: 1; }
  100% { transform: translateX(-50%) translateY(16px); opacity: 0; }
}

/* ─── STATS ─── */
.stats-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
}

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

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 40px 24px;
  background: var(--bg-card);
  text-align: center;
  transition: var(--transition);
  border-radius: 0;
}

.stats-grid .stat-card:first-child { border-radius: var(--radius-md) 0 0 var(--radius-md); }
.stats-grid .stat-card:last-child { border-radius: 0 var(--radius-md) var(--radius-md) 0; }

.stat-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.stat-icon {
  width: 48px;
  height: 48px;
  background: rgba(108, 99, 255, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary-light);
  margin-bottom: 4px;
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 42px;
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ─── FEATURES ─── */
.features-section { background: var(--bg); }

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

.feature-card--large {
  grid-column: span 1;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-primary);
  opacity: 0;
  transition: var(--transition);
  border-radius: inherit;
}

.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(108, 99, 255, 0.15);
}

.feature-card:hover::before {
  opacity: 0.04;
}

.feature-icon-wrap {
  width: 52px;
  height: 52px;
  background: color-mix(in srgb, var(--clr) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--clr) 30%, transparent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--clr);
  margin-bottom: 20px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon-wrap {
  transform: scale(1.1) rotate(-5deg);
}

.feature-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

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

.feature-tag {
  display: inline-block;
  margin-top: 16px;
  background: rgba(108, 99, 255, 0.1);
  color: var(--primary-light);
  border: 1px solid rgba(108, 99, 255, 0.25);
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

/* ─── STREAMS ─── */
.streams-section {
  background: var(--bg-2);
}

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

.stream-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.stream-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(108, 99, 255, 0.2);
}

.stream-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--clr) 20%, transparent), color-mix(in srgb, var(--clr2) 20%, transparent));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--clr);
  margin-bottom: 4px;
  transition: var(--transition);
}

.stream-card:hover .stream-icon {
  transform: scale(1.1) rotate(-8deg);
}

.stream-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
}

.stream-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  flex: 1;
}

.stream-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.stream-topics span {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 999px;
}

.stream-arrow {
  color: var(--text-muted);
  font-size: 14px;
  transition: var(--transition);
}

.stream-card:hover .stream-arrow {
  color: var(--primary-light);
  transform: translateX(4px);
}

/* ─── HOW IT WORKS ─── */
.how-section { background: var(--bg); }

.steps-row {
  display: flex;
  align-items: center;
  gap: 0;
}

.step-card {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}

.step-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(108, 99, 255, 0.15);
}

.step-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.4;
  line-height: 1;
}

.step-icon {
  width: 52px;
  height: 52px;
  background: rgba(108, 99, 255, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary-light);
}

.step-card h3 {
  font-size: 20px;
  font-weight: 700;
}

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

.step-connector {
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.connector-line {
  position: absolute;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, rgba(108,99,255,0.3), rgba(108,99,255,0.6), rgba(108,99,255,0.3));
  border-radius: 1px;
}

.connector-arrow {
  color: var(--primary-light);
  font-size: 18px;
  position: relative;
  z-index: 1;
  background: var(--bg);
  padding: 0 6px;
}

/* ─── TESTIMONIALS ─── */
.testimonials-section { background: var(--bg-2); }

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}

.testimonial-card--highlight {
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(255, 107, 107, 0.05));
  border-color: rgba(108, 99, 255, 0.3);
  transform: scale(1.03);
}

.testimonial-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(108, 99, 255, 0.15);
}

.testimonial-card--highlight:hover {
  transform: scale(1.03) translateY(-6px);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--accent);
  font-size: 14px;
}

.testimonial-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.author-info span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ─── FAQ ─── */
.faq-section { background: var(--bg); }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open {
  border-color: rgba(108, 99, 255, 0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Space Grotesk', sans-serif;
}

.faq-question:hover { color: var(--primary-light); }

.faq-icon {
  font-size: 16px;
  color: var(--primary-light);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer { max-height: 200px; }

.faq-answer p {
  padding: 0 24px 22px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ─── DOWNLOAD CTA ─── */
.download-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.download-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.download-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(108, 99, 255, 0.2), transparent 70%);
  top: -100px;
  left: -100px;
}

.download-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 107, 107, 0.15), transparent 70%);
  bottom: -80px;
  right: -80px;
}

.download-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.download-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.download-desc {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 500px;
}

.download-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: var(--btn-surface);
  border: 1px solid var(--btn-border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.btn-store:hover {
  background: var(--btn-surface-hover);
  border-color: var(--btn-border-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.btn-store--apple { }

.btn-store i {
  font-size: 28px;
  color: var(--text-primary);
}

.btn-store span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.btn-store small {
  font-size: 11px;
  opacity: 0.6;
  font-weight: 400;
}

.btn-store strong {
  font-size: 15px;
  font-family: 'Space Grotesk', sans-serif;
}

.download-logo {
  width: 220px;
  height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(108, 99, 255, 0.4));
  animation: phone-float 4s ease-in-out infinite alternate;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 80px 0 32px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

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

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

.footer-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.footer-logo span {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 22px;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 38px;
  height: 38px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  transition: var(--transition);
}

.social-link:hover {
  background: rgba(108, 99, 255, 0.15);
  border-color: rgba(108, 99, 255, 0.4);
  color: var(--primary-light);
  transform: translateY(-3px);
}

.footer-links-col h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

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

.footer-links-col ul a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.footer-links-col ul a:hover {
  color: var(--primary-light);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ─── BACK TO TOP ─── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 46px;
  height: 46px;
  background: var(--grad-primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(108, 99, 255, 0.4);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(108, 99, 255, 0.6);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .streams-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid .stat-card:first-child { border-radius: var(--radius-md) 0 0 0; }
  .stats-grid .stat-card:last-child { border-radius: 0 0 var(--radius-md) 0; }
  .stats-grid .stat-card:nth-child(2) { border-radius: 0 var(--radius-md) 0 0; }
  .stats-grid .stat-card:nth-child(3) { border-radius: 0 0 0 var(--radius-md); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-container { grid-template-columns: 1fr; gap: 60px; text-align: center; }
  .hero-visual { display: none; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-badge { margin: 0 auto 28px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card--highlight { transform: scale(1); }
  .download-content { grid-template-columns: 1fr; text-align: center; }
  .download-actions { justify-content: center; }
  .download-logo { display: none; }
  .steps-row { flex-direction: column; }
  .step-connector { transform: rotate(90deg); }
}

@media (max-width: 640px) {
  :root { --section-py: 64px; }
  .features-grid { grid-template-columns: 1fr; }
  .streams-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 20px; }
  .nav-cta { font-size: 18px; padding: 14px 32px; }
  .hamburger { display: flex; z-index: 1000; position: relative; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 300px; justify-content: center; }
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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