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

:root {
  --bg: #08080f;
  --bg-alt: #0c0c18;
  --bg-card: #121226;
  --bg-card-hover: #181834;
  --border: rgba(99, 102, 241, 0.15);
  --border-hover: rgba(99, 102, 241, 0.4);
  --text: #e4e4f0;
  --text-muted: #9494b8;
  --text-dim: #6b6b8a;
  --cyan-300: #67e8f9;
  --cyan-400: #22d3ee;
  --cyan-500: #06b6d4;
  --indigo-400: #818cf8;
  --indigo-500: #6366f1;
  --indigo-600: #4f46e5;
  --indigo-700: #4338ca;
  --purple-400: #c084fc;
  --purple-500: #a855f7;
  --accent-rgb: 124, 91, 245;
  --accent-text: #c4b5fd;
  --gradient: linear-gradient(135deg, var(--cyan-500), var(--indigo-500), var(--purple-500));
  --gradient-reverse: linear-gradient(135deg, var(--purple-500), var(--indigo-500), var(--cyan-500));
  --gradient-text: linear-gradient(135deg, #7dd3fc, #a5b4fc, #c084fc);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.2);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 72px;
}

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 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; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 24px; border-radius: 8px; font-size: 0.9rem; font-weight: 600;
  transition: var(--transition); cursor: pointer; border: none; white-space: nowrap;
}

.btn-primary {
  background: var(--gradient); color: #fff;
  box-shadow: 0 2px 14px rgba(99, 102, 241, 0.35);
}
.btn-primary:hover {
  box-shadow: 0 4px 28px rgba(99, 102, 241, 0.55);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent; color: var(--cyan-300);
  border: 1.5px solid var(--cyan-500);
}
.btn-outline:hover {
  background: rgba(6, 182, 212, 0.08);
  border-color: var(--cyan-400);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent; color: var(--text-muted);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  color: var(--text); border-color: var(--border-hover);
  background: rgba(99, 102, 241, 0.05);
}

.btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: 10px; }
.btn-block { display: flex; width: 100%; }

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; height: var(--header-h);
  z-index: 1000; background: rgba(8, 8, 15, 0.8);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border); transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(8, 8, 15, 0.95);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.header-inner { display: flex; align-items: center; height: 100%; gap: 40px; }

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.logo-icon {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 9px;
  background: var(--gradient); color: #fff; font-weight: 800; font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.logo-text { font-weight: 700; font-size: 1.2rem; letter-spacing: -0.02em; }
.logo-text .logo-dim { color: var(--text-dim); font-weight: 500; }

.main-nav { display: flex; align-items: center; gap: 8px; flex: 1; }

.nav-link {
  padding: 6px 14px; border-radius: 6px; font-size: 0.875rem; font-weight: 500;
  color: var(--text-muted); transition: var(--transition);
}
.nav-link:hover { color: var(--text); background: rgba(99, 102, 241, 0.08); }
.nav-link.active { color: var(--cyan-300); background: rgba(6, 182, 212, 0.12); }

.header-actions { display: flex; align-items: center; gap: 12px; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; background: none; border: none; cursor: pointer;
  padding: 4px; z-index: 1001;
}
.hamburger span {
  display: block; width: 100%; height: 2px; background: var(--text);
  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); }

.mobile-nav-overlay {
  position: fixed; inset: 0; z-index: 999; background: rgba(8, 8, 15, 0.96);
  backdrop-filter: blur(20px); display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: all; }

.mobile-nav { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.mobile-nav-link { font-size: 1.5rem; font-weight: 600; color: var(--text); transition: var(--transition); }
.mobile-nav-link:hover { color: var(--cyan-300); }
.mobile-nav-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + 40px) 24px 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 40% 30% at 20% 30%, rgba(6, 182, 212, 0.1) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 80% 60%, rgba(168, 85, 247, 0.1) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 50% 45%, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
}

.plexus-canvas {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none; opacity: 0.7;
}

.hero-gradient-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(6, 182, 212, 0.25) 0%,
    rgba(99, 102, 241, 0.15) 35%,
    transparent 55%,
    rgba(168, 85, 247, 0.15) 75%,
    rgba(236, 72, 153, 0.25) 100%);
  pointer-events: none; z-index: 0;
  transition: opacity 0.1s linear;
}

