/* Base reset & tokens */
:root {
  --bg: #08080C;
  --surface: #101018;
  --surface-2: #181824;
  --border: #22222F;
  --accent: #F5A623;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --fg: #F0EDE6;
  --fg-muted: #8A8799;
  --fg-subtle: #4A4858;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { font-size: 16px; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  font-size: 20px;
  color: var(--accent);
  line-height: 1;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--fg);
}

.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  font-size: 14px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.12s;
}

.nav-link:hover { color: var(--fg); }

.nav-link-cta {
  color: var(--accent);
  font-weight: 500;
}

.nav-link-cta:hover { opacity: 0.75; }

/* Hero */
.hero {
  padding: 96px 48px 80px;
  max-width: 900px;
}

.hero-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(245, 166, 35, 0.25);
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 560px;
  font-weight: 300;
  margin-bottom: 40px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cta-note {
  font-size: 14px;
  color: var(--fg-subtle);
  font-style: italic;
}

/* Stats band */
.stats-band {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 28px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  padding: 0 32px;
}

.stat:first-child { padding-left: 0; }

.stat-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* Features */
.features {
  padding: 96px 48px;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-bottom: 20px;
}

.section-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--fg);
  max-width: 600px;
  margin-bottom: 64px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.feature-card {
  background: var(--bg);
  padding: 40px 40px 44px;
  transition: background 0.15s;
}

.feature-card:hover {
  background: var(--surface);
}

.feature-icon {
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 20px;
  line-height: 1;
}

.feature-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.015em;
  color: var(--fg);
  margin-bottom: 12px;
}

.feature-body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--fg-muted);
  font-weight: 300;
}

/* Closing */
.closing {
  padding: 96px 48px 80px;
  border-top: 1px solid var(--border);
}

.closing-inner {
  max-width: 700px;
}

.closing-rule {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 40px;
}

.closing-statement {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 20px;
}

.closing-statement.secondary {
  font-size: clamp(18px, 2vw, 24px);
  color: var(--fg-muted);
  font-weight: 400;
  margin-bottom: 56px;
}

.closing-tagline {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-subtle);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 48px;
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--fg);
}

.footer-sep {
  color: var(--fg-subtle);
}

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

/* Mobile */
@media (max-width: 768px) {
  .navbar { padding: 16px 24px; }
  .hero { padding: 56px 24px 48px; }
  .hero-headline { font-size: 40px; }
  .stats-band { flex-direction: column; align-items: flex-start; gap: 20px; padding: 24px; }
  .stat-divider { display: none; }
  .stat { padding: 0; }
  .features { padding: 56px 24px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 28px 24px; }
  .closing { padding: 56px 24px 48px; }
  .footer { padding: 20px 24px; }
  .nav-tagline { display: none; }
  .nav-actions { gap: 12px; }
  .nav-link { font-size: 13px; }
}