:root {
  --navy: #0B1220;
  --navy-alt: #16213A;
  --soft: #F3F5F9;
  --ink: #0B1220;
  --ink-2: #4A5568;
  --on-dark: #FFFFFF;
  --on-dark-2: #C7D0E0;
  --line: #E2E8F0;
  --emerald: #10b981;
  --emerald-dark: #059669;
  --emerald-light: #34d399;
  --orange: #F97316;
  --orange-dark: #EA580C;
  --alert: #f87171;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;
  --maxw: 1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { scroll-margin-top: 80px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 15px; padding: 13px 24px;
  border-radius: 9px; border: 1px solid transparent; cursor: pointer;
  transition: transform .12s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--orange); color: var(--navy); }
.btn-primary:hover { background: var(--orange-dark); color: #fff; }
.btn-ghost { background: transparent; color: var(--on-dark); border-color: rgba(255,255,255,0.22); }
.btn-ghost:hover { border-color: var(--emerald-light); color: var(--emerald-light); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-alt); }
.btn-emerald { background: var(--emerald); color: #fff; }
.btn-emerald:hover { background: var(--emerald-dark); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11,18,32,0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 30px; width: 30px; }
.brand-name { font-size: 19px; font-weight: 800; letter-spacing: -0.01em; color: #fff; }
.brand-name .qa { color: var(--emerald-light); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--on-dark-2); }
.nav-links a:hover { color: #fff; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav .btn { font-size: 14px; padding: 9px 18px; }
.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero { background: var(--navy); color: var(--on-dark); padding: 74px 0 84px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -30%; right: -10%;
  width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(16,185,129,0.14), transparent 62%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 54px; align-items: center; position: relative; }
.hero-grid > * { min-width: 0; }
.category-tag {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(16,185,129,0.12); border: 1px solid rgba(52,211,153,0.45);
  color: var(--emerald-light); font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; padding: 7px 15px; border-radius: 20px;
}
.category-tag::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--emerald-light); box-shadow: 0 0 0 3px rgba(52,211,153,0.25);
}
.hero h1 { font-size: 52px; line-height: 1.07; font-weight: 800; letter-spacing: -0.028em; margin: 22px 0 20px; }
.hero h1 .accent { color: var(--emerald-light); }
.hero .subhead { font-size: 18px; line-height: 1.55; color: var(--on-dark-2); max-width: 30em; }
.hero .subhead b { color: #fff; font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-trust { margin-top: 22px; font-size: 13px; color: var(--on-dark-2); font-style: italic; }

/* Proof card */
.proof-card {
  background: #0d1526; border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  max-width: 100%; min-width: 0;
}
.proof-head {
  display: flex; align-items: center; gap: 9px;
  padding: 12px 16px; background: #111c31; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.proof-dot {
  flex-shrink: 0; width: 11px; height: 11px; border-radius: 50%;
  background: var(--alert); box-shadow: 18px 0 0 #f5c451, 36px 0 0 var(--emerald);
  margin-right: 40px; /* reserve space for the two shadow “traffic lights” */
}
.proof-file {
  margin-left: 0; font-family: var(--font-mono); font-size: 12.5px; color: var(--on-dark-2);
  min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.proof-badge {
  flex-shrink: 0; margin-left: auto; font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--emerald-light); border: 1px solid rgba(52,211,153,0.4); border-radius: 20px; padding: 3px 10px;
}
.proof-code {
  font-family: var(--font-mono); font-size: 13.5px; line-height: 1.75; color: #e6edf7;
  padding: 18px 20px; white-space: pre; overflow-x: auto; -webkit-overflow-scrolling: touch;
  max-width: 100%;
}
.proof-code .k { color: #7dd3fc; }
.proof-code .s { color: var(--emerald-light); }
.proof-code .r { color: #fca5a5; }
.proof-cap { padding: 0 20px 16px; font-size: 12.5px; line-height: 1.5; color: var(--on-dark-2); }
.proof-cap b { color: #fff; }
.lifecycle-line {
  padding: 12px 20px; border-top: 1px solid rgba(255,255,255,0.07);
  font-family: var(--font-mono); font-size: 12px; color: var(--on-dark-2); letter-spacing: 0.02em;
  line-height: 1.45; overflow-wrap: anywhere;
}
.lifecycle-line b { color: var(--emerald-light); }

/* ---------- KPI dashboard band ---------- */
.kpi-band { background: #fff; padding: 56px 0; border-bottom: 1px solid var(--line); }
.section-eyebrow { text-align: center; }
.section-eyebrow .lead { font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); }
.section-eyebrow .lead b { color: var(--emerald-dark); }
.section-eyebrow .sub { font-size: 13px; color: var(--ink-2); margin-top: 6px; font-style: italic; }
.kpi-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 34px; }
.kpi {
  position: relative; background: var(--navy); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px; padding: 26px 18px 22px; text-align: center; overflow: hidden;
}
.kpi::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; background: var(--emerald); }
.kpi.is-hero { border-color: rgba(16,185,129,0.65); background: linear-gradient(160deg, rgba(16,185,129,0.22), var(--navy) 62%); }
.kpi.is-hero::before { background: linear-gradient(90deg, var(--emerald), var(--emerald-light)); }
.kpi-top { display: flex; align-items: center; justify-content: center; gap: 8px; }
.kpi .num { font-size: 50px; font-weight: 800; color: var(--emerald-light); line-height: 1; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.kpi .trend { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; background: rgba(52,211,153,0.16); color: var(--emerald-light); }
.kpi .trend svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.kpi .shield { color: var(--emerald-light); }
.kpi .lbl { font-size: 13px; color: var(--on-dark-2); margin-top: 12px; line-height: 1.3; font-weight: 500; }
.roi-anchor { text-align: center; margin-top: 30px; font-size: 15px; color: var(--ink); font-weight: 500; }
.roi-anchor b { color: var(--emerald-dark); font-weight: 700; }
.verify-line { text-align: center; margin-top: 8px; font-size: 13px; color: var(--ink-2); font-style: italic; }

/* ---------- Generic section header ---------- */
.band { padding: 74px 0; }
.band.alt { background: var(--soft); }
.band.dark { background: var(--navy); color: var(--on-dark); }
.band-head { text-align: center; max-width: 44em; margin: 0 auto 46px; }
.band-head .tag { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--emerald-dark); }
.band-head h2 { font-size: 34px; line-height: 1.15; font-weight: 800; letter-spacing: -0.02em; margin: 12px 0 10px; }
.band-head p { font-size: 16px; color: var(--ink-2); }
.band.dark .band-head p { color: var(--on-dark-2); }

/* ---------- Pillars ---------- */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.pillar {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 26px 22px;
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}
.pillar:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(11,18,32,0.09); border-color: rgba(16,185,129,0.4); }
.pillar-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(16,185,129,0.10); color: var(--emerald-dark); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.pillar-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.pillar h3 { font-size: 18px; font-weight: 700; margin-bottom: 7px; }
.pillar p { font-size: 14px; color: var(--ink-2); }
.pillar p b { color: var(--emerald-dark); font-weight: 700; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 26px 22px; }
.step .no { font-family: var(--font-mono); font-size: 13px; font-weight: 700; color: var(--emerald-dark); }
.step h3 { font-size: 18px; font-weight: 700; margin: 10px 0 7px; }
.step p { font-size: 14px; color: var(--ink-2); }
.step .arrow { position: absolute; right: -17px; top: 50%; transform: translateY(-50%); color: var(--emerald); font-size: 22px; z-index: 2; }
.step:last-child .arrow { display: none; }

/* ---------- Agentic loop ---------- */
.loop-flow { display: flex; align-items: stretch; gap: 10px; }
.loop-step { flex: 1 1 0; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 22px 18px; text-align: center; transition: transform .14s ease, border-color .14s ease; }
.loop-step:hover { transform: translateY(-3px); border-color: rgba(16,185,129,0.4); }
.loop-step.is-gate { border-color: rgba(16,185,129,0.55); background: linear-gradient(160deg, rgba(16,185,129,0.10), #fff 70%); }
.loop-step .ls-no { font-family: var(--font-mono); font-size: 12px; font-weight: 700; color: var(--emerald-dark); }
.loop-step .ls-name { font-size: 17px; font-weight: 700; color: var(--ink); margin-top: 4px; }
.loop-step .ls-sub { font-size: 13px; color: var(--ink-2); margin-top: 6px; line-height: 1.35; }
.loop-arrow { align-self: center; color: var(--emerald); font-size: 22px; font-weight: 700; flex-shrink: 0; }
.loop-guards { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 30px; }
.guard-chip { font-size: 13px; font-weight: 600; color: var(--emerald-dark); background: rgba(16,185,129,0.10); border: 1px solid rgba(52,211,153,0.35); border-radius: 20px; padding: 8px 16px; display: inline-flex; align-items: center; gap: 8px; }
.guard-chip::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--emerald); }

/* ---------- Proof section ---------- */
.proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.proof-copy h2 { font-size: 32px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 16px; }
.proof-copy p { font-size: 16px; color: var(--ink-2); margin-bottom: 16px; }
.proof-copy .tag { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--emerald-dark); }
.proof-list { list-style: none; margin-top: 8px; }
.proof-list li { display: flex; gap: 10px; font-size: 15px; color: var(--ink); margin-bottom: 10px; }
.proof-list li svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--emerald); fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; margin-top: 2px; }