.hero-content { position: relative; z-index: 2; max-width: 860px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; margin-bottom: 24px;
  border-radius: 24px; font-size: 0.8rem; font-weight: 600;
  color: var(--cyan-300);
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.25);
}

.hero-badge .pulse-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan-400);
  box-shadow: 0 0 8px var(--cyan-400);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(99, 102, 241, 0.4));
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-text-backdrop {
  position: absolute; inset: -30px -40px;
  background: rgba(8, 8, 15, 0.06);
  border-radius: 32px;
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1.5px);
  z-index: -1;
  pointer-events: none;
}

.hero-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 28px;
}

.version-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--cyan-300);
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.2);
}

/* Hero stats strip */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 60px auto 0;
  position: relative;
  z-index: 2;
}

.hero-stat {
  text-align: center;
  padding: 20px 16px;
  background: rgba(18, 18, 38, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== SECTIONS ===== */
.section-divider {
  height: 1px; border: none;
  background: linear-gradient(90deg, transparent,
    rgba(6, 182, 212, 0.25),
    rgba(99, 102, 241, 0.4),
    rgba(168, 85, 247, 0.25),
    transparent);
  margin: 0;
}

.section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.section:nth-child(even) { background: var(--bg-alt); }

.features::before {
  content: ''; position: absolute; top: -100px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.how-it-works::after {
  content: ''; position: absolute; bottom: -150px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.game-support::before {
  content: ''; position: absolute; top: -80px; left: -150px;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 60px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FEATURES ===== */
.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: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.5), transparent);
  opacity: 0; transition: opacity 0.3s ease;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(99, 102, 241, 0.1);
  color: var(--indigo-400);
  margin-bottom: 20px;
}
.feature-icon svg { width: 24px; height: 24px; }

.feature-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-desc {
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.65;
}

/* ===== HOW IT WORKS ===== */
.steps {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.step {
  flex: 1; text-align: center; padding: 0 32px; position: relative;
}

.step-number {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff; font-size: 1.5rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.35);
  position: relative; z-index: 2;
}

.step-connector {
  position: absolute;
  top: 32px; left: calc(50% + 32px);
  width: calc(100% - 64px); height: 2px;
  background: linear-gradient(90deg, var(--cyan-500), var(--indigo-500), var(--purple-500));
  opacity: 0.3; z-index: 1;
}
.step:last-child .step-connector { display: none; }

.step-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; }
.step-desc { color: var(--text-muted); font-size: 0.925rem; line-height: 1.6; }

/* ===== FIXES / CATEGORIES ===== */
.fixes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto;
}

.fix-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
}
.fix-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.fix-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  border-radius: 10px;
  background: rgba(6, 182, 212, 0.08);
  color: var(--cyan-400);
}
.fix-icon svg { width: 22px; height: 22px; }
.fix-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.fix-count { font-size: 0.78rem; color: var(--text-dim); }

/* ===== SUPPORTED / GAMES ===== */
.supported-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  max-width: 1080px;
  margin: 0 auto;
}

.supported-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 12px;
  text-align: center;
  transition: var(--transition);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}
.supported-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}
.supported-card-sub {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-dim);
  margin-top: 4px;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex; flex-direction: column;
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.pricing-card--featured {
  border-color: var(--indigo-500);
  box-shadow: var(--shadow-glow);
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.08) 0%, var(--bg-card) 100%);
}
.pricing-card--featured:hover {
  border-color: var(--indigo-400);
  box-shadow: 0 0 60px rgba(99, 102, 241, 0.25);
}

.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: var(--gradient);
  color: #fff; font-size: 0.8rem; font-weight: 700;
  border-radius: 20px; white-space: nowrap;
}

.pricing-header { text-align: center; margin-bottom: 32px; }

.pricing-tier {
  font-size: 1.2rem; font-weight: 700; margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--text-muted);
}

.pricing-price {
  font-size: 3rem; font-weight: 800; letter-spacing: -0.03em;
}
.pricing-currency { font-size: 2rem; color: var(--indigo-400); }

