/* ===================================================================
   Preflight — Landing Page CSS
   Dark theme, developer-focused, Vercel/Linear aesthetic
   =================================================================== */

/* ── Reset & Base ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #09090f;
  --bg-1:      #0f0f1a;
  --bg-2:      #14141f;
  --border:    rgba(255,255,255,0.08);
  --border-hi: rgba(255,255,255,0.16);

  --text:      #e8e8f0;
  --text-muted:#7a7a9a;
  --text-dim:  #4a4a6a;

  --accent:    #6366f1;   /* indigo */
  --accent-hi: #818cf8;
  --pass:      #4ade80;
  --fail:      #f87171;
  --warn:      #fbbf24;

  --mono: 'SF Mono', 'Fira Code', 'Cascadia Code', 'Consolas', monospace;
  --sans: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;

  --radius: 8px;
  --radius-lg: 14px;

  --max-w: 1100px;
}

html { scroll-behavior: smooth; }

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

a { color: var(--accent-hi); text-decoration: none; }
a:hover { color: var(--text); }

code {
  font-family: var(--mono);
  font-size: 0.85em;
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 2px 6px;
  border-radius: 4px;
}

/* ── Typography ─────────────────────────────────────────────────── */
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.025em; }
h3 { font-size: 1.15rem; font-weight: 600; }

.section-eyebrow {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-hi);
  margin-bottom: 16px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 580px;
  margin-top: 12px;
}

.mono { font-family: var(--mono); }

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.15s, transform 0.1s;
}
.btn-primary:hover { background: var(--accent-hi); color: #fff; transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  color: var(--text-muted);
  border: 1px solid var(--border-hi);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  transition: border-color 0.15s, color 0.15s;
}
.btn-ghost:hover { border-color: var(--text-muted); color: var(--text); }

/* ── NAV ─────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9,9,15,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
}
.logo-hex { color: var(--accent-hi); font-size: 1.2rem; }
.logo-word {}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.875rem;
}
.nav-links a { color: var(--text-muted); }
.nav-links a:hover { color: var(--text); }

.nav-gh {
  background: var(--bg-2);
  border: 1px solid var(--border-hi);
  padding: 6px 14px;
  border-radius: var(--radius);
  color: var(--text) !important;
  font-weight: 500;
  transition: border-color 0.15s;
}
.nav-gh:hover { border-color: var(--accent); }

/* ── HERO ─────────────────────────────────────────────────────────── */
.hero {
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow behind hero */
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(99,102,241,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warn);
  background: rgba(251,191,36,0.08);
  border: 1px solid rgba(251,191,36,0.25);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero h1 {
  margin-bottom: 24px;
  background: linear-gradient(135deg, #fff 60%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.hero-sub strong { color: var(--text); }

/* Install line */
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.install-line {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-1);
  border: 1px solid var(--border-hi);
  padding: 10px 16px;
  border-radius: var(--radius);
  font-family: var(--mono);
  font-size: 0.875rem;
}
.install-line--sm { font-size: 0.8rem; padding: 8px 12px; }
.prompt { color: var(--text-dim); }

.copy-btn {
  background: none;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  padding: 2px;
  display: flex;
  align-items: center;
  transition: color 0.15s;
}
.copy-btn:hover { color: var(--text); }

/* ── Terminal ─────────────────────────────────────────────────────── */
.terminal {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: left;
  max-width: 620px;
  margin: 0 auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
.terminal--fail { margin-top: 40px; border-color: rgba(248,113,113,0.2); }

.term-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.r { background: #f87171; }
.dot.y { background: #fbbf24; }
.dot.g { background: #4ade80; }
.term-title { color: var(--text-dim); font-family: var(--mono); font-size: 0.75rem; margin-left: 8px; }

.term-body {
  font-family: var(--mono);
  font-size: 0.82rem;
  line-height: 1.7;
  padding: 20px 24px;
  white-space: pre;
  overflow-x: auto;
}

.pass     { color: var(--pass); }
.fail     { color: var(--fail); }
.dim      { color: var(--text-dim); }
.gate     { color: var(--text); font-weight: 600; }
.verdict-pass { color: var(--pass); font-weight: 700; letter-spacing: 0.03em; }
.verdict-fail { color: var(--fail); font-weight: 700; letter-spacing: 0.03em; }

.hero-meta {
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

/* ── HERO SOCIAL STRIP ──────────────────────────────────────────── */
.hero-social-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.social-strip-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  transition: color 0.15s;
}

a.social-strip-item:hover { color: var(--pass); }

.social-strip-sep {
  color: var(--text-dim);
  font-size: 0.72rem;
}

/* ── PROBLEM ──────────────────────────────────────────────────────── */
.problem {
  padding: 96px 0;
  text-align: center;
}

.failure-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 48px 0 40px;
  text-align: left;
}

.failure {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}

.failure-num {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.failure h3 { margin-bottom: 10px; font-size: 1rem; color: var(--text); }
.failure p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 16px; }

.failure-catch {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--fail);
  background: rgba(248,113,113,0.07);
  border: 1px solid rgba(248,113,113,0.18);
  padding: 6px 10px;
  border-radius: 4px;
}
.failure-catch em { font-style: normal; font-weight: 600; }

.failure-conclusion {
  color: var(--text-muted);
  font-size: 1.05rem;
}
.failure-conclusion strong { color: var(--text); }

/* ── PRODUCTS ──────────────────────────────────────────────────────── */
.products {
  padding: 96px 0;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  margin: 52px 0 48px;
}
.product-grid--five {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1100px) {
  .product-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .product-grid { grid-template-columns: 1fr; }
}

.product-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: border-color 0.15s;
}
.product-card:hover { border-color: var(--border-hi); }

.product-card--hero {
  border-color: rgba(99,102,241,0.35);
  background: linear-gradient(180deg, rgba(99,102,241,0.05) 0%, var(--bg) 100%);
}

.product-hero-label {
  position: absolute;
  top: -11px;
  left: 20px;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  padding: 2px 8px;
  border-radius: 100px;
}

.product-icon {
  font-size: 1.4rem;
  color: var(--text-muted);
}
.product-icon.accent { color: var(--accent-hi); }

.product-name {
  font-family: var(--mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.product-role {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--mono);
}

.product-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
  flex: 1;
}
.product-feats li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
}
.product-feats li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--text-dim);
}

