/* ═══════════════════════════════════════════════════════
   VINTHOOK LANDING PAGE — Premium Dark UI
   Colors: BG #191825 / Accent #865DFF / Card #E384FF / Secondary #FFA3FD
   Font: Inter
   ═══════════════════════════════════════════════════════ */

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

/* ── 1. VARIABLES ─────────────────────────────────────── */
:root {
  --bg:             #191825;
  --bg-deep:        #0f0e1a;
  --bg-card:        rgba(227, 132, 255, 0.06);
  --bg-card-border: rgba(227, 132, 255, 0.14);

  --accent:         #865DFF;
  --accent-light:   #9d7cff;
  --accent-dim:     rgba(134, 93, 255, 0.15);
  --accent-glow:    rgba(134, 93, 255, 0.4);

  --card:           #E384FF;
  --card-dim:       rgba(227, 132, 255, 0.12);
  --card-glow:      rgba(227, 132, 255, 0.35);

  --secondary:      #FFA3FD;
  --secondary-dim:  rgba(255, 163, 253, 0.12);

  --text:           #f4f0ff;
  --text-2:         rgba(244, 240, 255, 0.68);
  --text-3:         rgba(244, 240, 255, 0.40);
  --text-4:         rgba(244, 240, 255, 0.20);

  --border:         rgba(134, 93, 255, 0.12);
  --border-2:       rgba(227, 132, 255, 0.18);

  --font:           'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --r:              16px;
  --r-sm:           10px;
  --r-xs:           6px;
  --transition:     all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── 2. RESET ─────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── 3. NAVBAR ────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 24px;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(25, 24, 37, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 24px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: contain;
}
.nav-logo-text {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.3px;
  background: linear-gradient(135deg, var(--accent-light), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: var(--transition);
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--accent), #6c3bda);
  color: #fff;
  transition: var(--transition);
  box-shadow: 0 4px 20px var(--accent-dim);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow);
}

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

/* Hero background effects */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
}
.hero-glow--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  top: -15%;
  left: 15%;
  animation: glowFloat1 12s ease-in-out infinite;
}
.hero-glow--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--card-glow), transparent 70%);
  top: 20%;
  right: -5%;
  animation: glowFloat2 10s ease-in-out infinite;
}
.hero-glow--3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 163, 253, 0.25), transparent 70%);
  bottom: -10%;
  left: 40%;
  animation: glowFloat3 14s ease-in-out infinite;
}

@keyframes glowFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, 30px) scale(1.1); }
  66% { transform: translate(-30px, -20px) scale(0.95); }
}
@keyframes glowFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-50px, 20px) scale(1.05); }
  66% { transform: translate(30px, -30px) scale(0.9); }
}
@keyframes glowFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -40px) scale(1.1); }
}

/* Subtle grid overlay */
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(134, 93, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(134, 93, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, #000, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, #000, transparent);
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  animation: particleFloat 8s ease-in-out infinite;
}
@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(0) scale(0.5); }
  20% { opacity: 0.6; }
  80% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-120px) scale(0); }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 100px;
  background: var(--accent-dim);
  border: 1px solid rgba(134, 93, 255, 0.2);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-light);
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-badge.visible {
  opacity: 1;
  transform: translateY(0);
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--accent-glow); }
  50% { opacity: 0.5; box-shadow: 0 0 0 6px transparent; }
}

/* Heading */
.hero-heading {
  font-size: clamp(42px, 7vw, 82px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -2.5px;
  margin-bottom: 24px;
  animation: heroFadeUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.hero-heading-line {
  display: block;
}
.hero-heading-accent {
  color: var(--text-2);
}
.hero-brand-text {
  background: linear-gradient(135deg, var(--accent), var(--card), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 6s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Subtext */
.hero-subtext {
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--text-2);
  max-width: 540px;
  margin: 0 auto 40px;
  font-weight: 400;
  line-height: 1.6;
  animation: heroFadeUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.15s both;
}

/* CTA buttons */
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 56px;
  animation: heroFadeUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.hero-btn--primary {
  background: linear-gradient(135deg, var(--accent), #6c3bda);
  color: #fff;
  box-shadow: 0 6px 30px var(--accent-dim), 0 0 0 1px rgba(134, 93, 255, 0.2);
}
.hero-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 48px var(--accent-glow), 0 0 0 1px rgba(134, 93, 255, 0.35);
}
.hero-btn--ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border-2);
  backdrop-filter: blur(8px);
}
.hero-btn--ghost:hover {
  color: var(--text);
  border-color: rgba(227, 132, 255, 0.35);
  background: rgba(227, 132, 255, 0.06);
  transform: translateY(-2px);
}
.hero-btn--lg {
  padding: 16px 36px;
  font-size: 16px;
  border-radius: 16px;
}

/* Stats bar */
.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  padding: 20px 40px;
  border-radius: 20px;
  background: rgba(15, 14, 26, 0.6);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  animation: heroFadeUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.45s both;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hero-stat-val {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--card), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: heroFadeUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
}
.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--text-3);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
}
.scroll-wheel {
  width: 3px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent);
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.3; }
}

