/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #07080d;
  --bg-2: #0d0f17;
  --bg-3: #12151f;
  --fg: #e8eaf0;
  --fg-muted: #8a8fa8;
  --fg-dim: #4a4f68;
  --accent: #c8ff47;
  --accent-2: #a8e630;
  --border: #1e2230;
}

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

/* === NAV === */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.05em;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 80px 48px;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero-content {
  position: relative;
  max-width: 900px;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 32px;
  background: rgba(200, 255, 71, 0.08);
  border: 1px solid rgba(200, 255, 71, 0.2);
  padding: 6px 14px;
  border-radius: 100px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}
.headline-accent {
  color: var(--accent);
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 52px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 40px 0 0;
}
.stat:first-child { padding-left: 0; }
.stat-num {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.72rem;
  color: var(--fg-muted);
  font-family: 'DM Mono', monospace;
  line-height: 1.5;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin-right: 40px;
  flex-shrink: 0;
}

/* === PROOF === */
.proof {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 48px;
}
.proof-inner { max-width: 1100px; margin: 0 auto; }
.proof-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-dim);
  font-family: 'DM Mono', monospace;
  margin-bottom: 32px;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.proof-card {
  background: var(--bg-3);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.proof-icon { font-size: 1.4rem; }
.proof-text strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fg);
  display: block;
  margin-bottom: 6px;
}
.proof-text span {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* === FEATURES === */
.features {
  padding: 96px 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.features-header { margin-bottom: 56px; }
.features-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 12px;
}
.features-sub {
  font-size: 1rem;
  color: var(--fg-muted);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
}
.feature-card {
  background: var(--bg);
  padding: 28px 20px;
  border: 1px solid var(--border);
  border-radius: 0;
}
.feature-num {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.feature-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 0.78rem;
  color: var(--fg-muted);
  line-height: 1.6;
}
.features-verticals {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.verticals-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-dim);
  font-family: 'DM Mono', monospace;
}
.verticals-list { display: flex; gap: 8px; flex-wrap: wrap; }
.vertical-chip {
  font-size: 0.78rem;
  color: var(--fg-muted);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 14px;
}

/* === OUTCOMES === */
.outcomes {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.outcomes-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 36px;
  line-height: 1.2;
}
.outcomes-list { display: flex; flex-direction: column; gap: 20px; }
.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.outcome-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(200, 255, 71, 0.12);
  border: 1px solid rgba(200, 255, 71, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.outcome-item p { font-size: 0.92rem; color: var(--fg-muted); line-height: 1.6; }
.outcome-quote {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  position: relative;
}
.quote-mark {
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.4;
  line-height: 0.5;
  margin-bottom: 20px;
  display: block;
  font-family: 'DM Mono', monospace;
}
blockquote {
  font-size: 1.1rem;
  color: var(--fg);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
cite {
  font-size: 0.78rem;
  color: var(--fg-dim);
  font-family: 'DM Mono', monospace;
  font-style: normal;
}

/* === CLOSING === */
.closing {
  padding: 96px 48px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: 'DM Mono', monospace;
  margin-bottom: 20px;
}
.closing-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 24px;
  line-height: 1.2;
}
.closing-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 48px;
}
.closing-model {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 40px;
  display: inline-block;
  text-align: left;
  min-width: 420px;
}
.model-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 12px 0;
  font-size: 0.85rem;
  color: var(--fg-muted);
  border-bottom: 1px solid var(--border);
  font-family: 'DM Mono', monospace;
}
.model-row:last-child { border-bottom: none; }
.model-arrow { color: var(--fg-dim); }
.model-val { font-weight: 600; color: var(--fg); }
.model-total .model-val { color: var(--accent); font-size: 1.1rem; }

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px;
  text-align: center;
}
.footer-logo {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 8px;
}
.footer-tagline { font-size: 0.82rem; color: var(--fg-muted); margin-bottom: 4px; }
.footer-copy { font-size: 0.72rem; color: var(--fg-dim); font-family: 'DM Mono', monospace; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 60px 24px; min-height: auto; }
  .proof { padding: 48px 24px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .features { padding: 60px 24px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .outcomes { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; }
  .closing { padding: 60px 24px; }
  .closing-model { min-width: unset; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .stat-divider { display: none; }
}
@media (max-width: 480px) {
  .proof-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
}