:root {
  --bg: #050505;
  --card: #0f0f0f;
  --border: #232323;
  --text: #f2f2f2;
  --muted: #6a6a6a;
  --gold: #d8aa43;
  --gold-light: #f1cf72;
  --white: #f5f5f5;
  --radius: 18px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
}

.bg-glow {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(216,170,67,.12), transparent 55%),
    radial-gradient(circle at 90% 30%, rgba(255,255,255,.03), transparent 25%);
}

a { color: inherit; text-decoration: none; }

.nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  background: rgba(5,5,5,.85);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.logo { font-size: 18px; font-weight: 900; letter-spacing: 1px; }
.logo span { color: #5a5a5a; font-weight: 500; margin-left: 2px; }
.nav-links { display: flex; gap: 24px; }
.nav-links a { font-size: 13px; font-weight: 600; color: #888; transition: color .2s; }
.nav-links a:hover { color: #fff; }
.nav-cta {
  padding: 8px 16px; border-radius: 999px;
  background: var(--white); color: #080808;
  font-size: 12px; font-weight: 800;
}

.hero {
  position: relative; z-index: 1;
  max-width: 900px; margin: 0 auto;
  padding: 72px 20px 48px; text-align: center;
}
.hero-badge {
  display: inline-block; margin-bottom: 18px;
  padding: 6px 14px; border-radius: 999px;
  border: 1px solid rgba(216,170,67,.3);
  background: rgba(216,170,67,.08);
  color: var(--gold-light);
  font-size: 11px; font-weight: 700; letter-spacing: .5px;
}
.hero h1 {
  font-size: clamp(42px, 9vw, 72px);
  font-weight: 950; line-height: .95; letter-spacing: -2.5px;
  margin-bottom: 16px;
}
.gold { color: var(--gold-light); }
.hero-sub {
  max-width: 500px; margin: 0 auto 28px;
  color: #8a8a8a; font-size: 16px;
}

.counter-box {
  max-width: 320px; margin: 0 auto 28px;
  padding: 20px 16px;
  background:
    radial-gradient(circle at 50% 0, rgba(216,170,67,.12), transparent 55%),
    linear-gradient(145deg, #141414, #0a0a0a);
  border: 1px solid rgba(216,170,67,.28);
  border-radius: 18px;
  transition: box-shadow .3s, border-color .3s;
}
.counter-box.pulse {
  border-color: var(--gold);
  box-shadow: 0 0 28px rgba(216,170,67,.25);
  animation: counterPulse .45s ease;
}
@keyframes counterPulse {
  0% { transform: scale(1); }
  40% { transform: scale(1.03); }
  100% { transform: scale(1); }
}
.counter-label {
  color: #6a6a6a; font-size: 10px; font-weight: 850;
  letter-spacing: 2px; margin-bottom: 4px;
}
.counter-value {
  font-size: 48px; font-weight: 950; letter-spacing: -2px;
  color: var(--gold-light); line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.counter-sub {
  margin-top: 6px; color: #555; font-size: 11px; font-weight: 600;
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-bottom: 20px;
}
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center; color: #4a4a4a;
  font-size: 12px; font-weight: 600;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 12px 22px; border-radius: 12px;
  font-size: 14px; font-weight: 800;
  transition: transform .15s, background .15s;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--white); color: #080808; }
.btn-primary:hover { background: #fff; }
.btn-full { width: 100%; }
.btn-icon { font-size: 16px; }

.stats {
  position: relative; z-index: 1;
  max-width: 1100px; margin: 0 auto 32px; padding: 0 20px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
}
.stat {
  padding: 18px 14px; text-align: center;
  background: linear-gradient(145deg, rgba(255,255,255,.04), transparent);
  border: 1px solid var(--border); border-radius: 14px;
}
.stat strong {
  display: block; margin-bottom: 4px;
  color: var(--gold-light); font-size: 13px; font-weight: 900; letter-spacing: .5px;
}
.stat span { color: #666; font-size: 12px; }

.section {
  position: relative; z-index: 1;
  max-width: 1100px; margin: 0 auto; padding: 56px 20px;
}
.section-head { margin-bottom: 32px; text-align: center; }
.eyebrow {
  margin-bottom: 8px; color: #5a5a5a;
  font-size: 11px; font-weight: 850; letter-spacing: 2px;
}
.section-head h2 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 900; letter-spacing: -1px; line-height: 1.15;
}
.section-sub { margin-top: 10px; color: #777; font-size: 14px; }

.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.feature-card {
  padding: 22px 18px;
  background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.01));
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: border-color .2s, transform .2s;
}
.feature-card:hover { border-color: #3a3a3a; transform: translateY(-2px); }
.feature-icon { font-size: 24px; margin-bottom: 12px; }
.feature-card h3 { margin-bottom: 8px; font-size: 16px; font-weight: 800; }
.feature-card p { color: #7a7a7a; font-size: 13px; line-height: 1.55; }

.download-single { max-width: 440px; margin: 0 auto 28px; }
.download-card {
  padding: 28px 22px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  display: flex; flex-direction: column;
}
.dl-tag {
  display: inline-block; align-self: flex-start; margin-bottom: 12px;
  padding: 4px 10px; border-radius: 999px;
  background: #1a1a1a; border: 1px solid #333; color: #999;
  font-size: 10px; font-weight: 800; letter-spacing: 1px;
}
.download-card h3 { margin-bottom: 8px; font-size: 20px; font-weight: 900; }
.download-card > p { color: #7a7a7a; font-size: 13px; margin-bottom: 16px; flex: 1; }
.dl-meta { list-style: none; margin-bottom: 20px; }
.dl-meta li {
  padding: 6px 0; border-bottom: 1px solid #1c1c1c;
  color: #888; font-size: 12px; font-weight: 600;
}
.dl-meta li:last-child { border-bottom: none; }

.install-note {
  max-width: 640px; margin: 0 auto; padding: 16px 18px; text-align: center;
  background: #0c0c0c; border: 1px solid #222; border-radius: 12px;
  color: #666; font-size: 12px; line-height: 1.55;
}
.install-note strong { color: #aaa; }

.footer {
  position: relative; z-index: 1; margin-top: 32px;
  border-top: 1px solid #1a1a1a; padding: 40px 20px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.footer .logo { margin-bottom: 10px; font-size: 16px; }
.footer p { color: #555; font-size: 13px; }
.footer-copy { margin-top: 16px; font-size: 11px; color: #3a3a3a; }

@media (max-width: 800px) {
  .nav-links { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr; }
  .hero { padding: 48px 16px 36px; }
  .counter-value { font-size: 40px; }
}
@media (max-width: 420px) {
  .hero-actions .btn { width: 100%; }
}
