/* ============================================================
   rev.health — marketing site shared styles
   Brand: navy #0B2540 · card #12324F · teal #0A8A83 · mint #02C39A
          paper #F7F9F8 · ice #DDEBE9 · muted #5B7083
   ============================================================ */

:root {
  --navy: #0B2540;
  --navy-2: #0E2C4B;
  --card: #12324F;
  --card-2: #16395A;
  --teal: #0A8A83;
  --mint: #02C39A;
  --mint-soft: rgba(2, 195, 154, 0.12);
  --paper: #F7F9F8;
  --ice: #DDEBE9;
  --muted: #5B7083;
  --ink: #122433;
  --line-dark: rgba(221, 235, 233, 0.14);
  --line-light: rgba(11, 37, 64, 0.10);
  --shadow-lg: 0 30px 70px -28px rgba(11, 37, 64, 0.55);
  --shadow-md: 0 16px 40px -20px rgba(11, 37, 64, 0.35);
  --radius: 14px;
  --radius-lg: 20px;
  --max: 1180px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  /* full-screen scroll-snap: proximity (never mandatory) so tall sections
     are never trapped; the snap clicks pages into place but lets content
     that overflows a viewport scroll freely */
  scroll-snap-type: y proximity;
  /* land snapped sections (and anchor jumps) just below the 64px sticky nav */
  scroll-padding-top: 76px;
}
/* clear the 64px sticky header (+12px breathing room) when jumping to an
   in-page anchor, so the heading isn't hidden under the nav */
:target { scroll-margin-top: 76px; }
section[id], [id].section, main[id], #kpis, #matrix, #team, #pricing,
#waitlist, #modules, #tco, #problem, #different, #screens, #compare,
#security, #promises { scroll-margin-top: 76px; }

/* ---------- full-screen scroll-snap ----------
   Each top-level landing section snaps its top into place under the sticky
   header. Heavier "fill the viewport" snapping is desktop-only so short
   phones never trap a taller-than-screen section. */
main > section,
main > header.hero {
  scroll-snap-align: start;
  scroll-margin-top: 76px;
}
@media (min-width: 768px) and (prefers-reduced-motion: no-preference) {
  /* give content-light landing sections a full viewport so they click into
     place as full "pages"; svh keeps it honest on mobile-chrome viewports.
     center the content so the extra height reads as intentional, not a gap */
  .hero { min-height: 100vh; min-height: 100svh; }
  .snap-screen {
    min-height: 100vh; min-height: 100svh;
    display: flex; align-items: center;
  }
  .snap-screen > .wrap { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-snap-type: none; scroll-behavior: auto; }
}
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { line-height: 1.18; margin: 0 0 0.55em; font-weight: 800; letter-spacing: -0.015em; }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.22rem; }
p { margin: 0 0 1em; }
.small { font-size: 0.88rem; }

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

/* ---------- skip link ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--mint); color: var(--navy); padding: 10px 16px;
  font-weight: 700; z-index: 200; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11, 37, 64, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line-dark);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 26px; height: 64px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.18rem; color: var(--paper); letter-spacing: -0.02em;
}
.brand:hover { text-decoration: none; }
/* self-contained inline-SVG wordmark — gradient REV badge + ".health";
   never wraps, ".health" inherits the surrounding light color via currentColor */
.brandlogo {
  display: inline-block; vertical-align: middle;
  height: 34px; width: auto; flex: none; white-space: nowrap;
  color: var(--paper);
}
.nav-links { display: flex; align-items: center; gap: 22px; margin-left: auto; }
.nav-links > a {
  color: var(--ice); font-weight: 600; font-size: 0.95rem;
}
.nav-links > a:hover { color: var(--mint); text-decoration: none; }
.nav-links > a.active { color: var(--mint); }
.nav-cta {
  background: var(--mint); color: var(--navy) !important;
  padding: 9px 18px; border-radius: 999px; font-weight: 800; font-size: 0.92rem;
}
.nav-cta:hover { text-decoration: none; filter: brightness(1.06); }

