:root {
  --bg: #080C14;
  --bg-secondary: #0B1220;
  --bg-card: #0D1526;
  --border: #1A2540;
  --border-bright: #243358;
  --fg: #E2EAF4;
  --fg-muted: #6B7FA3;
  --fg-subtle: #3D5070;
  --accent: #00E5CC;
  --accent-dim: rgba(0, 229, 204, 0.12);
  --accent-glow: rgba(0, 229, 204, 0.25);
  --warn: #FF6B35;
  --warn-dim: rgba(255, 107, 53, 0.15);
  --good: #22C55E;
  --font-sans: 'Space Grotesk', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Fira Code', monospace;
  --radius: 6px;
  --section-pad: 96px;
}

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

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

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 12, 20, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
}
.nav-logo {
  font-family: var(--font-mono);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.5px;
}
.logo-bracket { color: var(--accent); }
.logo-name { color: var(--fg); }

/* ── Hero ── */
.hero {
  padding: 96px 32px 80px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.hero-bg-grid {
  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;
  opacity: 0.35;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black 30%, transparent 80%);
}
.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(0, 229, 204, 0.2);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 20px;
}
.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 40px;
}

/* Terminal */
.hero-terminal {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 13px;
  box-shadow: 0 0 0 1px var(--border), 0 24px 48px rgba(0,0,0,0.4);
}
.term-bar {
  background: #0F1A2C;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}
.term-dot { width: 10px; height: 10px; border-radius: 50%; }
.term-dot.red { background: #FF5F57; }
.term-dot.yellow { background: #FFBD2E; }
.term-dot.green { background: #27C93F; }
.term-title { color: var(--fg-muted); font-size: 12px; margin-left: 8px; }
.term-body { padding: 16px; }
.term-line { color: var(--fg-muted); margin-bottom: 4px; }
.term-prompt { color: var(--accent); margin-right: 6px; }
.term-cmd { color: var(--fg); }
.term-output { margin-top: 12px; }
.term-line-out { color: var(--fg-muted); margin: 4px 0; }
.term-sep { color: var(--fg-subtle); margin: 8px 0; font-size: 11px; }
.muted { color: var(--fg-subtle) !important; font-size: 11px; }
.term-pr { display: flex; align-items: center; gap: 10px; padding: 5px 0; border-bottom: 1px solid var(--border); font-size: 12px; }
.term-pr:last-child { border-bottom: none; }
.term-pr-num { color: var(--fg-muted); min-width: 28px; }
.term-pr-title { color: var(--fg); flex: 1; }
.term-badge { padding: 2px 7px; border-radius: 4px; font-size: 10px; font-weight: 600; letter-spacing: 0.04em; }
.term-badge.warn { background: var(--warn-dim); color: var(--warn); }
.term-badge.info { background: var(--accent-dim); color: var(--accent); }
.term-badge.good { background: rgba(34, 197, 94, 0.12); color: var(--good); }
.accent { color: var(--accent); }

/* Stats sidebar */
.hero-right { padding-top: 8px; }
.hero-stat-group { display: flex; flex-direction: column; gap: 2px; }
.hero-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: border-color 0.2s;
}
.hero-stat:hover { border-color: var(--border-bright); }
.hero-stat + .hero-stat { border-top: none; border-radius: 0; }
.hero-stat:first-child { border-radius: var(--radius) var(--radius) 0 0; }
.hero-stat:last-child { border-radius: 0 0 var(--radius) var(--radius); border-top: 1px solid var(--border); }
.stat-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.stat-label { font-size: 12px; color: var(--fg-muted); line-height: 1.4; }

/* ── How It Works ── */
.how-it-works {
  padding: var(--section-pad) 32px;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  max-width: 560px;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 64px;
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
.step { padding: 32px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); }
.step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  display: block;
}
.step h3 { font-size: 16px; font-weight: 600; margin-bottom: 10px; color: var(--fg); }
.step p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }
.step-connector { display: flex; align-items: center; justify-content: center; padding: 0 8px; }

/* ── Features ── */
.features {
  padding: var(--section-pad) 32px;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.features-header { margin-bottom: 56px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.feature-card {
  background: var(--bg-card);
  padding: 36px 32px;
  transition: background 0.2s;
}
.feature-card:hover { background: #0F1E35; }
.feature-icon {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border-radius: 8px;
  border: 1px solid rgba(0, 229, 204, 0.15);
}
.feature-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 10px; color: var(--fg); }
.feature-card p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* ── Manifesto ── */
.manifesto {
  padding: var(--section-pad) 32px;
  border-top: 1px solid var(--border);
  background: var(--bg-secondary);
}
.manifesto-inner { max-width: 1200px; margin: 0 auto; }
.manifesto-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-subtle);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.manifesto-quote {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--fg);
  max-width: 720px;
  margin-bottom: 24px;
  font-style: normal;
  border-left: 3px solid var(--accent);
  padding-left: 28px;
}
.manifesto-body { font-size: 17px; color: var(--fg-muted); max-width: 560px; line-height: 1.6; margin-bottom: 64px; }
.manifesto-rule { width: 100%; height: 1px; background: var(--border); margin-bottom: 56px; }
.manifesto-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.fact-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 42px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.fact-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.5; }

