*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: #0B0D10;
  color: #F1F3F5;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid #272B34;
  position: sticky; top: 0;
  background: rgba(11,13,16,0.92);
  backdrop-filter: blur(8px);
  z-index: 100;
}
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-link { color: #F1F3F5; text-decoration: none; font-size: 14px; font-weight: 600; }
.nav-link:hover { color: #5B9FFF; }
.btn-nav-cta {
  background: #FF3D2E; color: #0B0D10; text-decoration: none;
  font-size: 14px; font-weight: 700; padding: 8px 16px; border-radius: 8px;
}
.btn-nav-cta:hover { background: #FF5546; }

.hero {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px;
  max-width: 1100px; margin: 0 auto;
  padding: 80px 24px 60px;
}
.hero-inner { flex: 1; min-width: 0; }
.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em;
  color: #0E6FFF; margin-bottom: 16px;
}
.hero-headline {
  font-family: 'Anton', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  margin-bottom: 20px;
  color: #F1F3F5;
}
.hero-sub {
  font-size: 18px; color: #8A9199; max-width: 480px;
  margin-bottom: 36px; line-height: 1.7;
}
.hero-sub em { color: #F1F3F5; font-style: normal; font-weight: 600; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-cta-primary {
  background: #FF3D2E; color: #0B0D10; text-decoration: none;
  font-weight: 700; font-size: 16px; padding: 14px 28px; border-radius: 10px;
  display: inline-block;
}
.btn-cta-primary:hover { background: #FF5546; }
.btn-cta-secondary {
  background: #1E2228; color: #F1F3F5; text-decoration: none;
  font-weight: 600; font-size: 16px; padding: 14px 28px; border-radius: 10px;
  display: inline-block; border: 1px solid #272B34;
}
.btn-cta-secondary:hover { background: #272B34; }

.hero-media { flex: 1; min-width: 0; display: flex; justify-content: center; }
.scorebug-preview {
  background: #17191E; border-radius: 16px; padding: 24px;
  border: 1px solid #272B34;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  max-width: 480px; width: 100%;
}
.scorebug-preview img { width: 100%; height: auto; border-radius: 8px; display: block; }

@media (max-width: 768px) {
  .hero { flex-direction: column; padding: 48px 20px 40px; }
  .hero-media { width: 100%; }
}

.features {
  max-width: 1100px; margin: 0 auto;
  padding: 60px 24px;
  border-top: 1px solid #272B34;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.feature-card {
  background: #17191E; border: 1px solid #272B34; border-radius: 16px;
  padding: 28px 24px;
}
.feature-icon { font-size: 28px; margin-bottom: 14px; }
.feature-title {
  font-family: 'Anton', sans-serif; font-size: 22px;
  margin-bottom: 10px; color: #F1F3F5;
}
.feature-body { font-size: 14px; color: #8A9199; line-height: 1.7; }

.cta-section {
  text-align: center;
  padding: 80px 24px;
  border-top: 1px solid #272B34;
}
.cta-headline {
  font-family: 'Anton', sans-serif; font-size: 40px;
  margin-bottom: 12px;
}
.cta-sub { color: #8A9199; font-size: 16px; margin-bottom: 28px; }
.cta-signin { margin-top: 20px; font-size: 14px; color: #5B6470; }
.cta-signin a { color: #5B9FFF; text-decoration: none; }
.cta-signin a:hover { text-decoration: underline; }

.footer {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 24px; border-top: 1px solid #272B34;
  color: #5B6470; font-size: 13px;
}
