@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=JetBrains+Mono:wght@500;600&display=swap');

/* ============================================================
   SOXMATE.AI — shared site styles
   Brand: cyan #16BEE3 · navy #14273F · audit-green #12A06A
   Type:  Montserrat (display) · Manrope (body) · JetBrains Mono (data)
   ============================================================ */

:root {
  --ink: #13243b;
  --navy: #14273f;
  --navy-700: #1c3556;
  --navy-deep: #0b1b2e;
  --slate: #586a82;
  --slate-light: #8595a8;
  --line: #e5ebf2;
  --line-soft: #eef2f7;
  --bg: #ffffff;
  --bg-tint: #f5f9fc;
  --cyan: #16bee3;
  --cyan-dark: #0fa6c9;
  --cyan-deep: #0b86a3;
  --cyan-tint: #e6f8fc;
  --green: #12a06a;
  --green-tint: #e6f7ef;
  --amber: #d98a2b;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(13,36,59,0.06), 0 1px 3px rgba(13,36,59,0.04);
  --shadow-md: 0 8px 24px rgba(13,36,59,0.08), 0 2px 6px rgba(13,36,59,0.04);
  --shadow-lg: 0 24px 60px rgba(13,36,59,0.14), 0 6px 16px rgba(13,36,59,0.06);
  --font: 'Montserrat', system-ui, -apple-system, sans-serif;
  --display: 'Montserrat', system-ui, sans-serif; /* @kind font */
  --mono: 'JetBrains Mono', ui-monospace, monospace; /* @kind font */
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  letter-spacing: -.005em;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

h1, h2, h3, h4 { font-family: var(--display); font-weight: 800; letter-spacing: -.02em; color: var(--navy); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-weight: 700; font-size: 15px;
  padding: 11px 20px; border-radius: 10px; border: 1px solid transparent;
  cursor: pointer; transition: transform .12s ease, background .15s ease, box-shadow .15s ease, border-color .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--cyan); color: var(--navy-deep); box-shadow: 0 1px 2px rgba(15,166,201,.35), 0 8px 18px rgba(22,190,227,.28); }
.btn-primary:hover { background: var(--cyan-dark); color: #fff; }
.btn-primary:active { transform: translateY(1px); }
.btn-navy { background: var(--navy); color: #fff; box-shadow: var(--shadow-sm); }
.btn-navy:hover { background: var(--navy-700); }
.btn-ghost { background: #fff; color: var(--navy); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: #c9d5e4; background: var(--bg-tint); }
.btn-light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.24); }
.btn-light:hover { background: rgba(255,255,255,.2); }
.btn-lg { padding: 14px 26px; font-size: 16px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 12.5px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--cyan-deep);
}
.eyebrow::before { content: ""; width: 18px; height: 1.5px; background: var(--cyan); display: inline-block; }
.eyebrow.on-dark { color: var(--cyan); }
.eyebrow.on-dark::before { background: var(--cyan); }

/* ---------- nav ---------- */
header.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .2s ease, box-shadow .2s ease;
}
header.nav.scrolled { border-color: var(--line); box-shadow: 0 1px 0 rgba(13,36,59,.02); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; }
.brand img { height: 28px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 14.5px; font-weight: 600; color: var(--slate); transition: color .15s ease; font-family: var(--font); }
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .signin { font-size: 14.5px; font-weight: 700; color: var(--navy); font-family: var(--display); }

/* ---------- generic page hero (sub-pages) ---------- */
.page-hero { position: relative; padding: 78px 0 64px; overflow: hidden; text-align: center; }
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(640px 380px at 70% -10%, rgba(22,190,227,.12), transparent 60%),
    radial-gradient(520px 320px at 8% 4%, rgba(18,160,106,.06), transparent 55%);
}
.page-hero h1 { font-size: clamp(34px, 4.6vw, 54px); line-height: 1.04; margin: 18px auto 0; max-width: 760px; text-wrap: balance; }
.page-hero p.lead { font-size: 19px; color: var(--slate); margin: 20px auto 0; max-width: 600px; line-height: 1.55; text-wrap: pretty; }
.page-hero .hero-cta { justify-content: center; }

