/* LOCAL DRAFT — not published. Pricing pending final sign-off. */
/* CeZo Hospice Quality — marketing stylesheet · "modern premium SaaS" redesign
   ── Design tokens ──────────────────────────────────────────────────────────
   navy-950 #0b2833 (hero/footer) · navy-900 #0f3d4c (brand) · navy-800 #155165
   ink #1f2e35 body (13.4:1 on bg) · muted #51626b (6.1:1 bg / 6.4:1 white)
   bg #fbfaf7 · surface #fff · alt #f4f0e8 · border #e7e2d8
   accent #a4551a links + CTA (5.2:1 on bg · white-on-accent 5.4:1) · hover #8a4715
   amber #f2b076 kickers on dark (8.2:1 on navy-950 · 6.3:1 on navy-900)
   success #2e7d4f check icons (5.0:1 on white — icon, 3:1 required)
   Radius 10/14/20/999 · layered soft shadows · system fonts · no external requests */

:root {
  --navy-950: #0b2833;
  --navy-900: #0f3d4c;
  --navy-800: #155165;
  --ink: #1f2e35;
  --muted: #51626b;
  --bg: #fbfaf7;
  --surface: #ffffff;
  --alt: #f4f0e8;
  --border: #e7e2d8;
  --accent: #a4551a;
  --accent-hover: #8a4715;
  --amber: #f2b076;
  --success: #2e7d4f;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(11, 40, 51, 0.05), 0 2px 8px rgba(11, 40, 51, 0.06);
  --shadow-md: 0 2px 4px rgba(11, 40, 51, 0.06), 0 12px 32px rgba(11, 40, 51, 0.12);
  --max: 1120px;
}

* { box-sizing: border-box; }

html { font-size: 18px; }

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

[id] { scroll-margin-top: 5.5rem; }

/* ---------- Focus (dark contexts get the amber ring) ---------- */

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--accent-hover);
  outline-offset: 2px;
  border-radius: 4px;
}

.site-header :focus-visible,
.hero :focus-visible,
.page-hero :focus-visible,
.banner :focus-visible,
.section-dark :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--amber);
}

/* ---------- Sticky header / nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 40, 51, 0.9);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

.brand {
  color: #fff;
  text-decoration: none;
  font-weight: 750;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.brand span { font-weight: 400; opacity: 0.9; }

.site-nav { margin-left: auto; }

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 0.15rem;
  margin: 0;
  padding: 0;
}

.site-nav a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.94rem;
  transition: background 0.15s ease;
}

.site-nav a:hover { background: rgba(255, 255, 255, 0.12); }

.site-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.16);
  font-weight: 700;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-left: auto;
}

.site-nav + .nav-actions { margin-left: 0; }

.nav-cta {
  padding: 0.5rem 1.05rem;
  font-size: 0.92rem;
}

.nav-btn {
  display: none;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  font: inherit;
  font-size: 0.92rem;
  padding: 0.42rem 0.9rem;
  cursor: pointer;
}

/* ---------- Hero (home) ---------- */

.hero {
  background:
    radial-gradient(52rem 26rem at 85% -10%, rgba(242, 176, 118, 0.13), transparent 60%),
    radial-gradient(40rem 24rem at -5% 108%, rgba(21, 81, 101, 0.6), transparent 62%),
    linear-gradient(180deg, var(--navy-950), var(--navy-900));
  color: #fff;
  text-align: center;
  padding: clamp(4rem, 8vw, 6.5rem) 0 clamp(3.25rem, 6vw, 5rem);
}

