/* ═══════════════════════════════════════════════════
   GuardianShield AntiCheat — Promo Website CSS
   by kemgen01
   ═══════════════════════════════════════════════════ */

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

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

:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #0d0d14;
  --bg-card: #111119;
  --bg-card-hover: #16161f;
  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(255,255,255,0.1);
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #475569;
  --emerald-400: #34d399;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  --emerald-glow: rgba(16, 185, 129, 0.15);
  --red-400: #f87171;
  --amber-400: #fbbf24;
  --cyan-400: #22d3ee;
  --violet-400: #a78bfa;
  --radius: 12px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

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

/* ── Hero Visual (CSS Shield) ── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}
.hero-shield {
  position: relative;
  width: 280px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shield-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 40px rgba(16,185,129,0.2));
  animation: shield-breathe 4s ease-in-out infinite;
}
@keyframes shield-breathe {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 40px rgba(16,185,129,0.2)); }
  50% { transform: scale(1.03); filter: drop-shadow(0 0 60px rgba(16,185,129,0.3)); }
}
.shield-rings {
  position: absolute;
  inset: -40px;
  pointer-events: none;
}
.ring {
  position: absolute;
  border: 1px solid rgba(16,185,129,0.1);
  border-radius: 50%;
  animation: ring-pulse 3s ease-in-out infinite;
}
.ring-1 { inset: 0; animation-delay: 0s; }
.ring-2 { inset: -30px; animation-delay: 0.5s; border-color: rgba(16,185,129,0.06); }
.ring-3 { inset: -60px; animation-delay: 1s; border-color: rgba(16,185,129,0.03); }
@keyframes ring-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.5; }
}
.shield-particles {
  position: absolute;
  inset: -60px;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--emerald-400);
  animation: particle-float 3s ease-in-out infinite;
}
.p1 { top: 10%; left: 20%; animation-delay: 0s; }
.p2 { top: 5%; right: 25%; animation-delay: 0.5s; width: 3px; height: 3px; }
.p3 { bottom: 20%; left: 10%; animation-delay: 1s; width: 2px; height: 2px; }
.p4 { bottom: 10%; right: 15%; animation-delay: 1.5s; width: 3px; height: 3px; }
.p5 { top: 50%; left: 0%; animation-delay: 0.8s; width: 2px; height: 2px; }
.p6 { top: 40%; right: 0%; animation-delay: 1.2s; width: 3px; height: 3px; }
@keyframes particle-float {
  0%, 100% { opacity: 0.2; transform: translateY(0); }
  50% { opacity: 0.8; transform: translateY(-12px); }
}

/* ── Hero Image (legacy, kept for float badges) ── */
.hero-image { position: relative; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.2); }

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.mono { font-family: 'JetBrains Mono', monospace; }

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  background: rgba(10,10,15,0.7);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(10,10,15,0.95);
  border-bottom-color: var(--border);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
}
.nav-brand-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
  position: relative;
}
.nav-brand-icon::after {
  content: '';
  position: absolute;
  top: -2px; right: -2px;
  width: 10px; height: 10px;
  background: var(--emerald-400);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52,211,153,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(52,211,153,0); }
}
.nav-brand-text {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.nav-brand-text span {
  color: var(--emerald-400);
  font-size: 11px;
  font-weight: 600;
  margin-left: 6px;
  opacity: 0.7;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
  color: white !important;
  font-weight: 600 !important;
  padding: 8px 18px !important;
  border-radius: 10px !important;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
  transition: var(--transition);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35) !important;
  background: linear-gradient(135deg, #0ea572, var(--emerald-600)) !important;
}
.nav-cta svg { width: 14px; height: 14px; opacity: 0.7; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 600px 600px at 30% 20%, rgba(16,185,129,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 70% 80%, rgba(16,185,129,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--emerald-glow);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--emerald-400);
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--emerald-400);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
.hero-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero-title .gradient {
  background: linear-gradient(135deg, var(--emerald-400), #2dd4bf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 8px;
  max-width: 520px;
}
.hero-desc-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 36px;
}
.hero-stat {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}
.hero-stat-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--emerald-400);
  font-family: 'JetBrains Mono', monospace;
}
.hero-stat-value .plus { font-weight: 600; }
.hero-stat-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
  color: white;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(16,185,129,0.25);
  transition: var(--transition);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(16,185,129,0.35);
}
.btn-primary svg { width: 16px; height: 16px; opacity: 0.7; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--border-hover);
  color: var(--text-primary);
}
.hero-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}
.author-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 12px;
  color: var(--text-secondary);
}
.author-tag strong {
  color: var(--text-primary);
  font-weight: 700;
}
.author-stars {
  display: flex;
  align-items: center;
  gap: 3px;
}
.author-stars svg {
  width: 14px; height: 14px;
  fill: var(--amber-400);
  color: var(--amber-400);
}
.author-stars span {
  font-size: 12px;
  color: var(--text-muted);
  margin-left: 6px;
}

