:root {
  --bg: #0c0f14;
  --bg-surface: #141820;
  --bg-card: #1a1f2a;
  --fg: #e8e6e1;
  --fg-muted: #9a978f;
  --accent: #d4a24e;
  --accent-glow: rgba(212, 162, 78, 0.15);
  --accent-soft: #c49340;
  --border: rgba(212, 162, 78, 0.12);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

/* ======== NAV ======== */
.nav {
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.5px;
}

.nav-logo span {
  color: var(--accent);
}

.nav-tag {
  font-size: 12px;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 5px 14px;
  border-radius: 100px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ======== HERO ======== */
.hero {
  padding: 100px 0 80px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-badge {
  display: inline-block;
  font-size: 13px;
  color: var(--accent);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: var(--fg);
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero .lede {
  font-size: 19px;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.7;
}

/* ======== NAV AUDIT CTA ======== */
.nav-audit-cta {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: #0c0f14;
  background: var(--accent);
  padding: 9px 20px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: -0.1px;
  transition: background 0.2s, box-shadow 0.2s;
}

.nav-audit-cta:hover {
  background: var(--accent-soft);
  box-shadow: 0 4px 16px rgba(212, 162, 78, 0.25);
}

/* ======== HERO ACTIONS ======== */
.hero-actions {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-btn-primary {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #0c0f14;
  background: var(--accent);
  padding: 15px 32px;
  border-radius: 10px;
  text-decoration: none;
  letter-spacing: -0.2px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
  display: inline-block;
}

.hero-btn-primary:hover {
  background: var(--accent-soft);
  box-shadow: 0 6px 24px rgba(212, 162, 78, 0.3);
  transform: translateY(-1px);
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-stars {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 2px;
}

.hero-proof-text {
  font-size: 13px;
  color: var(--fg-muted);
}

/* ======== STATS ======== */
.stats {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -1px;
}

.stat-label {
  font-size: 14px;
  color: var(--fg-muted);
  margin-top: 4px;
  letter-spacing: 0.3px;
}

/* ======== HOW IT WORKS ======== */
.how-section {
  padding: 100px 0 80px;
}

.section-label {
  font-size: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 56px;
  max-width: 520px;
  line-height: 1.15;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.how-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 36px;
  transition: border-color 0.3s ease;
}

.how-card:hover {
  border-color: var(--accent-soft);
}

.how-card-number {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-glow);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-bottom: 20px;
}

.how-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.how-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ======== FEATURES ======== */
.features-section {
  padding: 80px 0 100px;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  transition: transform 0.2s ease, border-color 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-2px);
  border-color: var(--accent-soft);
}

.feature-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}

.feature-item h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.feature-item p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ======== CLOSING ======== */
.closing {
  padding: 100px 0;
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.12;
  margin-bottom: 20px;
}

.closing h2 em {
  font-style: normal;
  color: var(--accent);
}

.closing p {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ======== FOOTER ======== */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer p {
  font-size: 13px;
  color: var(--fg-muted);
}

.footer span {
  color: var(--accent);
}

/* ======== RESPONSIVE ======== */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  
  .how-grid {
    grid-template-columns: 1fr;
  }
  
  .features-list {
    grid-template-columns: 1fr;
  }
  
  .hero {
    padding: 60px 0 50px;
  }
  
  .how-section,
  .features-section,
  .closing {
    padding: 60px 0;
  }
}
