:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --bg-card: #18182a;
  --fg: #e8e6e3;
  --fg-dim: #8a8898;
  --fg-muted: #5a5870;
  --accent: #d4a843;
  --accent-glow: rgba(212, 168, 67, 0.15);
  --accent-soft: #c49a3a;
  --green: #3dd68c;
  --red: #e85d5d;
  --border: rgba(255, 255, 255, 0.06);
  --radius: 12px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 20px;
}

/* ============ HERO ============ */
.hero {
  padding: 100px 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--accent-glow);
  border: 1px solid rgba(212, 168, 67, 0.3);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(40px, 5.5vw, 68px);
  color: var(--fg);
  margin-bottom: 28px;
}

.hero h1 .accent {
  color: var(--accent);
}

.lede {
  font-size: 18px;
  color: var(--fg-dim);
  line-height: 1.7;
  max-width: 520px;
}

.status-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

.status-dot.live {
  background: var(--green);
  box-shadow: 0 0 12px rgba(61, 214, 140, 0.5);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.status-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  vertical-align: middle;
}

.status-stats {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.stat-item:last-child { border-bottom: none; }

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

.stat-desc {
  font-size: 14px;
  color: var(--fg-dim);
}

/* ============ PROBLEM ============ */
.problem {
  padding: 100px 40px;
  background: var(--bg-elevated);
}

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

.problem h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 50px;
  max-width: 700px;
}

.strike {
  text-decoration: line-through;
  color: var(--fg-muted);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.problem-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.problem-text {
  font-size: 15px;
  color: var(--fg-dim);
  line-height: 1.6;
  font-style: italic;
}

/* ============ FEATURES ============ */
.features {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.features h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 16px;
}

.features-sub {
  font-size: 18px;
  color: var(--fg-dim);
  max-width: 600px;
  margin-bottom: 60px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  align-items: start;
}

.feature-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
}

.feature-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--fg);
}

.feature-content p {
  font-size: 16px;
  color: var(--fg-dim);
  line-height: 1.7;
  max-width: 600px;
}

/* ============ HOW / COMPARISON ============ */
.how {
  padding: 100px 40px;
  background: var(--bg-elevated);
}

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

.how-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.how-left h2 {
  font-size: clamp(26px, 3vw, 38px);
}

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

.comp-column {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.comp-column.new {
  border-color: rgba(212, 168, 67, 0.3);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(212, 168, 67, 0.05) 100%);
}

.comp-header {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.comp-column.old .comp-header { color: var(--fg-muted); }
.comp-column.new .comp-header { color: var(--accent); }

.comp-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comp-column ul li {
  font-size: 14px;
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}

.comp-column.old ul li { color: var(--fg-muted); }
.comp-column.new ul li { color: var(--fg-dim); }

.comp-column.old ul li::before {
  content: '\2013';
  position: absolute;
  left: 0;
  color: var(--fg-muted);
}

.comp-column.new ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ============ CLOSING ============ */
.closing {
  padding: 120px 40px;
  text-align: center;
}

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

.closing h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 24px;
}

.closing-text {
  font-size: 18px;
  color: var(--fg-dim);
  line-height: 1.7;
  margin-bottom: 50px;
}

.closing-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.big-number {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.big-label {
  font-size: 16px;
  color: var(--fg-dim);
}

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

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

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

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

.footer-divider {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin: 0 auto 24px;
}

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

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero { padding: 60px 24px 50px; }
  .problem { padding: 60px 24px; }
  .features { padding: 60px 24px; }
  .how { padding: 60px 24px; }
  .closing { padding: 80px 24px; }
  .site-footer { padding: 40px 24px; }
  .how-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }
  .comparison {
    grid-template-columns: 1fr;
  }
  .feature-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .feature-number {
    font-size: 32px;
  }
}