/* ---------- sections ---------- */
section.block { padding: 92px 0; }
.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(30px, 3.6vw, 42px); line-height: 1.08; margin: 16px 0 0; text-wrap: balance; }
.section-head p { font-size: 18px; color: var(--slate); margin: 16px 0 0; line-height: 1.6; text-wrap: pretty; }
.section-head.left { text-align: left; margin-left: 0; }

/* hero cta cluster */
.hero-cta { display: flex; align-items: center; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-note { display: flex; align-items: center; gap: 18px; margin-top: 26px; font-size: 13.5px; color: var(--slate-light); flex-wrap: wrap; }
.hero-note span { display: inline-flex; align-items: center; gap: 7px; }
.tick { width: 18px; height: 18px; border-radius: 50%; background: var(--green-tint); color: var(--green); display: grid; place-items: center; flex: none; }
.tick svg { width: 11px; height: 11px; }
.page-hero .hero-note { justify-content: center; }

/* features grid */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; background: #fff;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #cfe9f2; }
.feature .ficon {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--cyan-tint); color: var(--cyan-deep); margin-bottom: 18px;
}
.feature .ficon svg { width: 22px; height: 22px; }
.feature h3 { font-size: 18px; font-weight: 700; margin: 0 0 8px; }
.feature p { font-size: 14.5px; color: var(--slate); margin: 0; line-height: 1.58; }