.product-q {
  font-style: italic;
  font-size: 0.85rem;
  color: var(--text-dim);
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

.product-cli {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: var(--radius);
}

.product-link {
  font-size: 0.8rem;
  font-family: var(--mono);
  color: var(--accent-hi);
  align-self: flex-start;
}
.product-link:hover { color: var(--text); }

/* Use-case table */
.use-table {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.use-table-title {
  padding: 16px 24px;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}
.use-row {
  display: flex;
  gap: 16px;
  padding: 12px 24px;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.use-row:last-child { border-bottom: none; }
.use-need {
  flex: 1;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
}
.use-tool {
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--text);
  min-width: 200px;
  text-align: right;
}

/* ── WORKFLOW ──────────────────────────────────────────────────────── */
.workflow {
  padding: 96px 0;
}

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

.pipe-node {
  flex: 1;
  min-width: 130px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  text-align: center;
  transition: border-color 0.15s;
}
.pipe-node:hover { border-color: var(--border-hi); }
.pipe-node--dim { opacity: 0.5; }
.pipe-node--pass { border-color: rgba(74,222,128,0.3); }
.pipe-node--deploy { border-color: rgba(99,102,241,0.4); background: linear-gradient(180deg, rgba(99,102,241,0.07) 0%, transparent 100%); }

.pipe-icon {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.pipe-name {
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.pipe-time {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--accent-hi);
  margin-bottom: 4px;
}

.pipe-desc {
  font-size: 0.72rem;
  color: var(--text-dim);
  line-height: 1.4;
}

.pipe-arrow {
  flex-shrink: 0;
  color: var(--text-dim);
  font-size: 1.2rem;
  padding: 0 8px;
  font-family: var(--mono);
}
.pipe-arrow--parallel {
  color: var(--accent-hi);
  font-size: 0.75rem;
  writing-mode: horizontal-tb;
}

.parallel-note {
  text-align: center;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--text-dim);
  margin: 16px 0 48px;
}

.why-three {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 52px;
}
.why-three h3 { margin-bottom: 14px; }
.why-three p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 680px;
  line-height: 1.7;
}
.why-three strong { color: var(--text); }

/* ── PRICING ──────────────────────────────────────────────────────── */
.pricing {
  padding: 96px 0;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 52px 0 32px;
}

@media (max-width: 860px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.pricing-card--featured {
  border-color: rgba(99,102,241,0.4);
  background: linear-gradient(180deg, rgba(99,102,241,0.07) 0%, var(--bg) 100%);
}

.pricing-popular {
  position: absolute;
  top: -12px;
  left: 24px;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  padding: 3px 10px;
  border-radius: 100px;
}

.pricing-tier {
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

.pricing-price {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
}

.pricing-cadence {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-dim);
}

.pricing-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.pricing-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.pricing-feats li { font-size: 0.875rem; color: var(--text-muted); display: flex; gap: 8px; }
.pf-check { color: var(--pass); flex-shrink: 0; }

.pricing-cta { margin-top: auto; display: flex; flex-direction: column; gap: 8px; }

.pricing-coming {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--text-dim);
  text-align: center;
}

.pricing-enterprise-note {
  font-style: italic;
  font-size: 0.8rem;
  color: var(--text-dim);
  border-top: 1px solid var(--border);
  padding-top: 12px;
  line-height: 1.5;
}

.pricing-guarantee {
  text-align: center;
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--text-dim);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── WAITLIST ──────────────────────────────────────────────────────── */
.waitlist {
  padding: 96px 0;
  text-align: center;
}

.waitlist h2 { margin-bottom: 16px; }
.waitlist p { color: var(--text-muted); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }

.waitlist-form {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 460px;
  margin: 0 auto 12px;
}

.waitlist-form input {
  flex: 1;
  min-width: 220px;
  background: var(--bg-1);
  border: 1px solid var(--border-hi);
  color: var(--text);
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  outline: none;
  font-family: var(--sans);
  transition: border-color 0.15s;
}
.waitlist-form input:focus { border-color: var(--accent); }
.waitlist-form input::placeholder { color: var(--text-dim); }

.waitlist-form button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.15s;
  font-family: var(--sans);
}
.waitlist-form button:hover { background: var(--accent-hi); }

