/* =====================================================================
   NAUGHTY 8 BALLS — Styles
   ===================================================================== */

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

:root {
  --bg: #0a0a0f;
  --bg-mid: #0a0a0f;
  --bg-end: #0a0a0f;
  --bg-card: #14141f;
  --bg-card-hover: #1a1a2e;
  --text: #f0eef6;
  --text-muted: rgba(255, 255, 255, 0.7);
  --neon: #cc33cc;
  --neon-light: #e080ff;
  --neon-glow: rgba(204, 51, 204, 0.35);
  --accent: #f25c78;
  --accent-glow: rgba(242, 92, 120, 0.3);
  --gold: #f5c842;
  --border: rgba(255, 255, 255, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --header-h: 72px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-mid) 50%, var(--bg-end) 100%);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ── Star Field Background ─────────────────────────────────────────── */
.star-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.star-field .star {
  position: absolute;
  border-radius: 50%;
  background: white;
}

@keyframes twinkle {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

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

a {
  color: var(--neon-light);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--neon); }

/* ── Container ─────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 800px; }

/* ── Buttons ───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: linear-gradient(135deg, var(--neon), var(--accent));
  color: #fff;
}
.btn--primary:hover {
  color: #fff;
  box-shadow: 0 4px 24px var(--neon-glow);
  transform: translateY(-2px);
}
.btn--glow {
  box-shadow: 0 0 20px var(--neon-glow), 0 0 60px rgba(200, 80, 242, 0.15);
}
.btn--ghost {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
}
.btn--ghost:hover {
  border-color: var(--neon);
  color: var(--neon-light);
}
.btn--lg { padding: 18px 36px; font-size: 1.1rem; }
.btn--sm { padding: 10px 20px; font-size: 0.875rem; }
.btn--block { width: 100%; }
.btn__apple-icon { flex-shrink: 0; }

/* ── Section Titles ────────────────────────────────────────────────── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}
.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 560px;
  margin: 0 auto 56px;
}

/* ── Scroll Reveal ─────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================================
   HEADER
   ===================================================================== */
main, .footer, .social-proof {
  position: relative;
  z-index: 1;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: transparent;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: none;
  transition: box-shadow 0.3s, background 0.3s;
}
.header--scrolled {
  background: rgba(10, 10, 15, 0.9);
}
.header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 32px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  text-decoration: none;
}
.header__logo:hover { color: var(--text); }
.header__logo-ball {
  font-size: 1.4rem;
}
.header__logo-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}
.header__nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.header__link {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.header__link:hover { color: var(--text); }
.header__cta { margin-left: 8px; }

/* Mobile menu toggle */
.header__menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.header__menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.header__menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__menu-btn.active span:nth-child(2) { opacity: 0; }
.header__menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .header__nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.96);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: none;
    transform: translateY(-120%);
    visibility: hidden;
    transition: transform 0.3s, visibility 0.3s;
  }
  .header__nav.open { transform: translateY(0); visibility: visible; }
  .header__link { font-size: 1.1rem; }
  .header__cta { display: none; }
  .header__menu-btn { display: flex; }
}

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 40px) 0 80px;
  overflow: hidden;
}
.hero__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -20%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, var(--neon-glow) 0%, transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  opacity: 0.2;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(242, 92, 120, 0.15);
  border: 1px solid rgba(242, 92, 120, 0.3);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--text) 0%, var(--neon-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 500px;
}
.hero__sub em {
  color: var(--neon-light);
  font-style: italic;
}
.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__ctas { justify-content: center; }
  .hero__ball-wrap { order: -1; }
}

