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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, Roboto, sans-serif;
  background: #0a0a0f;
  color: #e2e8f0;
  line-height: 1.6;
}

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

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

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  z-index: 100;
  padding: 16px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}

.logo span { color: #6366f1; }

nav { display: flex; gap: 32px; }
nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #94a3b8;
  transition: color 0.2s;
}
nav a:hover { color: #fff; }

/* === HERO === */
.hero {
  padding: 100px 0 80px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(99,102,241,0.15) 0%, transparent 70%);
}

.hero-label {
  display: inline-block;
  background: rgba(99,102,241,0.15);
  color: #818cf8;
  border: 1px solid rgba(99,102,241,0.3);
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 20px;
}

.highlight {
  background: linear-gradient(135deg, #6366f1, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: #94a3b8;
  max-width: 520px;
  margin: 0 auto 36px;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #6366f1, #a855f7);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 10px;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-primary:hover { opacity: 0.85; transform: translateY(-1px); }

/* === SECTIONS === */
.section { padding: 80px 0; }
.section-alt { background: rgba(255,255,255,0.02); }

.section-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 40px;
  text-align: center;
}

/* === REVIEW CARDS === */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px;
  transition: transform 0.2s, border-color 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(99,102,241,0.4);
}

.card-badge {
  display: inline-block;
  background: rgba(99,102,241,0.15);
  color: #818cf8;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 99px;
  width: fit-content;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.card p {
  font-size: 0.9rem;
  color: #94a3b8;
  flex: 1;
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #94a3b8;
}

.stars { color: #f59e0b; }

.card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: #818cf8;
  margin-top: 4px;
}

/* === BEST LISTS === */
.list-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px 24px;
  transition: transform 0.2s, border-color 0.2s;
}

.list-card:hover {
  transform: translateX(4px);
  border-color: rgba(99,102,241,0.4);
}

.list-icon { font-size: 1.5rem; flex-shrink: 0; }

.list-card strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.list-card p { font-size: 0.85rem; color: #94a3b8; }

.arrow {
  margin-left: auto;
  color: #6366f1;
  font-size: 1.2rem;
  font-weight: 700;
}

/* === COMPARISONS === */
.comp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.comp-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px 24px;
  font-weight: 600;
  color: #e2e8f0;
  font-size: 0.95rem;
  transition: transform 0.2s, border-color 0.2s, color 0.2s;
}

.comp-card:hover {
  transform: translateY(-3px);
  border-color: rgba(99,102,241,0.4);
  color: #818cf8;
}

/* === FOOTER === */
.footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0;
  text-align: center;
}

.footer .logo { margin-bottom: 16px; font-size: 1.2rem; }

.footer p {
  font-size: 0.82rem;
  color: #64748b;
  max-width: 480px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.footer-links a {
  font-size: 0.82rem;
  color: #64748b;
  transition: color 0.2s;
}

.footer-links a:hover { color: #94a3b8; }

/* === RESPONSIVE === */
@media (max-width: 600px) {
  .nav-inner nav { display: none; }
  .hero { padding: 60px 0 50px; }
  .section { padding: 50px 0; }
}
