:root {
  --bg: #0A0A0F;
  --surface: #111118;
  --surface2: #18181F;
  --fg: #FFFFFF;
  --fg2: #9999AA;
  --accent: #00E87E;
  --accent-dim: rgba(0, 232, 126, 0.12);
  --accent-border: rgba(0, 232, 126, 0.25);
  --border: rgba(255, 255, 255, 0.08);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

/* NAV */
.navbar { border-bottom: 1px solid var(--border); padding: 20px 0; }
.navbar-inner { max-width: 1160px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-wordmark { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -0.3px; }
.nav-tagline { font-size: 13px; color: var(--fg2); font-family: var(--font-display); }

/* HERO */
.hero { position: relative; max-width: 1160px; margin: 0 auto; padding: 80px 32px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; overflow: hidden; }
.hero-grid-bg { position: absolute; inset: 0; background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px); background-size: 48px 48px; mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%); pointer-events: none; }
.hero-content { position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--accent-dim); border: 1px solid var(--accent-border); border-radius: 100px; padding: 6px 14px; font-size: 12px; font-family: var(--font-display); color: var(--accent); font-weight: 500; margin-bottom: 28px; }
.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.3; } }
.hero-headline { font-family: var(--font-display); font-size: clamp(40px, 5vw, 60px); font-weight: 700; line-height: 1.08; letter-spacing: -2px; margin-bottom: 24px; background: linear-gradient(135deg, #FFFFFF 0%, rgba(255,255,255,0.7) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 18px; color: var(--fg2); line-height: 1.65; max-width: 440px; margin-bottom: 48px; }
.hero-meta { display: flex; align-items: center; gap: 0; }
.meta-item { display: flex; flex-direction: column; padding: 0 28px; }
.meta-item:first-child { padding-left: 0; }
.meta-number { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--accent); line-height: 1; margin-bottom: 6px; }
.meta-label { font-size: 12px; color: var(--fg2); line-height: 1.4; }
.meta-divider { width: 1px; height: 40px; background: var(--border); }

/* PIPELINE WIDGET */
.hero-visual { position: relative; z-index: 1; }
.pipeline-widget { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 28px; box-shadow: 0 0 80px rgba(0, 232, 126, 0.06), inset 0 1px 0 rgba(255,255,255,0.05); }
.pipeline-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.pipeline-title { font-family: var(--font-display); font-weight: 600; font-size: 15px; }
.pipeline-status { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--accent); font-family: var(--font-display); font-weight: 500; }
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }
.pipeline-stages { display: flex; flex-direction: column; gap: 16px; }
.stage { display: flex; flex-direction: column; gap: 6px; }
.stage-label { font-size: 11px; color: var(--fg2); font-family: var(--font-display); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
.stage-bar { height: 4px; background: var(--surface2); border-radius: 2px; overflow: hidden; }
.stage-fill { height: 100%; background: linear-gradient(90deg, var(--accent), rgba(0,232,126,0.4)); border-radius: 2px; }
.stage-count { font-family: var(--font-display); font-size: 20px; font-weight: 700; }
.stage-active .stage-label { color: var(--accent); }
.stage-active .stage-fill { background: var(--accent); }
.stage-active .stage-count { color: var(--accent); }
.pipeline-latest { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); }
.latest-label { font-size: 11px; color: var(--fg2); font-family: var(--font-display); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.latest-name { font-family: var(--font-display); font-weight: 600; font-size: 14px; }
.latest-meta { font-size: 12px; color: var(--fg2); margin-top: 2px; }

/* SECTION SHARED */
.section-label { font-family: var(--font-display); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent); margin-bottom: 16px; }
.section-headline { font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px); font-weight: 700; line-height: 1.1; letter-spacing: -1.5px; }

/* HOW IT WORKS */
.howitworks { max-width: 1160px; margin: 0 auto; padding: 80px 32px; }
.howitworks .section-headline { margin-bottom: 64px; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 32px 24px; position: relative; transition: border-color 0.2s; }
.step-card:hover { border-color: var(--accent-border); }
.step-number { font-family: var(--font-display); font-size: 11px; font-weight: 600; color: var(--accent); letter-spacing: 1px; margin-bottom: 24px; }
.step-icon { margin-bottom: 20px; }
.step-title { font-family: var(--font-display); font-size: 18px; font-weight: 600; margin-bottom: 12px; }
.step-desc { font-size: 14px; color: var(--fg2); line-height: 1.65; }

/* OUTCOMES */
.outcomes { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.outcomes-inner { max-width: 1160px; margin: 0 auto; padding: 80px 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.outcomes-headline { font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px); font-weight: 700; line-height: 1.1; letter-spacing: -1.5px; }
.outcomes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.outcome-number { font-family: var(--font-display); font-size: 40px; font-weight: 700; color: var(--accent); line-height: 1; margin-bottom: 12px; }
.outcome-desc { font-size: 15px; color: var(--fg2); line-height: 1.55; }

/* PRICING */
.pricing { max-width: 1160px; margin: 0 auto; padding: 80px 32px; }
.pricing .section-headline { margin-bottom: 48px; }
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 36px 28px; position: relative; transition: border-color 0.2s; }
.pricing-card:hover { border-color: var(--accent-border); }
.pricing-card.featured { border-color: var(--accent-border); background: linear-gradient(180deg, var(--accent-dim) 0%, var(--surface) 60%); }
.card-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--bg); font-size: 11px; font-weight: 700; font-family: var(--font-display); padding: 4px 14px; border-radius: 100px; white-space: nowrap; }
.card-tier { font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--fg2); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.card-price { font-family: var(--font-display); font-size: 52px; font-weight: 700; line-height: 1; margin-bottom: 6px; }
.price-per { font-size: 18px; font-weight: 400; color: var(--fg2); }
.card-target { font-size: 13px; color: var(--fg2); margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.card-features { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.card-features li { font-size: 14px; color: var(--fg2); display: flex; align-items: flex-start; gap: 10px; }
.card-features li::before { content: ''; width: 16px; height: 16px; min-width: 16px; background: var(--accent-dim); border-radius: 4px; background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%2300E87E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }
.pricing-note { text-align: center; margin-top: 36px; font-size: 14px; color: var(--fg2); }

/* CLOSING */
.closing { max-width: 1160px; margin: 0 auto; padding: 100px 32px; text-align: center; position: relative; overflow: hidden; }
.closing-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 600px; height: 300px; background: radial-gradient(ellipse, rgba(0,232,126,0.12) 0%, transparent 70%); pointer-events: none; }
.closing-inner { position: relative; z-index: 1; }
.closing-headline { font-family: var(--font-display); font-size: clamp(28px, 4vw, 48px); font-weight: 700; line-height: 1.15; letter-spacing: -1.5px; margin-bottom: 24px; }
.closing-sub { font-size: 18px; color: var(--fg2); max-width: 520px; margin: 0 auto; line-height: 1.6; }

/* FOOTER */
.footer { border-top: 1px solid var(--border); padding: 32px 0; }
.footer-inner { max-width: 1160px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 16px; }
.footer-copy { font-size: 13px; color: var(--fg2); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 48px 24px; }
  .hero-visual { display: none; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .outcomes-inner { grid-template-columns: 1fr; gap: 48px; }
  .pricing-cards { grid-template-columns: 1fr; }
  .hero-meta { flex-wrap: wrap; }
  .meta-divider { display: none; }
  .meta-item { padding: 0 16px 16px 0; }
}

@media (max-width: 600px) {
  .steps-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .navbar-inner { flex-direction: column; gap: 8px; align-items: flex-start; }
  .footer-inner { flex-direction: column; gap: 12px; }
}