:root {
  --navy:  #0D2B3A;
  --teal:  #1C6E8A;
  --teal2: #2A8EA8;
  --sky:   #C8E4EF;
  --sand:  #EDE8DE;
  --white: #FDFCFA;
  --gold:  #C97D14;
  --ink:   #12202A;
  --muted: #567080;
  --rule:  #C8D4D8;
  --ff-d:  "Palatino Linotype","Book Antiqua",Palatino,Georgia,serif;
  --ff-b:  "Trebuchet MS",Tahoma,system-ui,sans-serif;
  --ff-m:  "Courier New",Courier,monospace;
  --mw:    1140px;
  --px:    clamp(1.25rem,5vw,2.5rem);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-b);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: var(--mw); margin-inline: auto; padding-inline: var(--px); }

/* ─── scroll reveal ─── */
.rv { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.rv.on { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; transition: none; } }

/* ─── nav ─── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253,252,250,.93);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
}
.nav-in {
  max-width: var(--mw); margin-inline: auto; padding-inline: var(--px);
  height: 60px; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.nav-logo {
  font-family: var(--ff-d); font-size: 1.1rem; font-weight: normal;
  letter-spacing: -.02em; color: var(--navy);
  display: flex; align-items: center; gap: .5rem;
}
.nav-logo-pip { display: inline-block; width: 7px; height: 7px; background: var(--teal); border-radius: 50%; }
.nav-links { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
@media (max-width: 640px) { .nav-links { display: none; } }
.nav-links a { font-size: .875rem; color: var(--muted); transition: color .18s; }
.nav-links a:hover { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: .75rem; }
.nav-ghost { font-size: .8125rem; color: var(--muted); transition: color .18s; white-space: nowrap; }
.nav-ghost:hover { color: var(--ink); }

/* ─── buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: .375rem;
  padding: .575rem 1.25rem; font-family: var(--ff-b); font-size: .875rem; font-weight: 600;
  letter-spacing: .01em; border-radius: 3px; border: none; cursor: pointer;
  transition: background .18s, border-color .18s, color .18s; text-align: center;
}
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--teal); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: #b06c0f; }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--rule); }
.btn-outline:hover { border-color: var(--ink); background: var(--sand); }
.btn-sm { padding: .4rem 1rem; font-size: .8125rem; }
.btn-lg { padding: .85rem 2rem; font-size: .9375rem; }

/* ─── hero ─── */
.hero {
  min-height: calc(100vh - 60px);
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  gap: 4rem; max-width: var(--mw); margin-inline: auto;
  padding-inline: var(--px); padding-block: 5rem;
}
@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-block: 3.5rem; gap: 3rem; }
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .625rem;
  font-family: var(--ff-m); font-size: .7rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 1.5rem;
}
.hero-eyebrow-rule { display: inline-block; width: 22px; height: 1px; background: var(--teal); }
.hero-h1 {
  font-family: var(--ff-d); font-size: clamp(2.5rem,5.5vw,4.25rem);
  font-weight: normal; line-height: 1.08; letter-spacing: -.028em;
  color: var(--navy); text-wrap: balance; margin-bottom: 1.5rem;
}
.hero-h1 em { font-style: italic; color: var(--teal); }
.hero-sub { font-size: 1.0625rem; line-height: 1.72; color: var(--muted); max-width: 40ch; margin-bottom: 2.25rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }
.hero-note { margin-top: 1rem; font-family: var(--ff-m); font-size: .7rem; color: var(--muted); letter-spacing: .02em; }