/* ── Closing ── */
.closing { padding: var(--section-pad) 32px; max-width: 1200px; margin: 0 auto; border-top: 1px solid var(--border); }
.closing-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.closing-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}
.closing-title { font-size: clamp(28px, 3vw, 40px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.2; margin-bottom: 20px; }
.closing-body { font-size: 16px; color: var(--fg-muted); line-height: 1.65; }

.closing-terminal {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  font-family: var(--font-mono);
  font-size: 13.5px;
  line-height: 1.8;
  box-shadow: 0 0 0 1px var(--border), 0 16px 32px rgba(0,0,0,0.3);
}
.ct-comment { color: var(--fg-subtle); }
.ct-keyword { color: #C792EA; }
.ct-var { color: var(--fg); }
.ct-fn { color: #82AAFF; }
.ct-string { color: #C3E88D; }
.ct-indent { padding-left: 20px; }
.ct-sep { height: 1px; background: var(--border); margin: 12px 0; }

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 32px;
  margin-top: 0;
}
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-brand { font-family: var(--font-mono); font-size: 16px; font-weight: 600; }
.footer-tagline { color: var(--fg-muted); font-size: 14px; flex: 1; }
.footer-meta { font-family: var(--font-mono); font-size: 11px; color: var(--fg-subtle); letter-spacing: 0.04em; }

/* ── Hero CTA button ── */
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #080C14;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  margin-bottom: 40px;
  transition: opacity 0.15s, box-shadow 0.15s;
  letter-spacing: -0.01em;
}
.btn-hero:hover { opacity: 0.9; box-shadow: 0 0 24px var(--accent-glow); }

/* ── Demo link button (secondary CTA) ── */
.btn-demo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  text-decoration: none;
  margin-left: 12px;
  margin-bottom: 40px;
  transition: background 0.15s, box-shadow 0.15s;
  letter-spacing: -0.01em;
}
.btn-demo:hover { background: var(--accent-dim); box-shadow: 0 0 16px var(--accent-glow); }

/* ── Pricing section ── */
.pricing {
  padding: var(--section-pad) 32px;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.pricing-inner {}
.pricing-header { margin-bottom: 48px; }

/* Comparison row */
.pricing-compare {
  margin-bottom: 48px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.compare-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-subtle);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  white-space: nowrap;
}
.compare-row { display: flex; gap: 16px; flex-wrap: wrap; }
.compare-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 4px;
}
.compare-item--them { background: rgba(255,255,255,0.03); border: 1px solid var(--border); }
.compare-item--us { background: var(--accent-dim); border: 1px solid rgba(0,229,204,0.2); }
.compare-tool { font-size: 13px; color: var(--fg-muted); }
.compare-item--us .compare-tool { color: var(--accent); font-weight: 600; }
.compare-price { font-family: var(--font-mono); font-size: 16px; font-weight: 600; color: var(--fg-muted); }
.compare-item--us .compare-price { color: var(--accent); }
.compare-unit { font-size: 11px; font-weight: 400; color: var(--fg-subtle); }