/* how it works */
.how { background: var(--bg-tint); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step .num {
  font-family: var(--mono); font-size: 13px; font-weight: 600; color: var(--cyan-deep);
  width: 40px; height: 40px; border-radius: 10px; background: #fff; border: 1px solid var(--line);
  display: grid; place-items: center; margin-bottom: 18px; box-shadow: var(--shadow-sm);
}
.step h3 { font-size: 19px; font-weight: 700; margin: 0 0 9px; }
.step p { font-size: 15px; color: var(--slate); margin: 0; line-height: 1.6; }

/* split feature */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split + .split { margin-top: 96px; }
.split.rev .split-media { order: 2; }
.split-copy h2 { font-size: clamp(27px, 3vw, 36px); line-height: 1.12; margin: 16px 0 0; text-wrap: balance; }
.split-copy p { font-size: 16.5px; color: var(--slate); margin: 16px 0 0; line-height: 1.62; }
.checklist { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 13px; }
.checklist li { display: flex; align-items: flex-start; gap: 11px; font-size: 15px; color: var(--navy); font-weight: 500; }
.checklist .tick { width: 20px; height: 20px; margin-top: 1px; }

/* generic panels */
.panel { background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-md); padding: 22px; position: relative; overflow: hidden; }
.panel.tint { background: linear-gradient(180deg, #fbfeff, #f1fafd); }

/* stats band */
.statsband { background: var(--navy); color: #fff; }
.statsband .grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.bigstat { text-align: center; }
.bigstat .v { font-family: var(--display); font-size: clamp(38px, 4.4vw, 54px); font-weight: 800; letter-spacing: -.03em; line-height: 1; background: linear-gradient(180deg, #fff, #9fe6f4); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.bigstat .l { font-size: 14.5px; color: #9fb3d4; margin-top: 12px; }

/* security cards */
.sec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.sec-card { border: 1px solid var(--line); border-radius: 12px; padding: 22px 20px; background: #fff; text-align: center; }
.sec-card .badge2 { width: 48px; height: 48px; margin: 0 auto 14px; border-radius: 12px; background: var(--bg-tint); border: 1px solid var(--line); display: grid; place-items: center; color: var(--cyan-deep); }
.sec-card .badge2 svg { width: 24px; height: 24px; }
.sec-card h4 { font-size: 15px; font-weight: 700; margin: 0 0 5px; }
.sec-card p { font-size: 13px; color: var(--slate); margin: 0; line-height: 1.5; }

/* quote */
.quote { max-width: 820px; margin: 0 auto; text-align: center; }
.quote blockquote { font-family: var(--display); font-size: clamp(22px, 2.8vw, 30px); line-height: 1.34; font-weight: 700; color: var(--navy); letter-spacing: -.015em; margin: 0; text-wrap: balance; }
.quote .mark { font-family: var(--display); font-size: 56px; color: var(--cyan); line-height: 0; font-weight: 800; }
.quote .by { margin-top: 26px; display: flex; align-items: center; justify-content: center; gap: 12px; }
.quote .by .pf { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(145deg, var(--navy), var(--cyan)); color: #fff; display: grid; place-items: center; font-weight: 800; font-family: var(--display); }
.quote .by .who { text-align: left; }
.quote .by .who b { display: block; font-size: 14.5px; color: var(--navy); }
.quote .by .who span { font-size: 13px; color: var(--slate); }

/* cta band */
.cta-band { position: relative; overflow: hidden; padding: 84px 0; }
.cta-inner { background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 55%, var(--cyan-deep) 135%); border-radius: 24px; padding: 60px 56px; text-align: center; color: #fff; position: relative; overflow: hidden; }
.cta-inner::before { content: ""; position: absolute; inset: 0; background: radial-gradient(520px 280px at 80% -20%, rgba(22,190,227,.22), transparent 60%); }
.cta-inner h2 { position: relative; color: #fff; font-size: clamp(30px, 3.6vw, 44px); margin: 0; line-height: 1.08; text-wrap: balance; }
.cta-inner p { position: relative; font-size: 18px; color: #bcd3e6; margin: 18px auto 0; max-width: 540px; line-height: 1.55; }
.cta-inner .hero-cta { position: relative; justify-content: center; margin-top: 34px; }

/* footer */
footer.site { border-top: 1px solid var(--line); padding: 60px 0 36px; background: var(--bg-tint); }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.foot-brand img { height: 26px; }
.foot-brand p { font-size: 14px; color: var(--slate); margin: 16px 0 0; line-height: 1.6; max-width: 280px; }
.foot-col h5 { font-size: 12px; font-family: var(--mono); letter-spacing: .08em; text-transform: uppercase; color: var(--slate-light); margin: 0 0 16px; font-weight: 600; }
.foot-col a { display: block; font-size: 14px; color: var(--slate); margin-bottom: 11px; transition: color .15s ease; }
.foot-col a:hover { color: var(--navy); }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 13px; color: var(--slate-light); flex-wrap: wrap; gap: 14px; }
.foot-bottom .socials { display: flex; gap: 10px; }
.foot-bottom .socials a { width: 32px; height: 32px; border-radius: 8px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--slate); background: #fff; }
.foot-bottom .socials a:hover { color: var(--navy); border-color: #c9d5e4; }

/* reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============ page-specific helpers ============ */

/* pricing */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.price-card { border: 1px solid var(--line); border-radius: 16px; padding: 30px 28px; background: #fff; display: flex; flex-direction: column; }
.price-card.featured { border-color: var(--cyan); box-shadow: 0 20px 50px rgba(22,190,227,.18); position: relative; }
.price-card .tag { position: absolute; top: -12px; left: 28px; background: var(--cyan); color: var(--navy-deep); font-family: var(--mono); font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 20px; letter-spacing: .04em; }
.price-card h3 { font-size: 20px; margin: 0; }
.price-card .desc { font-size: 14px; color: var(--slate); margin: 8px 0 0; min-height: 40px; line-height: 1.5; }
.price-card .amount { margin: 22px 0 4px; display: flex; align-items: baseline; gap: 6px; }
.price-card .amount .num { font-family: var(--display); font-size: 42px; font-weight: 800; color: var(--navy); letter-spacing: -.03em; }
.price-card .amount .per { font-size: 14px; color: var(--slate-light); }
.price-card .feat { list-style: none; padding: 0; margin: 24px 0 28px; display: grid; gap: 12px; flex: 1; }
.price-card .feat li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--navy); }
.price-card .feat .tick { width: 18px; height: 18px; flex: none; margin-top: 1px; }

/* faq */
.faq { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--display); font-size: 17px; font-weight: 700; color: var(--navy); }
.faq-q .chev { width: 20px; height: 20px; flex: none; color: var(--cyan-deep); transition: transform .2s ease; }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-a p { font-size: 15px; color: var(--slate); line-height: 1.6; margin: 0 0 22px; }

/* logos */
.trust { padding: 30px 0 8px; }
.trust p { text-align: center; font-family: var(--mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--slate-light); margin: 0 0 20px; }
.logos { display: flex; align-items: center; justify-content: center; gap: 52px; flex-wrap: wrap; opacity: .68; }
.logos .lg { font-family: var(--display); font-weight: 800; font-size: 18px; letter-spacing: -.02em; color: var(--slate); display: flex; align-items: center; gap: 7px; }
.logos .lg .sq { width: 16px; height: 16px; border-radius: 4px; background: var(--slate); opacity: .8; }
.logos .lg .rd { width: 16px; height: 16px; border-radius: 50%; border: 3px solid var(--slate); }

/* team / value cards */
.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.value-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; background: #fff; }
.value-card .vk { font-family: var(--mono); font-size: 12px; color: var(--cyan-deep); font-weight: 600; letter-spacing: .06em; }
.value-card h3 { font-size: 18px; margin: 12px 0 8px; }
.value-card p { font-size: 14.5px; color: var(--slate); margin: 0; line-height: 1.58; }

/* contact / demo form */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-md); padding: 32px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 7px; font-family: var(--display); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font); font-size: 15px; color: var(--ink);
  padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px var(--cyan-tint); }
.field textarea { resize: vertical; min-height: 96px; }
.field.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.demo-points { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 18px; }
.demo-points li { display: flex; gap: 13px; align-items: flex-start; }
.demo-points .tick { width: 22px; height: 22px; margin-top: 2px; }
.demo-points b { display: block; font-family: var(--display); font-size: 15.5px; color: var(--navy); }
.demo-points span { font-size: 14px; color: var(--slate); line-height: 1.5; }

@media (max-width: 980px) {
  .form-grid { grid-template-columns: 1fr; gap: 36px; }
}
/* ============ guard product cards ============ */
.guards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.guard {
  --accent: var(--cyan); --accent-deep: var(--cyan-deep); --accent-tint: var(--cyan-tint);
  position: relative; border: 1px solid var(--line); border-radius: 16px; background: #fff;
  padding: 30px 28px; display: flex; flex-direction: column; overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.guards.two { grid-template-columns: repeat(2, 1fr); max-width: 800px; margin: 0 auto; }
.guard::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--accent); }
.guard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.guard.green { --accent: var(--green); --accent-deep: #0c7d52; --accent-tint: var(--green-tint); }
.guard.amber { --accent: var(--amber); --accent-deep: #b46f1c; --accent-tint: #fbf2e3; }
.guard .gicon { width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center; background: var(--accent-tint); color: var(--accent-deep); margin-bottom: 20px; }
.guard .gicon svg { width: 26px; height: 26px; }
.guard .gtag { font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--accent-deep); }
.guard h3 { font-size: 22px; margin: 7px 0 0; }
.guard p { font-size: 14.5px; color: var(--slate); line-height: 1.58; margin: 12px 0 0; }
.guard .glist { list-style: none; padding: 0; margin: 20px 0 24px; display: grid; gap: 10px; flex: 1; }
.guard .glist li { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; color: var(--navy); font-weight: 500; }
.guard .glist .gt { width: 17px; height: 17px; border-radius: 50%; background: var(--accent-tint); color: var(--accent-deep); display: grid; place-items: center; flex: none; margin-top: 1px; }
.guard .glist .gt svg { width: 10px; height: 10px; }
.guard .glink { font-family: var(--display); font-weight: 700; font-size: 14.5px; color: var(--accent-deep); display: inline-flex; align-items: center; gap: 6px; transition: gap .15s ease; }
.guard:hover .glink { gap: 10px; }

/* coming-soon / future product tile */
.guard.soon { background: var(--bg-tint); border-style: dashed; border-color: #d3dEEA; }
.guard.soon::before { display: none; }
.guard.soon:hover { transform: none; box-shadow: none; border-color: #c2d0e0; }
.guard.soon .gicon { background: #fff; color: var(--slate-light); border: 1px solid var(--line); }
.guard.soon .gtag { color: var(--slate-light); }
.guard.soon h3 { color: var(--slate); }
.guard.soon .soonlist { list-style: none; padding: 0; margin: 18px 0 6px; display: flex; flex-wrap: wrap; gap: 8px; flex: 1; align-content: flex-start; }
.guard.soon .soonlist li { font-family: var(--mono); font-size: 11px; font-weight: 600; color: var(--slate); background: #fff; border: 1px solid var(--line); border-radius: 7px; padding: 6px 10px; }
.guard.soon .soonnote { font-size: 13px; color: var(--slate-light); margin: 14px 0 0; }

/* "same engine" platform pattern strip */
.engine { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); }
.engine .es { padding: 28px 24px; border-right: 1px solid var(--line); position: relative; }
.engine .es:last-child { border-right: none; }
.engine .es .en { font-family: var(--mono); font-size: 12px; font-weight: 600; color: var(--cyan-deep); }
.engine .es h4 { font-size: 16px; margin: 12px 0 7px; }
.engine .es p { font-size: 13.5px; color: var(--slate); line-height: 1.55; margin: 0; }
.engine .es .earrow { position: absolute; right: -9px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; border-radius: 50%; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; color: var(--slate-light); z-index: 2; }
.engine .es:last-child .earrow { display: none; }
@media (max-width: 820px) { .engine { grid-template-columns: 1fr 1fr; } .engine .es:nth-child(2) { border-right: none; } .engine .es .earrow { display: none; } }
@media (max-width: 480px) { .engine { grid-template-columns: 1fr; } .engine .es { border-right: none; border-bottom: 1px solid var(--line); } .engine .es:last-child { border-bottom: none; } }

/* ============ sample vs 100% population ============ */
.popcompare { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.popcard { border: 1px solid var(--line); border-radius: 16px; background: #fff; padding: 26px 26px 24px; position: relative; }
.popcard.full { border-color: var(--cyan); box-shadow: 0 18px 44px rgba(22,190,227,.16); }
.popcard .ptag { font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--slate-light); }
.popcard.full .ptag { color: var(--cyan-deep); }
.popcard h3 { font-size: 19px; margin: 8px 0 0; }
.popcard .pnum { font-family: var(--display); font-size: 38px; font-weight: 800; letter-spacing: -.03em; margin: 14px 0 2px; }
.popcard.full .pnum { color: var(--cyan-deep); }
.popcard.old .pnum { color: var(--slate); }
.popcard .pdesc { font-size: 14px; color: var(--slate); line-height: 1.55; margin: 4px 0 18px; }
.popgrid { display: grid; grid-template-columns: repeat(20, 1fr); gap: 4px; }
.popgrid i { aspect-ratio: 1; border-radius: 2px; background: var(--line-soft); border: 1px solid var(--line); }
.popgrid i.on { background: var(--slate-light); border-color: var(--slate-light); }
.popgrid.fullg i.on { background: var(--cyan); border-color: var(--cyan); }
.popcard .pfoot { display: flex; align-items: center; gap: 8px; margin-top: 16px; font-size: 13px; font-weight: 600; }
.popcard.old .pfoot { color: var(--slate); }
.popcard.full .pfoot { color: var(--cyan-deep); }
@media (max-width: 760px){ .popcompare { grid-template-columns: 1fr; } .popgrid { grid-template-columns: repeat(25, 1fr); } }

/* ============ old way / new way contrast ============ */
.contrast { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.clane { border-radius: 16px; padding: 30px 30px 26px; }
.clane.old { background: var(--bg-tint); border: 1px solid var(--line); }
.clane.new { background: linear-gradient(160deg, #0b1b2e, #14273f 60%, #0c5d72); color: #fff; }
.clane h3 { font-size: 18px; margin: 0 0 4px; }
.clane.new h3 { color: #fff; }
.clane .clab { font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.clane.old .clab { color: var(--slate-light); }
.clane.new .clab { color: var(--cyan); }
.clist { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 14px; }
.clist li { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; line-height: 1.5; }
.clane.old .clist li { color: var(--slate); }
.clane.new .clist li { color: #d6e6f2; }
.clist .ci { width: 19px; height: 19px; border-radius: 50%; flex: none; margin-top: 1px; display: grid; place-items: center; }
.clane.old .clist .ci { background: #e7edf4; color: #9aa9bd; }
.clane.new .clist .ci { background: rgba(22,190,227,.18); color: var(--cyan); }
.clane.old .clist .ci svg, .clane.new .clist .ci svg { width: 11px; height: 11px; }
@media (max-width: 760px){ .contrast { grid-template-columns: 1fr; } }

/* accent helper for split sections */
.split-copy .eyebrow.green { color: #0c7d52; } .split-copy .eyebrow.green::before { background: var(--green); }
.split-copy .eyebrow.amber { color: #b46f1c; } .split-copy .eyebrow.amber::before { background: var(--amber); }

/* mini access-review / approval / leaver mocks */
.row-card { display: flex; align-items: center; gap: 12px; padding: 11px 13px; border: 1px solid var(--line-soft); border-radius: 10px; background: #fff; margin-bottom: 8px; }
.row-card .who { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; }
.row-card .ava { width: 28px; height: 28px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; font-size: 11px; font-weight: 800; font-family: var(--display); flex: none; }
.row-card .nm { font-size: 13px; font-weight: 700; color: var(--navy); line-height: 1.2; }
.row-card .rl { font-family: var(--mono); font-size: 10px; color: var(--slate-light); }
.row-card .st { font-family: var(--mono); font-size: 10px; font-weight: 600; padding: 4px 9px; border-radius: 20px; display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; }
.row-card .st i { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.st.ok { background: var(--green-tint); color: var(--green); }
.st.warn { background: #fbf2e3; color: var(--amber); }
.st.bad { background: #fdecec; color: #d6453e; }
.st.cyan { background: var(--cyan-tint); color: var(--cyan-deep); }

/* ============ deployment / data-residency visual ============ */
.deploy-fw { border: 2px dashed #c5d2e2; border-radius: 16px; padding: 18px 18px 20px; background: linear-gradient(180deg,#fbfdff,#f4f8fc); position: relative; }
.deploy-fw .fwtag { display: inline-flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--navy); background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 5px 12px; box-shadow: var(--shadow-sm); }
.deploy-fw .fwtag svg { width: 13px; height: 13px; color: var(--cyan-deep); }
.deploy-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
.dbox { border: 1px solid var(--line); border-radius: 12px; background: #fff; padding: 15px 14px; box-shadow: var(--shadow-sm); }
.dbox .dbh { display: flex; align-items: center; gap: 9px; }
.dbox .di { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; flex: none; }
.dbox .di img { width: 18px; }
.dbox .di svg { width: 17px; height: 17px; }
.dbox .dt { font-family: var(--display); font-size: 13px; font-weight: 700; color: var(--navy); line-height: 1.15; }
.dbox .ds { font-family: var(--mono); font-size: 9.5px; color: var(--slate-light); letter-spacing: .03em; }
.dbox.app { grid-column: 1 / -1; border-color: var(--cyan); box-shadow: 0 6px 18px rgba(22,190,227,.14); }
.dflow { display: flex; align-items: center; justify-content: center; gap: 7px; margin: 12px 0 2px; font-family: var(--mono); font-size: 10px; font-weight: 600; color: var(--cyan-deep); letter-spacing: .04em; }
.dflow .ln { height: 1.5px; width: 30px; background: var(--cyan); opacity: .5; border-radius: 2px; }
.deploy-block { display: flex; align-items: center; justify-content: center; gap: 9px; margin-top: 14px; padding: 11px 12px; border-radius: 10px; background: #fdecec; color: #c33; font-family: var(--mono); font-size: 11px; font-weight: 600; }
.deploy-block svg { width: 14px; height: 14px; flex: none; }

@media (max-width: 900px) {
  .guards, .guards.two { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .features, .steps, .sec-grid, .value-grid { grid-template-columns: 1fr 1fr; }
  .statsband .grid4 { grid-template-columns: 1fr 1fr; gap: 36px 20px; }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .split, .split.rev { grid-template-columns: 1fr; gap: 32px; }
  .split.rev .split-media { order: 0; }
  .nav-links { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 560px) {
  .features, .steps, .sec-grid, .value-grid, .statsband .grid4 { grid-template-columns: 1fr; }
  .wrap { padding: 0 20px; }
  .cta-inner { padding: 44px 26px; }
  .nav-cta .signin { display: none; }
  .field.row2 { grid-template-columns: 1fr; }
}
