:root {
  --bg: #0c0f0a;
  --bg-alt: #151a12;
  --fg: #e8e4dc;
  --fg-muted: #9a9689;
  --accent: #b8e060;
  --accent-dark: #8cb83a;
  --surface: #1a1f16;
  --surface-border: #2a3024;
  --warm: #d4a574;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* Hero */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -20%;
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(184, 224, 96, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 720px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent);
  border: 1px solid var(--surface-border);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.highlight {
  color: var(--accent);
}

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

.hero-graphic {
  display: flex;
  gap: 16px;
  margin-top: 56px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  padding: 28px 32px;
  min-width: 180px;
  text-align: left;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

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

.card-icon {
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 12px;
}

.card-label {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 500;
  margin-bottom: 6px;
}

.card-value {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--fg);
}

/* Stats */
.stats {
  padding: 60px 24px;
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
}

.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--warm);
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: var(--fg-muted);
  margin-top: 8px;
  max-width: 200px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--surface-border);
}

/* Features */
.features {
  padding: 100px 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.features-header {
  margin-bottom: 64px;
}

.section-tag {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}

.features-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  max-width: 600px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.feature-card:hover {
  border-color: var(--accent-dark);
}

.feature-large {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--surface) 0%, rgba(184, 224, 96, 0.04) 100%);
}

.feature-number {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.7;
}

/* How / Advantage */
.how {
  padding: 100px 24px;
  background: var(--bg-alt);
}

.how-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.how-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.how-text p {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.how-text p:nth-child(4) {
  color: var(--fg);
  font-weight: 500;
  font-size: 18px;
}

.comparison {
  display: flex;
  gap: 2px;
  border-radius: 16px;
  overflow: hidden;
}

.comp-col {
  flex: 1;
  padding: 32px 24px;
}

.comp-them {
  background: var(--surface);
}

.comp-you {
  background: linear-gradient(180deg, rgba(184, 224, 96, 0.1) 0%, rgba(184, 224, 96, 0.03) 100%);
  border: 1px solid rgba(184, 224, 96, 0.2);
  border-radius: 0 16px 16px 0;
}

.comp-header {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--fg-muted);
}

.comp-you .comp-header {
  color: var(--accent);
}

.comp-col ul {
  list-style: none;
}

.comp-col li {
  font-size: 14px;
  color: var(--fg-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--surface-border);
}

.comp-col li:last-child {
  border-bottom: none;
}

.comp-you li {
  color: var(--fg);
}

/* Closing */
.closing {
  padding: 120px 24px;
  text-align: center;
}

.closing-inner {
  max-width: 640px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
}

.closing-text {
  color: var(--fg-muted);
  font-size: 17px;
  line-height: 1.8;
}

/* Footer */
.site-footer {
  padding: 48px 24px;
  border-top: 1px solid var(--surface-border);
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 4px;
}

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

/* Responsive */
@media (max-width: 768px) {
  .hero { min-height: auto; padding: 60px 20px 40px; }
  .hero-graphic { flex-direction: column; align-items: stretch; }
  .card { min-width: auto; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-large { grid-column: span 1; }
  .how-inner { grid-template-columns: 1fr; gap: 40px; }
  .comparison { flex-direction: column; }
  .comp-you { border-radius: 0 0 16px 16px; }
  .stats-inner { flex-direction: column; gap: 32px; }
  .stat-divider { width: 48px; height: 1px; }
}