/* ── Hero Image ── */
.hero-image {
  position: relative;
}
.hero-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(to top, rgba(10,10,15,0.5), transparent 50%);
  pointer-events: none;
}
.float-badge {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  animation: float 3s ease-in-out infinite;
}
.float-badge svg { width: 16px; height: 16px; }
.float-badge.top-right {
  top: -12px; right: -12px;
  color: var(--emerald-400);
}
.float-badge.bottom-left {
  bottom: -12px; left: -12px;
  color: var(--red-400);
  animation-delay: 1s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── Sections ── */
.section {
  padding: 100px 0;
  position: relative;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.section-badge.emerald { background: rgba(16,185,129,0.1); color: var(--emerald-400); border: 1px solid rgba(16,185,129,0.15); }
.section-badge.red { background: rgba(248,113,113,0.1); color: var(--red-400); border: 1px solid rgba(248,113,113,0.15); }
.section-badge.cyan { background: rgba(34,211,238,0.1); color: var(--cyan-400); border: 1px solid rgba(34,211,238,0.15); }
.section-badge.violet { background: rgba(167,139,250,0.1); color: var(--violet-400); border: 1px solid rgba(167,139,250,0.15); }
.section-badge.amber { background: rgba(251,191,36,0.1); color: var(--amber-400); border: 1px solid rgba(251,191,36,0.15); }
.section-badge.teal { background: rgba(45,212,191,0.1); color: #2dd4bf; border: 1px solid rgba(45,212,191,0.15); }
.section-badge.slate { background: rgba(148,163,184,0.1); color: var(--text-secondary); border: 1px solid rgba(148,163,184,0.15); }

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.section-title .gradient {
  background: linear-gradient(135deg, var(--emerald-400), #2dd4bf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-title .gradient-red {
  background: linear-gradient(135deg, var(--red-400), var(--amber-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-title .gradient-cyan {
  background: linear-gradient(135deg, var(--cyan-400), var(--emerald-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-title .gradient-violet {
  background: linear-gradient(135deg, var(--violet-400), #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-title .gradient-amber {
  background: linear-gradient(135deg, var(--amber-400), #fb923c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-title .gradient-teal {
  background: linear-gradient(135deg, #2dd4bf, var(--emerald-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-desc {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Feature Grid ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  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, var(--emerald-500), transparent);
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}
.feature-card:hover::before { opacity: 0.6; }
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}
.feature-icon.emerald { background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.15); color: var(--emerald-400); }
.feature-icon.amber { background: rgba(251,191,36,0.1); border: 1px solid rgba(251,191,36,0.15); color: var(--amber-400); }
.feature-icon.cyan { background: rgba(34,211,238,0.1); border: 1px solid rgba(34,211,238,0.15); color: var(--cyan-400); }
.feature-icon.rose { background: rgba(248,113,113,0.1); border: 1px solid rgba(248,113,113,0.15); color: var(--red-400); }
.feature-icon.violet { background: rgba(167,139,250,0.1); border: 1px solid rgba(167,139,250,0.15); color: var(--violet-400); }
.feature-icon.orange { background: rgba(251,146,60,0.1); border: 1px solid rgba(251,146,60,0.15); color: #fb923c; }
.feature-icon.teal { background: rgba(45,212,191,0.1); border: 1px solid rgba(45,212,191,0.15); color: #2dd4bf; }
.feature-icon.yellow { background: rgba(251,191,36,0.1); border: 1px solid rgba(251,191,36,0.15); color: var(--amber-400); }

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.feature-tags {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--text-muted);
  padding: 4px 10px;
  background: rgba(255,255,255,0.03);
  border-radius: 6px;
}
.feature-tag svg { width: 12px; height: 12px; color: var(--emerald-400); }

/* ── Detection Categories ── */
.detections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.detection-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.detection-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}
.detection-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.detection-card-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.detection-card-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.detection-card-icon.red { background: rgba(248,113,113,0.1); border: 1px solid rgba(248,113,113,0.15); color: var(--red-400); }
.detection-card-icon.amber { background: rgba(251,191,36,0.1); border: 1px solid rgba(251,191,36,0.15); color: var(--amber-400); }
.detection-card-icon.violet { background: rgba(167,139,250,0.1); border: 1px solid rgba(167,139,250,0.15); color: var(--violet-400); }
.detection-card-icon.cyan { background: rgba(34,211,238,0.1); border: 1px solid rgba(34,211,238,0.15); color: var(--cyan-400); }
.detection-card-icon.rose { background: rgba(244,63,94,0.1); border: 1px solid rgba(244,63,94,0.15); color: #fb7185; }
.detection-card-icon.teal { background: rgba(45,212,191,0.1); border: 1px solid rgba(45,212,191,0.15); color: #2dd4bf; }
.detection-card-icon.orange { background: rgba(251,146,60,0.1); border: 1px solid rgba(251,146,60,0.15); color: #fb923c; }
.detection-card-icon.yellow { background: rgba(251,191,36,0.1); border: 1px solid rgba(251,191,36,0.15); color: var(--amber-400); }
.detection-card-icon.lime { background: rgba(163,230,53,0.1); border: 1px solid rgba(163,230,53,0.15); color: #a3e635; }

.detection-card-name {
  font-size: 14px;
  font-weight: 700;
}
.detection-card-count {
  font-size: 11px;
  color: var(--text-muted);
}
.detection-badge {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.04);
  padding: 4px 10px;
  border-radius: 6px;
  font-family: 'JetBrains Mono', monospace;
}
.detection-card-expand {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}
.detection-card:hover .detection-card-expand { color: var(--text-secondary); }
.detection-card-expand svg { width: 12px; height: 12px; transition: var(--transition); }
.detection-card.open .detection-card-expand svg { transform: rotate(180deg); }
.detection-checks {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.detection-card.open .detection-checks {
  max-height: 400px;
}
.detection-checks-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-top: 12px;
}
.detection-check-tag {
  font-size: 11px;
  padding: 3px 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 5px;
  color: var(--text-secondary);
}

/* ── How It Works ── */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--emerald-500), var(--border), transparent);
}
.timeline-item {
  position: relative;
  padding-left: 76px;
  margin-bottom: 48px;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: 16px; top: 4px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid rgba(16,185,129,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.timeline-step {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  font-family: 'JetBrains Mono', monospace;
}
.timeline-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.timeline-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── Commands Table ── */
.commands-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.commands-table {
  width: 100%;
  border-collapse: collapse;
}
.commands-table thead {
  background: rgba(255,255,255,0.03);
}
.commands-table th {
  padding: 14px 20px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.commands-table td {
  padding: 12px 20px;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.02);
}
.commands-table tr:last-child td { border-bottom: none; }
.commands-table tr:hover td { background: rgba(255,255,255,0.015); }
.cmd-cell { font-family: 'JetBrains Mono', monospace; color: var(--emerald-400); font-weight: 500; white-space: nowrap; }
.perm-cell { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--text-muted); text-align: right; }

/* ── Comparison ── */
.comparison-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
}
.comparison-table thead { background: rgba(255,255,255,0.03); }
.comparison-table th {
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.comparison-table th:first-child { text-align: left; }
.comparison-table td {
  padding: 12px 20px;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.02);
  text-align: center;
}
.comparison-table td:first-child { text-align: left; color: var(--text-secondary); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: rgba(255,255,255,0.015); }
.check-yes { color: var(--emerald-400); font-size: 18px; }
.check-no { color: rgba(255,255,255,0.08); font-size: 18px; }
.val-premium { color: var(--amber-400); font-weight: 700; font-family: 'JetBrains Mono', monospace; }
.val-free { color: var(--text-muted); font-family: 'JetBrains Mono', monospace; }

/* ── Tech Specs ── */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 700px;
  margin: 0 auto;
}
.spec-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
}
.spec-label { font-size: 13px; color: var(--text-secondary); }
.spec-value { font-size: 13px; font-weight: 700; color: var(--text-primary); }

/* ── FAQ ── */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}
.faq-question:hover { background: rgba(255,255,255,0.015); }
.faq-question svg {
  width: 16px; height: 16px;
  color: var(--text-muted);
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-question svg { transform: rotate(180deg); color: var(--emerald-400); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ── CTA ── */
.cta-section {
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(16,185,129,0.08), transparent 70%);
  pointer-events: none;
}
.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 28px;
  box-shadow: 0 8px 32px rgba(16,185,129,0.1);
}
.cta-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.cta-desc {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.cta-perks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.cta-perk {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
}
.cta-perk svg { width: 14px; height: 14px; color: var(--emerald-400); }
.cta-perk.heart svg { color: var(--red-400); }

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
}
.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-brand-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(16,185,129,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.footer-brand strong { color: var(--text-primary); font-weight: 700; }
.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-links a {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
}
.footer-links a:hover { color: var(--emerald-400); }
.footer-links a svg { width: 12px; height: 12px; }

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

/* ── Responsive ── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: 1fr; }
  .detections-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 20px;
    gap: 8px;
    border-bottom: 1px solid var(--border);
    z-index: 999;
  }
  .mobile-toggle { display: block; }
  .hero .container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-desc, .hero-desc-sub { max-width: 100%; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .hero-buttons { justify-content: center; }
  .hero-author { justify-content: center; flex-wrap: wrap; }
  .hero-image { max-width: 500px; margin: 0 auto; }
  .float-badge { display: none; }
  .detections-grid { grid-template-columns: 1fr; }
  .specs-grid { grid-template-columns: 1fr; }
  .comparison-wrapper { overflow-x: auto; }
  .comparison-table { min-width: 500px; }
  .commands-wrapper { overflow-x: auto; }
  .commands-table { min-width: 600px; }
  .timeline::before { left: 20px; }
  .timeline-item { padding-left: 56px; }
  .timeline-dot { left: 8px; }
  .section { padding: 64px 0; }
  .footer .container { justify-content: center; text-align: center; flex-direction: column; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr; }
  .hero-title { font-size: 36px; }
  .container { padding: 0 16px; }
}