.waitlist-note {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

/* ── FOOTER ───────────────────────────────────────────────────────── */
.footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-inner {
  display: flex;
  gap: 64px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.footer-brand { flex: 1; min-width: 220px; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.footer-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.pill {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  background: var(--bg-2);
  border: 1px solid var(--border-hi);
  color: var(--text-muted);
  padding: 3px 8px;
  border-radius: 100px;
}

.footer-cloud { font-size: 0.8rem; color: var(--text-dim); }
.footer-cloud a { color: var(--accent-hi); }

.footer-nav { display: flex; gap: 48px; flex-wrap: wrap; }

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 120px;
}

.footer-col-head {
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.875rem;
  color: var(--text-muted);
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-dim);
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--text); }

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .nav-links { gap: 16px; font-size: 0.8rem; }
  .pipeline { flex-direction: column; align-items: stretch; }
  .pipe-arrow { transform: rotate(90deg); text-align: center; }
  .use-row { flex-direction: column; gap: 4px; }
  .use-tool { text-align: left; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-nav { gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; }
}

/* ── CI YAML block ───────────────────────────────────────────────── */
.ci-block {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 40px 0;
}

.ci-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}

.ci-block-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.ci-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--bg-1);
  border: 1px solid var(--border-hi);
  color: var(--text-dim);
  font-family: var(--mono);
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}
.ci-copy-btn:hover { color: var(--text); border-color: var(--accent); }

.ci-yaml {
  font-family: var(--mono);
  font-size: 0.82rem;
  line-height: 1.7;
  padding: 24px 28px;
  white-space: pre;
  overflow-x: auto;
}

.yaml-key   { color: #93c5fd; }  /* blue */
.yaml-str   { color: #86efac; }  /* green */
.yaml-comment { color: var(--text-dim); font-style: italic; }

/* ── Final CTA ───────────────────────────────────────────────────── */
.final-cta {
  padding: 96px 0;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 760px) {
  .final-cta-inner { grid-template-columns: 1fr; gap: 40px; }
}

.final-cta-text p {
  color: var(--text-muted);
  margin-top: 16px;
  font-size: 1rem;
  max-width: 400px;
  line-height: 1.65;
}

.final-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.final-cta-then {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.final-cta-then .mono { font-size: 0.8rem; }

.final-cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── agent-shift card variant ────────────────────────────────────── */
.product-card--shift {
  border-color: rgba(167,139,250,0.3);
  background: linear-gradient(180deg, rgba(167,139,250,0.05) 0%, var(--bg) 100%);
}
.product-card--shift:hover { border-color: rgba(167,139,250,0.55); }
.shift-icon { color: #a78bfa; }

/* ── Pipeline node variants ──────────────────────────────────────── */
.pipe-node--gate {
  border-color: rgba(99,102,241,0.35);
  background: linear-gradient(180deg, rgba(99,102,241,0.07) 0%, var(--bg-1) 100%);
}
.pipe-node--gate .pipe-time { color: var(--warn); }
.pipe-node--shift {
  border-color: rgba(167,139,250,0.3);
  background: linear-gradient(180deg, rgba(167,139,250,0.06) 0%, var(--bg-1) 100%);
}
.pipe-node--shift .pipe-time { color: #a78bfa; }

/* ── Why four ────────────────────────────────────────────────────── */
.why-four {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 52px;
}
.why-four h3 { margin-bottom: 14px; }
.why-four p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 720px;
  line-height: 1.7;
  margin-bottom: 12px;
}
.why-four p:last-child { margin-bottom: 0; }
.why-four strong { color: var(--text); }

