@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300&display=swap');

:root {
  --bg: #0D0D0F;
  --bg-surface: #141418;
  --bg-card: #1A1A1F;
  --fg: #E8E8ED;
  --fg-muted: #7A7A85;
  --accent: #F5A623;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --border: rgba(255,255,255,0.08);
  --font-head: 'Syne', sans-serif;
  --font-mono: 'DM Mono', monospace;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-head);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(13,13,15,0.85);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.3px;
}
.nav-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 100px;
}
.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 6px #4ADE80;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ── HERO ── */
.hero {
  padding: 80px 0 100px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.hero-eyebrow {
  margin-bottom: 24px;
}
.eyebrow-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(245,166,35,0.25);
  padding: 5px 12px;
  border-radius: 4px;
}
.hero-headline {
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -2px;
  margin-bottom: 28px;
}
.headline-emphasis {
  color: var(--accent);
}
.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 420px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  padding-right: 28px;
}
.stat-val {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--fg);
  margin-bottom: 2px;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin-right: 28px;
}

/* ── LIVE FEED ── */
.hero-feed {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.hero-feed::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,166,35,0.4), transparent);
}
.feed-header {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.feed-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ADE80;
  animation: pulse 1.5s infinite;
}
.lead-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
}
.lead-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.lead-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--accent);
  flex-shrink: 0;
}
.lead-info { flex: 1; }
.lead-name { font-size: 13px; font-weight: 600; margin-bottom: 1px; }
.lead-title { font-family: var(--font-mono); font-size: 10px; color: var(--fg-muted); }
.lead-status {
  font-family: var(--font-mono);
  font-size: 9px;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.status-sent { background: rgba(74,222,128,0.1); color: #4ADE80; }
.status-replying { background: rgba(245,166,35,0.15); color: var(--accent); }
.status-researching { background: rgba(255,255,255,0.06); color: var(--fg-muted); }
.lead-msg {
  font-size: 12px;
  line-height: 1.55;
  color: var(--fg-muted);
  font-family: var(--font-mono);
  font-style: italic;
  margin-bottom: 10px;
}
.lead-meta {
  font-family: var(--font-mono);
  font-size: 9px;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.lead-card-2 .lead-msg { color: var(--fg); font-style: normal; }
.research-bar { padding: 4px 0; }
.research-label { font-family: var(--font-mono); font-size: 10px; color: var(--fg-muted); margin-bottom: 6px; }
.research-progress {
  height: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.research-progress::after {
  content: '';
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  width: 60%;
  background: linear-gradient(90deg, var(--accent), rgba(245,166,35,0.3));
  border-radius: 2px;
  animation: scan 1.5s ease-in-out infinite;
}
@keyframes scan {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* ── SECTION LABEL ── */
.section-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
}

/* ── LOOP SECTION ── */
.loop-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.loop-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.loop-headline {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 72px;
}
.loop-steps {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  align-items: start;
  gap: 0;
}
.step {
  padding-right: 20px;
}
.step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.step-icon {
  margin-bottom: 16px;
}
.step h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.step p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-muted);
}
.step-connector {
  display: flex;
  align-items: center;
  padding-top: 36px;
}
.step-connector::after {
  content: '→';
  font-family: var(--font-mono);
  font-size: 16px;
  color: rgba(255,255,255,0.15);
}

/* ── FEATURES ── */
.features-section {
  padding: 0 0 100px;
  border-top: 1px solid var(--border);
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.feature-row-reverse { direction: rtl; }
.feature-row-reverse > * { direction: ltr; }
.feature-text h3 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
  line-height: 1.2;
}
.feature-text p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.feature-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(245,166,35,0.2);
  padding: 4px 10px;
  border-radius: 4px;
}
.feature-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* email preview */
.email-preview {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
}
.email-header-p {
  background: var(--bg-card);
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.email-from-p, .email-to-p {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-muted);
}
.email-sub-p {
  padding: 10px 16px 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  border-bottom: 1px solid var(--border);
}
.email-body-p {
  padding: 16px;
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--fg-muted);
}

