:root {
  --bg: #06090f;
  --bg-surface: #0c1220;
  --bg-card: #101828;
  --fg: #e8edf5;
  --fg-muted: #7a8899;
  --accent: #f5c842;
  --accent-dim: rgba(245, 200, 66, 0.12);
  --green: #4ade80;
  --border: rgba(255,255,255,0.07);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 48px;
  background: rgba(6, 9, 15, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { max-width: 1200px; margin: 0 auto; }
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

/* HERO */
.hero {
  min-height: 100vh;
  padding: 140px 48px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(245, 200, 66, 0.2);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.headline-accent { color: var(--accent); }
.hero-lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 480px;
  margin-bottom: 48px;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat { display: flex; flex-direction: column; }
.stat-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}
.stat-label { font-size: 0.75rem; color: var(--fg-muted); margin-top: 4px; }
.stat-divider {
  width: 1px; height: 40px;
  background: var(--border);
}

/* HERO VISUAL - DEAL CARD STACK */
.hero-visual { position: relative; }
.deal-card-stack {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
}
.deal-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  position: absolute;
  width: 100%;
  box-shadow: 0 32px 64px rgba(0,0,0,0.4);
}
.deal-card-1 {
  top: 0; left: 0;
  transform: rotate(-2deg);
  z-index: 1;
  border-left: 3px solid #6b7280;
}
.deal-card-2 {
  top: 60px; left: 10px;
  transform: rotate(1deg);
  z-index: 2;
  border-left: 3px solid #3b82f6;
}
.deal-card-3 {
  top: 130px; left: 0;
  transform: rotate(-0.5deg);
  z-index: 3;
  border-left: 3px solid var(--accent);
}
.card-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.card-meta { font-size: 0.8rem; color: var(--fg-muted); margin-bottom: 12px; }
.card-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--fg);
}
.card-price.green { color: var(--green); }

/* HOW */
.how {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.section-header p { color: var(--fg-muted); font-size: 1.05rem; }
.steps {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  align-items: start;
  gap: 0;
}
.step { padding: 0 16px; }
.step-number {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.step p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.7; }
.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 48px;
}
.step-connector::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0.4;
}

/* FEATURES */
.features {
  padding: 100px 48px;
  background: var(--bg-surface);
}
.features .section-header { max-width: 1200px; margin: 0 auto 64px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}
.feature {
  background: var(--bg-card);
  padding: 40px;
  border: 1px solid var(--border);
}
.feature-icon {
  width: 48px; height: 48px;
  background: var(--accent-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.feature h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.feature p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.7; }

/* CONTRACT BANNER */
.contract-banner {
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.contract-content {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--accent-dim);
  border: 1px solid rgba(245, 200, 66, 0.15);
  border-radius: 20px;
  padding: 40px 48px;
}
.contract-icon { flex-shrink: 0; }
.contract-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.contract-content p { font-size: 0.95rem; color: var(--fg-muted); line-height: 1.6; }

/* CLOSING */
.closing {
  padding: 120px 48px 80px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 24px;
}
.closing p {
  color: var(--fg-muted);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 48px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
}
.footer-tagline { font-size: 0.85rem; color: var(--fg-muted); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero {
    padding: 120px 24px 60px;
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-visual { display: none; }
  .hero-stats { gap: 20px; }
  .stat-value { font-size: 1.3rem; }
  .how, .features, .contract-banner, .closing { padding: 60px 24px; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .step-connector { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .contract-content { flex-direction: column; padding: 28px 24px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}