.gold-shimmer {
  background: linear-gradient(90deg,
    #c9a227 0%, #f6e27a 25%, #f2d264 40%, #e8c84a 50%,
    #f6e27a 60%, #c9a227 75%, #f2d264 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 3s ease infinite;
  filter: drop-shadow(0 0 8px rgba(246, 226, 122, 0.3));
}
.gold-shimmer .pricing-currency { -webkit-text-fill-color: transparent; }

@keyframes goldShimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

.pricing-period { color: var(--text-dim); font-size: 0.9rem; }

.pricing-features { list-style: none; flex: 1; margin-bottom: 32px; }
.pricing-features li {
  padding: 8px 0; font-size: 0.925rem; color: var(--text-muted);
  display: flex; align-items: center; gap: 10px;
}
.pricing-features .check {
  color: var(--cyan-400); font-size: 1.1rem; font-weight: 700;
}

/* ===== TRUST STRIP (transparency banner under hero) ===== */
.trust-strip {
  padding: 28px 0 8px;
}
.trust-strip-card {
  display: flex;
  align-items: center;
  gap: 22px;
  max-width: 920px;
  margin: 0 auto;
  padding: 18px 26px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(168, 85, 247, 0.05));
  border: 1px solid rgba(99, 102, 241, 0.28);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
  position: relative;
  overflow: hidden;
}
.trust-strip-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.6), transparent);
}
.trust-strip-card:hover {
  border-color: rgba(99, 102, 241, 0.55);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(168, 85, 247, 0.08));
  transform: translateY(-1px);
}
.trust-strip-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.35);
  display: flex; align-items: center; justify-content: center;
  color: var(--indigo-400);
}
.trust-strip-icon svg { width: 22px; height: 22px; }
.trust-strip-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.trust-strip-text strong {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
}
.trust-strip-text span {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.trust-strip-cta {
  flex-shrink: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cyan-300);
  white-space: nowrap;
}
.trust-strip-card:hover .trust-strip-cta { color: #a5f3fc; }

@media (max-width: 720px) {
  .trust-strip { padding: 20px 0 4px; }
  .trust-strip-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
  }
  .trust-strip-cta { align-self: flex-end; }
}

/* ===== ABOUT-THIS-PROJECT (AI disclosure) ===== */
.about-project {
  padding: 70px 0 90px;
}
.about-card {
  max-width: 780px;
  margin: 0 auto;
  padding: 38px 42px;
  background: rgba(18, 18, 38, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
}
.about-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.45), transparent);
}
.about-title {
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  color: var(--text);
}
.about-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 14px;
}
.about-card p.about-links {
  font-size: 0.88rem;
  color: var(--text-dim);
  margin-top: 20px;
  margin-bottom: 0;
}
.about-card p.about-links a {
  color: var(--cyan-300);
  font-weight: 500;
}
.about-card p.about-links a:hover {
  color: #a5f3fc;
  text-decoration: underline;
}

@media (max-width: 600px) {
  .about-card { padding: 28px 24px; }
  .about-title { font-size: 1.3rem; }
}

/* ===== SUPPORT / PATREON ===== */
.support-card {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  padding: 2px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg,
    rgba(6, 182, 212, 0.5),
    rgba(99, 102, 241, 0.5),
    rgba(168, 85, 247, 0.5));
  box-shadow: 0 0 60px rgba(99, 102, 241, 0.18);
  transition: var(--transition);
}

.support-card:hover {
  box-shadow: 0 0 80px rgba(99, 102, 241, 0.28);
  transform: translateY(-3px);
}

