/* === BASE === */
:root {
  --bg: #0c0e14;
  --bg2: #13151f;
  --fg: #e8eaf0;
  --fg2: #8892a4;
  --accent: #00d4ff;
  --accent2: #ff6b6b;
  --card: #13151f;
  --border: rgba(255,255,255,0.07);
}

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

html { scroll-behavior: smooth; }

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

/* === NAV === */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.nav-logo .dot { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg2);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover { color: var(--fg); }

.nav-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--fg2);
  font-weight: 500;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00c853;
  box-shadow: 0 0 0 0 rgba(0,200,83,0.4);
  animation: pulse-anim 2s infinite;
}

@keyframes pulse-anim {
  0% { box-shadow: 0 0 0 0 rgba(0,200,83,0.4); }
  70% { box-shadow: 0 0 0 6px rgba(0,200,83,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,200,83,0); }
}

/* === HERO === */
.hero {
  padding: 80px 48px 100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  color: var(--fg2);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 32px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.meta-chip {
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--fg2);
}

.hero-cta-wrap {
  margin-top: 36px;
}

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: #0c0e14;
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: -0.3px;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: #00bfe6;
}

.hero-cta-sub {
  font-size: 13px;
  color: var(--fg2);
  margin-top: 12px;
}

/* === SOCIAL PROOF === */
.social-proof {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 48px;
}

.sp-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.sp-statement {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg2);
  text-align: center;
}

.sp-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
}

/* === DASHBOARD FRAME === */
.dashboard-frame {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}

.dash-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--fg2);
}

.dash-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #00c853;
}

.blink {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00c853;
  animation: blink-anim 1s infinite;
}

@keyframes blink-anim {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.dash-img {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
}

.stat {
  padding: 14px 16px;
  text-align: center;
}

.stat + .stat {
  border-left: 1px solid var(--border);
}

.stat-val {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}

.stat-lbl {
  font-size: 11px;
  color: var(--fg2);
  margin-top: 2px;
}

/* === HOW IT WORKS WALKTHROUGH === */
.how-it-works {
  background: var(--bg);
  padding: 100px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.hw-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.hw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hw-step {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.hw-step:hover {
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 4px 24px rgba(0, 212, 255, 0.06);
}

.hw-step-icon {
  margin-bottom: 16px;
}

.hw-step-num {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.hw-step h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--fg);
}

.hw-step p {
  font-size: 14px;
  color: var(--fg2);
  line-height: 1.55;
}

/* === HOW / PIPELINE === */
.how {
  background: var(--bg2);
  padding: 100px 48px;
}

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

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 64px;
}

.pipeline {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 8px;
}

.pipe-step {
  flex: 1;
  min-width: 200px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
}

.pipe-num {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.pipe-body h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.pipe-body p {
  font-size: 14px;
  color: var(--fg2);
  line-height: 1.55;
}

.pipe-arrow {
  padding: 0 12px;
  flex-shrink: 0;
}

/* === OUTCOMES === */
.outcomes {
  padding: 100px 48px;
}

.outcomes-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 60px;
}

.outcome-card {
  background: var(--bg);
  padding: 40px 36px;
  text-align: center;
}

.outcome-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.outcome-val {
  font-family: 'Syne', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.outcome-lbl {
  font-size: 14px;
  color: var(--fg2);
  line-height: 1.5;
}

.outcomes-quote {
  text-align: center;
}

.outcomes-quote blockquote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--fg2);
  max-width: 640px;
  margin: 0 auto;
  font-style: normal;
}

/* === PRICING === */
.pricing {
  background: var(--bg2);
  padding: 100px 48px;
}

.pricing-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

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

.plan-highlight {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(0,212,255,0.15), 0 8px 32px rgba(0,212,255,0.1);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0c0e14;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 99px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.plan-name {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.plan-price {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 28px;
}

.plan-price span {
  font-size: 18px;
  font-weight: 500;
  color: var(--fg2);
  letter-spacing: 0;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-features li {
  font-size: 14px;
  color: var(--fg2);
  padding-left: 20px;
  position: relative;
}

.plan-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.plan-cta {
  display: inline-block;
  margin-top: 28px;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  background: rgba(0,212,255,0.08);
  color: var(--accent);
  border: 1px solid rgba(0,212,255,0.25);
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
  width: 100%;
}

.plan-cta:hover {
  background: rgba(0,212,255,0.15);
  border-color: rgba(0,212,255,0.4);
}

.plan-cta-primary {
  background: var(--accent);
  color: #0c0e14;
  border-color: var(--accent);
}

.plan-cta-primary:hover {
  background: #00bfe6;
  border-color: #00bfe6;
}

.pricing-note {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: var(--fg2);
}

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

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

.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 36px;
}

.closing-body {
  font-size: 18px;
  color: var(--fg2);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto;
}

.closing-cta {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: #0c0e14;
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}

.closing-cta:hover {
  background: #00bfe6;
}

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

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.footer-logo .dot { color: var(--accent); }

.footer-tagline {
  font-size: 13px;
  color: var(--fg2);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero { padding: 60px 24px 80px; }
  .outcomes-grid,
  .pricing-grid { grid-template-columns: 1fr; }
  .pipeline { flex-wrap: wrap; }
  .pipe-arrow { display: none; }
  .hw-steps { grid-template-columns: 1fr; }
  .how,
  .outcomes,
  .pricing { padding: 80px 24px; }
  .closing { padding: 80px 24px; }
  .navbar { padding: 16px 24px; }
  .footer { padding: 24px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
  .social-proof { padding: 24px; }
  .sp-inner { flex-direction: column; gap: 16px; }
  .sp-divider { display: none; }
  .sp-statement { font-size: 13px; }
}
