:root {
  --bg: #090909;
  --surface: #111111;
  --surface-strong: #1a1a1a;
  --text: #f9f5f0;
  --muted: #c2a25e;
  --accent: #f39c12;
  --accent-soft: rgba(243, 156, 18, 0.12);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, rgba(243, 156, 18, 0.12), transparent 35%),
    linear-gradient(180deg, #090909 0%, #0d0d0d 100%);
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.page-shell {
  width: min(100%, var(--max-width));
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 20px;
  margin-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(18px);
}

.brand {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

.cta-link,
.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f39c12 0%, #ffb534 100%);
  color: #090909;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.cta-link:hover,
.hero-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(243, 156, 18, 0.22);
}

.hero-section {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: center;
  justify-items: center;
  padding: 4rem 2rem;
  margin-bottom: 40px;
  border-radius: 32px;
  background: radial-gradient(circle at 20% 20%, rgba(243, 156, 18, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-copy {
  text-align: center;
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.hero-text {
  margin: 1.5rem auto 2.4rem;
  font-size: 1.05rem;
  line-height: 1.9;
  max-width: 630px;
  color: rgba(255, 255, 255, 0.84);
}

.stats-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.stat-card {
  padding: 1.8rem 1.6rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
}

.stat-label {
  display: block;
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

@media (max-width: 840px) {
  .topbar {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .hero-section {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 640px) {
  body {
    padding: 16px;
  }

  .topbar {
    padding: 18px 16px;
    border-radius: 20px;
  }

  .hero-copy h1 {
    font-size: 2.8rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .stats-section {
    grid-template-columns: 1fr;
  }
}
