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

:root {
  --orange:      #f47b20;
  --orange-dark: #c45d08;
  --orange-glow: rgba(244, 123, 32, 0.18);
  --bg:          #1e1e1e;
  --bg-card:     #272727;
  --bg-header:   #161616;
  --text:        #e8e8e8;
  --text-muted:  #9a9a9a;
  --radius:      8px;
  --transition:  0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* ── Header / Nav ─────────────────────────────────────────────── */
header {
  background: var(--bg-header);
  border-bottom: 1px solid var(--orange-glow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text);
}

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

.logo svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.8rem;
}

nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color var(--transition);
}

nav a:hover { color: var(--orange); }

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 1.5rem 4rem;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: var(--orange-glow);
  color: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 50px;
  padding: 0.25rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -1px;
}

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

.hero p {
  max-width: 560px;
  margin: 0 auto 2.5rem;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-primary {
  background: var(--orange);
  color: #111;
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--orange-glow);
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
  margin-left: 0.75rem;
}

.btn-outline:hover {
  background: var(--orange-glow);
  transform: translateY(-2px);
}

/* ── Section titles ───────────────────────────────────────────── */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.section-label {
  display: block;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  text-align: center;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

.section-sub {
  color: var(--text-muted);
  text-align: center;
  max-width: 520px;
  margin: 0 auto 3rem;
  font-size: 1rem;
}

/* ── Feature cards ────────────────────────────────────────────── */
.features {
  background: var(--bg-header);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: border-color var(--transition), transform var(--transition);
}

.card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}

.card-icon {
  width: 44px;
  height: 44px;
  background: var(--orange-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--orange);
}

.card-icon svg { width: 22px; height: 22px; }

.card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* ── Stats strip ──────────────────────────────────────────────── */
.stats-strip {
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  background: var(--bg-card);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0;
}

.stat {
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.stat:last-child { border-right: none; }

.stat-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ── CTA ──────────────────────────────────────────────────────── */
.cta {
  text-align: center;
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, rgba(244,123,32,0.08) 0%, transparent 60%);
  border-top: 1px solid rgba(244,123,32,0.15);
}

.cta h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

.cta p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* ── Footer ───────────────────────────────────────────────────── */
footer {
  background: var(--bg-header);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.87rem;
}

footer a {
  color: var(--orange);
  text-decoration: none;
}

footer a:hover { text-decoration: underline; }

/* ── Responsive tweaks ────────────────────────────────────────── */
@media (max-width: 600px) {
  nav ul { display: none; }

  .btn-outline { display: none; }

  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .stat:last-child { border-bottom: none; }
}
