:root {
  --bg: #080f1c;
  --surface: #0f1e35;
  --surface2: #152540;
  --teal: #00e5c3;
  --teal-dim: rgba(0, 229, 195, 0.12);
  --amber: #f59e0b;
  --amber-dim: rgba(245, 158, 11, 0.15);
  --text: #e8edf5;
  --text-muted: #7a8ba8;
  --text-dim: #4a5e78;
  --border: rgba(255,255,255,0.06);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
}

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

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

/* NAVBAR */
.navbar {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.3px;
  color: var(--text);
}
.navbar-tagline {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* HERO */
.hero {
  padding: 80px 40px 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--teal);
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  display: inline-block;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 28px;
}
.hero-lede {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.5px;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* AGENT FEED WIDGET */
.hero-widget {
  display: flex;
  align-items: center;
  justify-content: center;
}
.agent-feed {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  width: 100%;
  max-width: 420px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.04);
}
.feed-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--surface2);
}
.feed-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.feed-items {
  padding: 8px 0;
}
.feed-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  animation: slideIn 0.4s ease-out both;
}
.feed-item:nth-child(1) { animation-delay: 0.1s; }
.feed-item:nth-child(2) { animation-delay: 0.3s; }
.feed-item:nth-child(3) { animation-delay: 0.5s; }
.feed-item:nth-child(4) { animation-delay: 0.7s; }
@keyframes slideIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.feed-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.email-icon { background: var(--teal-dim); color: var(--teal); }
.ln-icon { background: rgba(0, 119, 181, 0.15); color: #0091ca; }
.meeting-icon { background: var(--amber-dim); color: var(--amber); }
.feed-title {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
}
.meeting-booked { color: var(--teal); }
.feed-meta {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 3px;
}
.feed-footer {
  padding: 14px 20px;
  background: var(--surface2);
}
.live-counter {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}
.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  display: inline-block;
  animation: pulse 1.5s infinite;
}

/* MANIFESTO */
.manifesto {
  padding: 100px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.manifesto-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--amber);
  margin-bottom: 20px;
}
.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--text);
  max-width: 700px;
  margin-bottom: 24px;
}
.manifesto-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 60px;
}
.manifesto-stats {
  display: flex;
  gap: 60px;
}
.mstat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -0.5px;
}
.mstat-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
  max-width: 160px;
  line-height: 1.5;
}

/* HOW IT WORKS */
.how-it-works {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--teal);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--text);
  max-width: 600px;
  margin-bottom: 60px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  color: var(--text-dim);
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.step-icon {
  margin-bottom: 20px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}
.step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* OUTCOMES */
.outcomes {
  padding: 80px 40px 100px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.outcomes-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.outcome-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
}
.outcome-icon {
  margin-bottom: 20px;
}
.outcome-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}
.outcome-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* STACK */
.stack {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.stack-table {
  margin-top: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.stack-row {
  display: grid;
  grid-template-columns: 1fr 160px 1fr;
  padding: 18px 28px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  align-items: center;
}
.stack-row:last-child { border-bottom: none; }
.stack-header {
  background: var(--surface);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}
.stack-col-prospectly .check-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--teal-dim);
  position: relative;
}
.stack-col-prospectly .check-icon::after {
  content: '';
  position: absolute;
  left: 4px; top: 3px;
  width: 10px; height: 6px;
  border-left: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(-45deg);
}
.stack-col-feature { color: var(--text); font-weight: 500; }
.stack-col-prospectly { text-align: center; }
.stack-col-old { color: var(--text-muted); }
.stack-note {
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-dim);
  text-align: center;
  font-style: italic;
}

/* CLOSING */
.closing {
  padding: 100px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.closing-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--amber);
  background: var(--amber-dim);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 28px;
}
.closing-body {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.closing-final {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: -0.3px;
}

/* FOOTER */
.footer {
  padding: 32px 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--text-muted);
}
.footer-copy {
  font-size: 13px;
  color: var(--text-dim);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 60px 24px 48px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .manifesto-stats { flex-direction: column; gap: 32px; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .navbar { padding: 16px 24px; }
  .manifesto, .how-it-works, .stack, .closing { padding: 72px 24px; }
  .outcomes { padding: 72px 24px 80px; }
  .stack-row { grid-template-columns: 1fr; gap: 4px; }
  .stack-col-prospectly, .stack-col-old { display: none; }
}
@media (max-width: 600px) {
  .steps-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .stat-divider { display: none; }
}