/* ── 8-Ball ────────────────────────────────────────────────────────── */
.hero__ball-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.eight-ball {
  position: relative;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  text-align: center;
}
.eight-ball__body {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle at 25% 25%,
    rgba(255,255,255,0.85) 0%,
    rgba(180,180,180,0.8) 15%,
    #000 45%,
    rgba(0,0,0,0.8) 100%);
  box-shadow:
    0 0 80px rgba(204, 51, 204, 0.25),
    0 0 40px rgba(200, 80, 242, 0.15),
    inset 0 -10px 30px rgba(0, 0, 0, 0.6),
    0 20px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s;
}
.eight-ball:hover .eight-ball__body {
  transform: scale(1.03);
}
.eight-ball__shine {
  position: absolute;
  top: 8%;
  left: 15%;
  width: 40%;
  height: 30%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.15) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.eight-ball__window {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 40%,
    rgba(0, 26, 77, 0.9),
    rgba(0, 13, 51, 0.9));
  border: 2px solid rgba(77, 179, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.eight-ball__triangle {
  width: 0;
  height: 0;
  border-left: 45px solid transparent;
  border-right: 45px solid transparent;
  border-bottom: 78px solid rgba(77, 179, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.eight-ball__answer {
  position: absolute;
  bottom: -60px;
  width: 90px;
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(77, 179, 255, 1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
  transition: opacity 0.3s;
}
.eight-ball__shadow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 20px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.4), transparent 70%);
  border-radius: 50%;
}
.eight-ball__hint {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  opacity: 0.6;
}

/* Shake animation */
@keyframes shake {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  10% { transform: translate(-8px, -6px) rotate(-5deg); }
  20% { transform: translate(8px, 4px) rotate(4deg); }
  30% { transform: translate(-6px, 8px) rotate(-3deg); }
  40% { transform: translate(6px, -8px) rotate(5deg); }
  50% { transform: translate(-4px, 6px) rotate(-2deg); }
  60% { transform: translate(4px, -4px) rotate(3deg); }
  70% { transform: translate(-6px, 4px) rotate(-4deg); }
  80% { transform: translate(6px, -6px) rotate(2deg); }
  90% { transform: translate(-4px, 4px) rotate(-1deg); }
}
.eight-ball.shaking .eight-ball__body {
  animation: shake 0.6s ease-in-out;
}
.eight-ball.shaking .eight-ball__answer {
  opacity: 0;
}

/* =====================================================================
   SOCIAL PROOF
   ===================================================================== */
.social-proof {
  padding: 48px 0;
  text-align: center;
}
.social-proof__tagline {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.social-proof__pills {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.pill {
  padding: 8px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* =====================================================================
   HOW IT WORKS
   ===================================================================== */
.how-it-works {
  padding: 100px 0;
}
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
}
.step {
  text-align: center;
  max-width: 280px;
  flex: 1;
}
.step__icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon), var(--accent));
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.step__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.step__text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.step__arrow {
  font-size: 2rem;
  color: var(--neon);
  margin-top: 60px;
  opacity: 0.4;
}

@media (max-width: 700px) {
  .steps {
    flex-direction: column;
    align-items: center;
  }
  .step__arrow {
    transform: rotate(90deg);
    margin-top: 0;
  }
}

/* =====================================================================
   FEATURES
   ===================================================================== */
.features {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(200, 80, 242, 0.03), transparent);
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 80, 242, 0.3);
  box-shadow: 0 8px 40px rgba(200, 80, 242, 0.1);
}
.feature-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.feature-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-card__text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .features__grid { grid-template-columns: 1fr; }
}

/* =====================================================================
   PERSONALITIES
   ===================================================================== */
.personalities {
  padding: 100px 0;
}
.personalities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.persona-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.persona-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 80, 242, 0.4);
  box-shadow: 0 8px 40px rgba(200, 80, 242, 0.15);
}
.persona-card__emoji {
  font-size: 2.4rem;
  margin-bottom: 12px;
}
.persona-card__name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.persona-card__tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--neon-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.persona-card__desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .personalities__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .personalities__grid { grid-template-columns: 1fr; }
}

/* =====================================================================
   SCREENSHOTS / CAROUSEL
   ===================================================================== */