/* ─── dashboard mockup ─── */
.mockup-wrap { position: relative; display: flex; justify-content: center; }
.mockup-wrap::before {
  content: ""; position: absolute; inset: -30px;
  background: radial-gradient(ellipse at 55% 50%, rgba(28,110,138,.13) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.mockup {
  position: relative; z-index: 1; background: var(--navy); border-radius: 7px;
  overflow: hidden; width: 100%; max-width: 520px; font-size: 12px;
  box-shadow: 0 2px 6px rgba(13,43,58,.08), 0 10px 32px rgba(13,43,58,.14), 0 32px 72px rgba(13,43,58,.2);
}
.m-chrome {
  background: #091D2A; padding: 7px 10px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.m-dots { display: flex; gap: 4px; }
.m-dot { width: 8px; height: 8px; border-radius: 50%; }
.m-dot.r { background: #FF5F56; } .m-dot.y { background: #FFBD2E; } .m-dot.g { background: #27C93F; }
.m-bar {
  flex: 1; background: rgba(255,255,255,.06); border-radius: 3px;
  height: 14px; display: flex; align-items: center; padding: 0 7px; gap: 5px;
}
.m-bar-text { font-family: var(--ff-m); font-size: .65em; color: rgba(255,255,255,.35); letter-spacing: .02em; }
.m-body { display: grid; grid-template-columns: 44px 1fr; }
.m-sidebar {
  background: #0B1E2B; border-right: 1px solid rgba(255,255,255,.05);
  padding: 10px 0; display: flex; flex-direction: column; gap: 3px;
}
.m-si {
  height: 30px; display: flex; align-items: center; justify-content: center;
  font-size: 1.2em; opacity: .3; cursor: default; border-radius: 3px; margin: 0 4px;
}
.m-si.act { opacity: 1; background: rgba(28,110,138,.25); }
.m-main { padding: 12px; background: #0E2535; display: flex; flex-direction: column; gap: 10px; }
.m-lbl { font-family: var(--ff-m); font-size: .58em; letter-spacing: .1em; text-transform: uppercase; color: rgba(200,228,239,.35); margin-bottom: 1px; }
.m-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; }
.m-kpi { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06); border-radius: 3px; padding: 7px 8px; }
.m-kpi-v {
  font-family: var(--ff-m); font-size: 1.1em; font-weight: bold;
  color: rgba(255,255,255,.9); letter-spacing: -.01em;
  font-variant-numeric: tabular-nums; line-height: 1; margin-bottom: 3px;
}
.m-kpi-l { font-size: .6em; color: rgba(200,228,239,.4); line-height: 1.3; }
.m-chart { background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.05); border-radius: 3px; padding: 9px 9px 6px; }
.m-bars { display: flex; align-items: flex-end; gap: 3px; height: 42px; }
.m-b { flex: 1; background: rgba(28,110,138,.4); border-radius: 2px 2px 0 0; }
.m-b.cur { background: var(--teal2); }
.m-chart-foot { display: flex; justify-content: space-between; margin-top: 3px; padding-top: 3px; border-top: 1px solid rgba(255,255,255,.05); }
.m-chart-lbl { font-size: .58em; color: rgba(200,228,239,.28); letter-spacing: .03em; }
.m-chart-val { font-family: var(--ff-m); font-size: .6em; color: rgba(200,228,239,.45); }
.m-table { background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.05); border-radius: 3px; overflow: hidden; }
.m-row {
  display: grid; grid-template-columns: 1fr .7fr .65fr; gap: 4px;
  padding: 5px 8px; align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.035); font-size: .72em;
}
.m-row:last-child { border-bottom: none; }
.m-row.head {
  background: rgba(255,255,255,.025); font-size: .58em;
  letter-spacing: .06em; text-transform: uppercase; color: rgba(200,228,239,.3);
}
.m-row-name { color: rgba(255,255,255,.72); }
.m-row-val { font-family: var(--ff-m); color: rgba(200,228,239,.55); font-variant-numeric: tabular-nums; font-size: .9em; }
.m-badge { font-size: .8em; padding: 1px 5px; border-radius: 8px; font-weight: 600; letter-spacing: .03em; white-space: nowrap; text-align: center; }
.m-badge.ok  { background: rgba(39,201,63,.18);  color: #4DE86A; }
.m-badge.warn { background: rgba(255,189,46,.18); color: #FFBD2E; }

/* ─── stats ─── */
.stats { background: var(--navy); padding-block: 4rem; }
.stats-in {
  max-width: var(--mw); margin-inline: auto; padding-inline: var(--px);
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem;
}
@media (max-width: 580px) { .stats-in { grid-template-columns: 1fr; gap: 2.5rem; } }
.stat { border-left: 2px solid var(--teal); padding-left: 1.5rem; }
.stat-n { font-family: var(--ff-d); font-size: clamp(2.25rem,4vw,3.5rem); font-weight: normal; letter-spacing: -.035em; color: var(--white); line-height: 1; margin-bottom: .5rem; }
.stat-d { font-size: .875rem; color: rgba(200,228,239,.5); line-height: 1.45; }

/* ─── shared section scaffolding ─── */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--ff-m); font-size: .68rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 1.25rem;
}
.eyebrow::before { content: ""; display: inline-block; width: 18px; height: 1px; background: var(--teal); }
.eyebrow-inv { color: var(--sky); }
.eyebrow-inv::before { background: var(--sky); }
.sh { font-family: var(--ff-d); font-size: clamp(1.75rem,3.5vw,2.75rem); font-weight: normal; line-height: 1.12; letter-spacing: -.022em; color: var(--navy); text-wrap: balance; }
.sh-inv { color: var(--white); }

