/* ─── Self-hosted fonts (no render-blocking 3rd-party request) ─── */
@font-face {
  font-family: 'Mona Sans';
  font-style: normal;
  font-display: swap;
  font-weight: 200 900;
  src: url('/fonts/mona-sans-var.woff2') format('woff2-variations');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url('/fonts/fraunces-var.woff2') format('woff2-variations');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-display: swap;
  font-weight: 100 900;
  src: url('/fonts/fraunces-var-italic.woff2') format('woff2-variations');
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url('/fonts/sora-700.woff2') format('woff2');
}

:root {
  --bg: #f6f7f9;
  --paper: #ffffff;
  --ink: #0f1b2d;
  --ink-2: #36425a;
  --muted: #5b6576;
  --line: #e2e6ec;
  --teal: #2563c9;
  --teal-deep: #1c4ea3;
  --teal-dark: #14233b;
  --teal-pale: #e8eef9;
  --teal-pale-2: #eef2f9;
  --cream: #dce8fb;
  --cream-deep: #b9d0f5;
  --cream-text: #1c4ea3;
  --coral: #d4503f;
  --mint: #d6e4fb;
 }
 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 html {
  scroll-behavior: smooth; overflow-x: hidden; width: 100%;
  scroll-padding-top: 86px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
 }
 body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Mona Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-variant-ligatures: no-common-ligatures no-discretionary-ligatures;
  font-feature-settings: "liga" 0, "dlig" 0;
 }
 h1, h2, h3 { font-family: 'Fraunces', Georgia, 'Times New Roman', serif; font-weight: 500; line-height: 1.08; letter-spacing: -0.02em; }
 a { color: inherit; text-decoration: none; }
 ::selection { background: var(--cream-deep); color: var(--teal-dark); }

 body::before {
  content: ''; position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
 }

 /* ─── NAV ─── */
 nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  width: 100%; box-sizing: border-box;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 40px;
  background: rgba(255,255,255,0.94);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 0 var(--paper), 0 2px 8px -2px rgba(15,27,45,0.06);
  transition: padding 0.3s, box-shadow 0.3s;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: padding;
 }
 nav.scrolled { padding: 12px 40px; box-shadow: 0 1px 0 0 var(--paper), 0 4px 14px -4px rgba(15,27,45,0.10); }
 .logo { display: flex; align-items: center; gap: 11px; }
 .logo-name {
  font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 700; font-size: 27px; letter-spacing: -0.02em;
  color: var(--ink); line-height: 1.15; display: inline-block;
  padding: 2px 0;
 }
 .wordmark {
  font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 700; letter-spacing: -0.02em; white-space: nowrap;
  color: var(--ink);
 }
 .wordmark span { color: var(--teal); }
 .sec-eyebrow .wordmark,
 .impact-title .wordmark,
 .compete-h .wordmark,
 .team-cred .wordmark,
 .early-list .wordmark,
 .tm .wordmark {
  text-transform: none;
  letter-spacing: -0.02em;
 }
 .foot-brand .logo-name { font-size: 29px; }
 .nav-links { display: flex; align-items: center; gap: 34px; }
 .nav-links a { font-size: 14.5px; color: var(--ink-2); font-weight: 500; transition: color 0.2s; }
 .nav-links a:hover { color: var(--teal-deep); }
 .nav-cta {
  background: var(--teal); color: var(--paper) !important;
  padding: 9px 18px; border-radius: 8px; font-size: 14px; font-weight: 600;
  transition: background 0.2s, transform 0.2s;
 }
 .nav-cta:hover { background: var(--teal-deep); transform: translateY(-1px); }
 .nav-toggle { display: none; background: none; border: none; cursor: pointer; }

 /* ─── HERO ─── */
 .hero {
  position: relative;
  padding: 210px 40px 60px;
  max-width: 1180px; margin: 0 auto;
  text-align: center;
  background: transparent;
  color: var(--ink);
 }
 .hero-shell {
  max-width: 980px; margin: 0 auto;
  display: block;
 }
 .hero-glow {
  position: absolute; top: 70px; left: 50%; transform: translateX(-50%);
  width: 820px; height: 440px; z-index: -1;
  background: radial-gradient(ellipse, rgba(37,99,201,0.10) 0%, transparent 68%);
  filter: blur(26px);
 }
 .eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--paper); border: 1px solid var(--line);
  padding: 7px 15px 7px 11px; border-radius: 99px;
  font-size: 12.5px; font-weight: 600; color: var(--teal-deep);
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(22,36,31,0.04);
 }
 .eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--teal);
  box-shadow: 0 0 0 3px var(--mint);
 }
 .hero h1 {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-size: clamp(42px, 6.6vw, 82px);
  letter-spacing: -0.035em; line-height: 1.04;
  margin-bottom: 24px; color: var(--ink);
 }
 .hero h1 em {
  display: inline; font-style: italic; font-weight: 400; color: var(--teal-deep);
  position: relative;
 }
 .hero h1 em::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0.08em;
  height: 0.1em; background: var(--cream-deep); z-index: -1; border-radius: 2px;
  display: block;
 }
 .hero-sub {
  font-family: 'Mona Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: clamp(16px, 1.7vw, 20px);
  color: var(--ink-2); max-width: 560px; margin: 0 auto 44px;
  letter-spacing: -0.01em; text-transform: none; line-height: 1.6;
 }
 .hero-copy {
  font-size: 17px; color: var(--ink-2); line-height: 1.6;
  max-width: 610px; margin: -24px auto 28px;
 }
 .hero-product {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 800; letter-spacing: 0.03em;
  color: var(--ink-2); text-transform: uppercase;
 }
 .hero-product svg { width: 24px; height: 24px; stroke: var(--teal); }
 .hero-product strong { color: var(--teal); }
 .hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
 .btn-primary {
  background: var(--teal); color: var(--paper);
  padding: 15px 30px; border-radius: 10px;
  font-size: 15.5px; font-weight: 600; cursor: pointer; border: none;
  font-family: inherit;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 22px rgba(37,99,201,0.24);
 }
 .btn-primary:hover { background: var(--teal-deep); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(37,99,201,0.32); }
 .btn-ghost {
  background: var(--paper); color: var(--ink);
  padding: 15px 28px; border-radius: 10px;
  font-size: 15.5px; font-weight: 600; cursor: pointer;
  border: 1px solid var(--line); font-family: inherit;
  transition: border-color 0.2s, transform 0.2s;
 }
 .btn-ghost:hover { border-color: var(--teal); transform: translateY(-2px); }
 .hero-note { margin-top: 22px; font-size: 13.5px; color: var(--muted); }

 /* ─── HERO MOCK ─── */
 .hero-mock {
  margin-top: 70px;
  max-width: 1060px; margin-left: auto; margin-right: auto;
  background: var(--paper);
  border: 1px solid var(--line); border-radius: 16px;
  box-shadow: 0 36px 80px -30px rgba(15,27,45,0.30);
  overflow: hidden;
  text-align: left;
 }
 .mock-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 13px 18px; border-bottom: 1px solid var(--line);
  background: var(--bg);
 }
 .mock-bar .d { width: 11px; height: 11px; border-radius: 50%; }
 .mock-bar .d:nth-child(1) { background: #e8a598; }
 .mock-bar .d:nth-child(2) { background: var(--cream-deep); }
 .mock-bar .d:nth-child(3) { background: var(--mint); }
 .mock-bar .url {
  margin-left: 14px; font-size: 12px; color: var(--muted);
  background: var(--paper); border: 1px solid var(--line);
  padding: 4px 14px; border-radius: 6px;
 }
 .mock-body { padding: 26px; }
 /* Fit-frame: keeps the dashboard's full desktop layout and scales it down to
    fit narrow screens, so the rep view and manager view look identical to the
    web version on mobile and stay fully visible (set by app.js). */
 .dash-fit { width: 100%; overflow: hidden; }
 .dash-fit > .app-preview,
 .dash-fit > .manager-dashboard { transform-origin: top left; }
 .mock-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
 .mock-eyebrow { font-size: 10px; letter-spacing: 0.16em; color: var(--muted); font-weight: 700; text-transform: uppercase; }
 .mock-title { font-family: 'Fraunces', Georgia, 'Times New Roman', serif; font-size: 25px; font-weight: 600; margin-top: 5px; }
 .mock-conf {
  background: var(--bg); border: 1px solid var(--line); border-radius: 9px;
  padding: 9px 15px; text-align: right;
 }
 .mock-conf .l { font-size: 10px; color: var(--muted); }
 .mock-conf .v { font-size: 19px; font-weight: 700; font-family: 'Mona Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; }
 .mock-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 18px; }
 .mock-stat { background: var(--bg); border: 1px solid var(--line); border-radius: 10px; padding: 13px 14px; }
 .mock-stat.warn { background: var(--cream); border-color: transparent; }
 .mock-stat .l { font-size: 10.5px; color: var(--muted); margin-bottom: 6px; }
 .mock-stat .v { font-size: 19px; font-weight: 700; letter-spacing: -0.02em; }
 .mock-stat .s { font-size: 10.5px; color: var(--muted); margin-top: 3px; }
 .mock-week { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
 .mock-day { border: 1px solid var(--line); border-radius: 10px; padding: 14px; }
 .mock-day.top { background: var(--cream); border-color: transparent; }
 .mock-day .dl { font-size: 9.5px; letter-spacing: 0.12em; color: var(--muted); font-weight: 700; }
 .mock-day .dn { font-size: 13px; font-weight: 700; margin: 6px 0 8px; line-height: 1.3; }
 .mock-day .di { font-size: 13px; font-weight: 700; color: var(--teal-deep); }
 .app-preview {
  display: grid; grid-template-columns: 120px minmax(0, 1fr);
  min-height: 430px; background: var(--paper);
 }
 .app-side {
  background: var(--teal-dark); color: #fff; padding: 24px 16px;
  display: flex; flex-direction: column; gap: 16px;
 }
 .app-brand {
  font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 18px; font-weight: 700; letter-spacing: -0.03em; margin-bottom: 4px;
  color: #fff;
 }
 .app-brand span { color: var(--teal); }
 .app-nav { display: flex; flex-direction: column; gap: 7px; }
 .app-nav-item {
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.72);
  border-radius: 8px; padding: 9px 10px;
 }
 .app-nav-item.active {
  color: #fff; background: rgba(255,255,255,0.12);
  box-shadow: inset 3px 0 0 var(--teal);
 }
 .app-main { padding: 24px; background: linear-gradient(180deg, #fbfcff 0%, var(--teal-pale-2) 100%); }
 .app-top {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  margin-bottom: 18px;
 }
 .app-greeting { font-size: 21px; font-weight: 800; letter-spacing: -0.03em; color: var(--ink); }
 .app-sub { font-size: 12px; color: var(--ink-2); margin-top: 2px; }
 .app-date {
  font-size: 11px; font-weight: 700; color: var(--ink-2);
  background: var(--paper); border: 1px solid var(--line); border-radius: 8px;
  padding: 7px 10px; white-space: nowrap;
 }
 .quota-grid {
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px;
  margin-bottom: 14px;
 }
 .quota-tile {
  background: var(--paper); border: 1px solid var(--line); border-radius: 9px;
  padding: 12px; min-height: 86px;
 }
 .quota-label {
  font-size: 9px; font-weight: 800; letter-spacing: 0.08em;
  color: var(--muted); text-transform: uppercase; margin-bottom: 8px;
 }
 .quota-value {
  font-size: 20px; line-height: 1; font-weight: 800; letter-spacing: -0.04em;
  color: #071b47;
 }
 .quota-note { font-size: 10px; color: var(--muted); margin-top: 5px; }
 .pace-ring {
  width: 52px; height: 52px; border-radius: 50%;
  background: conic-gradient(var(--teal) 0 87%, var(--teal-pale) 87% 100%);
  margin: -2px auto 4px; display: grid; place-items: center;
 }
 .pace-ring span {
  width: 40px; height: 40px; border-radius: 50%; background: var(--paper);
  display: grid; place-items: center; font-size: 13px; font-weight: 800; color: var(--teal-dark);
 }
 .app-panels { display: grid; grid-template-columns: 1.05fr 1.35fr; gap: 14px; }
 .app-panel {
  background: var(--paper); border: 1px solid var(--line); border-radius: 10px;
  padding: 16px;
 }
 .panel-title {
  font-size: 11px; font-weight: 800; letter-spacing: 0.04em;
  color: var(--teal-dark); text-transform: uppercase; margin-bottom: 14px;
 }
 .plan-list { display: flex; flex-direction: column; gap: 12px; }
 .plan-row {
  display: grid; grid-template-columns: 22px minmax(0, 1fr) auto; gap: 9px;
  align-items: start; border-bottom: 1px solid var(--line); padding-bottom: 10px;
 }
 .plan-row:last-child { border-bottom: none; padding-bottom: 0; }
 .plan-rank { font-size: 14px; font-weight: 800; color: var(--teal-dark); }
 .plan-name { font-size: 12px; font-weight: 800; color: var(--ink); line-height: 1.25; }
 .plan-detail { font-size: 10.5px; color: var(--muted); line-height: 1.35; margin-top: 3px; }
 .plan-value { font-size: 12px; font-weight: 800; color: var(--teal-deep); }
 .plan-total {
  display: flex; justify-content: space-between; margin-top: 12px; padding-top: 12px;
  border-top: 1px solid var(--line); font-size: 13px; font-weight: 800;
 }
 .chart-box { height: 150px; position: relative; margin-bottom: 18px; }
 .chart-grid {
  position: absolute; inset: 6px 0 24px 0;
  background-image: linear-gradient(to bottom, transparent calc(33.333% - 1px), var(--line) 33.333%, transparent calc(33.333% + 1px));
  background-size: 100% 33.333%;
 }
 .chart-line, .chart-line.projected {
  position: absolute; inset: 0; width: 100%; height: 100%;
 }
 .chart-line polyline {
  fill: none; stroke: var(--teal-deep); stroke-width: 3.5; stroke-linecap: round; stroke-linejoin: round;
 }
 .chart-line.projected polyline {
  stroke: var(--teal-deep); stroke-dasharray: 5 6; opacity: 0.82;
 }
 .chart-dot { fill: var(--teal); stroke: #fff; stroke-width: 3; }
 .chart-labels {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; justify-content: space-between;
  font-size: 9.5px; color: var(--muted); font-weight: 700;
 }
 .recover-row { display: grid; grid-template-columns: 92px 1fr; gap: 16px; align-items: center; }
 .donut {
  width: 78px; height: 78px; border-radius: 50%;
  background: conic-gradient(var(--teal-dark) 0 34%, var(--teal) 34% 56%, var(--teal-deep) 56% 78%, var(--cream-deep) 78% 100%);
  position: relative;
 }
 .donut::after {
  content: ''; position: absolute; inset: 18px; border-radius: 50%; background: var(--paper);
 }
 .recover-list { display: grid; gap: 7px; }
 .recover-item { display: flex; align-items: center; justify-content: space-between; gap: 8px; font-size: 10.5px; color: var(--ink-2); }
 .recover-item b { color: var(--teal-dark); }
 .recover-key { display: inline-flex; align-items: center; gap: 7px; }
 .recover-key::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }

 /* ─── Rep view: next-best-call spotlight + pace ─── */
 .app-top-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 7px; }
 .app-pace-pill {
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  font-size: 10px; font-weight: 800; color: var(--teal-deep);
  background: var(--teal-pale); border: 1px solid var(--cream-deep); border-radius: 99px; padding: 5px 10px;
 }
 .app-pace-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: #25b06a; box-shadow: 0 0 0 3px rgba(37,176,106,0.18); }

 .nextcall {
  display: grid; grid-template-columns: 1fr 170px;
  background: linear-gradient(125deg, var(--teal-dark) 0%, var(--teal-deep) 100%);
  border-radius: 13px; overflow: hidden; margin-bottom: 14px;
  box-shadow: 0 20px 44px -26px rgba(20,35,59,0.6);
 }
 .nc-main { padding: 16px 18px; }
 .nc-eyebrow { font-size: 9.5px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream-deep); }
 .nc-name { font-family: 'Fraunces', Georgia, 'Times New Roman', serif; font-size: 21px; font-weight: 600; color: #fff; margin: 5px 0 9px; letter-spacing: -0.01em; }
 .nc-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 11px; }
 .nc-chip { font-size: 9px; font-weight: 800; letter-spacing: 0.02em; text-transform: uppercase; color: #fff; background: rgba(255,255,255,0.14); border-radius: 99px; padding: 4px 9px; }
 .nc-chip.alt { background: var(--cream); color: var(--teal-dark); }
 .nc-play { font-size: 12px; line-height: 1.5; color: rgba(255,255,255,0.9); margin-bottom: 10px; }
 .nc-play b { color: #fff; font-weight: 800; }
 .nc-why { display: grid; grid-template-columns: 16px 1fr; gap: 8px; align-items: start; font-size: 10.5px; line-height: 1.45; color: rgba(255,255,255,0.64); }
 .nc-why svg { width: 13px; height: 13px; stroke: var(--cream-deep); fill: none; margin-top: 1px; }
 .nc-rail {
  background: rgba(255,255,255,0.06); border-left: 1px solid rgba(255,255,255,0.12);
  padding: 18px 16px; display: flex; flex-direction: column; justify-content: center;
 }
 .nc-rail-l { font-size: 9.5px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream-deep); }
 .nc-rail-v { font-size: 26px; font-weight: 800; color: #fff; letter-spacing: -0.02em; line-height: 1; margin-top: 3px; }
 .nc-cta { margin-top: 13px; font-size: 10.5px; font-weight: 800; color: var(--cream-deep); }

 .plan-tag { display: inline-block; font-size: 8px; font-weight: 800; letter-spacing: 0.03em; text-transform: uppercase; padding: 2px 6px; border-radius: 5px; vertical-align: middle; margin-left: 4px; }
 .plan-tag.cap { background: var(--cream); color: var(--teal-deep); }
 .plan-tag.disp { background: var(--teal-pale); color: var(--teal-deep); }
 .plan-tag.risk { background: rgba(212,80,63,0.13); color: var(--coral); }
 .plan-value.risk { color: var(--coral); }

 .rp-grid { display: grid; grid-template-columns: 1.45fr 1fr; gap: 14px; }
 .rp-aside { display: grid; gap: 14px; align-content: start; }
 .pace-card .pace-ring { margin: 0 auto; }
 .pace-wrap { display: grid; grid-template-columns: 52px 1fr; gap: 14px; align-items: center; }
 .pace-meta { display: grid; gap: 5px; }
 .pace-line { display: flex; justify-content: space-between; gap: 8px; font-size: 10.5px; color: var(--ink-2); }
 .pace-line b { color: var(--ink); font-weight: 800; }
 .pace-line.gap b { color: var(--coral); }
 .pace-spark { width: 100%; height: 44px; margin-top: 13px; display: block; }
 .pace-spark polyline { fill: none; stroke: var(--teal); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
 .pace-spark circle { fill: var(--teal); stroke: #fff; stroke-width: 2.5; }

 /* upside + at-risk cards */
 .big-pos { font-size: 23px; font-weight: 800; color: var(--teal); letter-spacing: -0.02em; line-height: 1; }
 .big-neg { font-size: 23px; font-weight: 800; color: var(--coral); letter-spacing: -0.02em; line-height: 1; }
 .big-sub { font-size: 10px; color: var(--muted); font-weight: 600; margin-top: 4px; }
 .panel-title.risk { color: var(--coral); }
 .split-bar { display: flex; height: 9px; border-radius: 99px; overflow: hidden; background: var(--teal-pale); margin-top: 12px; }
 .sb-seg { height: 100%; }
 .sb-seg.disp { width: 60%; background: var(--teal); }
 .sb-seg.cap { width: 40%; background: var(--teal-dark); }
 .split-legend { display: grid; gap: 6px; margin-top: 11px; font-size: 10.5px; color: var(--ink-2); }
 .split-legend > span { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
 .split-legend i { width: 9px; height: 9px; border-radius: 2px; display: inline-block; margin-right: 7px; vertical-align: middle; }
 .split-legend i.disp { background: var(--teal); }
 .split-legend i.cap { background: var(--teal-dark); }
 .split-legend b { color: var(--ink); font-weight: 800; }
 .risk-list { display: grid; gap: 7px; margin-top: 11px; }
 .risk-list > div { display: flex; align-items: center; justify-content: space-between; gap: 8px; font-size: 10.5px; color: var(--ink-2); }
 .risk-list b { color: var(--coral); font-weight: 800; }

 .manager-view { background: var(--bg); }
 .manager-shell {
  display: grid; grid-template-columns: 0.68fr 1.55fr; gap: 34px;
  align-items: center; margin-top: 54px;
 }
 .manager-copy {
  background: var(--paper); border: 1px solid var(--line); border-radius: 16px;
  padding: 36px; box-shadow: 0 22px 52px -36px rgba(15,27,45,0.26);
 }
 .manager-copy h3 { font-size: 29px; margin-bottom: 14px; }
 .manager-copy p { font-size: 15px; color: var(--ink-2); margin-bottom: 20px; }
 .manager-list { display: grid; gap: 13px; }
 .manager-list div {
  display: grid; grid-template-columns: 28px 1fr; gap: 12px;
  align-items: start; font-size: 14px; color: var(--ink-2);
 }
 .manager-list svg { width: 22px; height: 22px; stroke: var(--teal-deep); }
 .manager-dashboard {
  background: var(--paper); border: 1px solid var(--line); border-radius: 16px;
  padding: 0; box-shadow: 0 32px 72px -42px rgba(15,27,45,0.36);
  display: grid; grid-template-columns: 132px minmax(0, 1fr);
  overflow: hidden; min-height: 520px;
 }
 .mgr-side {
  background: var(--teal-dark); color: #fff; padding: 22px 14px;
 }
 .mgr-brand { font-size: 18px; margin-bottom: 22px; color: #fff; letter-spacing: -0.03em; }
 .mgr-brand span { color: var(--teal); }
 .mgr-tabs { display: grid; gap: 7px; }
 .mgr-tab {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 800; color: rgba(255,255,255,0.68);
  border-radius: 8px; padding: 9px 8px;
 }
 .mgr-tab svg { width: 15px; height: 15px; stroke: currentColor; }
 .mgr-tab.active { color: #fff; background: rgba(255,255,255,0.12); box-shadow: inset 3px 0 0 var(--cream-deep); }
 .mgr-main { padding: 22px; background: linear-gradient(180deg, #fbfcff 0%, var(--teal-pale-2) 100%); }
 .mgr-lower { display: grid; grid-template-columns: 1.25fr 0.85fr; gap: 14px; margin-top: 14px; }
 .mgr-chart { height: 190px; position: relative; }
 .mgr-chart svg { position: absolute; inset: 0; width: 100%; height: 100%; }
 .mgr-chart-grid {
  position: absolute; inset: 10px 0 28px;
  background-image: linear-gradient(to bottom, transparent calc(33.333% - 1px), var(--line) 33.333%, transparent calc(33.333% + 1px));
  background-size: 100% 33.333%;
 }
 .mgr-chart polyline { fill: none; stroke-width: 3.5; stroke-linecap: round; stroke-linejoin: round; }
 .mgr-chart .actual { stroke: var(--teal); }
 .mgr-chart .forecast { stroke: var(--teal-deep); stroke-dasharray: 6 6; }
 .mgr-chart circle { fill: var(--teal); stroke: #fff; stroke-width: 3; }
 .mgr-pie-wrap { display: grid; grid-template-columns: 92px 1fr; gap: 12px; align-items: center; }
 .mgr-pie {
  width: 86px; height: 86px; border-radius: 50%;
  background: conic-gradient(var(--teal-dark) 0 40%, var(--teal) 40% 66%, var(--teal-deep) 66% 84%, var(--cream-deep) 84% 100%);
  position: relative;
 }
 .mgr-pie::after { content: ""; position: absolute; inset: 20px; border-radius: 50%; background: var(--paper); }
 .mgr-legend { display: grid; gap: 7px; font-size: 11px; color: var(--ink-2); }
 .mgr-legend span { display: flex; justify-content: space-between; gap: 10px; }
 .mgr-legend i { width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 6px; background: var(--teal); }
 .mgr-legend span:nth-child(1) i { background: var(--teal-dark); }
 .mgr-legend span:nth-child(2) i { background: var(--teal); }
 .mgr-legend span:nth-child(3) i { background: var(--teal-deep); }
 .mgr-legend span:nth-child(4) i { background: var(--cream-deep); }
 .mgr-top {
  display: flex; justify-content: space-between; gap: 18px; align-items: flex-start;
  margin-bottom: 16px;
 }
 .mgr-kicker { font-size: 10px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
 .mgr-title { font-size: 22px; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; }
 .mgr-date {
  font-size: 11px; font-weight: 700; color: var(--ink-2);
  background: var(--bg); border: 1px solid var(--line); border-radius: 8px; padding: 7px 10px;
 }
 .mgr-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 14px; }
 .mgr-stat { background: var(--bg); border: 1px solid var(--line); border-radius: 10px; padding: 13px; }
 .mgr-stat .l { font-size: 9px; font-weight: 800; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px; }
 .mgr-stat .v { font-size: 20px; font-weight: 800; color: var(--teal-dark); line-height: 1; }
 .mgr-body { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 14px; }
 .mgr-panel { border: 1px solid var(--line); border-radius: 10px; padding: 15px; background: #fbfcff; }
 .mgr-panel-title { font-size: 11px; font-weight: 800; color: var(--teal-dark); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 12px; }
 .rep-row {
  display: grid; grid-template-columns: 1fr 70px 68px; gap: 10px;
  align-items: center; padding: 10px 0; border-bottom: 1px solid var(--line);
  font-size: 12px;
 }
 .rep-row:last-child { border-bottom: 0; }
 .rep-name { font-weight: 800; color: var(--ink); }
 .rep-risk { font-size: 10px; font-weight: 800; text-transform: uppercase; color: var(--muted); }
 .rep-risk.high { color: var(--coral); }
 .rep-risk.good { color: var(--teal-deep); }
 .rep-bar { height: 8px; background: var(--teal-pale); border-radius: 99px; overflow: hidden; }
 .rep-bar span { display: block; height: 100%; background: var(--teal); border-radius: inherit; }
 .rep-bar-88 span { width: 88%; }
 .rep-bar-74 span { width: 74%; }
 .rep-bar-61 span { width: 61%; }
 .rep-bar-53 span { width: 53%; }
 .mgr-action {
  display: grid; gap: 10px;
 }
 .mgr-action-followup { margin-top: 14px; }
 .mgr-action div {
  background: var(--paper); border: 1px solid var(--line); border-radius: 8px;
  padding: 11px; font-size: 12px; color: var(--ink-2);
 }
 .mgr-action b { display: block; color: var(--ink); margin-bottom: 2px; }

 /* ─── Manager command center (concept) ─── */
 .mgr-live {
  display: inline-flex; align-items: center; gap: 7px; white-space: nowrap;
  font-size: 10px; font-weight: 800; letter-spacing: 0.02em; color: var(--teal-deep);
  background: var(--teal-pale); border: 1px solid var(--cream-deep);
  border-radius: 99px; padding: 6px 11px;
 }
 .mgr-live .dot { width: 7px; height: 7px; border-radius: 50%; background: #25b06a; box-shadow: 0 0 0 3px rgba(37,176,106,0.18); }

 .mgr-insight {
  display: grid; grid-template-columns: 38px 1fr; gap: 13px; align-items: center;
  background: linear-gradient(120deg, var(--teal-dark) 0%, var(--teal-deep) 100%);
  border-radius: 12px; padding: 13px 15px; margin-bottom: 14px;
  box-shadow: 0 16px 34px -22px rgba(20,35,59,0.6);
 }
 .mgr-insight-ic { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.13); display: flex; align-items: center; justify-content: center; }
 .mgr-insight-ic svg { width: 19px; height: 19px; stroke: #fff; fill: none; }
 .mgr-insight-tx { font-size: 12px; line-height: 1.5; color: rgba(255,255,255,0.84); }
 .mgr-insight-tx b { color: #fff; font-weight: 800; }

 .mgr-stat .sub { font-size: 9px; color: var(--muted); margin-top: 5px; font-weight: 700; }
 .mgr-stat .v.up { color: var(--teal); }
 .mgr-stat .chip { display: inline-block; font-size: 8.5px; font-weight: 800; letter-spacing: 0.03em; padding: 3px 7px; border-radius: 99px; text-transform: uppercase; }
 .mgr-stat .chip.good { background: var(--teal-pale); color: var(--teal-deep); }

 .mgr-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 12px; margin-top: 12px; }
 .mgr-grid.even { grid-template-columns: 1.25fr 0.9fr; }

 .fc-top { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: 13px; }
 .fc-big { font-size: 22px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; line-height: 1; }
 .fc-big span { font-size: 11px; font-weight: 700; color: var(--muted); letter-spacing: 0; }
 .fc-of { font-size: 10px; color: var(--muted); font-weight: 700; white-space: nowrap; }
 .fc-bar { display: flex; height: 26px; border-radius: 7px; overflow: hidden; background: var(--teal-pale); }
 .fc-seg { height: 100%; }
 .fc-seg.s-commit { width: 81%; background: var(--teal-dark); }
 .fc-seg.s-recover { width: 6.7%; background: var(--teal); }
 .fc-seg.s-best { width: 2.5%; background: var(--cream-deep); }
 .fc-seg.s-gap { width: 9.8%; background: repeating-linear-gradient(45deg, rgba(212,80,63,0.10), rgba(212,80,63,0.10) 4px, rgba(212,80,63,0.22) 4px, rgba(212,80,63,0.22) 8px); border-left: 2px dashed var(--coral); }
 .fc-legend { display: grid; grid-template-columns: 1fr 1fr; gap: 7px 16px; margin-top: 13px; font-size: 10.5px; color: var(--ink-2); }
 .fc-legend > span { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
 .fc-legend i { width: 9px; height: 9px; border-radius: 2px; display: inline-block; margin-right: 7px; vertical-align: middle; }
 .fc-legend i.commit { background: var(--teal-dark); }
 .fc-legend i.recover { background: var(--teal); }
 .fc-legend i.best { background: var(--cream-deep); }
 .fc-legend i.gap { background: var(--coral); }
 .fc-legend b { color: var(--ink); font-weight: 800; }

 .move-list { display: grid; gap: 9px; }
 .move { display: grid; grid-template-columns: 22px 1fr auto; gap: 10px; align-items: start; background: var(--paper); border: 1px solid var(--line); border-radius: 9px; padding: 10px 11px; }
 .move-rank { width: 22px; height: 22px; border-radius: 6px; background: var(--teal-dark); color: #fff; font-size: 11px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
 .move-h { font-size: 11.5px; font-weight: 800; color: var(--ink); line-height: 1.25; }
 .move-d { font-size: 10px; color: var(--muted); margin-top: 3px; }
 .move-side { text-align: right; white-space: nowrap; }
 .move-val { font-size: 13px; font-weight: 800; color: var(--teal-deep); }
 .move-chip { display: inline-block; margin-top: 5px; font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; padding: 3px 6px; border-radius: 5px; }
 .move-chip.urgent { background: rgba(212,80,63,0.12); color: var(--coral); }
 .move-chip.good { background: var(--teal-pale); color: var(--teal-deep); }

 .mom-row { display: grid; grid-template-columns: 1fr 40px 38px 58px; gap: 9px; align-items: center; padding: 9px 0; border-bottom: 1px solid var(--line); }
 .mom-row:last-child { border-bottom: 0; }
 .mom-name { font-weight: 800; color: var(--ink); font-size: 11.5px; }
 .mom-bar { height: 7px; background: var(--teal-pale); border-radius: 99px; overflow: hidden; margin-top: 6px; }
 .mom-bar span { display: block; height: 100%; background: var(--teal); border-radius: inherit; }
 .mom-bar.high span { background: var(--coral); }
 .mom-bar.w88 span { width: 88%; }
 .mom-bar.w74 span { width: 74%; }
 .mom-bar.w63 span { width: 63%; }
 .mom-bar.w52 span { width: 52%; }
 .mom-pct { font-weight: 800; color: var(--ink-2); font-size: 11px; }
 .mom-tr { font-size: 10.5px; font-weight: 800; white-space: nowrap; }
 .mom-tr.up { color: var(--teal-deep); }
 .mom-tr.down { color: var(--coral); }
 .mom-risk { font-size: 8.5px; font-weight: 800; text-transform: uppercase; text-align: right; }
 .mom-risk.good { color: var(--teal-deep); }
 .mom-risk.watch { color: var(--cream-text); }
 .mom-risk.high { color: var(--coral); }

 .coach-callout { margin-top: 11px; background: var(--teal-pale); border: 1px solid var(--cream-deep); border-radius: 8px; padding: 10px 11px; font-size: 11px; line-height: 1.5; color: var(--ink-2); }
 .coach-callout b { display: block; color: var(--teal-deep); font-size: 9px; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 3px; }

 .fc-conf { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); }
 .fc-conf-track { position: relative; height: 8px; border-radius: 99px; background: var(--teal-pale); overflow: hidden; }
 .fc-conf-band { position: absolute; left: 30%; right: 22%; top: 0; bottom: 0; background: linear-gradient(90deg, var(--cream-deep), var(--teal)); border-radius: 99px; }
 .fc-conf-mark { position: absolute; left: 52%; top: -2px; width: 3px; height: 12px; background: var(--teal-dark); border-radius: 2px; }
 .fc-conf-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 10px; }
 .fc-conf-row > div { display: flex; flex-direction: column; gap: 2px; }
 .fc-conf-row .mid { align-items: center; }
 .fc-conf-row .hi { align-items: flex-end; }
 .fc-conf-row span { font-size: 8.5px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); }
 .fc-conf-row b { font-size: 12px; font-weight: 800; color: var(--ink); }
 .fc-conf-row .mid b { color: var(--teal-deep); }
 .fc-note { margin-top: 11px; font-size: 10px; color: var(--muted); font-weight: 600; }

 /* ─── LOGO STRIP ─── */
 .strip {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--paper);
  padding: 30px 40px;
 }
 .tagline-band {
  background: var(--teal-dark);
  padding: 64px 40px;
  text-align: center;
 }
 .tagline-band .tb-inner { max-width: 940px; margin: 0 auto; }
 .tagline-band .tb-line {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-size: 44px; font-weight: 500; letter-spacing: -0.02em;
  line-height: 1.15; color: #fff; margin: 0;
 }
 .tagline-band .tb-line .tb-accent { color: var(--cream-deep); font-style: italic; }
 .tagline-band .tb-sub {
  font-size: 14px; color: #9fb3ac; margin-top: 16px;
  letter-spacing: 0.02em;
 }
 @media (max-width: 640px) {
  .tagline-band { padding: 46px 24px; }
  .tagline-band .tb-line { font-size: 30px; }
 }
 .strip-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
 .strip-label { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 18px; }
 .strip-systems { display: flex; justify-content: center; gap: 38px; flex-wrap: wrap; }
 .strip-systems span { font-family: 'Fraunces', Georgia, 'Times New Roman', serif; font-size: 19px; color: var(--ink-2); font-weight: 500; opacity: 0.6; }

 /* ─── SECTION SHELL ─── */
 section { padding: 96px 40px; }
 .wrap { max-width: 1120px; margin: 0 auto; }
 .sec-eyebrow {
  font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--teal-deep); font-weight: 700; margin-bottom: 18px;
 }
 .sec-title { font-size: clamp(30px, 4vw, 46px); letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 22px; }
 .sec-title em { font-style: italic; font-weight: 400; color: var(--teal-deep); }
 .sec-intro { font-size: 17.5px; color: var(--ink-2); max-width: 560px; }

 /* ─── PROBLEM ─── */
 .problem { background: var(--paper); color: var(--ink); padding-top: 96px; }
 .problem .wrap { max-width: 1200px; }
 .problem .sec-eyebrow,
 .how .sec-eyebrow {
  text-align: center; color: var(--ink); font-size: 19px; letter-spacing: 0.08em;
  position: relative; display: flex; align-items: center; gap: 18px; justify-content: center;
 }
 .problem .sec-eyebrow::before,
 .problem .sec-eyebrow::after,
 .how .sec-eyebrow::before,
 .how .sec-eyebrow::after {
  content: ""; width: min(180px, 22vw); height: 2px; background: var(--cream-deep);
 }
 .problem .sec-title { display: none; }
 .problem .sec-intro { display: none; }
 .problem-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 34px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
 }
 .problem-card {
  background: var(--paper);
  border: 0; border-right: 1px solid var(--line);
  border-radius: 0; padding: 22px 22px 28px;
  text-align: center; min-height: 225px;
 }
 .problem-card:last-child { border-right: 0; }
 .problem-card .pc-num {
  display: none;
 }
 .problem-icon {
  width: 56px; height: 56px; margin: 0 auto 18px;
  display: grid; place-items: center; color: #071b47;
 }
 .problem-icon svg { width: 50px; height: 50px; stroke: currentColor; }
 .problem-card h3 {
  font-size: 15px; color: var(--ink-2); margin-bottom: 9px; line-height: 1.35;
  font-weight: 600;
 }
 .problem-card p { font-size: 14px; color: var(--ink-2); line-height: 1.45; }
 .problem-quote {
  margin-top: 0; padding: 36px 40px;
  background: var(--teal-dark);
  border-left: 0;
  border-radius: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px;
 }
 .problem-quote p {
  font-family: 'Mona Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: clamp(18px, 2vw, 23px);
  font-style: italic; color: #edf4fb; line-height: 1.35;
  border-right: 1px solid rgba(255,255,255,0.18); padding-right: 28px;
 }
 .problem-quote p:last-of-type { border-right: 0; }
 .problem-quote strong { color: #8fb8f6; font-weight: 600; }
 .problem-quote cite { display: none; }
 .problem-followup {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 34px; align-items: start;
  padding: 42px 0 0;
 }
 .solution-callout {
  margin: 0; max-width: none;
  background: var(--paper); border: 2px solid var(--teal-deep); border-radius: 10px;
  padding: 26px 30px; text-align: center;
  box-shadow: 0 18px 42px -24px rgba(0,0,0,0.32);
  position: relative; z-index: 2;
 }
 .solution-callout h3 {
  color: var(--ink); font-size: 26px; letter-spacing: -0.02em;
  margin-bottom: 8px;
 }
 .solution-callout .solution-label { color: var(--teal-deep); }
 .solution-callout h3 .wordmark { letter-spacing: -0.02em; text-transform: none; }
 .solution-callout p { font-size: 15px; color: var(--ink-2); margin-bottom: 22px; }
 .solution-mini {
  display: grid; grid-template-columns: 54px 1fr; gap: 16px; text-align: left;
  align-items: center; margin-top: 16px;
 }
 .solution-mini svg { width: 44px; height: 44px; stroke: var(--teal-deep); }
 .solution-mini b {
  display: block; color: var(--teal-deep); font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 2px;
 }
 .solution-mini span { display: block; font-size: 13px; color: var(--ink-2); line-height: 1.35; }
 .built-panel {
  margin: 0; max-width: none;
  padding: 26px 18px 0 6px;
 }
 .built-panel h3 {
  font-size: 26px; letter-spacing: -0.02em; color: var(--ink);
  text-transform: none; margin-bottom: 20px;
 }
 .built-list { display: grid; gap: 13px; }
 .built-item { display: grid; grid-template-columns: 34px 1fr; gap: 14px; align-items: center; color: var(--ink-2); font-size: 15px; }
 .built-item svg { width: 26px; height: 26px; stroke: var(--teal-deep); }

 /* ─── SOLUTION ─── */
 .sol-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 54px;
 }
 .sol-grid.three { grid-template-columns: repeat(3, 1fr); }
 .sol-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 14px; padding: 40px 36px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
 }
 .sol-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px -22px rgba(37,99,201,0.22);
  border-color: rgba(37,99,201,0.28);
 }
 .sol-card.feature { grid-column: span 2; display: flex; gap: 34px; align-items: center; }
 .sol-icon {
  width: 50px; height: 50px; border-radius: 12px;
  background: var(--teal-pale); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; flex-shrink: 0;
 }
 .sol-card.feature .sol-icon { margin-bottom: 0; width: 64px; height: 64px; }
 .sol-icon svg { width: 24px; height: 24px; stroke: var(--teal-deep); }
 .sol-card.feature .sol-icon svg { width: 30px; height: 30px; }
 .sol-card h3 { font-size: 22px; margin-bottom: 10px; }
 .sol-card p { font-size: 14.5px; color: var(--ink-2); }
 /* ─── prominent integration strip ─── */
 .int-strip {
  background: #f7fbff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 40px;
 }
 .int-inner {
  max-width: 1120px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
 }
 .int-label {
  font-size: 13px; font-weight: 800; color: var(--ink);
  letter-spacing: 0.12em; max-width: 280px; line-height: 1.4;
  text-transform: uppercase;
 }
 .int-systems {
  display: flex; flex-wrap: wrap; gap: 14px;
 }
 .int-sys {
  width: 70px; height: 58px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 8px; display: grid; place-items: center;
  color: #071b47;
  box-shadow: 0 14px 28px -22px rgba(7,21,44,0.4);
 }
 .int-sys svg { width: 34px; height: 34px; }
 .logo-cloud { fill: #36a9e1; stroke: none; }
 .logo-hub { stroke: #f47a26; fill: none; stroke-width: 2.2; }
 .logo-bi rect:nth-child(1) { fill: #f4b400; }
 .logo-bi rect:nth-child(2) { fill: #e6a100; }
 .logo-bi rect:nth-child(3) { fill: #d89200; }
 .logo-data { stroke: #071b47; fill: none; stroke-width: 1.8; }
 .logo-tag { stroke: #071b47; fill: none; stroke-width: 1.8; }
 .proof-band {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 26px 40px;
 }
 .proof-grid {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border: 1px solid var(--line); border-radius: 12px;
  overflow: hidden; background: #fbfcff;
 }
 .proof-item {
  padding: 22px 24px;
  border-right: 1px solid var(--line);
 }
 .proof-item:last-child { border-right: 0; }
 .proof-k {
  font-size: 24px; font-weight: 800; color: var(--teal-dark);
  letter-spacing: -0.03em; line-height: 1;
 }
 .proof-t {
  margin-top: 8px; font-size: 12.5px; color: var(--ink-2);
  line-height: 1.4; font-weight: 600;
 }
 @media (max-width: 720px) {
  .int-inner { justify-content: center; text-align: center; }
  .int-label { max-width: 100%; }
  .int-systems { justify-content: center; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
 }

 /* ─── competition section ─── */
 .compete { background: var(--bg); }
 .compete-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
  margin-top: 50px;
 }
 .compete-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 14px; padding: 38px 34px;
 }
 .compete-card.them { background: var(--paper); }
 .compete-card.us {
  background: var(--teal-dark); border-color: var(--teal-dark);
  color: #fff;
 }
 .compete-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; margin-bottom: 14px;
 }
 .compete-card.them .compete-eyebrow { color: var(--muted); }
 .compete-card.us .compete-eyebrow { color: var(--cream-deep); }
 .compete-h {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-size: 24px; font-weight: 500; line-height: 1.2;
  letter-spacing: -0.02em; margin-bottom: 18px;
 }
 .compete-card.them .compete-h { color: var(--ink); }
 .compete-card.us .compete-h { color: #fff; }
 .compete-card.us .wordmark { color: #fff; }
 .compete-card ul { list-style: none; margin: 0; padding: 0; }
 .compete-card li {
  font-size: 14px; line-height: 1.55;
  padding: 10px 0 10px 26px; position: relative;
 }
 .compete-card.them li { color: var(--ink-2); border-bottom: 1px solid var(--line); }
 .compete-card.us li { color: #d9e6e1; border-bottom: 1px solid rgba(255,255,255,0.08); }
 .compete-card li:last-child { border-bottom: none; }
 .compete-card li::before {
  content: ""; position: absolute; left: 0; top: 17px;
  width: 8px; height: 8px; border-radius: 2px;
 }
 .compete-card.them li::before { background: var(--muted); }
 .compete-card.us li::before { background: var(--cream-deep); }
 .compete-tag {
  margin-top: 20px; padding-top: 18px; border-top: 1px solid;
  font-size: 13px; font-style: italic;
 }
 .compete-card.them .compete-tag { border-color: var(--line); color: var(--muted); }
 .compete-card.us .compete-tag { border-color: rgba(255,255,255,0.1); color: var(--cream-deep); }
 @media (max-width: 720px) { .compete-grid { grid-template-columns: 1fr; } }

 /* ─── how it works section ─── */
 .how-list {
  display: grid; gap: 18px; margin-top: 50px;
 }
 .how-row {
  display: grid; grid-template-columns: 60px 1fr;
  gap: 24px; align-items: start;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 12px; padding: 28px 32px;
 }
 .how-num {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-size: 36px; font-weight: 500; color: var(--teal);
  line-height: 1;
 }
 .how-h {
  font-size: 18px; font-weight: 700; color: var(--ink);
  margin-bottom: 6px; letter-spacing: -0.01em;
 }
 .how-p { font-size: 14px; color: var(--ink-2); line-height: 1.6; }

 /* ─── flow row (Connect → Forecast → Plan) ─── */
 .flow-row {
  display: grid; grid-template-columns: 1fr 24px 1fr 24px 1fr;
  gap: 16px; align-items: center;
  margin-top: 50px; margin-bottom: 64px;
 }
 .flow-step {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 12px; padding: 26px 28px;
 }
 .flow-num {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-size: 28px; font-weight: 500; color: var(--teal);
  line-height: 1; margin-bottom: 10px;
 }
 .flow-h {
  font-size: 18px; font-weight: 700; color: var(--ink);
  margin-bottom: 6px; letter-spacing: -0.01em;
 }
 .flow-p { font-size: 13.5px; color: var(--ink-2); line-height: 1.55; }
 .flow-arrow {
  text-align: center; font-size: 22px; color: var(--teal);
  font-weight: 700;
 }

 
 @media (max-width: 720px) {
  .how-row { grid-template-columns: 1fr; gap: 8px; padding: 22px 20px; }
  .flow-row { grid-template-columns: 1fr; gap: 12px; margin-bottom: 44px; }
  .flow-arrow { transform: rotate(90deg); padding: 4px 0; }
 }

 /* ─── trust section ─── */
 .trust { background: var(--paper); padding-bottom: 56px; }
 .trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; margin-top: 44px;
 }
 .trust-card {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 12px; padding: 28px 26px;
 }
 .trust-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--teal-pale); display: flex;
  align-items: center; justify-content: center;
  margin-bottom: 16px; color: var(--teal-deep);
 }
 .trust-h {
  font-size: 15.5px; font-weight: 700; color: var(--ink);
  margin-bottom: 8px;
 }
 .trust-p { font-size: 13.5px; color: var(--ink-2); line-height: 1.55; }
 .trust-note {
  margin-top: 32px; padding: 18px 22px;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 13px; color: var(--muted); line-height: 1.6;
 }
 .secure-mail { color: var(--teal-deep); font-weight: 600; }
 .security-stack {
  margin-top: 42px; display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px;
 }
 .security-pill {
  background: var(--teal-dark); color: #dfeaff; border-radius: 10px;
  padding: 18px; min-height: 116px;
 }
 .security-pill b {
  display: block; color: #fff; font-size: 13px; margin-bottom: 7px;
  letter-spacing: 0.02em;
 }
 .security-pill span { display: block; font-size: 12.5px; line-height: 1.45; color: #b8c7dc; }
 @media (max-width: 720px) { .trust-grid { grid-template-columns: 1fr; } }

 .sol-card.feature h3 { font-size: 26px; }
 .sol-card.feature p { font-size: 15.5px; }

 /* ─── HOW IT WORKS ─── */
 .how { background: var(--paper); }
 .steps { margin-top: 56px; display: flex; flex-direction: column; gap: 4px; }
 .step {
  display: grid; grid-template-columns: 90px 1fr; gap: 32px;
  padding: 32px 0; border-top: 1px solid var(--line);
  align-items: start;
 }
 .step:last-child { border-bottom: 1px solid var(--line); }
 .step-num {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif; font-size: 54px; font-weight: 500;
  color: var(--cream-deep); line-height: 1;
 }
 .step-body h3 { font-size: 23px; margin-bottom: 8px; }
 .step-body p { font-size: 15.5px; color: var(--ink-2); max-width: 620px; }

 /* ─── AUDIENCE ─── */
 .aud-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 52px; }
 .aud-card {
  border: 1px solid var(--line); border-radius: 16px; padding: 32px;
  background: var(--paper);
 }
 .aud-card .tag {
  display: inline-block; font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 6px; margin-bottom: 18px;
 }
 .aud-card.rep .tag { background: var(--teal-pale); color: var(--teal-deep); }
 .aud-card.mgr .tag { background: var(--cream); color: var(--cream-text); }
 .aud-card.exec .tag { background: var(--mint); color: var(--teal-deep); }
 .aud-card h3 { font-size: 21px; margin-bottom: 10px; }
 .aud-card p { font-size: 14.5px; color: var(--ink-2); }

 /* ─── PRICING ─── */
 .pricing { background: var(--paper); padding-top: 68px; }
 .price-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 54px;
 }
 .early-card {
  margin-top: 50px; background: var(--teal-dark);
  border-radius: 22px; padding: 52px 56px;
  max-width: 760px;
  box-shadow: 0 30px 70px -28px rgba(22,36,31,0.4);
 }
 .early-badge {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal-dark); background: var(--cream-deep);
  padding: 7px 14px; border-radius: 100px; margin-bottom: 22px;
 }
 .early-h {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-size: 30px; font-weight: 500; color: #fff;
  line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 14px;
 }
 .early-p { font-size: 15px; color: #b9c9c3; line-height: 1.7; margin-bottom: 26px; }
 .early-card .wordmark { color: #fff; }
 .early-list { list-style: none; margin: 0 0 32px; padding: 0; }
 .early-list li {
  font-size: 14.5px; color: #e7efec; padding: 11px 0 11px 30px;
  position: relative; border-bottom: 1px solid rgba(255,255,255,0.09);
 }
 .early-list li:last-child { border-bottom: none; }
 .early-list li::before {
  content: ""; position: absolute; left: 0; top: 17px;
  width: 9px; height: 9px; background: var(--cream-deep); border-radius: 2px;
 }
 .featured-btn {
  background: var(--cream-deep); color: var(--teal-dark);
  font-weight: 700; border: none;
 }
 .featured-btn:hover { background: #fff; }
 @media (max-width: 640px) {
  .early-card { padding: 38px 26px; }
  .early-h { font-size: 24px; }
 }
 .price-card {
  border: 1px solid var(--line); border-radius: 18px;
  padding: 34px 30px; background: var(--bg);
  display: flex; flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
 }
 .price-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px -18px rgba(22,36,31,0.2); }
 .price-card.featured {
  background: var(--teal-dark); border-color: var(--teal-dark);
  box-shadow: 0 24px 50px -20px rgba(31,77,63,0.5);
 }
 .price-tier {
  font-size: 12px; letter-spacing: 0.13em; text-transform: uppercase;
  font-weight: 700; color: var(--teal-deep); margin-bottom: 8px;
 }
 .price-card.featured .price-tier { color: var(--cream-deep); }
 .price-name { font-size: 26px; margin-bottom: 6px; }
 .price-card.featured .price-name { color: #fff; }
 .price-for { font-size: 13.5px; color: var(--muted); margin-bottom: 22px; }
 .price-card.featured .price-for { color: #9fb3ac; }
 .price-amount {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif; font-size: 34px; font-weight: 500;
  color: var(--ink); margin-bottom: 4px; letter-spacing: -0.02em;
 }
 .price-card.featured .price-amount { color: #fff; }
 .price-unit { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
 .price-card.featured .price-unit { color: #9fb3ac; }
 .price-feats { list-style: none; margin-bottom: 28px; flex: 1; }
 .price-feats li {
  font-size: 14px; color: var(--ink-2); padding: 8px 0 8px 26px;
  position: relative; border-top: 1px solid var(--line);
 }
 .price-feats li:first-child { border-top: none; }
 .price-card.featured .price-feats li { color: #cdd9d4; border-color: rgba(255,255,255,0.1); }
 .price-feats li::before {
  content: ''; position: absolute; left: 0; top: 13px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--mint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232d6b5a' stroke-width='3.5'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: 10px; background-position: center; background-repeat: no-repeat;
 }
 .price-btn {
  width: 100%; padding: 13px; border-radius: 9px;
  font-size: 14.5px; font-weight: 600; font-family: inherit; cursor: pointer;
  background: var(--paper); color: var(--ink); border: 1px solid var(--line);
  transition: border-color 0.2s, transform 0.2s;
 }
 .price-btn:hover { border-color: var(--teal); transform: translateY(-1px); }
 .price-card.featured .price-btn {
  background: var(--cream-deep); color: var(--teal-dark); border-color: var(--cream-deep);
 }
 .price-card.featured .price-btn:hover { background: #fff; border-color: #fff; }
 .price-note {
  margin-top: 32px; text-align: center; font-size: 14px; color: var(--muted);
 }

 /* ─── TEAM ─── */
 .team { background: var(--bg); }
 .team-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 18px; max-width: 920px; margin-top: 50px;
 }
 .team-card {
  background: var(--paper);
  border: 1px solid var(--line); border-radius: 18px;
  padding: 46px; display: flex; gap: 40px; align-items: center;
  max-width: 920px;
 }
 .team-portrait {
  width: 132px; height: 132px; border-radius: 16px; flex-shrink: 0;
  background: linear-gradient(150deg, var(--teal) 0%, var(--teal-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif; font-size: 46px; font-weight: 500; color: #fff;
  box-shadow: 0 12px 28px -8px rgba(45,107,90,0.4);
 }
 .team-portrait.seat { background: linear-gradient(150deg, #23324c 0%, var(--teal-dark) 100%); }
 .team-portrait.seat svg { width: 52px; height: 52px; stroke: rgba(255,255,255,0.9); fill: none; }
 .team-info .team-role {
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--teal-deep); margin-bottom: 7px;
 }
 .team-info h3 { font-size: 28px; margin-bottom: 12px; }
 .team-info p { font-size: 15px; color: var(--ink-2); margin-bottom: 10px; }
 .team-creds { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
 .team-cred {
  font-size: 12.5px; font-weight: 600; color: var(--ink-2);
  background: var(--bg); border: 1px solid var(--line);
  padding: 6px 13px; border-radius: 99px;
 }
 .team-note { margin-top: 26px; font-size: 14px; color: var(--muted); max-width: 880px; }
 .team .sec-title { max-width: 840px; }

 /* ─── CTA ─── */
 .cta-band { background: var(--teal-dark); }
 .cta-inner { max-width: 720px; margin: 0 auto; text-align: center; }
 .cta-band .sec-eyebrow { color: var(--cream-deep); }
 .cta-band h2 { font-size: clamp(30px, 4.2vw, 48px); color: #fff; margin-bottom: 18px; }
 .cta-band h2 em { font-style: italic; font-weight: 400; color: var(--cream-deep); }
 .cta-band p { font-size: 17px; color: #bcccc6; margin-bottom: 36px; }
 .cta-band .wordmark { color: #fff; }

 /* ─── FORM ─── */
 .form-card {
  background: var(--paper); border-radius: 16px; padding: 38px;
  max-width: 520px; margin: 0 auto; text-align: left;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.4);
 }
 .form-row { margin-bottom: 18px; }
 .form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
 .form-row label {
  display: block; font-size: 12.5px; font-weight: 600;
  color: var(--ink-2); margin-bottom: 6px;
 }
 .form-row input, .form-row select {
  width: 100%; max-width: 100%; padding: 12px 13px; font-size: 16px; font-family: inherit;
  border: 1px solid var(--line); border-radius: 8px; background: var(--bg);
  color: var(--ink); outline: none; transition: border-color 0.2s;
  -webkit-appearance: none; appearance: none;
 }
 .form-row input:focus, .form-row select:focus { border-color: var(--teal); }
 .form-row select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7689' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 38px;
 }
 .hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
 }
 .form-card .btn-primary { width: 100%; margin-top: 6px; }
 .form-success { display: none; text-align: center; padding: 20px 0; }
 .form-success.show { display: block; }
 .is-hidden { display: none !important; }
 .form-success .check {
  width: 52px; height: 52px; border-radius: 50%; background: var(--mint);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
 }
 .form-success h3 { font-size: 22px; margin-bottom: 8px; }
 .form-success p { font-size: 14.5px; color: var(--ink-2); }
 .form-disclaimer { font-size: 12px; color: var(--muted); text-align: center; margin-top: 14px; }

 /* ─── FOOTER ─── */
 footer {
  background: var(--bg); padding: 54px 40px 34px;
  border-top: 1px solid var(--line);
 }
 .foot-inner {
  max-width: 1120px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 30px;
 }
 .foot-brand { max-width: 290px; }
 .foot-brand .logo { margin-bottom: 14px; }
 .foot-brand p { font-size: 13.5px; color: var(--muted); }
 .foot-cols { display: flex; gap: 60px; flex-wrap: wrap; }
 .foot-col .foot-col-title {
  font-family: 'Mona Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); font-weight: 700; margin: 0 0 14px;
 }
 .foot-col a, .foot-col span {
  display: block; font-size: 14px; color: var(--ink-2);
  margin-bottom: 9px; transition: color 0.2s;
 }
 .foot-col a:hover { color: var(--teal-deep); }
 .foot-contact {
  max-width: 260px;
 }
 .foot-contact a {
  font-weight: 700;
  color: var(--teal-deep);
  margin-bottom: 10px;
 }
 .foot-contact span {
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
  margin-bottom: 0;
 }
 .foot-contact .contact-note {
  color: var(--ink-2);
  font-weight: 600;
  margin-bottom: 8px;
 }
 .foot-bottom {
  max-width: 1120px; margin: 40px auto 0; padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12.5px; color: var(--muted);
 }
 .foot-bottom .tm { font-style: italic; }

 /* ─── PDF-style preview overrides ─── */
 .flow-row {
  grid-template-columns: 1fr 36px 1fr 36px 1fr;
  gap: 14px;
 }
 .flow-step {
  border: 2px solid var(--line);
  border-radius: 12px;
  min-height: 240px;
  text-align: left;
 }
 .flow-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: #071b47; color: #fff;
  display: inline-grid; place-items: center;
  font-family: 'Mona Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 18px; font-weight: 800;
 }
 .flow-h { font-size: 17px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; }
 .flow-arrow { font-size: 32px; color: #071b47; }
 .flow-icons {
  display: grid; grid-template-columns: repeat(3, 34px); gap: 14px;
  margin-top: 18px; align-items: center;
 }
 .flow-icons svg { width: 34px; height: 34px; }
 .mini-chart { margin-top: 18px; height: 88px; width: 100%; }
 .mini-chart polyline { fill: none; stroke: var(--teal-deep); stroke-width: 3.5; stroke-linecap: round; stroke-linejoin: round; }
 .mini-chart circle { fill: var(--teal); stroke: #fff; stroke-width: 2; }
 .mini-plan {
  margin-top: 16px; border: 1px solid var(--line); border-radius: 8px;
  padding: 10px 12px; display: grid; gap: 8px; background: #fbfdff;
 }
 .mini-plan div { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; color: var(--ink-2); font-weight: 700; }
 .mini-plan b { color: var(--teal-deep); }
 .impact-band {
  margin-top: 58px; padding-top: 30px; border-top: 1px solid var(--line);
 }
 .impact-title {
  color: var(--teal-deep); font-size: 18px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 22px;
 }
 .impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
 .impact-item {
  display: grid; grid-template-columns: 48px 1fr; gap: 16px;
  padding: 0 22px; border-right: 1px solid var(--line);
 }
 .impact-item:last-child { border-right: 0; }
 .impact-item svg { width: 42px; height: 42px; stroke: #071b47; }
 .impact-item b {
  display: block; font-size: 13px; color: var(--ink); text-transform: uppercase;
  letter-spacing: 0.05em; line-height: 1.25; margin-bottom: 7px;
 }
 .impact-item span { display: block; font-size: 13px; color: var(--muted); line-height: 1.4; }
 .how { padding-top: 96px; }

 /* ─── REVEAL ANIM ─── */
 .reveal { opacity: 1; transform: none; transition: opacity 0.7s ease, transform 0.7s ease; }
 .reveal.in { opacity: 1; transform: none; }

 /* ─── RESPONSIVE ─── */
@media (max-width: 860px) {
  /* Heavy fixed feTurbulence grain repaints every scroll frame on mobile — drop it for smooth scrolling */
  body::before { display: none; }
  nav {
   padding: 14px max(22px, env(safe-area-inset-left)) 14px max(22px, env(safe-area-inset-right));
   padding-top: max(14px, env(safe-area-inset-top));
  }
  nav.scrolled { padding-left: max(22px, env(safe-area-inset-left)); padding-right: max(22px, env(safe-area-inset-right)); }
  .nav-links { display: none; }
  .nav-links.open {
   display: flex; flex-direction: column; gap: 18px;
   position: absolute; top: 100%; left: 0; right: 0;
   background: var(--paper); padding: 24px; border-bottom: 1px solid var(--line);
  }
  .nav-toggle { display: block; }
  .hero { padding: 140px 22px 70px; }
  .hero-shell { grid-template-columns: 1fr; }
  section { padding: 70px 22px; }
  .problem-grid, .sol-grid, .aud-grid, .price-grid { grid-template-columns: 1fr; }
  .problem-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .problem-card:last-child { border-bottom: 0; }
  .problem-quote { grid-template-columns: 1fr; }
  .problem-quote p { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.18); padding: 0 0 24px; }
  .problem-quote p:last-of-type { border-bottom: 0; padding-bottom: 0; }
  .problem-followup { grid-template-columns: 1fr; }
  .solution-callout, .built-panel { margin-left: 0; max-width: none; }
  .sol-grid.three { grid-template-columns: 1fr; }
  .team-card { flex-direction: column; text-align: center; gap: 26px; padding: 36px 26px; }
  .team-creds { justify-content: center; }
  .sol-card.feature { grid-column: span 1; flex-direction: column; align-items: flex-start; gap: 18px; }
  .manager-shell, .mgr-body { grid-template-columns: 1fr; }
  .security-stack { grid-template-columns: 1fr; }
  .mock-stats { grid-template-columns: 1fr 1fr; }
  .mock-week { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: 10px; }
  .step-num { font-size: 40px; }
  .impact-grid { grid-template-columns: 1fr; gap: 20px; }
  .impact-item { border-right: 0; padding: 0; }
  .form-row.two { grid-template-columns: 1fr; }
  .foot-inner { flex-direction: column; }
 }

 @media (max-width: 560px) {
  body { min-width: 0; }
  nav {
   padding: 12px max(16px, env(safe-area-inset-right)) 12px max(16px, env(safe-area-inset-left));
   padding-top: max(12px, env(safe-area-inset-top));
  }
  .logo-name { font-size: 21px; }
  .nav-links.open { padding: 18px 16px; }
  .hero { padding: 118px 16px 54px; }
  .hero-glow { width: 100%; height: 300px; top: 72px; }
  .hero h1 { font-size: clamp(34px, 11.5vw, 46px); line-height: 1.04; }
  .hero-copy { font-size: 15px; margin-top: -20px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { width: 100%; padding: 14px 18px; }
  .hero-mock { margin-top: 42px; border-radius: 12px; }
  .mock-bar { padding: 10px 12px; }
  .mock-bar .url { max-width: calc(100vw - 118px); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .mock-body { padding: 10px; }
  .app-preview { min-height: 0; }
  .int-strip, .proof-band, section { padding-left: 16px; padding-right: 16px; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-item { border-right: 0; border-bottom: 1px solid var(--line); padding: 18px; }
  .proof-item:last-child { border-bottom: 0; }
  .problem .sec-eyebrow,
  .how .sec-eyebrow {
   display: block; font-size: 15px; line-height: 1.35; letter-spacing: 0.06em;
  }
  .problem .sec-eyebrow::before,
  .problem .sec-eyebrow::after,
  .how .sec-eyebrow::before,
  .how .sec-eyebrow::after { display: none; }
  .problem-card { min-height: 0; padding: 22px 16px; }
  .problem-quote { padding: 30px 22px; gap: 22px; }
  .problem-quote p { font-size: 18px; }
  .problem-followup { gap: 24px; padding-top: 32px; }
  .solution-callout { padding: 24px 18px; }
  .solution-callout h3, .built-panel h3 { font-size: 23px; }
  .solution-mini { grid-template-columns: 42px 1fr; gap: 12px; }
  .solution-mini svg { width: 36px; height: 36px; }
  .built-panel { padding: 12px 0 0; }
  .sol-card, .compete-card, .trust-card { padding: 28px 22px; }
  .flow-row { grid-template-columns: 1fr; gap: 12px; margin-top: 34px; }
  .flow-arrow { transform: rotate(90deg); padding: 4px 0; }
  .flow-step { min-height: 0; padding: 22px; }
  .flow-icons { grid-template-columns: repeat(3, 30px); gap: 12px; }
  .impact-grid { gap: 22px; }
  .impact-item { grid-template-columns: 38px 1fr; gap: 12px; }
  .impact-item svg { width: 34px; height: 34px; }
  .manager-shell { gap: 24px; margin-top: 36px; }
  .manager-copy { padding: 26px 22px; }
  .manager-dashboard { min-height: 0; border-radius: 12px; }
  .security-stack { gap: 10px; }
  .team-card { padding: 28px 20px; }
  .team-portrait { width: 104px; height: 104px; font-size: 36px; }
  .team-info h3 { font-size: 24px; }
  .form-card { padding: 26px 20px; border-radius: 12px; }
  .foot-cols { flex-direction: column; gap: 24px; }
  .foot-bottom { display: block; }
  .foot-bottom > span { display: block; margin-bottom: 10px; }
  .foot-bottom .wordmark, .foot-bottom .wordmark span { display: inline; }
 }

.dash-shot{display:block;width:100%;height:auto;border-radius:12px;border:1px solid var(--line);box-shadow:0 28px 64px -44px rgba(15,27,45,.42);}

/* enlarge embedded product screenshots for desktop legibility */
.manager-shell{grid-template-columns:1fr!important;gap:30px!important}
.manager-view .dash-fit{max-width:1040px;margin:0 auto}

/* ════════════ DESKTOP SCALE-UP — make the product fill the screen ════════════ */
/* Wider, more expansive layout */
body .wrap { max-width: min(1280px, 92vw); }

/* HERO — confident narrow copy, dominant full-bleed dashboard */
.hero { max-width: none; padding: clamp(122px, 17vh, 188px) 22px 36px; }
.hero-shell { max-width: none; }
.hero-text { max-width: 880px; margin-left: auto; margin-right: auto; }
.hero h1 { font-size: clamp(46px, 7.4vw, 104px); letter-spacing: -0.042em; line-height: 1.0; }
.hero-sub { max-width: 660px; font-size: clamp(17px, 1.8vw, 22px); margin-bottom: 22px; }
.hero-copy { max-width: 680px; font-size: clamp(16px, 1.35vw, 18.5px); margin: 8px auto 30px; }
.hero-copy b { color: var(--teal-deep); font-weight: 600; }

.hero-glow {
  width: min(1320px, 94vw); height: 720px; top: 84px;
  background: radial-gradient(58% 60% at 50% 36%, rgba(37,99,201,0.17) 0%, rgba(37,99,201,0.06) 46%, transparent 72%);
  filter: blur(18px);
}

/* the big browser-framed dashboard window */
.hero-mock {
  width: min(1480px, 94vw); max-width: none;
  margin: 56px auto 0;
  border-radius: 20px; border: 1px solid var(--line);
  box-shadow: 0 64px 150px -52px rgba(15,27,45,0.52), 0 14px 44px -26px rgba(15,27,45,0.32);
}
.hero .mock-body { padding: 0; }  /* show the full dashboard on desktop */
.hero .dash-shot { border: 0; border-radius: 0; box-shadow: none; width: 100%; display: block; }

/* feature-highlight chips under the hero copy */
.hero-feats { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin: 24px auto 0; max-width: 780px; }
.hero-feat {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--ink-2);
  background: var(--paper); border: 1px solid var(--line);
  padding: 8px 15px; border-radius: 99px;
  box-shadow: 0 1px 6px rgba(15,27,45,0.04);
}
.hero-feat b { color: var(--teal-deep); font-weight: 700; }
.hero-feat .fdot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 3px var(--mint); }

/* showcase screenshots (manager view + case capture) run large */
.manager-view .dash-fit, .manager-shell .dash-fit { max-width: none; }
.manager-shell .dash-shot { width: 100%; max-width: min(1240px, 100%); margin: 0 auto; }

@media (max-width: 720px){
  .hero { padding-top: 116px; }
  .hero-mock { margin-top: 40px; }
}

/* ── Desktop readability: larger section prose ── */
@media (min-width: 1000px){
  .nav-links a { font-size: 15.5px; }
  .problem-card p, .sol-card p, .how-p, .flow-p, .trust-p,
  .aud-card p, .team-info p, .manager-copy p, .built-item,
  .solution-mini span, .problem p, .different p { font-size: 16.5px; line-height: 1.62; }
  .solution-callout p, .step-body p, .sol-card.feature p, .early-p { font-size: 18px; line-height: 1.6; }
}

/* ── Hero polish: tighter, more deliberate intro ── */
@media (min-width: 1000px){
  .hero { padding-top: clamp(118px, 13vh, 150px); padding-bottom: 26px; }
  .hero h1 { margin-bottom: 18px; }
  .hero-sub { font-weight: 500; font-size: clamp(19px, 1.9vw, 24px); margin-bottom: 18px; color: var(--ink); }
  .hero-copy { margin: 2px auto 26px; }
  .hero-product { margin: 0 0 2px; opacity: .9; }
  .hero-note { margin-top: 16px; }
  .hero-feats { margin-top: 20px; }
  .hero-mock { margin-top: 54px; }
}

/* ═════════ DESKTOP PRO PASS — full-system scale + detail ═════════ */
@media (min-width: 1200px){
  /* foundation */
  html { font-size: 17px; }
  body .wrap, body section .wrap, .problem .wrap { max-width: min(1360px, 90vw); }
  section { padding: 110px 48px; }

  /* navigation presence */
  .nav-links a { font-size: 16px; letter-spacing: .01em; }
  .nav-cta, header .btn { font-size: 16px; padding: 12px 22px; }
  .brand .wordmark, .nav .wordmark { font-size: 27px; }

  /* section headers: clear, confident hierarchy */
  section h2, .sec-title { font-size: clamp(40px, 3.4vw, 56px); letter-spacing: -0.03em; line-height: 1.06; }

  /* cards: heading > body, generous padding, considered borders */
  .problem-card, .sol-card, .aud-card, .team-card { padding: 30px 28px; border-radius: 16px; }
  .problem-card h3, .sol-card h3, .aud-card h3 { font-size: 19.5px; line-height: 1.3; margin-bottom: 10px; }
  .problem-card p, .sol-card p, .aud-card p, .team-info p { font-size: 17px; line-height: 1.65; }
  .problem-card:hover, .sol-card:hover { transform: translateY(-3px); box-shadow: 0 18px 44px -18px rgba(15,27,45,.16); transition: transform .25s ease, box-shadow .25s ease; }

  /* proof band: numbers should command */
  .proof-k { font-size: 28px; letter-spacing: -0.025em; line-height: 1.12; }
  .proof-t { font-size: 15px; line-height: 1.5; }

  /* integration strip: refined label */
  .int-label { font-size: 14.5px; letter-spacing: .01em; }
  .int-sys svg { transform: scale(1.15); }

  /* steps / how-it-works */
  .how h3, .step h3, .step-title { font-size: 20px; }
  .how p, .step p { font-size: 17px; line-height: 1.65; }

  /* buttons everywhere: confident targets */
  .btn, button.btn, a.btn { font-size: 16.5px; padding: 14px 26px; border-radius: 12px; }

  /* quotes / dark band */
  .quote, .band q, .band p { font-size: 17.5px; line-height: 1.6; }

  /* demo / form */
  .demo p, #demo p { font-size: 17.5px; }
  .demo input, #demo input { font-size: 16px; padding: 13px 15px; }

  /* footer: quiet but legible */
  footer { font-size: 15.5px; }

  /* detail: consistent micro-labels */
  .hero-product, .sec-kicker, .kicker { font-size: 13px; letter-spacing: .14em; }
}

/* ultra-wide: let the showcase breathe further */
@media (min-width: 1700px){
  .hero-mock { width: min(1640px, 92vw); }
  body .wrap, body section .wrap, .problem .wrap { max-width: 1440px; }
}


/* ─── SEO / COMPARISON PAGES ─── */
.seo-page { background: #f7f3eb; color: #16241f; }
.seo-hero { padding: 150px 22px 72px; position: relative; overflow: hidden; }
.seo-hero .wrap { max-width: 1120px; margin: 0 auto; }
.seo-kicker { display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(22,36,31,.14); background: rgba(255,255,255,.68); border-radius: 999px; padding: 8px 12px; font-weight: 800; font-size: 13px; letter-spacing: .02em; color: #2d6b5a; margin-bottom: 20px; }
.seo-hero h1 { max-width: 920px; margin: 0; font-size: clamp(44px, 7vw, 92px); line-height: .92; letter-spacing: -.065em; }
.seo-hero h1 em { font-family: Fraunces, serif; font-weight: 500; font-style: italic; letter-spacing: -.045em; color: #2d6b5a; }
.seo-sub { max-width: 780px; font-size: clamp(18px, 2.1vw, 24px); line-height: 1.45; color: rgba(22,36,31,.76); margin: 24px 0 0; }
.seo-body { padding: 20px 22px 86px; }
.seo-body .wrap { max-width: 1120px; margin: 0 auto; }
.seo-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; align-items: start; }
.seo-panel { background: rgba(255,255,255,.82); border: 1px solid rgba(22,36,31,.1); border-radius: 28px; padding: 30px; box-shadow: 0 26px 70px rgba(22,36,31,.08); }
.seo-panel h2 { font-size: clamp(28px, 3.2vw, 48px); line-height: 1; letter-spacing: -.045em; margin: 0 0 16px; }
.seo-panel h3 { font-size: 22px; letter-spacing: -.025em; margin: 26px 0 10px; }
.seo-panel p, .seo-panel li { color: rgba(22,36,31,.74); line-height: 1.65; font-size: 16px; }
.seo-panel ul { padding-left: 20px; margin: 12px 0 0; }
.seo-side { position: sticky; top: 92px; display: grid; gap: 16px; }
.seo-card { background: #16241f; color: #fff; border-radius: 26px; padding: 26px; box-shadow: 0 26px 70px rgba(22,36,31,.14); }
.seo-card h3 { margin: 0 0 10px; font-size: 24px; letter-spacing: -.03em; }
.seo-card p { color: rgba(255,255,255,.74); line-height: 1.55; margin: 0 0 18px; }
.seo-card a { color: #fff; text-decoration: none; font-weight: 800; }
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; overflow: hidden; border-radius: 20px; border: 1px solid rgba(22,36,31,.1); margin: 22px 0; }
.compare-table th, .compare-table td { text-align: left; vertical-align: top; padding: 16px; border-bottom: 1px solid rgba(22,36,31,.08); font-size: 15px; line-height: 1.45; }
.compare-table th { background: rgba(45,107,90,.1); color: #16241f; font-weight: 800; }
.compare-table tr:last-child td { border-bottom: 0; }
.seo-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.seo-links a { text-decoration: none; border: 1px solid rgba(22,36,31,.12); background: rgba(255,255,255,.74); color: #16241f; border-radius: 999px; padding: 10px 13px; font-weight: 800; font-size: 14px; }
@media (max-width: 900px) { .seo-grid { grid-template-columns: 1fr; } .seo-side { position: static; } .seo-panel { padding: 22px; } .seo-hero { padding-top: 120px; } }