/* modules dropdown */
.nav-drop { position: relative; }
.nav-drop > button {
  background: none; border: 0; color: var(--ice); font: inherit; font-weight: 600;
  font-size: 0.95rem; cursor: pointer; display: flex; align-items: center; gap: 6px; padding: 0;
}
.nav-drop > button:hover { color: var(--mint); }
.nav-drop > button .car { font-size: 0.65rem; transform: translateY(1px); }
.drop-panel {
  display: none; position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
  background: var(--navy-2); border: 1px solid var(--line-dark); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 14px; width: 540px;
  grid-template-columns: 1fr 1fr; gap: 4px;
}
.nav-drop.open .drop-panel { display: grid; }
.drop-panel a {
  display: block; padding: 9px 12px; border-radius: 9px; color: var(--ice);
  font-size: 0.92rem; font-weight: 600;
}
.drop-panel a span { display: block; color: var(--muted); font-weight: 500; font-size: 0.8rem; }
.drop-panel a:hover { background: var(--card); text-decoration: none; color: var(--mint); }

.nav-burger {
  display: none; margin-left: auto; background: none; border: 0; color: var(--ice);
  font-size: 1.6rem; cursor: pointer; padding: 4px 8px;
}

/* ---------- hero (dark) ---------- */
.hero {
  background:
    radial-gradient(1100px 520px at 85% -10%, rgba(10, 138, 131, 0.35), transparent 60%),
    radial-gradient(800px 420px at -10% 110%, rgba(2, 195, 154, 0.16), transparent 55%),
    var(--navy);
  color: var(--paper);
  padding: 84px 0 96px;
  overflow: hidden;
}
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--mint-soft); border: 1px solid rgba(2, 195, 154, 0.35);
  color: var(--mint); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 6px 14px; border-radius: 999px; margin-bottom: 22px;
}
.hero .lede { font-size: 1.22rem; color: var(--ice); max-width: 640px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.btn {
  display: inline-block; padding: 13px 26px; border-radius: 999px; font-weight: 800;
  font-size: 1rem; cursor: pointer; border: 0;
}
.btn-mint { background: var(--mint); color: var(--navy); }
.btn-mint:hover { filter: brightness(1.07); text-decoration: none; }
.btn-ghost { background: transparent; color: var(--ice); border: 1.5px solid var(--line-dark); }
.btn-ghost:hover { border-color: var(--mint); color: var(--mint); text-decoration: none; }
.hero-note { color: var(--muted); font-size: 0.88rem; margin-top: 16px; }

/* ---------- browser / device frames ---------- */
.browser-frame {
  background: #0a1f36; border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden;
}
.browser-frame .chrome {
  display: flex; align-items: center; gap: 8px; padding: 11px 16px;
  background: rgba(221, 235, 233, 0.05); border-bottom: 1px solid var(--line-dark);
}
.browser-frame .dot { width: 11px; height: 11px; border-radius: 50%; background: var(--muted); opacity: 0.55; }
.browser-frame .dot:nth-child(1) { background: #e8788a; opacity: 0.9; }
.browser-frame .dot:nth-child(2) { background: #e9c46a; opacity: 0.9; }
.browser-frame .dot:nth-child(3) { background: var(--mint); opacity: 0.9; }
.browser-frame .url {
  flex: 1; margin-left: 8px; background: rgba(221, 235, 233, 0.07);
  border-radius: 7px; color: var(--muted); font-size: 0.76rem; padding: 4px 12px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.browser-frame img { width: 100%; }

.phone-frame {
  width: min(320px, 100%); margin: 0 auto; background: #0a1f36;
  border: 1px solid var(--line-dark); border-radius: 34px; padding: 14px 12px;
  box-shadow: var(--shadow-lg);
}
.phone-frame .notch { width: 110px; height: 9px; border-radius: 999px; background: rgba(221,235,233,0.14); margin: 0 auto 12px; }
.phone-frame img { border-radius: 22px; }

/* ---------- modal (native <dialog>) ---------- */
.modal{border:none;background:var(--card,#12324F);color:var(--paper,#e9eefb);border-radius:18px;width:min(92vw,560px);max-height:85vh;overflow:auto;padding:clamp(24px,5vw,34px);position:relative;box-shadow:0 30px 90px rgba(0,0,0,.55)}
.modal::backdrop{background:rgba(6,12,22,.64);backdrop-filter:blur(3px)}
.modal[open]{animation:modal-in .22s cubic-bezier(.2,.7,.3,1)}
@keyframes modal-in{from{opacity:0;transform:translateY(10px) scale(.985)}to{opacity:1;transform:none}}
@media (prefers-reduced-motion: reduce){.modal[open]{animation:none}}
.modal h3{color:var(--paper);margin-top:0}
.modal h4{color:var(--mint);text-transform:uppercase;letter-spacing:.08em;font-size:.78rem;margin:22px 0 10px}
.modal p, .modal li{color:var(--ice);font-size:.96rem;line-height:1.6}
.modal .kicker{color:var(--mint)}
.modal .check-list li{color:var(--ice)}
.modal-x{position:absolute;top:14px;right:14px;width:34px;height:34px;display:grid;place-items:center;background:none;border:1px solid var(--line-dark,#22304f);border-radius:9px;color:inherit;cursor:pointer}
.modal-x:hover{border-color:var(--mint,#4ea1ff)}
.modal .table-scroll{margin-top:8px}
.modal .kpi-table th{background:var(--navy)}
.morelink{display:inline-flex;align-items:center;gap:6px;background:none;border:none;color:var(--mint,#5ce0b8);font:inherit;font-weight:700;cursor:pointer;padding:8px 0;min-height:44px}
.morelink:hover{text-decoration:underline}
.section.alt .morelink{color:var(--teal)}
.section.alt .morelink:hover{color:var(--teal)}

/* ---------- sections ---------- */
.section { padding: clamp(72px, 11vw, 150px) 0; }
.section.alt { background: var(--ice); }
.section.dark { background: var(--navy); color: var(--paper); }
.section.dark h2, .section.dark h3 { color: var(--paper); }
.section.dark p { color: var(--ice); }
.kicker {
  color: var(--teal); font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.1em; font-size: 0.8rem; margin-bottom: 12px;
}
.section.dark .kicker { color: var(--mint); }
.section-head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 60px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .sub { color: var(--muted); font-size: 1.08rem; }
.section.dark .section-head .sub { color: var(--ice); }

/* ---------- stat band ---------- */
.stat-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.stat {
  background: var(--card); border: 1px solid var(--line-dark);
  border-radius: var(--radius); padding: 28px 26px;
}
.stat .num { font-size: 2.5rem; font-weight: 800; color: var(--mint); line-height: 1; letter-spacing: -0.02em; }
.stat .lbl { color: var(--ice); font-weight: 700; margin-top: 10px; }
.stat .why { color: var(--muted); font-size: 0.9rem; margin-top: 6px; }

/* ---------- cards ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
/* let grid columns shrink below their content min-width so wide tables/media scroll
   inside .table-scroll instead of overflowing the page (fixes mobile horizontal scroll) */
.grid-2 > *, .grid-3 > *, .grid-4 > *, .hero-grid > *, .split > * { min-width: 0; }
.card {
  background: #fff; border: 1px solid var(--line-light);
  border-radius: var(--radius); padding: 26px; box-shadow: 0 6px 24px -16px rgba(11,37,64,0.25);
}
.section.dark .card, .card.on-dark {
  background: var(--card); border-color: var(--line-dark); color: var(--ice);
}
.card.on-dark h3, .section.dark .card h3 { color: var(--paper); }
/* filled monochrome teal badge: white glyph knocked out of a solid teal disc */
.card .icon {
  width: 44px; height: 44px; border-radius: 50%; margin-bottom: 16px;
  background: var(--teal);
  border: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.section.dark .card .icon { background: var(--teal); color: #fff; }
.card .icon svg { width: 24px; height: 24px; display: block; }
.card .icon svg [stroke] { stroke: #fff; }
.card .icon svg [fill]:not([fill="none"]) { fill: #fff; }
.card p:last-child { margin-bottom: 0; }
.card .more { font-weight: 700; font-size: 0.92rem; }

/* module grid cards */
a.mod-card { display: block; color: inherit; transition: transform 0.15s ease, box-shadow 0.15s ease; }
a.mod-card:hover { text-decoration: none; transform: translateY(-3px); box-shadow: var(--shadow-md); }
a.mod-card .more { color: var(--teal); }
a.mod-card:hover .more { color: var(--mint); }
.mod-num { color: var(--muted); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; }

/* ---------- pill / badge ---------- */
.pill {
  display: inline-block; background: var(--mint-soft); color: var(--teal);
  border: 1px solid rgba(10, 138, 131, 0.3); border-radius: 999px;
  font-size: 0.78rem; font-weight: 700; padding: 4px 12px; margin: 0 6px 8px 0;
}
.section.dark .pill { color: var(--mint); }

/* ---------- KPI table ---------- */
.kpi-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: 0 6px 24px -16px rgba(11,37,64,0.25); }
.kpi-table th, .kpi-table td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--line-light); font-size: 0.95rem; vertical-align: top; }
.kpi-table th { background: var(--navy); color: var(--ice); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; }
.kpi-table tr:last-child td { border-bottom: 0; }
.kpi-table td.target { font-weight: 800; color: var(--teal); white-space: nowrap; }
.table-scroll { overflow-x: auto; border-radius: var(--radius); }

/* ---------- compare table ---------- */
.cmp-table { width: 100%; border-collapse: collapse; background: var(--card); border-radius: var(--radius); overflow: hidden; }
.cmp-table th, .cmp-table td { padding: 16px 18px; border-bottom: 1px solid var(--line-dark); text-align: left; font-size: 0.93rem; vertical-align: top; }
.cmp-table thead th { background: rgba(221,235,233,0.06); color: var(--paper); font-size: 0.85rem; }
.cmp-table td { color: var(--ice); }
.cmp-table td:first-child { font-weight: 700; color: var(--paper); white-space: nowrap; }
.cmp-table tr:last-child td { border-bottom: 0; }
.cmp-table .us { color: var(--mint); font-weight: 700; }
.cmp-table .flag { color: #e8a0ae; }

/* ---------- compact ranking teaser (homepage) ---------- */
.rank-teaser {
  background: var(--card); border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg); padding: clamp(20px, 3vw, 30px);
  box-shadow: var(--shadow-md); margin-bottom: 30px;
}
.rank-teaser-lead { color: var(--ice); font-weight: 600; margin: 0 0 16px; }
.rank-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.rank-list li {
  display: grid; grid-template-columns: 22px minmax(96px, 150px) 1fr auto;
  align-items: center; gap: 12px;
}
.rank-list .rk { color: var(--muted); font-weight: 800; font-size: 0.82rem; text-align: right; }
.rank-list .vn { color: var(--ice); font-weight: 700; font-size: 0.95rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rank-list .bar { height: 9px; background: rgba(221,235,233,0.08); border-radius: 999px; overflow: hidden; }
.rank-list .bar i { display: block; height: 100%; background: var(--card-2); border-radius: 999px; }
.rank-list .sv { color: var(--muted); font-weight: 800; font-size: 0.85rem; font-variant-numeric: tabular-nums; min-width: 34px; text-align: right; }
.rank-list li.us .vn { color: var(--mint); }
.rank-list li.us .rk { color: var(--mint); }
.rank-list li.us .bar i { background: linear-gradient(90deg, var(--teal), var(--mint)); }
.rank-list li.us .sv { color: var(--mint); }
.rank-teaser-cta { margin: 18px 0 0; }
.rank-teaser-cta .more { color: var(--mint); font-weight: 700; }
@media (max-width: 480px) {
  .rank-list li { grid-template-columns: 18px minmax(80px,1fr) auto; }
  .rank-list .bar { display: none; }
}

/* ---------- workflow steps ---------- */
.steps { counter-reset: step; display: grid; gap: 18px; }
.step {
  background: #fff; border: 1px solid var(--line-light); border-radius: var(--radius);
  padding: 22px 24px 22px 74px; position: relative;
}
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 22px; top: 22px;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--navy); color: var(--mint); font-weight: 800;
  display: flex; align-items: center; justify-content: center; font-size: 0.95rem;
}
.step h3 { margin-bottom: 6px; font-size: 1.05rem; }
.step p { margin: 0; color: var(--muted); font-size: 0.96rem; }

/* ---------- persona strip ---------- */
.persona { border-left: 4px solid var(--mint); }
.persona .role { color: var(--teal); font-weight: 800; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 8px; }

/* ---------- split layout ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.rev > .media { order: -1; }

/* ---------- quote ---------- */
.bigquote {
  border-left: 5px solid var(--mint); background: #fff;
  padding: 28px 32px; border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.25rem; font-weight: 600; color: var(--ink);
  box-shadow: 0 6px 24px -16px rgba(11,37,64,0.25); margin: 0;
}
.section.dark .bigquote { background: var(--card); color: var(--paper); }
.bigquote footer { font-size: 0.88rem; color: var(--muted); font-weight: 500; margin-top: 12px; }

/* ---------- pricing ---------- */
.price-card {
  background: var(--card); border: 1.5px solid rgba(2,195,154,0.4);
  border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg);
}
.price-num { font-size: 3rem; font-weight: 800; color: var(--paper); letter-spacing: -0.02em; line-height: 1.05; }
.price-num .per { font-size: 1rem; color: var(--muted); font-weight: 600; }
.price-plus { color: var(--mint); font-weight: 800; font-size: 1.3rem; margin: 12px 0; }
.check-list { list-style: none; padding: 0; margin: 22px 0 0; }
.check-list li { padding: 7px 0 7px 30px; position: relative; color: var(--ice); }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 7px;
  color: var(--mint); font-weight: 900;
}
.light .check-list li { color: var(--ink); }
/* .alt sections use --ice as their background, so check-list text must be dark there */
.section.alt .check-list li { color: var(--ink); }
/* ...but a dark price-card inside an .alt section needs light text again */
.section.alt .price-card .check-list li { color: var(--ice); }

/* ---------- waitlist form ---------- */
.waitlist {
  background: var(--card); border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg);
}
.waitlist label { display: block; font-weight: 700; font-size: 0.88rem; color: var(--ice); margin: 16px 0 6px; }
.waitlist input, .waitlist select {
  width: 100%; padding: 12px 14px; border-radius: 10px; font: inherit;
  background: rgba(221,235,233,0.07); border: 1px solid var(--line-dark); color: var(--paper);
}
.waitlist input::placeholder { color: var(--muted); }
.waitlist input:focus, .waitlist select:focus { outline: 2px solid var(--mint); border-color: transparent; }
.waitlist select option { color: var(--ink); }
.waitlist .btn { width: 100%; margin-top: 24px; }
.form-note { color: var(--muted); font-size: 0.82rem; margin-top: 14px; }

/* ---------- vignettes (inline SVG mockups) ---------- */
.vignette {
  background: var(--navy); border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden;
}
.vignette svg { display: block; width: 100%; height: auto; }

/* ---------- footer ---------- */
.footer { background: var(--navy); color: var(--ice); padding: 64px 0 40px; border-top: 1px solid var(--line-dark); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer h4 { color: var(--paper); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 9px; }
.footer a { color: var(--ice); font-size: 0.93rem; }
.footer a:hover { color: var(--mint); }
.footer .blurb { color: var(--muted); font-size: 0.92rem; max-width: 320px; }
.footer-bottom {
  border-top: 1px solid var(--line-dark); padding-top: 24px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: var(--muted); font-size: 0.82rem;
}

/* ---------- module page hero ---------- */
.mod-hero { padding: 72px 0 80px; }
.mod-hero .crumb { color: var(--muted); font-size: 0.88rem; margin-bottom: 18px; }
.mod-hero .crumb a { color: var(--mint); }

/* prev/next module nav */
.mod-pager { display: flex; justify-content: space-between; gap: 16px; }
.mod-pager a {
  flex: 1; background: #fff; border: 1px solid var(--line-light); border-radius: var(--radius);
  padding: 18px 22px; color: var(--ink); font-weight: 700;
}
.mod-pager a:hover { text-decoration: none; border-color: var(--teal); color: var(--teal); }
.mod-pager .dir { display: block; color: var(--muted); font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 4px; }
.mod-pager a.next { text-align: right; }

/* ---------- callout ---------- */
.callout {
  background: var(--mint-soft); border: 1px solid rgba(10,138,131,0.3);
  border-radius: var(--radius); padding: 20px 24px; margin: 24px 0;
}
.callout strong { color: var(--teal); }
.section.dark .callout strong { color: var(--mint); }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .split { grid-template-columns: 1fr; gap: 40px; }
  .split.rev > .media { order: 0; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .stat-band { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links {
    display: none; position: absolute; top: 64px; left: 0; right: 0;
    background: var(--navy-2); border-bottom: 1px solid var(--line-dark);
    flex-direction: column; align-items: flex-start; padding: 18px 24px; gap: 16px;
  }
  .nav.open .nav-links { display: flex; }
  .nav-burger { display: block; }
  .drop-panel { position: static; transform: none; width: 100%; grid-template-columns: 1fr; box-shadow: none; }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .hero { padding: 56px 0 64px; }
  .mod-pager { flex-direction: column; }
  .modal { width: min(94vw, 560px); }
}
