:root {
  --bg: #0A0A0F;
  --bg-alt: #111118;
  --bg-card: #14141C;
  --fg: #F5F4EE;
  --fg-muted: #8A8A9A;
  --accent: #C8F240;
  --accent-dim: rgba(200, 242, 64, 0.12);
  --border: rgba(255,255,255,0.07);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(10,10,15,0.92);
  backdrop-filter: blur(12px);
  z-index: 100;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--fg);
}
.logo-mark { color: var(--accent); font-size: 18px; }
.logo-text { font-weight: 600; font-size: 18px; letter-spacing: -0.02em; }
.nav-right { display: flex; align-items: center; gap: 24px; }
.nav-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 500;
}
.status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* HERO */
.hero {
  padding: 80px 48px 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: var(--accent-dim);
  border: 1px solid rgba(200,242,64,0.2);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 6vw, 80px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
  color: var(--fg);
}
.highlight { color: var(--accent); }
.hero-sub {
  color: var(--fg-muted);
  font-size: 17px;
  line-height: 1.65;
  max-width: 420px;
  margin-bottom: 32px;
}
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #0A0A0F;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 6px;
  transition: opacity 0.15s;
}
.btn-primary:hover { opacity: 0.88; }

/* PIPELINE MOCK */
.pipeline-mock {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mock-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.mock-step:last-child { border-bottom: none; }
.step-icon { font-size: 20px; width: 32px; text-align: center; }
.step-info { flex: 1; }
.step-label { display: block; font-weight: 500; font-size: 14px; }
.step-meta { display: block; font-size: 12px; color: var(--fg-muted); }
.step-status {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
}
.step-status.done { background: rgba(200,242,64,0.15); color: var(--accent); }
.step-status.active { background: rgba(255,255,255,0.08); color: var(--fg-muted); }
.step-status.queued { background: rgba(255,255,255,0.04); color: var(--fg-muted); }
.mock-arrow { text-align: center; color: var(--fg-muted); font-size: 14px; padding: 4px 0; }

/* HERO STATS */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 64px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat { text-align: center; flex: 1; }
.stat-num { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 36px; color: var(--accent); }
.stat-label { display: block; font-size: 12px; color: var(--fg-muted); margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* SECTION HEADER */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
.section-desc { color: var(--fg-muted); font-size: 17px; }

/* PIPELINE */
.pipeline {
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.pipeline-steps {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  align-items: start;
  gap: 0;
}
.pipe-step { padding: 0 20px; }
.pipe-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--accent);
  opacity: 0.5;
  margin-bottom: 16px;
}
.pipe-step h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.pipe-step p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }
.pipe-connector {
  display: flex;
  align-items: center;
  height: 100%;
  padding-top: 36px;
}
.pipe-connector::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: var(--border);
}

/* FEATURES */
.features {
  padding: 80px 48px;
  background: var(--bg-alt);
}
.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.feature-card {
  background: var(--bg-card);
  padding: 36px 32px;
}
.feature-primary { background: rgba(200,242,64,0.06); }
.feature-icon { font-size: 28px; margin-bottom: 16px; }
.feature-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--fg-muted); line-height: 1.65; }

/* HOW SECTION */
.how-section {
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.how-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.how-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
.how-text p { color: var(--fg-muted); font-size: 16px; margin-bottom: 16px; line-height: 1.65; }
.how-list { list-style: none; margin-bottom: 20px; }
.how-list li { padding: 8px 0; font-size: 15px; color: var(--fg-muted); }
.how-list strong { color: var(--fg); }
.how-note { font-size: 13px; color: var(--fg-muted); border-left: 2px solid var(--accent); padding-left: 16px; font-style: italic; }

/* PRICING CARD */
.pricing-card { display: flex; flex-direction: column; gap: 16px; }
.pricing-tier {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}
.pricing-highlight {
  border-color: rgba(200,242,64,0.25);
  background: rgba(200,242,64,0.05);
}
.tier-name { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.tier-price { font-family: 'Bebas Neue', sans-serif; font-size: 48px; color: var(--fg); }
.tier-period { font-size: 20px; color: var(--fg-muted); font-family: 'DM Sans', sans-serif; }
.tier-features { list-style: none; margin-top: 16px; }
.tier-features li { font-size: 13px; color: var(--fg-muted); padding: 5px 0; padding-left: 20px; position: relative; }
.tier-features li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-size: 12px; }

/* CLOSING */
.closing { padding: 100px 48px; text-align: center; }
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin-bottom: 24px;
}
.closing p { color: var(--fg-muted); font-size: 18px; line-height: 1.7; }

/* FOOTER */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo { font-weight: 600; font-size: 16px; display: block; margin-bottom: 8px; color: var(--accent); }
.footer p { font-size: 13px; color: var(--fg-muted); }
.footer-links { font-size: 13px; color: var(--fg-muted); }

/* MOBILE */
@media (max-width: 768px) {
  .hero-layout { grid-template-columns: 1fr; gap: 40px; }
  .hero-headline { font-size: 52px; }
  .hero { padding: 60px 24px 40px; }
  .pipeline-steps { grid-template-columns: 1fr; gap: 32px; }
  .pipe-connector { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .how-inner { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .stat-divider { width: 60px; height: 1px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .nav { padding: 16px 24px; }
  .section-header { margin-bottom: 36px; }
  .pipeline, .features, .how-section { padding: 60px 24px; }
}