.support-card-inner {
  background: linear-gradient(180deg, rgba(18, 18, 38, 0.98) 0%, rgba(12, 12, 24, 0.98) 100%);
  border-radius: calc(var(--radius-lg) - 2px);
  padding: 48px 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.support-card-inner::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(99, 102, 241, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(168, 85, 247, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.support-card-inner > * { position: relative; z-index: 1; }

.support-heart {
  width: 72px; height: 72px; margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 40px rgba(236, 72, 153, 0.4);
  animation: heartPulse 2.5s ease-in-out infinite;
}
.support-heart svg { width: 36px; height: 36px; color: #fff; }

@keyframes heartPulse {
  0%, 100% { box-shadow: 0 0 40px rgba(236, 72, 153, 0.4); transform: scale(1); }
  50% { box-shadow: 0 0 60px rgba(236, 72, 153, 0.6); transform: scale(1.05); }
}

.support-title {
  font-size: clamp(1.8rem, 3.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.3));
}

.support-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 28px;
}

.support-perks {
  list-style: none;
  text-align: left;
  max-width: 460px;
  margin: 0 auto 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.support-perks li {
  color: var(--text);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.5;
}
.support-perks .check {
  color: var(--cyan-400);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.support-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.support-foot {
  color: var(--text-dim);
  font-size: 0.85rem;
  font-style: italic;
}

/* ===== DOWNLOAD CTA ===== */
.download {
  text-align: center;
  padding: 120px 0;
  position: relative;
}

.download::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(6, 182, 212, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(168, 85, 247, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse at center, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.download-content { position: relative; z-index: 1; }

.download-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--cyan-400);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 24px 22px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent,
    rgba(6, 182, 212, 0.25),
    rgba(99, 102, 241, 0.4),
    rgba(168, 85, 247, 0.25),
    transparent) 1;
  padding: 64px 0 32px;
}

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

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 12px;
}

.footer-links h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  padding: 4px 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--cyan-300); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.85rem;
}

.footer-bottom .contact-line {
  font-size: 0.92rem;
  margin-bottom: 10px;
  color: var(--text-muted);
}
.footer-bottom .contact-email {
  color: var(--cyan-300);
  font-weight: 600;
  transition: color 0.2s;
}
.footer-bottom .contact-email:hover {
  color: #a5f3fc;
  text-decoration: underline;
}

/* ===== REVEAL ===== */
.hero .reveal {
  opacity: 0;
  transform: translateY(30px);
  animation: heroReveal 0.8s ease forwards;
}
.hero .reveal-delay-1 { animation-delay: 0.15s; }
.hero .reveal-delay-2 { animation-delay: 0.3s; }
.hero .reveal-delay-3 { animation-delay: 0.45s; }
.hero .reveal-delay-4 { animation-delay: 0.6s; }

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .fixes-grid { grid-template-columns: repeat(2, 1fr); }
  .supported-grid { grid-template-columns: repeat(4, 1fr); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .main-nav, .header-actions { display: none; }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .fixes-grid { grid-template-columns: repeat(2, 1fr); }
  .supported-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { flex-direction: column; gap: 40px; }
  .step { padding: 0 16px; }
  .step-connector { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding-top: calc(var(--header-h) + 20px); min-height: auto; padding-bottom: 60px; }
  .hero-title { font-size: 2rem; }
  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .supported-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-buttons { flex-direction: column; align-items: center; }
  .download-buttons { flex-direction: column; align-items: center; }
}

/* ====================================================
   ORBITAL BACKGROUND EMBLEM (hero decoration)
   ==================================================== */

.hero-orbital-backdrop {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 700px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  /* Subtle dark tint that tapers to transparent */
  background: radial-gradient(
    circle at center,
    rgba(8, 8, 15, 0.55) 0%,
    rgba(8, 8, 15, 0.35) 30%,
    rgba(8, 8, 15, 0.15) 55%,
    rgba(8, 8, 15, 0) 78%
  );
  /* Blur what's behind (plexus), tapered via mask */
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  -webkit-mask-image: radial-gradient(circle at center, #000 0%, #000 40%, rgba(0,0,0,0.6) 60%, rgba(0,0,0,0) 78%);
  mask-image: radial-gradient(circle at center, #000 0%, #000 40%, rgba(0,0,0,0.6) 60%, rgba(0,0,0,0) 78%);
}

@media (max-width: 900px) {
  .hero-orbital-backdrop { width: 480px; height: 480px; }
}
@media (max-width: 600px) {
  .hero-orbital-backdrop { width: 340px; height: 340px; }
}

.hero-orbital-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
  opacity: 0.85;
  filter: saturate(1.05);
}

.orbital {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* On big screens, scale up so it reads as a hero emblem */
.hero-orbital-wrap .orbital { transform: scale(2.5); transform-origin: center; }

@media (max-width: 900px) {
  .hero-orbital-wrap .orbital { transform: scale(1.7); }
}
@media (max-width: 600px) {
  .hero-orbital-wrap .orbital { transform: scale(1.2); }
  .hero-orbital-wrap { opacity: 0.6; }
}

.orbital-glow {
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.18) 0%, transparent 70%);
  animation: vrs-pulse-glow 3s ease-in-out infinite;
}