.hero-pill {
  display: inline-block;
  margin: 0 0 1.5rem;
  padding: 0.35rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #dce7ec; /* 8.1:1 on the navy field */
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: clamp(2.4rem, 1.55rem + 3.4vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.022em;
  font-weight: 800;
  margin: 0 auto 1.25rem;
  max-width: 24ch;
  text-wrap: balance;
}

.hero .lede {
  font-size: 1.18rem;
  line-height: 1.65;
  max-width: 60ch;
  margin: 0 auto 2rem;
  color: #c3d2d9; /* 9.9:1 on navy-950, 7.6:1 on navy-900 */
}

.hero .cta-row { justify-content: center; }

/* Product-frame mockup (pure CSS, decorative, aria-hidden) */

.hero-visual {
  max-width: 56rem;
  margin: clamp(2.5rem, 5vw, 3.75rem) auto 0;
}

.app-frame {
  position: relative;
  display: grid;
  grid-template-columns: 170px 1fr;
  min-height: 320px;
  padding-top: 2.4rem;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(4, 16, 21, 0.5);
}

/* browser chrome bar + traffic-light dots */
.app-frame::before,
figure.shot::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2.4rem;
  background-color: #edebe5;
  background-image:
    radial-gradient(circle 5px at 22px 50%, #d3cfc4 98%, transparent),
    radial-gradient(circle 5px at 42px 50%, #d3cfc4 98%, transparent),
    radial-gradient(circle 5px at 62px 50%, #d3cfc4 98%, transparent);
  border-bottom: 1px solid #e0dcd2;
}

/* address pill */
.app-frame::after,
figure.shot::after {
  content: "";
  position: absolute;
  top: 0.62rem;
  left: 30%;
  width: 40%;
  height: 1.15rem;
  border-radius: 999px;
  background: #fbfaf7;
  border: 1px solid #e0dcd2;
}

.app-side {
  background: #f7f5f0;
  border-right: 1px solid #ece8de;
  padding: 1.4rem 1.1rem;
  background-image: repeating-linear-gradient(180deg, #e4e0d5 0 12px, transparent 12px 36px);
  background-clip: content-box;
}

.app-main {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: 1.3rem;
}

.app-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem;
  background: #fff;
  border: 1px solid #ece8de;
  border-radius: 12px;
}

.stat::before {
  content: "";
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: conic-gradient(var(--ring) var(--val), #e8e4da 0);
  -webkit-mask: radial-gradient(farthest-side, transparent 60%, #000 61%);
  mask: radial-gradient(farthest-side, transparent 60%, #000 61%);
}

.stat::after {
  content: "";
  flex: 1;
  height: 10px;
  border-radius: 999px;
  background: #ece9df;
}

.stat.g1 { --ring: #2e7d4f; --val: 78%; }
.stat.g2 { --ring: #c96f2e; --val: 55%; }
.stat.g3 { --ring: #0f3d4c; --val: 88%; }

.app-rows {
  flex: 1;
  min-height: 7.5rem;
  padding: 1rem;
  border: 1px solid #ece8de;
  border-radius: 12px;
  background-image: repeating-linear-gradient(180deg, #f0ede5 0 12px, transparent 12px 30px);
  background-clip: content-box;
}

/* Hero screenshot: real product shot, floated + gently tilted on the dark field */

.hero-shot {
  margin: 0;
  transform: rotate(-1.4deg);
  box-shadow: 0 32px 72px rgba(4, 16, 21, 0.55);
  border-color: rgba(255, 255, 255, 0.16);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Source PNG carries empty whitespace below the content — frame just the dashboard */
.hero-shot img {
  max-height: 30rem;
  object-fit: cover;
  object-position: top center;
}

@media (hover: hover) {
  .hero-shot:hover {
    transform: rotate(0deg) translateY(-4px);
    box-shadow: 0 40px 88px rgba(4, 16, 21, 0.6);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-shot { transform: none; }
}

@media (max-width: 759px) {
  .hero-shot { transform: none; }
}

/* ---------- Page hero (sub-pages) ---------- */

.page-hero {
  background:
    radial-gradient(44rem 20rem at 90% -30%, rgba(242, 176, 118, 0.12), transparent 60%),
    linear-gradient(180deg, var(--navy-950), var(--navy-900));
  color: #fff;
  padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(2.75rem, 5vw, 4rem);
}

.page-hero h1 {
  font-size: clamp(2.1rem, 1.5rem + 2.2vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 0 0 0.75rem;
  max-width: 26ch;
  text-wrap: balance;
}

.page-hero p {
  max-width: 62ch;
  margin: 0;
  color: #c3d2d9;
  font-size: 1.12rem;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  border-radius: var(--r-sm);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  transition: background 0.15s ease, border-color 0.15s ease,
    transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-lg { padding: 0.9rem 1.9rem; font-size: 1.05rem; }

.btn-primary {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
  box-shadow: 0 2px 8px rgba(164, 85, 26, 0.3);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(164, 85, 26, 0.35);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.65);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--navy-900);
  color: #fff;
  border: 2px solid var(--navy-900);
}

.btn-dark:hover {
  background: var(--navy-800);
  border-color: var(--navy-800);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.cta-row { display: flex; gap: 0.9rem; flex-wrap: wrap; }

/* ---------- Sections & typography ---------- */

main > section { padding: clamp(3.25rem, 3vw + 2rem, 5.5rem) 0; }

main h2 {
  font-size: clamp(1.65rem, 1.3rem + 1.6vw, 2.4rem);
  line-height: 1.18;
  letter-spacing: -0.017em;
  font-weight: 750;
  color: var(--navy-900);
  margin: 0 0 1rem;
  text-wrap: balance;
}

main h3 {
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--navy-900);
  margin: 1.5rem 0 0.5rem;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 750;
  color: var(--accent);
  margin: 0 0 0.6rem;
}

.section-alt { background: var(--alt); }

/* Body links — brand accent, never browser blue. 5.2:1 on bg. */
main a:not(.btn) {
  color: var(--accent);
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

main a:not(.btn):hover { color: var(--accent-hover); }

.measure { max-width: 66ch; }

.muted { color: var(--muted); }

/* Split layout: heading rail left, content right (sub-pages) */

.split { display: grid; gap: 1.25rem 3.5rem; align-items: start; }

.split-head .kicker { margin-bottom: 0.5rem; }
.split-head h2 { margin-bottom: 0; }
.split-body > p:first-child { margin-top: 0; }

@media (min-width: 900px) {
  .split { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.35fr); }
}

/* ---------- Cards ---------- */

.card-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 2rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

@media (hover: hover) {
  .card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
}

.card h3 { margin-top: 0; }

.card .tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--navy-900); /* 9.9:1 on the tint */
  background: #e3edf1;
  border-radius: 999px;
  padding: 0.2rem 0.8rem;
  margin-bottom: 0.9rem;
}

/* ---------- How-it-works steps ---------- */

ol.steps {
  list-style: none;
  counter-reset: step;
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin: 2.5rem 0 0;
  padding: 0;
}

ol.steps li {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 2.1rem 1.75rem 1.6rem;
  box-shadow: var(--shadow-sm);
}

ol.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -1.15rem;
  left: 1.5rem;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  background: var(--navy-900);
  color: #fff; /* 11.7:1 */
  font-weight: 750;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(11, 40, 51, 0.25);
}

ol.steps h3 { margin: 0 0 0.4rem; }
ol.steps p { margin: 0; }

/* ---------- Banner (CTA panel) ---------- */

.banner {
  background:
    radial-gradient(36rem 18rem at 90% -30%, rgba(242, 176, 118, 0.16), transparent 60%),
    linear-gradient(160deg, var(--navy-900), var(--navy-950));
  color: #fff;
  border-radius: var(--r-lg);
  padding: clamp(2.25rem, 4vw, 3.5rem);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.banner h2 { color: #fff; }

.banner .kicker { color: var(--amber); } /* 8.2:1 on navy-950 */

.banner p {
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
  color: #c3d2d9;
}

.banner .btn-primary { margin-top: 0.75rem; }

/* ---------- Feature sections (Features page) ---------- */

.feature-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3.75rem);
  align-items: center;
}

@media (min-width: 900px) {
  .feature-grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); }
  .feature-alt .feature-grid figure.shot { order: -1; }
}

.feature-copy > h2 { margin-top: 0; }
.feature-copy > p:last-of-type { margin-bottom: 0; }

/* ---------- Product-frame figures (screenshot placeholders) ---------- */

figure.shot {
  position: relative;
  margin: 2rem 0 0;
  padding-top: 2.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.feature-grid figure.shot { margin-top: 0; }

figure.shot p {
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 1.5rem;
  text-align: center;
  color: var(--muted); /* 6.2:1 on the gradient's darkest stop */
  font-weight: 600;
  background: linear-gradient(180deg, #fdfcfa, #f5f2ea);
}

figure.shot img {
  display: block;
  width: 100%;
  height: auto;
}

figure.shot figcaption {
  padding: 0.7rem 1.25rem;
  border-top: 1px solid var(--border);
  background: var(--bg);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--muted);
}

/* ---------- Feature list checks ---------- */

ul.checks {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

ul.checks li {
  padding-left: 2.1rem;
  position: relative;
  margin-bottom: 0.7rem;
}

ul.checks li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0.22em;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: #e3f0e8;
  color: var(--success); /* icon — 4.4:1 on tint, >3:1 required */
  font-size: 0.8rem;
  font-weight: 750;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Dark section (security stack) ---------- */

.section-dark {
  background: linear-gradient(180deg, var(--navy-900), var(--navy-950));
  color: #c6d4da; /* 7.7:1 on navy-900 */
}

.section-dark h2 { color: #fff; }

.section-dark .kicker { color: var(--amber); }

.section-dark strong { color: #fff; }

.section-dark ul.checks {
  display: grid;
  gap: 0.9rem 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-top: 1.75rem;
}

.section-dark ul.checks li { margin-bottom: 0; }

.section-dark ul.checks li::before {
  background: rgba(255, 255, 255, 0.12);
  color: #7fd4a3;
}

/* ---------- Pricing plans ---------- */

.plan-note { color: var(--muted); max-width: 62ch; margin-top: 0; }

.plan-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-top: 2rem;
  max-width: 60rem;
}

.plan {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.plan-featured {
  border: 2px solid var(--navy-900);
  box-shadow: var(--shadow-md);
}

.plan-name {
  font-size: 1.35rem;
  font-weight: 750;
  letter-spacing: -0.01em;
  color: var(--navy-900);
  margin: 0 0 1rem;
}

.plan-tier {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  font-weight: 750;
  color: var(--muted);
  margin: 0;
}

.plan-price {
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--navy-900);
  margin: 0 0 0.25rem;
}

.plan-price span {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--muted);
}

.plan-local {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0 0 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.plan-desc { font-size: 0.97rem; margin: 0; flex: 1; }

.plan .btn { margin-top: 1.5rem; align-self: flex-start; }

.badge {
  display: inline-block;
  background: var(--accent);
  color: #fff; /* 5.4:1 */
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 999px;
  padding: 0.18rem 0.7rem;
  margin-left: 0.5rem;
  vertical-align: middle;
  white-space: nowrap;
}

/* Add-ons */

.addon-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-top: 1.25rem;
  max-width: 60rem;
}

.addon {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow-sm);
}

.addon-name {
  font-weight: 750;
  color: var(--navy-900);
  margin: 0 0 0.35rem;
}

.addon-price {
  color: var(--accent); /* 5.4:1 on white */
  font-weight: 750;
  margin-left: 0.4rem;
  white-space: nowrap;
}

.addon p:last-child { margin-bottom: 0; }

/* Founding-member callout */

.callout {
  background: linear-gradient(180deg, #fdf7ef, #fbf1e3);
  border: 1px solid #ecd9c4;
  border-left: 4px solid var(--accent);
  border-radius: var(--r-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-sm);
}

.callout h2, .callout h3 { margin-top: 0; }

.section-tight { padding-top: 0 !important; }

.fineprint-title { font-size: 1rem !important; color: var(--muted) !important; }

.fine-print {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 1.25rem;
  max-width: 72ch;
}

/* ---------- Contact ---------- */

.contact-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  max-width: 640px;
  box-shadow: var(--shadow-md);
}

.contact-box > p:first-child { margin-top: 0; }

.placeholder-block {
  border: 2px dashed #d9cbb6;
  border-radius: var(--r-md);
  background: #fdf8f1;
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--muted);
  margin-top: 1.5rem;
  max-width: 640px;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy-950);
  color: #b8c7ce; /* 8.9:1 */
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
  padding: 2.75rem 0;
  font-size: 0.92rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-brand {
  color: #fff;
  font-weight: 750;
  font-size: 1.05rem;
  margin: 0 0 0.6rem;
}

.footer-brand span { font-weight: 400; opacity: 0.9; }

.footer-disclaimer { margin: 0; max-width: 56ch; }

.footer-copy { margin: 0; }

.site-footer a { color: #fff; }

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
  .btn:hover, .card:hover { transform: none !important; }
}

/* ---------- Mobile ---------- */

@media (max-width: 859px) {
  .nav-btn { display: inline-block; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-left: 0;
    background: var(--navy-950);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 16px 32px rgba(4, 16, 21, 0.35);
  }

  .site-nav.open { display: block; }

  .site-nav ul { flex-direction: column; gap: 0; padding: 0.4rem 0.75rem 0.9rem; }

  .site-nav a { padding: 0.75rem 0.85rem; border-radius: var(--r-sm); }
}

@media (max-width: 759px) {
  html { font-size: 17px; }

  .cta-row .btn { width: 100%; text-align: center; }

  .app-frame { grid-template-columns: 1fr; min-height: 260px; }

  .app-side { display: none; }

  .app-stats { grid-template-columns: 1fr 1fr; }

  .stat.g3 { display: none; }

  .plan .btn { align-self: stretch; text-align: center; }
}

@media (max-width: 419px) {
  .nav-cta { display: none; }
}