/* ─── problem ─── */
.problem { padding-block: 6rem; border-bottom: 1px solid var(--rule); }
.problem-in {
  max-width: var(--mw); margin-inline: auto; padding-inline: var(--px);
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 5rem; align-items: start;
}
@media (max-width: 800px) { .problem-in { grid-template-columns: 1fr; gap: 2.5rem; } }
.problem-lead { font-size: .9375rem; line-height: 1.75; color: var(--muted); margin-top: 1rem; }
.checklist { list-style: none; display: flex; flex-direction: column; }
.checklist li {
  display: flex; align-items: flex-start; gap: .875rem;
  padding: 1rem 0; border-bottom: 1px solid var(--rule);
  font-size: .9375rem; line-height: 1.5; color: var(--ink);
}
.checklist li:first-child { border-top: 1px solid var(--rule); }
.chk-icon {
  flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%;
  background: rgba(28,110,138,.1); display: flex; align-items: center;
  justify-content: center; margin-top: .1rem;
}
.chk-icon svg { width: 10px; height: 10px; stroke: var(--teal); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.chk-text strong { color: var(--navy); font-weight: 600; }

/* ─── modules ─── */
.modules { background: var(--sand); padding-block: 6rem; }
.modules-in { max-width: var(--mw); margin-inline: auto; padding-inline: var(--px); }
.modules-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: end;
  margin-bottom: 2.5rem; padding-bottom: 2rem; border-bottom: 2px solid var(--rule);
}
@media (max-width: 680px) { .modules-head { grid-template-columns: 1fr; } }
.modules-head-r { font-size: .9375rem; color: var(--muted); line-height: 1.7; max-width: 38ch; }
.mod-list { display: flex; flex-direction: column; }
.mod { display: grid; grid-template-columns: 1fr 1.6fr; gap: 2rem; padding: 1.125rem 0; border-bottom: 1px solid var(--rule); align-items: baseline; }
@media (max-width: 560px) { .mod { grid-template-columns: 1fr; gap: .375rem; } }
.mod-name { font-family: var(--ff-d); font-size: 1.0625rem; font-weight: normal; color: var(--navy); letter-spacing: -.01em; display: flex; align-items: baseline; gap: .625rem; flex-wrap: wrap; }
.mod-tag { font-family: var(--ff-m); font-size: .6rem; letter-spacing: .08em; text-transform: uppercase; color: var(--teal); background: rgba(28,110,138,.1); padding: 1px 5px; border-radius: 2px; }
.mod-desc { font-size: .875rem; color: var(--muted); line-height: 1.6; }

/* ─── process ─── */
.process { padding-block: 6rem; border-bottom: 1px solid var(--rule); }
.process-in { max-width: var(--mw); margin-inline: auto; padding-inline: var(--px); }
.process-head { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: end; margin-bottom: 4rem; }
@media (max-width: 680px) { .process-head { grid-template-columns: 1fr; margin-bottom: 2.5rem; } }
.process-sub { font-size: .9375rem; color: var(--muted); line-height: 1.7; max-width: 38ch; }
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
@media (max-width: 680px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 400px) { .steps { grid-template-columns: 1fr; } }
.steps::before {
  content: ""; position: absolute; top: 19px; left: 4%; right: 4%;
  height: 1px; background: var(--rule); z-index: 0;
}
.step { position: relative; z-index: 1; padding-right: 1.5rem; }
.step-num {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-m); font-size: .75rem; color: var(--teal);
  margin-bottom: 1.25rem; letter-spacing: .02em;
}
.step:first-child .step-num { background: var(--navy); border-color: var(--navy); color: var(--white); }
.step-t { font-family: var(--ff-d); font-size: 1rem; font-weight: normal; color: var(--navy); margin-bottom: .5rem; letter-spacing: -.01em; }
.step-d { font-size: .8125rem; line-height: 1.6; color: var(--muted); }

