:root {
  --bg: #FAFBFC;
  --white: #FFFFFF;
  --alt: #F7F9FB;
  --rule: #EEF0F3;
  --ink: #0A0F14;
  --ink-2: #1F2937;
  --mute: #6B7280;
  --mute-2: #9AA3AE;
  --green: #00A35B;
  --green-d: #008A4D;
  --green-tint: #E7F6EE;
  --amber: #D97706;
  --amber-tint: #FDF1DC;
  --red: #B91C1C;
  --red-tint: #FBE9E9;
  --blue: #2563EB;
  --navy: #0F1729;

  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --mx: clamp(20px, 5vw, 80px);
  --maxw: 1200px;
  --shadow-card: 0 1px 2px rgba(10,15,20,.04), 0 4px 16px rgba(10,15,20,.04);
  --shadow-lift: 0 1px 2px rgba(10,15,20,.05), 0 12px 32px rgba(10,15,20,.08);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--mx); }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(250,251,252,.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 17px; color: var(--ink); letter-spacing: -0.01em;
}
.logo-mark { width: 28px; height: 28px; border-radius: 8px; background: var(--green); display: grid; place-items: center; color: white; padding: 5px; box-sizing: border-box; }
.logo-word { display: inline-flex; align-items: baseline; }
.logo-word .logo-app { color: var(--green); font-weight: 800; }
.logo-mark svg { width: 100%; height: 100%; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--ink-2); font-weight: 500; font-size: 15px; text-decoration: none; }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--green); color: white !important; padding: 9px 16px;
  border-radius: 8px; font-size: 14px; font-weight: 600;
  font-feature-settings: "tnum";
}
.nav-cta:hover { background: var(--green-d); text-decoration: none; }
.nav-login {
  border: 1px solid #E3E7EC; padding: 8px 14px; border-radius: 8px;
  font-size: 14px; font-weight: 600; color: var(--ink-2);
}
.nav-login:hover { border-color: #CBD1D8; color: var(--ink); text-decoration: none; }
@media (max-width: 720px) { .nav-links a:not(.nav-cta):not(.nav-login) { display: none; } }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); font-weight: 600; font-size: 16px;
  padding: 14px 22px; border-radius: 10px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .06s ease, background .15s ease, box-shadow .15s ease, border-color .15s ease;
  font-feature-settings: "tnum"; text-decoration: none; white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--green); color: white;
  box-shadow: 0 1px 0 rgba(255,255,255,.2) inset, 0 6px 14px rgba(0,163,91,.25);
}
.btn-primary:hover { background: var(--green-d); color: white; }
.btn-ghost { background: white; color: var(--ink); border-color: #E3E7EC; }
.btn-ghost:hover { border-color: #CBD1D8; background: #FBFCFD; }
.btn-dark { background: var(--ink); color: white; }
.btn-dark:hover { background: #000; color: white; }
.btn-outline-on-dark { background: transparent; color: white; border-color: rgba(255,255,255,.35); }
.btn-outline-on-dark:hover { border-color: white; background: rgba(255,255,255,.06); color: white; }
.btn-lg { padding: 16px 26px; font-size: 17px; border-radius: 11px; }
.btn svg { width: 16px; height: 16px; }

/* ---------- HERO ---------- */
.hero {
  padding: clamp(56px, 8vw, 112px) 0 clamp(48px, 7vw, 96px);
  border-bottom: 1px solid var(--rule);
  background: radial-gradient(1200px 400px at 80% 0%, rgba(0,163,91,.05), transparent 60%), var(--bg);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: white; border: 1px solid var(--rule);
  font-size: 13px; font-weight: 500; color: var(--ink-2);
  margin-bottom: 24px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(0,163,91,.15); }

h1 {
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 1.02; letter-spacing: -0.03em; font-weight: 700;
  color: var(--ink); margin: 0 0 20px; text-wrap: balance;
}
h1 em { font-style: normal; background: linear-gradient(180deg, transparent 62%, rgba(0,163,91,.22) 62%); padding: 0 2px; }

.lede { font-size: 19px; line-height: 1.55; color: var(--mute); max-width: 540px; margin: 0 0 32px; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-note { margin-top: 18px; font-size: 14px; color: var(--mute); display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-note .sep { width: 1px; height: 12px; background: var(--rule); }
.hero-note .check { color: var(--green); font-weight: 600; }

/* Mock SaaS site with VerifiedApp Badge embedded in footer */
.mock-site { background: white; border: 1px solid var(--rule); border-radius: 16px; box-shadow: var(--shadow-lift); overflow: hidden; position: relative; }
.mock-chrome { display: flex; align-items: center; gap: 8px; padding: 12px 16px; border-bottom: 1px solid var(--rule); background: #FAFBFC; }
.mock-chrome .dots { display: flex; gap: 6px; }
.mock-chrome .dots span { width: 10px; height: 10px; border-radius: 50%; background: #E3E7EC; }
.mock-chrome .url {
  flex: 1; font-family: var(--mono); font-size: 12px; color: var(--mute);
  background: white; border: 1px solid var(--rule); border-radius: 6px;
  padding: 4px 10px; text-align: center; margin: 0 8px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.mock-chrome .url b { color: var(--ink-2); font-weight: 500; }
.mock-body { padding: 28px 28px 20px; }
.mock-topline { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.mock-brand { display: flex; align-items: center; gap: 8px; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); }
.mock-brand .sq { width: 18px; height: 18px; border-radius: 5px; background: linear-gradient(135deg, #2563EB, #1E40AF); }
.mock-nav { display: flex; gap: 18px; font-size: 13px; color: var(--mute); }
.mock-hero-h { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); margin: 0 0 8px; line-height: 1.15; }
.mock-hero-p { color: var(--mute); font-size: 13px; margin: 0 0 16px; line-height: 1.5; }
.mock-cta-row { display: flex; gap: 8px; margin-bottom: 20px; }
.mock-cta-row .m-btn { font-size: 12px; font-weight: 600; padding: 8px 12px; border-radius: 7px; }
.mock-cta-row .m-primary { background: #2563EB; color: white; }
.mock-cta-row .m-ghost { background: white; border: 1px solid var(--rule); color: var(--ink-2); }
.mock-ph {
  height: 80px; border-radius: 10px; border: 1px dashed #D6DBE1;
  background: repeating-linear-gradient(135deg, #F7F9FB 0 10px, white 10px 20px);
  display: grid; place-items: center;
  font-family: var(--mono); font-size: 11px; color: var(--mute-2);
}
.mock-footer {
  border-top: 1px solid var(--rule); padding: 16px 28px;
  display: flex; align-items: center; justify-content: space-between;
  background: #FCFCFD; gap: 16px; flex-wrap: wrap;
}
.mock-footer .legal { font-size: 11px; color: var(--mute-2); display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.mock-footer .badge-slot { position: relative; }
.mock-footer .badge-slot .anno {
  position: absolute; top: -22px; right: 0;
  font-family: var(--mono); font-size: 10px; color: var(--mute-2);
  display: flex; align-items: center; gap: 6px; white-space: nowrap;
}
.mock-footer .badge-slot .anno::after { content: ""; width: 22px; height: 1px; background: var(--mute-2); }

/* ---------- VERIFIED BADGE ---------- */
.vbadge { display: inline-flex; align-items: center; font-family: var(--sans); font-feature-settings: "tnum"; cursor: default; user-select: none; vertical-align: middle; text-decoration: none; box-sizing: border-box; }
@keyframes vheart { 0% { stroke-dasharray: 0,50; opacity: 0.4; } 50% { opacity: 1; } 100% { stroke-dasharray: 50,50; opacity: 0.4; } }

.vbadge.style-shield { height: 40px; border-radius: 10px; background: #0B1220; color: white; overflow: hidden; border: 1px solid var(--green); box-shadow: 0 2px 6px rgba(10,15,20,.18); }
.vbadge.style-shield .vb-shield { width: 48px; height: 100%; flex-shrink: 0; display: grid; place-items: center; background: var(--green); position: relative; }
.vbadge.style-shield .vb-shield svg { width: 20px; height: 20px; color: white; }
.vbadge.style-shield .vb-body { display: flex; align-items: center; padding: 0 12px; height: 100%; }
.vbadge.style-shield .vb-word { display: flex; align-items: baseline; line-height: 1; font-size: 14px; font-weight: 700; letter-spacing: -0.01em; }
.vbadge.style-shield .vb-word .w-app { color: var(--green); font-weight: 800; }
.vbadge.style-shield .vb-word .w-tld { color: #8A93A1; font-size: 12px; font-weight: 500; letter-spacing: -0.01em; }
.vbadge.style-shield .vb-sep { width: 1px; height: 22px; background: rgba(255,255,255,.10); margin: 0 12px; }
.vbadge.style-shield .vb-meta { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; line-height: 1; }
.vbadge.style-shield .vb-heart { width: 36px; height: 12px; color: var(--green); display: block; }
.vbadge.style-shield .vb-heart polyline { animation: vheart 1.6s linear infinite; }
.vbadge.style-shield .vb-meta-text { font-size: 11px; color: white; font-family: var(--mono); letter-spacing: -0.01em; }

.vbadge.style-pill { height: 32px; border-radius: 999px; background: white; color: var(--ink); padding: 0 12px 0 5px; gap: 8px; border: 1px solid #E3E7EC; box-shadow: 0 1px 2px rgba(10,15,20,.04); }
.vbadge.style-pill .vb-check { width: 22px; height: 22px; border-radius: 50%; background: var(--green); display: grid; place-items: center; flex-shrink: 0; box-shadow: 0 0 0 3px rgba(0,163,91,.14); }
.vbadge.style-pill .vb-check svg { width: 12px; height: 12px; color: white; }
.vbadge.style-pill .vb-txt { display: flex; align-items: baseline; gap: 6px; font-size: 12px; line-height: 1; letter-spacing: -0.01em; }
.vbadge.style-pill .vb-txt .t1 { font-weight: 700; color: var(--ink); }
.vbadge.style-pill .vb-txt .t2 { font-weight: 500; color: var(--mute); font-size: 11px; }
.vbadge.style-pill .vb-txt .t3 { color: var(--mute-2); font-size: 11px; font-family: var(--mono); }

.vbadge.lg { height: 50px; border-radius: 12px; }
.vbadge.lg.style-shield .vb-shield { width: 56px; }
.vbadge.lg.style-shield .vb-shield svg { width: 24px; height: 24px; }
.vbadge.lg.style-shield .vb-word { font-size: 17px; }
.vbadge.lg.style-shield .vb-word .w-tld { font-size: 14px; }
.vbadge.lg.style-shield .vb-meta-text { font-size: 12px; }
.vbadge.lg.style-shield .vb-heart { width: 42px; }
.vbadge.lg.style-pill { padding: 0 16px 0 7px; gap: 10px; }
.vbadge.lg.style-pill .vb-check { width: 28px; height: 28px; }
.vbadge.lg.style-pill .vb-check svg { width: 14px; height: 14px; }
.vbadge.lg.style-pill .vb-txt { font-size: 13px; }
.vbadge.lg.style-pill .vb-txt .t2, .vbadge.lg.style-pill .vb-txt .t3 { font-size: 12px; }

.vbadge.sm { height: 28px; border-radius: 7px; }
.vbadge.sm.style-shield .vb-shield { width: 32px; }
.vbadge.sm.style-shield .vb-shield svg { width: 14px; height: 14px; }
.vbadge.sm.style-shield .vb-body { padding: 0 8px; }
.vbadge.sm.style-shield .vb-word { font-size: 11px; }
.vbadge.sm.style-shield .vb-word .w-tld { display: none; }
.vbadge.sm.style-shield .vb-sep { height: 16px; margin: 0 8px; }
.vbadge.sm.style-shield .vb-heart { width: 24px; height: 9px; }
.vbadge.sm.style-shield .vb-meta-text { font-size: 9px; }
.vbadge.sm.style-pill { padding: 0 9px 0 3px; gap: 6px; }
.vbadge.sm.style-pill .vb-check { width: 16px; height: 16px; box-shadow: 0 0 0 2px rgba(0,163,91,.14); }
.vbadge.sm.style-pill .vb-check svg { width: 9px; height: 9px; }
.vbadge.sm.style-pill .vb-txt { font-size: 10px; gap: 4px; }
.vbadge.sm.style-pill .vb-txt .t2, .vbadge.sm.style-pill .vb-txt .t3 { font-size: 9px; }

body[data-badge="shield"] .vbadge.style-pill { display: none; }
body[data-badge="pill"] .vbadge.style-shield { display: none; }

.final .vbadge.style-pill { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.16); }
.final .vbadge.style-pill .vb-txt .t1 { color: white; }
.final .vbadge.style-pill .vb-txt .t2, .final .vbadge.style-pill .vb-txt .t3 { color: rgba(255,255,255,.6); }

/* ---------- SECTION BASICS ---------- */
section { padding: clamp(64px, 8vw, 120px) 0; }
section.alt { background: var(--alt); }
section.white { background: white; }
section + section { border-top: 1px solid var(--rule); }

.section-head { max-width: 720px; margin: 0 0 48px; }
.section-eyebrow { font-family: var(--mono); font-size: 12px; font-weight: 500; color: var(--green); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
h2 { font-size: clamp(30px, 3.4vw, 44px); letter-spacing: -0.025em; font-weight: 700; color: var(--ink); line-height: 1.1; margin: 0 0 16px; text-wrap: balance; }
h3 { font-size: 19px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); margin: 0 0 10px; }
.section-sub { font-size: 18px; color: var(--mute); margin: 0; }

/* ---------- SOCIAL PROOF ---------- */
.proof { padding: 36px 0; background: white; border-bottom: 1px solid var(--rule); }
.proof-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.proof-left, .proof-right { flex: 0 0 auto; display: flex; align-items: center; gap: 12px; }
.proof-stat { font-size: 13px; color: var(--ink-2); font-weight: 500; display: flex; align-items: center; gap: 10px; }
.proof-stat strong { font-family: var(--mono); font-weight: 600; color: var(--ink); font-feature-settings: "tnum"; }
.logo-wall { flex: 1 1 auto; min-width: 0; display: flex; align-items: center; justify-content: center; gap: clamp(16px, 3vw, 36px); flex-wrap: wrap; }
.logo-wall .lw { font-weight: 600; letter-spacing: -0.01em; color: var(--mute); font-size: 14px; opacity: .7; white-space: nowrap; display: flex; align-items: center; gap: 6px; }
.logo-wall .lw::before { content: ""; width: 14px; height: 14px; border-radius: 3px; background: #D6DBE1; }
.proof-right { font-size: 12px; color: var(--mute); font-style: italic; max-width: 280px; line-height: 1.5; }
@media (max-width: 1040px) { .proof-inner { justify-content: center; text-align: center; } .proof-right { max-width: none; font-style: normal; } }

/* ---------- SELF-SCAN CTA ---------- */
.scan-cta { background: white; border-bottom: 1px solid var(--rule); padding: clamp(48px, 6vw, 80px) 0; }
.scan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 64px); align-items: center; }
@media (max-width: 900px) { .scan-grid { grid-template-columns: 1fr; } }
.scan-pitch h2 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 14px; }
.scan-pitch p { color: var(--mute); font-size: 17px; margin: 0 0 16px; }
.scan-pitch .scan-bullets { list-style: none; padding: 0; margin: 12px 0 0; display: flex; flex-direction: column; gap: 8px; color: var(--ink-2); font-size: 15px; }
.scan-pitch .scan-bullets li { display: flex; gap: 10px; align-items: flex-start; }
.scan-pitch .scan-bullets li::before { content: "→"; color: var(--green); font-weight: 700; flex-shrink: 0; }
.scan-form { background: var(--alt); border: 1px solid var(--rule); border-radius: 14px; padding: 28px; box-shadow: var(--shadow-card); }
.scan-form .field { margin-bottom: 14px; }
.scan-form .field-label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 6px; letter-spacing: -0.005em; }
.scan-form input[type="text"], .scan-form input[type="email"], .scan-form input[type="url"] {
  width: 100%; box-sizing: border-box;
  font-family: var(--sans); font-size: 15px;
  padding: 11px 14px;
  background: white; border: 1px solid #E3E7EC; border-radius: 8px;
  color: var(--ink-2); outline: none;
  transition: border-color .12s ease;
}
.scan-form input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(0,163,91,.10); }
.scan-form .field-hint { font-size: 12px; color: var(--mute); margin-top: 5px; }
.scan-form .checkbox-row { display: flex; gap: 10px; align-items: flex-start; padding: 12px 0 16px; font-size: 13px; color: var(--ink-2); line-height: 1.45; }
.scan-form .checkbox-row input { margin-top: 3px; }
.scan-form .scan-submit { width: 100%; }
.scan-form .scan-disclaimer { margin: 12px 0 0; font-size: 11px; color: var(--mute-2); text-align: center; line-height: 1.5; }

/* ---------- DEMO CONTEXTS ---------- */
.contexts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 56px; }
@media (max-width: 960px) { .contexts { grid-template-columns: 1fr; } }
.ctx-card { border: 1px solid var(--rule); border-radius: 14px; background: white; overflow: hidden; display: flex; flex-direction: column; min-width: 0; }
.ctx-label { padding: 14px 18px; border-bottom: 1px solid var(--rule); font-size: 13px; font-weight: 600; color: var(--ink); display: flex; align-items: center; justify-content: space-between; }
.ctx-label .tag { font-family: var(--mono); font-size: 10px; font-weight: 500; color: var(--mute); text-transform: uppercase; letter-spacing: 0.05em; }
.ctx-ba { display: grid; grid-template-rows: 1fr 1fr; }
.ctx-row { padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; gap: 10px; min-height: 76px; flex-wrap: wrap; }
.ctx-row + .ctx-row { border-top: 1px dashed var(--rule); }
.ctx-row .ba { font-family: var(--mono); font-size: 10px; padding: 3px 8px; border-radius: 999px; letter-spacing: 0.05em; text-transform: uppercase; font-weight: 500; white-space: nowrap; flex-shrink: 0; }
.ctx-row .ba.before { background: #F3F4F6; color: var(--mute); }
.ctx-row .ba.after { background: var(--green-tint); color: var(--green-d); }
.ctx-sample { flex: 1 1 auto; display: flex; align-items: center; gap: 10px; min-width: 0; flex-wrap: wrap; }

.mini-footer-row { display: flex; align-items: center; gap: 8px; font-family: var(--sans); font-size: 11px; color: var(--mute-2); flex-wrap: wrap; }
.mini-footer-row .b { font-weight: 600; color: var(--ink-2); font-size: 12px; }
.mini-stripe { display: flex; align-items: center; gap: 6px; padding: 5px 9px; border: 1px solid var(--rule); border-radius: 6px; font-size: 11px; color: var(--ink-2); white-space: nowrap; }
.mini-stripe .sd { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.mini-readme { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.mini-readme .shield { padding: 3px 7px; background: #555; color: white; font-size: 10px; border-radius: 3px; font-family: var(--mono); white-space: nowrap; }

/* Embed code */
.embed { max-width: 780px; margin: 40px auto 0; text-align: center; }
.embed h3 { font-size: 22px; letter-spacing: -0.02em; font-weight: 600; margin-bottom: 20px; }
.code { text-align: left; background: var(--navy); color: #E3E9F2; border-radius: 12px; font-family: var(--mono); font-size: 13px; line-height: 1.7; padding: 20px 24px; overflow-x: auto; box-shadow: var(--shadow-lift); margin: 0; }
.code .tag { color: #F78FB3; }
.code .attr { color: #9BD5FF; }
.code .str { color: #B8F2C0; }
.code .cm { color: #6E7A94; }
.embed-cta { margin-top: 28px; }
.embed-cta-note { color: var(--mute); font-size: 12px; margin-top: 8px; }

/* ---------- TRUST CARDS ---------- */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .trust-grid { grid-template-columns: 1fr; } }
.tcard { background: white; border: 1px solid var(--rule); border-radius: 14px; padding: 28px 26px; display: flex; flex-direction: column; gap: 10px; }
.tcard .t-ico { width: 40px; height: 40px; border-radius: 10px; background: var(--green-tint); color: var(--green-d); display: grid; place-items: center; margin-bottom: 8px; }
.tcard .t-ico svg { width: 20px; height: 20px; }
.tcard h3 { margin: 0; font-size: 18px; }
.tcard p { margin: 0; color: var(--mute); font-size: 15px; line-height: 1.6; }
.section-cta { display: flex; justify-content: center; margin-top: 48px; }

/* ---------- CHECKS ---------- */
.checks-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border: 1px solid var(--rule); border-radius: 14px; overflow: hidden; background: white; }
@media (max-width: 760px) { .checks-grid { grid-template-columns: 1fr; } }
.check-row { padding: 22px 24px; border-bottom: 1px solid var(--rule); display: grid; grid-template-columns: 180px 1fr auto; gap: 18px; align-items: center; }
.check-row:nth-last-child(-n+2) { border-bottom: none; }
@media (max-width: 1040px) { .check-row { grid-template-columns: 1fr auto; gap: 4px 14px; } .check-row .lbl { grid-column: 1; } .check-row .desc { grid-column: 1 / -1; } .check-row .cnt { grid-column: 2; grid-row: 1; justify-self: end; } }
@media (max-width: 760px) { .checks-grid { grid-template-columns: 1fr; } .check-row:nth-last-child(-n+2) { border-bottom: 1px solid var(--rule); } .check-row:last-child { border-bottom: none; } }
.check-row .lbl { font-weight: 600; color: var(--ink); font-size: 15px; display: flex; align-items: center; gap: 10px; }
.check-row .lbl .d { width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.check-row .desc { color: var(--mute); font-size: 14px; line-height: 1.55; }
.check-row .cnt { font-family: var(--mono); font-size: 12px; color: var(--mute); background: var(--alt); padding: 3px 8px; border-radius: 999px; white-space: nowrap; }
.checks-footer { text-align: center; margin-top: 24px; color: var(--mute); font-size: 14px; }
.checks-footer b { color: var(--ink); font-weight: 600; }
.sample-link { text-align: center; margin-top: 28px; }
.sample-link button { background: none; border: none; color: var(--blue); cursor: pointer; font-family: var(--sans); font-size: 15px; font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- PRICING ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
@media (max-width: 960px) { .pricing-grid { grid-template-columns: 1fr; } }
.plan { background: white; border: 1px solid var(--rule); border-radius: 16px; padding: 32px 28px 28px; display: flex; flex-direction: column; position: relative; }
.plan.hero-plan { border: 2px solid var(--green); box-shadow: var(--shadow-lift); transform: translateY(-8px); }
@media (max-width: 960px) { .plan.hero-plan { transform: none; } }
.plan .pop { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--green); color: white; font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; }
.plan-name { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--mute); margin-bottom: 16px; }
.plan.hero-plan .plan-name { color: var(--green-d); }
.plan-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.plan-price .amt { font-family: var(--mono); font-size: 48px; font-weight: 600; color: var(--ink); letter-spacing: -0.02em; line-height: 1; font-feature-settings: "tnum"; }
.plan-price .per { color: var(--mute); font-size: 15px; }
.plan-vat { color: var(--mute); font-size: 12px; margin-bottom: 16px; }
.plan-tag { color: var(--mute); font-size: 14px; margin: 0 0 24px; line-height: 1.5; min-height: 42px; }
.plan ul { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 12px; }
.plan ul li { font-size: 14px; color: var(--ink-2); line-height: 1.5; display: flex; align-items: flex-start; gap: 10px; }
.plan ul li .ck { flex-shrink: 0; color: var(--green); margin-top: 2px; }
.plan ul li .ck svg { width: 14px; height: 14px; display: block; }
.plan .btn { width: 100%; margin-top: auto; }
.plan .pop.soon { background: var(--mute); color: white; }
.pricing-note { text-align: center; margin-top: 32px; color: var(--mute); font-size: 14px; display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.pricing-note span { display: flex; align-items: center; gap: 6px; }
.pricing-note svg { width: 14px; height: 14px; color: var(--green); }

/* ---------- Fix Service callout ---------- */
.fix-service-card { background: white; border: 1px solid var(--rule); border-radius: 16px; padding: 36px; display: flex; gap: 36px; align-items: center; }
@media (max-width: 720px) { .fix-service-card { flex-direction: column; gap: 24px; padding: 28px; } }
.fix-service-content { flex: 1; }
.fix-service-content h2 { margin: 6px 0 12px; }
.fix-service-content .section-sub { margin: 0 0 20px; }
.fix-service-list { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 10px; }
.fix-service-list li { font-size: 14px; color: var(--ink-2); line-height: 1.5; display: flex; align-items: flex-start; gap: 10px; }
.fix-service-list li .ck { flex-shrink: 0; color: var(--green); margin-top: 2px; }
.fix-service-list li .ck svg { width: 14px; height: 14px; display: block; }
.fix-service-rate { flex-shrink: 0; text-align: center; padding: 24px 32px; border-left: 1px solid var(--rule); }
@media (max-width: 720px) { .fix-service-rate { border-left: none; border-top: 1px solid var(--rule); padding: 20px 0 0; width: 100%; } }
.fix-service-rate .rate-amount { font-family: var(--mono); font-size: 48px; font-weight: 600; color: var(--ink); letter-spacing: -0.02em; line-height: 1; font-feature-settings: "tnum"; }
.fix-service-rate .rate-unit { color: var(--mute); font-size: 15px; margin-top: 6px; }
.fix-service-rate .rate-vat { color: var(--mute); font-size: 12px; margin-top: 4px; }
.fix-service-rate .rate-note { color: var(--mute); font-size: 12px; margin-top: 16px; line-height: 1.4; }
.fix-service-grids { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 24px; }
@media (max-width: 720px) { .fix-service-grids { grid-template-columns: 1fr; gap: 20px; } }
.fix-service-col h4 { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--mute); margin: 0 0 12px; }
.fix-service-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.fix-service-trust { color: var(--mute); font-size: 13px; line-height: 1.4; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq { border-top: 1px solid var(--rule); }
.faq:last-child { border-bottom: 1px solid var(--rule); }
.faq summary { cursor: pointer; list-style: none; padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-weight: 600; color: var(--ink); font-size: 17px; letter-spacing: -0.01em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--mono); font-size: 20px; color: var(--mute); width: 24px; height: 24px; display: grid; place-items: center; flex-shrink: 0; }
.faq[open] summary::after { content: "–"; }
.faq-body { padding: 0 0 24px; color: var(--mute); font-size: 16px; line-height: 1.65; max-width: 720px; }

/* ---------- LIVE PROOF SECTION ---------- */
.proof-section { background: linear-gradient(180deg, white 0%, var(--green-tint) 100%); position: relative; overflow: hidden; }
.proof-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(900px 500px at 50% 100%, rgba(0,163,91,.08), transparent 65%); pointer-events: none; }
.proof-section .wrap { position: relative; }

.proof-stage {
  max-width: 720px;
  margin: 0 auto 56px;
  background: white;
  border: 1px solid var(--rule);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}

.proof-stage-badge a {
  display: inline-block;
  line-height: 0;
  border-radius: 10px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.proof-stage-badge a:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(15,30,45,.10); }
.proof-stage-badge a:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }
.proof-stage-badge img { display: block; max-width: 100%; height: auto; }

.proof-stage-chrome {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: #FAFBFC;
  border-bottom: 1px solid var(--rule);
}
.proof-stage-chrome .dots { display: flex; gap: 6px; }
.proof-stage-chrome .dots span { width: 10px; height: 10px; border-radius: 50%; background: #E3E7EC; }
.proof-stage-chrome .url {
  flex: 1 1 auto;
  font-family: var(--mono); font-size: 12px; color: var(--mute);
  background: white; border: 1px solid var(--rule); border-radius: 6px;
  padding: 5px 12px;
  display: flex; align-items: center; gap: 6px;
  min-width: 0;
}
.proof-stage-chrome .url b { color: var(--ink-2); font-weight: 500; }
.proof-stage-status {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  color: var(--green-d);
  text-transform: uppercase; letter-spacing: 0.06em;
  flex-shrink: 0;
}
.proof-stage-status .ps-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(0,163,91,.18);
  animation: psPulse 2.4s ease-in-out infinite;
}
@keyframes psPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(0,163,91,.18); }
  50% { box-shadow: 0 0 0 6px rgba(0,163,91,.06); }
}

.proof-stage-body {
  padding: 48px 32px 36px;
  display: flex; flex-direction: column; align-items: center; gap: 28px;
  text-align: center;
}
.proof-stage-anno {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 11px; color: var(--mute);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.proof-stage-anno .anno-line { width: 36px; height: 1px; background: var(--rule); }
.proof-stage-badge { display: inline-flex; }
.proof-stage-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 14px; font-weight: 600;
  color: var(--green-d);
  padding: 10px 18px;
  background: var(--green-tint);
  border-radius: 999px;
  text-decoration: none;
  transition: gap .15s ease, background-color .15s ease;
}
.proof-stage-cta svg { width: 16px; height: 16px; }
.proof-stage-cta:hover { gap: 12px; background: #D6EFE0; }
.proof-stage-cta:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }

.proof-bullets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 820px) { .proof-bullets { grid-template-columns: 1fr; } }
.proof-bullet {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 18px 20px;
  background: white;
  border: 1px solid var(--rule);
  border-radius: 12px;
  font-size: 14px; color: var(--ink-2); line-height: 1.55;
}
.proof-bullet b { color: var(--ink); font-weight: 600; }
.proof-bullet .pb-ico {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--green-tint);
  color: var(--green-d);
  display: grid; place-items: center;
  margin-top: 1px;
}
.proof-bullet .pb-ico svg { width: 14px; height: 14px; }

/* ---------- FINAL DARK CTA ---------- */
.final { background: var(--navy); color: white; padding: clamp(80px, 10vw, 140px) 0; text-align: center; position: relative; overflow: hidden; }
.final::before { content: ""; position: absolute; inset: 0; background: radial-gradient(800px 400px at 50% 0%, rgba(0,163,91,.12), transparent 60%), radial-gradient(600px 300px at 20% 100%, rgba(37,99,235,.08), transparent 60%); pointer-events: none; }
.final .wrap { position: relative; }
.final h2 { color: white; font-size: clamp(36px, 5vw, 60px); letter-spacing: -0.03em; margin-bottom: 18px; }
.final p { color: #AEB6C4; font-size: 19px; max-width: 520px; margin: 0 auto 40px; }
.final-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.final-badge { margin-top: 56px; display: inline-flex; }

/* ---------- FOOTER ---------- */
footer.site { background: white; border-top: 1px solid var(--rule); padding: 48px 0 32px; color: var(--mute); font-size: 14px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
.foot-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink); font-weight: 600; margin: 0 0 14px; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-col ul a { color: var(--mute); }
.foot-col ul a:hover { color: var(--ink); text-decoration: none; }
.foot-bottom { border-top: 1px solid var(--rule); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: var(--mute-2); flex-wrap: wrap; gap: 10px; }

/* ---------- MODAL ---------- */
.modal-backdrop { position: fixed; inset: 0; background: rgba(10,15,20,.5); display: none; align-items: center; justify-content: center; padding: 24px; z-index: 100; backdrop-filter: blur(4px); }
.modal-backdrop.open { display: flex; }
.modal { background: white; border-radius: 14px; max-width: 760px; width: 100%; max-height: 88vh; overflow: auto; box-shadow: 0 20px 60px rgba(0,0,0,.3); }
.modal-head { position: sticky; top: 0; background: white; padding: 20px 24px; border-bottom: 1px solid var(--rule); display: flex; align-items: center; justify-content: space-between; }
.modal-head h3 { margin: 0; font-size: 17px; }
.modal-head .site-id { font-family: var(--mono); font-size: 11px; color: var(--mute); margin-top: 3px; }
.modal-close { background: none; border: 1px solid var(--rule); border-radius: 8px; padding: 6px 10px; cursor: pointer; color: var(--mute); font-family: var(--sans); font-size: 13px; }
.modal-body { padding: 24px; }
.rpt-meta { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 24px; }
@media (max-width: 600px) { .rpt-meta { grid-template-columns: 1fr 1fr; } }
.rpt-meta .m { background: var(--alt); border-radius: 8px; padding: 10px 12px; }
.rpt-meta .m .k { font-family: var(--mono); font-size: 10px; color: var(--mute); text-transform: uppercase; letter-spacing: 0.05em; }
.rpt-meta .m .v { font-size: 14px; color: var(--ink); font-weight: 600; margin-top: 2px; }
.finding { border: 1px solid var(--rule); border-radius: 10px; padding: 16px 18px; margin-bottom: 12px; }
.finding-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; flex-wrap: wrap; }
.sev { font-family: var(--mono); font-size: 10px; font-weight: 600; padding: 3px 8px; border-radius: 4px; letter-spacing: 0.05em; text-transform: uppercase; }
.sev.pass { background: var(--green-tint); color: var(--green-d); }
.sev.info { background: #E6EEF8; color: #1E40AF; }
.finding h4 { margin: 0; font-size: 15px; color: var(--ink); flex: 1; min-width: 200px; }
.finding .fid { font-family: var(--mono); font-size: 11px; color: var(--mute); }
.finding p { margin: 6px 0 0; font-size: 14px; color: var(--mute); line-height: 1.55; }
.finding code { font-family: var(--mono); font-size: 12px; background: var(--alt); padding: 2px 6px; border-radius: 4px; color: var(--ink-2); }

.center { text-align: center; }

/* ---------- LEGAL / TEXT PAGES ---------- */
.legal-page { padding: clamp(48px, 7vw, 96px) 0; background: white; }
.legal-page .wrap { max-width: 760px; }
.legal-page h1 { font-size: clamp(32px, 4vw, 44px); margin: 0 0 8px; }
.legal-page .updated { font-family: var(--mono); font-size: 12px; color: var(--mute); margin: 0 0 16px; }
.legal-page .lang-note { font-size: 13px; color: var(--mute); background: var(--alt); border: 1px solid var(--rule); border-radius: 6px; padding: 10px 14px; margin: 0 0 32px; }
.legal-page h2 { font-size: 22px; margin: 32px 0 12px; letter-spacing: -0.015em; }
.legal-page h3 { font-size: 17px; margin: 24px 0 8px; }
.legal-page p { font-size: 16px; line-height: 1.7; margin: 0 0 16px; color: var(--ink-2); }
.legal-page ul { padding-left: 24px; margin: 0 0 16px; line-height: 1.7; color: var(--ink-2); }
/* ---------- 404 ---------- */
.notfound { padding: clamp(80px, 12vw, 160px) 0; background: var(--bg); text-align: center; }
.notfound .code { font-family: var(--mono); font-size: 14px; color: var(--mute); letter-spacing: 0.1em; margin: 0 0 8px; }
.notfound h1 { font-size: clamp(36px, 5vw, 56px); margin: 0 0 16px; }
.notfound p { font-size: 18px; color: var(--mute); max-width: 480px; margin: 0 auto 32px; }