/* ---------- Engines ---------- */
.engines-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.engine {
  display: flex; gap: 14px; align-items: flex-start; background: #fff;
  border: 1px solid var(--line); border-radius: 12px; padding: 20px 20px;
  transition: border-color .14s ease, transform .14s ease;
}
.engine:hover { border-color: rgba(16,185,129,0.45); transform: translateY(-2px); }
.engine .no { font-family: var(--font-mono); font-size: 15px; font-weight: 700; color: var(--emerald-dark); }
.engine .tx b { display: block; font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.engine .tx span { font-size: 13.5px; color: var(--ink-2); }

/* ---------- Cross-sell strip ---------- */
.crosssell { background: var(--soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.crosssell-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 30px 0; flex-wrap: wrap; }
.crosssell-inner .cs-copy { font-size: 17px; font-weight: 600; color: var(--ink); }
.crosssell-inner .cs-copy span { color: var(--emerald-dark); }
.crosssell-inner .cs-sub { font-size: 14px; color: var(--ink-2); font-weight: 400; margin-top: 3px; }

/* ---------- Services: stat row (on dark hero) ---------- */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 44px; }
.stat { text-align: center; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 22px 14px; }
.stat .n { font-size: 34px; font-weight: 800; color: var(--emerald-light); line-height: 1; letter-spacing: -0.02em; }
.stat .l { font-size: 12.5px; color: var(--on-dark-2); margin-top: 8px; }

/* ---------- Services: feature grid ---------- */
.svc-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }

/* ---------- Services: pricing ---------- */
.pricing {
  max-width: 540px; margin: 0 auto; background: var(--navy); color: #fff;
  border: 1px solid rgba(16,185,129,0.4); border-radius: 18px; padding: 40px 38px; position: relative; overflow: hidden;
}
.pricing::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px; background: linear-gradient(90deg, var(--emerald), var(--emerald-light)); }
.pricing .plan-tag { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--emerald-light); }
.pricing h3 { font-size: 26px; font-weight: 800; margin: 8px 0 4px; }
.pricing .plan-desc { font-size: 14px; color: var(--on-dark-2); }
.pricing .price { font-size: 52px; font-weight: 800; letter-spacing: -0.03em; margin: 22px 0 2px; }
.pricing .price span { font-size: 18px; font-weight: 600; color: var(--on-dark-2); }
.pricing .cancel { font-size: 13px; color: var(--on-dark-2); }
.pricing ul { list-style: none; text-align: left; margin: 26px 0; }
.pricing li { display: flex; gap: 10px; font-size: 14.5px; color: #eaf0f8; margin-bottom: 12px; }
.pricing li svg { flex-shrink: 0; width: 19px; height: 19px; color: var(--emerald-light); fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; margin-top: 2px; }
.pricing .btn { width: 100%; justify-content: center; }
.pricing .partner-note {
  margin-top: 18px; font-size: 13px; color: var(--emerald-light);
  background: rgba(16,185,129,0.10); border: 1px solid rgba(52,211,153,0.35); border-radius: 10px; padding: 12px 14px;
}

/* ---------- Services: testimonials ---------- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tcard { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 26px 24px; }
.tcard p { font-size: 15px; color: var(--ink); font-style: italic; }
.tcard .who { margin-top: 16px; font-size: 13px; font-weight: 700; color: var(--emerald-dark); }
.trusted { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 24px; }
.trusted span { font-size: 13px; font-weight: 600; color: var(--ink-2); background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 8px 16px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--navy); color: var(--on-dark); padding: 70px 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; bottom: -40%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(16,185,129,0.14), transparent 60%); pointer-events: none;
}
.cta-band h2 { font-size: 38px; font-weight: 800; letter-spacing: -0.02em; position: relative; }
.cta-band h2 span { color: var(--emerald-light); }
.cta-band p { font-size: 16px; color: var(--on-dark-2); margin: 14px 0 30px; position: relative; }
.cta-band .hero-actions { justify-content: center; position: relative; }

/* ---------- Footer ---------- */
.footer { background: #070c16; color: var(--on-dark-2); padding: 42px 0 34px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px; }
.footer .brand-name { font-size: 17px; }
.footer-meta { font-size: 12.5px; }
.footer-links { display: flex; gap: 22px; font-size: 13px; }
.footer-links a:hover { color: var(--emerald-light); }
.footer-bottom { margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.07); font-size: 12px; color: #6b7688; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .wrap { padding: 0 20px; }
  .hero { padding: 56px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero h1 { font-size: 36px; margin: 18px 0 16px; }
  .hero .subhead { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; white-space: normal; text-align: center; }
  .kpi-row { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .kpi { padding: 20px 12px 18px; }
  .kpi .num { font-size: 40px; }
  .kpi .lbl { font-size: 12px; margin-top: 10px; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .svc-features { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step .arrow { display: none; }
  .loop-flow { flex-wrap: wrap; gap: 12px; }
  .loop-arrow { display: none; }
  .loop-step { flex: 1 1 calc(50% - 6px); min-width: 0; }
  .loop-guards { gap: 8px; }
  .guard-chip { font-size: 12px; padding: 7px 12px; }
  .proof-grid { grid-template-columns: 1fr; gap: 28px; }
  .proof-code { font-size: 12.5px; padding: 16px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .proof-file { font-size: 11.5px; }
  .engines-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; }
  .crosssell-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; gap: 10px 16px; }
  .footer-bottom { line-height: 1.45; word-break: break-word; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 66px; left: 0; right: 0;
    background: var(--navy); padding: 18px 24px; gap: 16px; border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-toggle { display: inline-flex; background: none; border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; padding: 7px 10px; color: #fff; cursor: pointer; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 16px; }
  .hero { padding: 44px 0 52px; }
  .hero h1 { font-size: 30px; letter-spacing: -0.02em; line-height: 1.12; }
  .hero .subhead { font-size: 15px; }
  .category-tag { font-size: 10px; letter-spacing: 0.12em; padding: 6px 12px; }
  .band { padding: 52px 0; }
  .kpi-band { padding: 40px 0; }
  .kpi-row { grid-template-columns: 1fr; gap: 12px; }
  .kpi { padding: 22px 18px 20px; text-align: center; }
  .kpi-top { justify-content: center; gap: 10px; }
  .kpi .num { font-size: 44px; }
  .kpi .lbl { font-size: 14px; margin-top: 8px; line-height: 1.35; }
  .stat-row { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat .n { font-size: 28px; }
  .stat .l { font-size: 12px; }
  .pillars, .steps, .engines-grid, .svc-features { grid-template-columns: 1fr; }
  .loop-step { flex: 1 1 100%; padding: 18px 16px; text-align: left; display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; column-gap: 12px; align-items: baseline; }
  .loop-step .ls-no { grid-row: 1 / 3; font-size: 13px; }
  .loop-step .ls-name { margin-top: 0; font-size: 16px; }
  .loop-step .ls-sub { margin-top: 2px; }
  .loop-guards { justify-content: flex-start; }
  .band-head { margin-bottom: 32px; }
  .band-head h2 { font-size: 26px; }
  .band-head p { font-size: 15px; }
  .proof-copy h2 { font-size: 26px; }
  .proof-list li { font-size: 14px; }
  .proof-head { flex-wrap: nowrap; gap: 8px; }
  .proof-file { margin-left: 0; font-size: 11.5px; }
  .proof-badge { margin-left: auto; font-size: 9px; padding: 3px 8px; }
  .proof-dot { margin-right: 36px; }
  .proof-code { font-size: 11.5px; line-height: 1.6; padding: 14px; }
  .hero h1 { font-size: 28px; letter-spacing: -0.02em; line-height: 1.14; }
  .wrap { padding: 0 18px; }
  .roi-anchor { font-size: 14px; margin-top: 22px; padding: 0 4px; }
  .verify-line { font-size: 12px; line-height: 1.45; padding: 0 4px; }
  .cta-band { padding: 52px 0; }
  .cta-band h2 { font-size: 26px; padding: 0 8px; }
  .cta-band p { font-size: 14.5px; padding: 0 8px; }
  .pricing { padding: 28px 22px; }
  .pricing .price { font-size: 42px; }
  .engine { padding: 16px; }
  .nav-cta .btn { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-direction: column; gap: 12px; }
  .lifecycle-line { font-size: 11px; padding: 12px 14px; }
  .loop-guards { flex-direction: column; align-items: stretch; }
  .guard-chip { justify-content: flex-start; }
}
@media (max-width: 380px) {
  .stat-row { grid-template-columns: 1fr; }
  .kpi-row { grid-template-columns: 1fr; }
  .proof-badge { display: none; }
}