/* Pricing cards grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.pricing-card {
  background: var(--bg-card);
  padding: 40px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: background 0.2s;
}
.pricing-card--featured { background: #0D1B30; }
.pricing-card-top { margin-bottom: 28px; }
.plan-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(0,229,204,0.2);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.plan-name {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}
.price-amount {
  font-family: var(--font-mono);
  font-size: 40px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.03em;
  line-height: 1;
}
.pricing-card--featured .price-amount { color: var(--accent); }
.price-unit { font-size: 14px; color: var(--fg-muted); }
.plan-price--contact .price-amount { font-size: 30px; color: var(--fg-muted); }
.plan-tagline { font-size: 14px; color: var(--fg-muted); line-height: 1.5; }

/* Feature list */
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.plan-features li { font-size: 14px; color: var(--fg-muted); display: flex; align-items: center; gap: 8px; }
.feat-check { color: var(--good); font-size: 13px; flex-shrink: 0; }
.feat-pill {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(107,127,163,0.15);
  color: var(--fg-subtle);
  padding: 2px 7px;
  border-radius: 4px;
  margin-left: 4px;
}

/* Plan CTA buttons */
.btn-plan {
  display: block;
  text-align: center;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: opacity 0.15s, box-shadow 0.15s;
  margin-bottom: 12px;
}
.btn-plan--primary {
  background: var(--fg);
  color: var(--bg);
}
.btn-plan--primary:hover { opacity: 0.88; }
.btn-plan--featured {
  background: var(--accent);
  color: #080C14;
  box-shadow: 0 0 20px rgba(0,229,204,0.2);
}
.btn-plan--featured:hover { opacity: 0.9; box-shadow: 0 0 30px var(--accent-glow); }
.btn-plan--outline {
  background: transparent;
  color: var(--fg-muted);
  border: 1px solid var(--border-bright);
}
.btn-plan--outline:hover { border-color: var(--fg-muted); color: var(--fg); }
.plan-note { font-size: 11px; color: var(--fg-subtle); font-family: var(--font-mono); text-align: center; display: block; }

/* ── Billing pages ── */
.billing-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}
.billing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 56px 48px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.billing-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}
.billing-icon--success { background: rgba(34,197,94,0.12); color: var(--good); border: 1px solid rgba(34,197,94,0.2); }
.billing-icon--cancel { background: var(--warn-dim); color: var(--warn); border: 1px solid rgba(255,107,53,0.2); }
.billing-title { font-size: 28px; font-weight: 700; letter-spacing: -0.025em; }
.billing-body { font-size: 15px; color: var(--fg-muted); line-height: 1.6; max-width: 320px; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #080C14;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: opacity 0.15s;
  margin-top: 8px;
}
.btn-primary:hover { opacity: 0.88; }
.billing-back { font-size: 13px; color: var(--fg-subtle); text-decoration: none; }
.billing-back:hover { color: var(--fg-muted); }

/* ── Hero CTA row (wraps primary + demo buttons) ── */
.hero-cta-row { display: flex; align-items: center; flex-wrap: wrap; gap: 4px; margin-bottom: 40px; }
.hero-cta-row .btn-hero { margin-bottom: 0; }
.hero-cta-row .btn-demo { margin-left: 0; margin-bottom: 0; }

/* ── How it works step icon ── */
.step-icon {
  width: 40px; height: 40px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,229,204,0.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}