.screenshots {
  padding: 100px 0;
}
.carousel {
  max-width: 100%;
  overflow: hidden;
  position: relative;
  touch-action: pan-y;
}
.carousel__track {
  display: flex;
  gap: 32px;
  transition: transform 0.5s ease;
  padding: 20px 0;
}
.carousel__slide {
  flex: 0 0 auto;
  text-align: center;
}
.phone-mockup {
  width: 260px;
  height: 520px;
  background: #1a0033;
  border-radius: 36px;
  border: 3px solid rgba(255, 255, 255, 0.15);
  padding: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(204, 51, 204, 0.1);
  position: relative;
  overflow: hidden;
}
.phone-mockup::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 24px;
  background: #0d0020;
  border-radius: 0 0 16px 16px;
  z-index: 2;
}
.phone-mockup__screen {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: #1a0033;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-mockup__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel__caption {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}
.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.carousel__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel__btn:hover {
  border-color: var(--neon);
  background: var(--bg-card-hover);
}
.carousel__dots {
  display: flex;
  gap: 8px;
}
.carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel__dot.active {
  background: var(--neon);
  transform: scale(1.3);
}

/* =====================================================================
   PREMIUM / PRICING
   ===================================================================== */
.premium {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(200, 80, 242, 0.04), transparent);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover {
  transform: translateY(-4px);
}
.pricing-card--featured {
  border-color: var(--neon);
  box-shadow: 0 0 40px var(--neon-glow);
  transform: scale(1.05);
}
.pricing-card--featured:hover {
  transform: scale(1.05) translateY(-4px);
}
.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--neon), var(--accent));
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 20px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pricing-card__header {
  margin-bottom: 24px;
}
.pricing-card__plan {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.pricing-card__price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--text), var(--neon-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing-card__price span {
  font-size: 1rem;
  font-family: var(--font);
  color: var(--text-muted);
  -webkit-text-fill-color: var(--text-muted);
}
.pricing-card__save {
  display: inline-block;
  background: rgba(245, 200, 66, 0.15);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.pricing-card__perks {
  list-style: none;
  margin-bottom: 28px;
  text-align: left;
}
.pricing-card__perks li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.95rem;
  padding-left: 24px;
  position: relative;
}
.pricing-card__perks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--neon);
  font-weight: 700;
}
.pricing-card__perks li:last-child { border-bottom: none; }
.pricing-disclaimer {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 32px;
  opacity: 0.7;
}

@media (max-width: 800px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-4px); }
}

/* =====================================================================
   FAQ
   ===================================================================== */
.faq {
  padding: 100px 0;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq__item[open] { border-color: rgba(200, 80, 242, 0.3); }
.faq__question {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--neon);
  font-weight: 300;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq__item[open] .faq__question::after {
  transform: rotate(45deg);
}
.faq__question:hover { color: var(--neon-light); }
.faq__answer {
  padding: 0 24px 20px;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* =====================================================================
   FINAL CTA
   ===================================================================== */
.final-cta {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.final-cta__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.final-cta__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--neon-glow) 0%, transparent 70%);
  opacity: 0.2;
  pointer-events: none;
}
.final-cta__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 16px;
}
.final-cta__sub {
  color: var(--text-muted);
  font-size: 1.15rem;
  margin-bottom: 36px;
}
.final-cta__badge {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  opacity: 0.6;
}

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer__logo {
  font-size: 1.1rem;
  font-weight: 700;
}
.footer__tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--text); }
.footer__copy {
  color: var(--text-muted);
  font-size: 0.8rem;
  opacity: 0.6;
}

/* ── Forced Colors / High Contrast ──────────────────────────────── */
@media (forced-colors: active) {
  .hero__title,
  .pricing-card__price {
    -webkit-text-fill-color: currentColor;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
  }
}

/* ── Print ──────────────────────────────────────────────────────── */
@media print {
  .star-field, .header, .eight-ball, .carousel, .btn { display: none !important; }
  body { background: #fff; color: #000; }
  .hero__title, .pricing-card__price, .pricing-card__price span {
    -webkit-text-fill-color: currentColor;
    background: none;
    color: #000;
  }
  a[href]::after { content: " (" attr(href) ")"; font-size: 0.8em; }
  section { break-inside: avoid; }
}

/* ── Focus styles (accessibility) ──────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 2px;
}
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 2px;
}
