:root {
  --bg: #0c0c0e;
  --fg: #f0ede6;
  --accent: #e8380d;
  --accent-soft: rgba(232, 56, 13, 0.12);
  --muted: #6b6860;
  --card: #141416;
  --border: rgba(240, 237, 230, 0.08);
}

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

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

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.08em;
  color: var(--fg);
}

.nav-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 3px 8px;
  border-radius: 2px;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 40px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 40%, rgba(232, 56, 13, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(232, 56, 13, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 10vw, 140px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 32px;
}

.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: rgba(240, 237, 230, 0.6);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 48px;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 0.04em;
  color: var(--fg);
}

.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}

.stat-div {
  width: 1px;
  height: 48px;
  background: var(--border);
  margin-right: 48px;
  flex-shrink: 0;
}

/* FEATURES */
.features {
  padding: 120px 40px;
  background: #0f0f11;
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.features-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  letter-spacing: 0.04em;
  color: var(--fg);
  margin-bottom: 72px;
}

.features-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: 48px 40px;
  transition: background 0.3s;
}

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

.feature-icon {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 24px;
}

.feature-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  color: rgba(240, 237, 230, 0.5);
  line-height: 1.65;
  font-weight: 300;
}

/* SOCIAL PROOF */
.social-proof {
  padding: 100px 40px;
  background: var(--bg);
}

.social-proof-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.social-quote {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 300;
  color: rgba(240, 237, 230, 0.75);
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 32px;
}

.social-attribution {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
}

/* CLOSING */
.closing {
  padding: 140px 40px;
  background: #0f0f11;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(232, 56, 13, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner {
  position: relative;
}

.closing-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 9vw, 120px);
  letter-spacing: 0.04em;
  color: var(--fg);
  line-height: 0.95;
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(240, 237, 230, 0.55);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* FOOTER */
.footer {
  padding: 40px 40px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: var(--fg);
}

.footer-legal {
  font-size: 12px;
  color: rgba(240, 237, 230, 0.35);
  font-weight: 400;
}

.footer-copy {
  font-size: 11px;
  color: rgba(240, 237, 230, 0.2);
  font-weight: 300;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 100px 24px 60px; }
  .features { padding: 80px 24px; }
  .social-proof { padding: 80px 24px; }
  .closing { padding: 100px 24px; }

  .hero-headline { font-size: 72px; }
  .features-grid { grid-template-columns: 1fr; }
  .stat { padding-right: 28px; }
  .stat-div { margin-right: 28px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .stat-div { display: none; }
}

@media (max-width: 480px) {
  .nav { padding: 16px 20px; }
  .hero-headline { font-size: 56px; }
  .hero-sub { font-size: 16px; }
  .feature-card { padding: 32px 24px; }
}