/* domain panel */
.domain-panel {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.domain-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
}
.domain-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.domain-dot.green { background: #4ADE80; box-shadow: 0 0 5px #4ADE80; }
.domain-dot.amber { background: var(--accent); box-shadow: 0 0 5px var(--accent); }
.warmup-chart { padding-top: 4px; }
.warmup-label {
  font-family: var(--font-mono);
  font-size: 9px;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.warmup-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
}
.warmup-bar {
  flex: 1;
  background: rgba(245,166,35,0.2);
  border-radius: 3px;
  transition: height 0.5s ease;
}
.warmup-bar.warmup-active {
  background: var(--accent);
  box-shadow: 0 0 8px rgba(245,166,35,0.4);
}

/* sequence visual */
.sequence-vis {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  width: 100%;
}
.seq-header {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.seq-step {
  display: grid;
  grid-template-columns: 60px 1fr 60px;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.seq-step:last-child { border-bottom: none; }
.seq-day {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.3);
}
.seq-type {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
}
.seq-status {
  font-family: var(--font-mono);
  font-size: 9px;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: right;
}
.sent { background: rgba(74,222,128,0.1); color: #4ADE80; }
.pending { background: rgba(245,166,35,0.1); color: var(--accent); }
.queued { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.3); }

/* ── TESTIMONIALS ── */
.testimonials-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg) 0%, rgba(20,20,24,0.5) 100%);
}
.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.testi-headline {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 60px;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.testi-card-highlight {
  border-color: rgba(245,166,35,0.3);
  background: linear-gradient(135deg, var(--bg-surface), rgba(245,166,35,0.04));
}
.testi-metric {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--accent);
  margin-bottom: 4px;
}
.testi-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--fg-muted);
  margin-bottom: 24px;
}
.testi-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-muted);
  font-style: italic;
  margin-bottom: 20px;
}
.testi-author {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.25);
}

/* ── MANIFESTO ── */
.manifesto-section {
  padding: 120px 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.manifesto-content h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 40px;
}
.manifesto-emphasis { color: var(--accent); }
.manifesto-content p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--fg-muted);
  margin-bottom: 24px;
  text-align: left;
}
.manifesto-quote {
  margin-top: 56px;
  padding: 32px 40px;
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 12px;
  background: var(--accent-dim);
}
.manifesto-quote span {
  font-size: 20px;
  font-weight: 600;
  font-style: italic;
  color: var(--fg);
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
}
.footer-tagline {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
  flex: 1;
}
.footer-links {
  display: flex;
  gap: 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.2);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .loop-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .step-connector { display: none; }
  .feature-row { grid-template-columns: 1fr; gap: 40px; }
  .feature-row-reverse { direction: ltr; }
  .testi-grid { grid-template-columns: 1fr; }
  .nav-inner { padding: 14px 20px; }
  .hero { padding: 60px 0 80px; }
  .hero-inner, .loop-inner, .features-inner, .testimonials-inner, .manifesto-inner, .footer-inner { padding: 0 20px; }
}

/* ── HERO CTAs ── */
.hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  background: var(--accent);
  color: #0D0D0F;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}
.btn-primary:hover { background: #e8991a; transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  background: transparent;
  color: var(--fg);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.04); }

/* ── FEATURE GRID ── */
.feature-grid-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.feature-grid-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.feature-grid-headline {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 56px;
}
.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  text-decoration: none;
  color: var(--fg);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.feature-card:hover {
  border-color: rgba(245,166,35,0.35);
  background: var(--bg-card);
  transform: translateY(-2px);
}
.feature-card-icon {
  margin-bottom: 18px;
}
.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
  line-height: 1.3;
}
.feature-card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--fg-muted);
  flex: 1;
  margin-bottom: 18px;
}
.feature-card-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(245,166,35,0.2);
  padding: 3px 10px;
  border-radius: 4px;
  display: inline-block;
  width: fit-content;
}