/* ─── pricing ─── */
.pricing { background: var(--navy); padding-block: 6rem; }
.pricing-in { max-width: var(--mw); margin-inline: auto; padding-inline: var(--px); }
.pricing-head { margin-bottom: 3rem; }
.pricing-sub { font-size: .9375rem; color: rgba(200,228,239,.5); margin-top: .5rem; }
.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
@media (max-width: 700px) { .cards { grid-template-columns: 1fr; } }
.card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 5px; padding: 1.875rem; display: flex; flex-direction: column; }
.card.feat { background: rgba(28,110,138,.22); border-color: var(--teal2); }
.card-badge { font-family: var(--ff-m); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(200,228,239,.45); margin-bottom: .75rem; }
.card.feat .card-badge { color: var(--sky); }
.card-name { font-family: var(--ff-d); font-size: 1.375rem; font-weight: normal; color: var(--white); letter-spacing: -.015em; margin-bottom: .375rem; }
.card-desc { font-size: .8rem; color: rgba(200,228,239,.4); line-height: 1.5; margin-bottom: 1.5rem; }
.card-price { font-family: var(--ff-m); font-size: 1.875rem; color: var(--white); letter-spacing: -.02em; font-variant-numeric: tabular-nums; line-height: 1; margin-bottom: .3rem; }
.card-price-note { font-size: .75rem; color: rgba(200,228,239,.38); margin-bottom: 1.75rem; }
.card-div { height: 1px; background: rgba(255,255,255,.06); margin-bottom: 1.25rem; }
.card-feats { list-style: none; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.card-feats li { font-size: .8rem; color: rgba(200,228,239,.58); line-height: 1.45; display: flex; gap: .6rem; align-items: flex-start; }
.card-feats li::before { content: "—"; color: var(--teal2); flex-shrink: 0; font-family: var(--ff-m); }
.card.feat .card-feats li { color: rgba(200,228,239,.82); }
.card-cta { margin-top: 1.75rem; }
.btn-card {
  display: block; width: 100%; text-align: center; padding: .725rem;
  font-family: var(--ff-b); font-size: .875rem; font-weight: 600; border-radius: 3px;
  cursor: pointer; transition: background .18s, border-color .18s, color .18s;
  border: 1.5px solid rgba(255,255,255,.14); background: transparent; color: rgba(255,255,255,.6);
}
.btn-card:hover { border-color: rgba(255,255,255,.38); color: var(--white); }
.card.feat .btn-card { background: var(--teal2); border-color: var(--teal2); color: var(--white); }
.card.feat .btn-card:hover { background: #1C6E8A; border-color: #1C6E8A; }
.pricing-note { margin-top: 1.75rem; font-size: .8rem; color: rgba(200,228,239,.3); text-align: center; }
.pricing-note a { color: rgba(200,228,239,.55); text-decoration: underline; }
.pricing-note a:hover { color: var(--white); }

/* ─── final cta ─── */
.final { padding-block: 6rem; border-bottom: 1px solid var(--rule); }
.final-in {
  max-width: var(--mw); margin-inline: auto; padding-inline: var(--px);
  display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center;
}
@media (max-width: 700px) { .final-in { grid-template-columns: 1fr; gap: 2rem; } }
.final-h2 { font-family: var(--ff-d); font-size: clamp(1.75rem,4vw,3rem); font-weight: normal; letter-spacing: -.025em; color: var(--navy); text-wrap: balance; line-height: 1.1; margin-bottom: .75rem; }
.final-sub { font-size: .9375rem; color: var(--muted); line-height: 1.65; max-width: 44ch; }
.final-actions { display: flex; flex-direction: column; gap: .75rem; min-width: 210px; }

/* ─── footer ─── */
.footer { background: #071621; padding-block: 3rem; }
.footer-in { max-width: var(--mw); margin-inline: auto; padding-inline: var(--px); display: flex; flex-direction: column; gap: 2rem; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 2rem; }
.footer-logo { font-family: var(--ff-d); font-size: 1.1rem; color: rgba(255,255,255,.8); font-weight: normal; letter-spacing: -.015em; margin-bottom: .5rem; display: flex; align-items: center; gap: .45rem; }
.footer-tagline { font-size: .8rem; color: rgba(200,228,239,.28); line-height: 1.55; max-width: 28ch; }
.footer-nav-group { display: flex; flex-direction: column; gap: .45rem; }
.footer-nav-lbl { font-family: var(--ff-m); font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(200,228,239,.28); margin-bottom: .25rem; }
.footer-nav-group a { font-size: .8rem; color: rgba(200,228,239,.45); transition: color .15s; line-height: 1.9; }
.footer-nav-group a:hover { color: rgba(200,228,239,.85); }
.footer-bottom { padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.06); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .75rem; }
.footer-copy { font-family: var(--ff-m); font-size: .65rem; color: rgba(200,228,239,.22); letter-spacing: .02em; }
.footer-legal { display: flex; gap: 1.25rem; }
.footer-legal a { font-size: .75rem; color: rgba(200,228,239,.32); transition: color .15s; }
.footer-legal a:hover { color: rgba(200,228,239,.65); }