/* ── Differentiator capability strip ── */
.diff-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 56px;
}
.diff-card {
  background: var(--bg-card);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: background 0.2s;
}
.diff-card:hover { background: #0F1E35; }
.diff-card--featured {
  background: #091828;
  border: none;
  box-shadow: inset 0 0 0 1px rgba(0,229,204,0.22);
}
.diff-card--featured:hover { background: #0D1E2E; }
.diff-card-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(0,229,204,0.25);
  padding: 3px 9px;
  border-radius: 20px;
  margin-bottom: 12px;
  align-self: flex-start;
}
.diff-card-icon {
  width: 40px; height: 40px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,229,204,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.diff-card-icon--featured {
  background: rgba(0,229,204,0.18);
  border-color: rgba(0,229,204,0.3);
  box-shadow: 0 0 16px rgba(0,229,204,0.15);
}
.diff-card h4 { font-size: 14px; font-weight: 600; color: var(--fg); margin-bottom: 8px; line-height: 1.3; }
.diff-card--featured h4 { color: var(--accent); }
.diff-card p { font-size: 13px; color: var(--fg-muted); line-height: 1.6; }

/* ── Social proof logo strip ── */
.social-proof {
  border-top: 1px solid var(--border);
  padding: 40px 32px;
  background: var(--bg-secondary);
}
.social-proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.social-proof-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-subtle);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  white-space: nowrap;
}
.logo-strip { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.logo-placeholder {
  width: 120px;
  height: 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 4px;
}

/* ── GitHub App install CTA band ── */
.install-cta-band {
  border-top: 1px solid var(--border);
  padding: var(--section-pad) 32px;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, #0B1728 100%);
}
.install-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.install-cta-title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 12px;
}
.install-cta-sub {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 520px;
}
.install-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}
.btn-install {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #080C14;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: opacity 0.15s, box-shadow 0.15s;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.btn-install:hover { opacity: 0.9; box-shadow: 0 0 28px var(--accent-glow); }
.install-cta-link {
  font-size: 13px;
  color: var(--fg-muted);
  text-decoration: none;
  font-family: var(--font-mono);
  transition: color 0.15s;
}
.install-cta-link:hover { color: var(--accent); }

/* ── Pricing comparison table (replaces compare-row strip) ── */
.pricing-compare-table {
  margin-bottom: 48px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.compare-table-header {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}
.compare-table {
  display: table;
  width: 100%;
  border-collapse: collapse;
}
.compare-thead, .compare-trow {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr 1fr;
}
.compare-thead {
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.compare-trow { border-bottom: 1px solid var(--border); }
.compare-trow:last-child { border-bottom: none; }
.compare-trow--highlight { background: rgba(0,229,204,0.05); }
.compare-trow--highlight .compare-td--feature { color: var(--fg); }
.compare-th, .compare-td {
  padding: 11px 20px;
  font-size: 13px;
}
.compare-th {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.compare-th--us, .compare-td--us { color: var(--accent); font-weight: 600; }
.compare-th--feature, .compare-td--feature { color: var(--fg-muted); }
.compare-td--no { color: var(--fg-subtle); }
.compare-td--price { font-family: var(--font-mono); color: var(--fg-muted); }
.compare-td--price-us { font-family: var(--font-mono); color: var(--accent); font-weight: 700; }
.compare-td-unit { font-size: 10px; font-weight: 400; color: var(--fg-subtle); margin-left: 1px; }
.compare-td-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(0,229,204,0.2);
  padding: 2px 7px;
  border-radius: 20px;
  margin-left: 8px;
  vertical-align: middle;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .step-connector { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .diff-strip { grid-template-columns: 1fr 1fr; }
  .manifesto-facts { grid-template-columns: 1fr; gap: 24px; }
  .closing-inner { grid-template-columns: 1fr; }
  .closing-terminal { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .install-cta-inner { grid-template-columns: 1fr; gap: 32px; }
  .install-cta-actions { align-items: flex-start; }
  .compare-thead, .compare-trow { grid-template-columns: 1.6fr 0.8fr 0.8fr 0.8fr; }
}
@media (max-width: 600px) {
  .hero { padding: 64px 20px 56px; }
  .how-it-works, .features, .manifesto, .closing, .pricing, .install-cta-band { padding-left: 20px; padding-right: 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .diff-strip { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .pricing-card { padding: 32px 24px; }
  .billing-card { padding: 40px 24px; }
  .social-proof { padding: 32px 20px; }
  .social-proof-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .logo-placeholder { width: 90px; }
  .compare-thead, .compare-trow { grid-template-columns: 1.4fr 0.7fr 0 0.7fr; }
  .compare-thead > :nth-child(3), .compare-trow > :nth-child(3) { display: none; }
}