/* ── DEMO LOOP ── */
.demo-loop-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.demo-loop-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.demo-headline {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 56px;
}
.demo-stage {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}
.demo-progress-bar {
  margin-bottom: 40px;
}
.demo-step-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-muted);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.demo-progress-track {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}
.demo-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), rgba(245,166,35,0.4));
  border-radius: 4px;
  transition: width 0.6s ease;
  box-shadow: 0 0 8px rgba(245,166,35,0.4);
}
.demo-workflow {
  display: flex;
  align-items: center;
  overflow-x: auto;
  gap: 0;
  padding-bottom: 4px;
}
.demo-node {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  flex-shrink: 0;
  transition: border-color 0.3s, opacity 0.3s;
  min-width: 200px;
}
.demo-node.active {
  border-color: rgba(245,166,35,0.4);
  background: var(--bg-card);
}
.demo-node.done {
  opacity: 0.45;
}
.demo-node-icon {
  flex-shrink: 0;
}
.demo-node-content { flex: 1; }
.demo-node-title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}
.demo-node-sub {
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: var(--fg-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}
.demo-node-badge {
  font-family: var(--font-mono);
  font-size: 8px;
  padding: 3px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(74,222,128,0.1);
  color: #4ADE80;
  flex-shrink: 0;
}
.demo-node-badge.demo-badge-active {
  background: rgba(245,166,35,0.15);
  color: var(--accent);
  animation: badge-pulse 1.5s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,166,35,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(245,166,35,0); }
}
.demo-connector { flex-shrink: 0; padding: 0 4px; }

/* ── PRICING ── */
.pricing-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-surface) 100%);
}
.pricing-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.pricing-headline {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.pricing-sub {
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-muted);
  margin-bottom: 48px;
}
.pricing-card {
  background: var(--bg-surface);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
}
.pricing-tier-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 12px;
}
.pricing-amount {
  font-size: 72px;
  font-weight: 800;
  letter-spacing: -3px;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-period {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-muted);
  margin-bottom: 36px;
}
.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 36px;
}
.pricing-features li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-muted);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(74,222,128,0.15);
  border: 1px solid rgba(74,222,128,0.3);
  display: inline-block;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3E%3Cpath d='M1.5 4l2 2 3-4' stroke='%234ADE80' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.pricing-cta {
  display: inline-block;
  padding: 14px 40px;
  font-size: 15px;
  margin-bottom: 16px;
}
.pricing-note {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── PROOF / LOGOS ── */
.proof-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.proof-headline {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 60px;
}
.proof-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.proof-logo-placeholder {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.15);
  border: 1px dashed rgba(255,255,255,0.1);
  padding: 20px 32px;
  border-radius: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.proof-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.proof-quote {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
}
.proof-quote p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--fg);
  font-style: italic;
  margin-bottom: 16px;
}
.proof-quote span {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-muted);
}

/* ── FOOTER CAN-SPAM ── */
.footer-canspam {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  margin-top: 16px;
}
.footer-canspam p {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  line-height: 1.6;
}
.footer-canspam a {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
}
.footer-canspam a:hover { color: var(--fg-muted); }

/* ── RESPONSIVE EXTENSIONS ── */
@media (max-width: 900px) {
  .feature-cards { grid-template-columns: 1fr 1fr; }
  .proof-quotes { grid-template-columns: 1fr; }
  .pricing-card { padding: 32px 24px; }
  .demo-workflow { flex-wrap: wrap; gap: 12px; }
  .demo-connector { display: none; }
  .demo-stage { padding: 24px; }
  .feature-grid-inner, .demo-loop-inner, .proof-inner { padding: 0 20px; }
  .pricing-inner { padding: 0 20px; }
}