/* ── 5. HOW IT WORKS ──────────────────────────────────── */
.how-section {
  position: relative;
  padding: 120px 24px 100px;
  background: var(--bg-deep);
  overflow: hidden;
}
.how-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--card), transparent);
}
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Section header */
.section-header {
  text-align: center;
  margin-bottom: 72px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.section-header.visible {
  opacity: 1;
  transform: translateY(0);
}
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--card);
  background: var(--card-dim);
  border: 1px solid rgba(227, 132, 255, 0.18);
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.text-gradient {
  background: linear-gradient(135deg, var(--accent), var(--card), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-desc {
  font-size: 17px;
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Steps grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.step-card {
  position: relative;
  padding: 36px 30px;
  border-radius: 24px;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  transition: var(--transition-slow);
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
}
.step-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.step-card:nth-child(2) { transition-delay: 0.1s; }
.step-card:nth-child(3) { transition-delay: 0.2s; }

.step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(134, 93, 255, 0.04), transparent);
  opacity: 0;
  transition: var(--transition);
}
.step-card:hover::before { opacity: 1; }
.step-card:hover {
  border-color: rgba(134, 93, 255, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(134, 93, 255, 0.12);
}

/* Step number */
.step-number {
  font-size: 64px;
  font-weight: 900;
  color: var(--text-4);
  line-height: 1;
  letter-spacing: -3px;
  margin-bottom: 20px;
  transition: var(--transition);
}
.step-card:hover .step-number {
  color: var(--accent-dim);
}

/* Step icon */
.step-icon-wrap {
  margin-bottom: 20px;
}
.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--accent-dim);
  border: 1px solid rgba(134, 93, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  transition: var(--transition);
}
.step-card:hover .step-icon {
  background: linear-gradient(135deg, var(--accent), #6c3bda);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px var(--accent-glow);
}

/* Step text */
.step-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.step-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Step feature chips */
.step-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.step-feature {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-3);
  background: rgba(134, 93, 255, 0.06);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.step-card:hover .step-feature {
  color: var(--accent-light);
  border-color: rgba(134, 93, 255, 0.2);
  background: var(--accent-dim);
}

/* How CTA */
.how-cta-wrap {
  text-align: center;
}

/* ── 6. FEATURES GRID ───────────────────────────────────── */
.features-section {
  padding: 100px 24px;
  background: var(--bg);
  position: relative;
}
.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.feature-card {
  padding: 32px;
  border-radius: 20px;
  background: rgba(25, 24, 37, 0.4);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.feature-card:hover {
  background: var(--bg-card);
  border-color: rgba(134, 93, 255, 0.3);
  transform: translateY(-4px);
}
.fc-icon {
  font-size: 32px;
  margin-bottom: 20px;
  display: inline-block;
  padding: 12px;
  background: var(--accent-dim);
  border-radius: 14px;
  color: var(--accent);
}
.fc-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.fc-desc {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ── 7. PRICING ───────────────────────────────────────── */
.pricing-section {
  padding: 100px 24px;
  background: var(--bg-deep);
  position: relative;
}
.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}
.pricing-card {
  padding: 40px;
  border-radius: 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: relative;
}
.pricing-card.pro {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(134, 93, 255, 0.08), var(--bg));
  box-shadow: 0 20px 40px var(--accent-dim);
}
.pc-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), #6c3bda);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pc-tier {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}
.pc-price {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text);
}
.pc-currency {
  font-size: 24px;
  vertical-align: top;
  margin-right: 4px;
  color: var(--text-3);
}
.pc-period {
  font-size: 16px;
  color: var(--text-3);
  font-weight: 500;
}
.pc-desc {
  font-size: 15px;
  color: var(--text-2);
  margin-bottom: 32px;
  line-height: 1.6;
}
.pc-features {
  list-style: none;
  margin-bottom: 40px;
  flex-grow: 1;
}
.pc-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--text-2);
}
.pc-features svg {
  width: 20px;
  height: 20px;
  color: var(--accent-light);
  flex-shrink: 0;
}
.pc-features li.disabled {
  color: var(--text-4);
}
.pc-features li.disabled svg {
  color: var(--text-4);
}
.w-full {
  width: 100%;
  justify-content: center;
}

/* ── 8. FAQ ───────────────────────────────────────────── */
.faq-section {
  padding: 100px 24px;
  background: var(--bg);
}
.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(15, 14, 26, 0.4);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}
.faq-question:hover {
  background: rgba(134, 93, 255, 0.05);
}
.faq-icon {
  font-size: 24px;
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}
.faq-item.active .faq-answer {
  max-height: 1000px;
  transition: max-height 0.4s ease-in-out;
}
.faq-answer p {
  padding: 0 24px 24px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.7;
}

/* ── 9. CTA FINAL ─────────────────────────────────────── */
.cta-final-section {
  padding: 120px 24px;
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}
.cta-final-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.cta-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-glow), transparent 60%);
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  pointer-events: none;
}
.cta-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.cta-desc {
  font-size: 18px;
  color: var(--text-2);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ── 10. FOOTER ────────────────────────────────────────── */
.footer {
  padding: 40px 24px;
  border-top: 1px solid var(--border);
  background: var(--bg-deep);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-2);
}
.footer-logo-img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  object-fit: contain;
}
.footer-copy {
  font-size: 13px;
  color: var(--text-3);
}

/* ── 11. RESPONSIVE ────────────────────────────────────── */
@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .nav-links { display: none; }
  .hero-stats {
    flex-direction: column;
    gap: 16px;
    padding: 24px 32px;
  }
  .hero-stat-divider {
    width: 60px;
    height: 1px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .hero { padding: 100px 16px 60px; }
  .how-section { padding: 80px 16px 60px; }
  .hero-heading { letter-spacing: -1.5px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .step-card { padding: 28px 22px; }
}

/* ── 8. SCROLLBAR ─────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: rgba(134, 93, 255, 0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(134, 93, 255, 0.5); }

/* ── 9. SELECTION ─────────────────────────────────────── */
::selection {
  background: var(--accent);
  color: #fff;
}
.nav-actions-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}


.btn-logout {
    background: rgba(239, 68, 68, 0.1) !important;
    border: 1px solid #ef4444 !important;
    color: #ef4444 !important;
    cursor: pointer;
}

.btn-logout:hover {
    background: rgba(239, 68, 68, 0.2) !important;
}