.orbital-arc {
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
}

.orbital-arc-1 {
  inset: 0;
  border-top-color: rgba(var(--accent-rgb), 0.9);
  border-right-color: rgba(var(--accent-rgb), 0.15);
  border-bottom-color: rgba(var(--accent-rgb), 0);
  border-left-color: rgba(var(--accent-rgb), 0.45);
  animation: vrs-spin-cw 3.6s linear infinite;
  filter: drop-shadow(0 0 6px rgba(var(--accent-rgb), 0.7));
}

.orbital-arc-2 {
  inset: 18px;
  border-top-color: rgba(var(--accent-rgb), 0);
  border-right-color: rgba(var(--accent-rgb), 0.9);
  border-bottom-color: rgba(var(--accent-rgb), 0.5);
  border-left-color: rgba(var(--accent-rgb), 0.1);
  animation: vrs-spin-ccw 2.4s linear infinite;
  filter: drop-shadow(0 0 5px rgba(var(--accent-rgb), 0.65));
}

.orbital-arc-3 {
  inset: 36px;
  border-width: 1.5px;
  border-top-color: rgba(var(--accent-rgb), 0.8);
  border-right-color: rgba(var(--accent-rgb), 0);
  border-bottom-color: rgba(var(--accent-rgb), 0.6);
  border-left-color: rgba(var(--accent-rgb), 0);
  animation: vrs-spin-cw 1.5s linear infinite;
  filter: drop-shadow(0 0 4px rgba(var(--accent-rgb), 0.5));
}

.orbital-dot-track {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orbital-dot-track-a { animation: vrs-orbit-a 4s linear infinite; }
.orbital-dot-track-b { animation: vrs-orbit-b 4s linear infinite; }
.orbital-dot-track-c { animation: vrs-orbit-c 4s linear infinite; }

.orbital-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 1);
  box-shadow: 0 0 10px 3px rgba(var(--accent-rgb), 0.55);
}
.orbital-dot.o9 { background: rgba(var(--accent-rgb), 0.9); }
.orbital-dot.o8 { background: rgba(var(--accent-rgb), 0.8); }

.orbital-core {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(30, 20, 60, 0.95) 0%, rgba(20, 14, 45, 0.98) 100%);
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  z-index: 2;
  animation: vrs-core-breathe 3s ease-in-out infinite;
}

/* ---- Orbital keyframes ---- */
@keyframes vrs-spin-cw  { to { transform: rotate(360deg); } }
@keyframes vrs-spin-ccw { to { transform: rotate(-360deg); } }

@keyframes vrs-pulse-glow {
  0%, 100% { opacity: 0.25; transform: scale(1);    }
  50%      { opacity: 0.55; transform: scale(1.06); }
}

@keyframes vrs-core-breathe {
  0%, 100% { box-shadow: 0 0 28px 4px  rgba(var(--accent-rgb), 0.35); }
  50%      { box-shadow: 0 0 56px 12px rgba(var(--accent-rgb), 0.6),
                         0 0 80px 20px rgba(var(--accent-rgb), 0.15); }
}

@keyframes vrs-orbit-a {
  from { transform: rotate(0deg)   translateX(88px) rotate(0deg);    }
  to   { transform: rotate(360deg) translateX(88px) rotate(-360deg); }
}
@keyframes vrs-orbit-b {
  from { transform: rotate(120deg) translateX(88px) rotate(-120deg); }
  to   { transform: rotate(480deg) translateX(88px) rotate(-480deg); }
}
@keyframes vrs-orbit-c {
  from { transform: rotate(240deg) translateX(88px) rotate(-240deg); }
  to   { transform: rotate(600deg) translateX(88px) rotate(-600deg); }
}

/* Make sure hero content sits above everything
   Layer order: plexus(0) -> backdrop(1) -> orbital(2) -> gradient(3) -> content(4) */
.hero-content { z-index: 4 !important; }
.hero-gradient-overlay { z-index: 3 !important; }
