:root {
  color-scheme: light;
  --bg: #ffffff;
  --surface: #f6f9fe;
  --surface-2: #edf5ff;
  --panel: #ffffff;
  --text: #071a3c;
  --muted: #536783;
  --muted-2: #7385a0;
  --navy: #061a3d;
  --navy-2: #0a2554;
  --blue: #0b63f6;
  --blue-2: #0a84ff;
  --cyan: #00a1ff;
  --green: #0b8f78;
  --orange: #ff5a1f;
  --orange-2: #ff7a18;
  --line: #d9e5f7;
  --line-soft: rgba(13, 54, 115, .10);
  --shadow: 0 30px 90px rgba(6, 26, 61, .14);
  --shadow-soft: 0 16px 44px rgba(6, 26, 61, .075);
  --radius: 8px;
  --max: 1180px;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #061021;
  --surface: #0a1730;
  --surface-2: #102449;
  --panel: #0c1d3b;
  --text: #f4f8ff;
  --muted: #b7c5dd;
  --muted-2: #8fa2c1;
  --line: rgba(207, 223, 250, .18);
  --line-soft: rgba(207, 223, 250, .12);
  --shadow: 0 30px 90px rgba(0, 0, 0, .38);
  --shadow-soft: 0 16px 44px rgba(0, 0, 0, .22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 6%, rgba(11, 99, 246, .10), transparent 30%),
    linear-gradient(180deg, #ffffff 0, #fbfdff 520px, var(--bg) 900px);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.container { width: min(calc(100% - 44px), var(--max)); margin: 0 auto; }
.section { padding: 86px 0; }
.section.tight { padding: 52px 0; }
.band {
  background:
    linear-gradient(180deg, rgba(255,255,255,.72), rgba(246,249,254,.94)),
    var(--surface);
  border-block: 1px solid var(--line-soft);
}
.eyebrow {
  color: var(--blue);
  font-size: .76rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 12px;
}
.hero h1, .page-hero h1, .section h2 { letter-spacing: 0; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(2.65rem, 5.35vw, 5.2rem); line-height: .985; margin-bottom: 22px; font-weight: 880; }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1.08; margin-bottom: 16px; font-weight: 860; }
h3 { font-size: 1.08rem; line-height: 1.25; margin-bottom: 8px; }
p { color: var(--muted); }
.lead { font-size: 1.14rem; max-width: 680px; color: #405876; }
.accent { color: var(--blue); }
.small { font-size: .9rem; }
.muted { color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, .86);
  border-bottom: 1px solid rgba(13, 54, 115, .08);
  box-shadow: 0 8px 30px rgba(6, 26, 61, .035);
}
.nav {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: 190px; }
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(11, 99, 246, .92);
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(145deg, var(--blue), #004ec8);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(11, 99, 246, .18);
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.12; }
.brand-copy strong { font-size: 1.02rem; font-weight: 850; }
.brand-copy span { font-size: .68rem; color: var(--muted); font-weight: 650; }
.desktop-nav { display: flex; justify-content: center; gap: 24px; align-items: center; }
.nav-item { color: var(--text); font-size: .9rem; font-weight: 750; opacity: .88; }
.nav-item:hover { color: var(--blue); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.lang-select, .theme-toggle, .nav-toggle {
  min-height: 38px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  border-radius: 999px;
  cursor: pointer;
}
.lang-select { padding: 0 10px; font-size: .84rem; font-weight: 800; }
.theme-toggle, .nav-toggle { width: 40px; display: grid; place-items: center; }
.nav-toggle { display: none; }
.mobile-menu { display: none; border-top: 1px solid var(--line); padding: 14px 0 20px; }
.mobile-menu.open { display: block; }
.mobile-menu .container { display: grid; gap: 12px; }
.mobile-menu a { font-weight: 750; color: var(--muted); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  font-weight: 850;
  font-size: .93rem;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(180deg, #ff6a25, var(--orange)); border-color: var(--orange); color: #fff; box-shadow: 0 16px 34px rgba(255, 90, 31, .24); }
.btn-primary:hover { background: var(--orange-2); }
.btn-secondary { background: rgba(255,255,255,.92); color: var(--text); box-shadow: 0 10px 28px rgba(6, 26, 61, .06); }
.btn-ghost { background: transparent; color: var(--blue); border-color: transparent; padding-inline: 0; }

.hero {
  padding: 92px 0 62px;
  overflow: hidden;
}
.command-hero {
  padding: 32px 0 16px;
  min-height: 610px;
  background:
    radial-gradient(circle at 74% 18%, rgba(37, 99, 235, .12), transparent 30%),
    linear-gradient(180deg, #fff 0%, #fff 72%, #eef7ff 100%);
}
.command-hero {
  position: relative;
  isolation: isolate;
}
.command-hero::before {
  content: "";
  position: absolute;
  inset: -120px 0 auto;
  height: 620px;
  z-index: -1;
  background:
    radial-gradient(circle at 72% 38%, rgba(11, 99, 246, .18), transparent 32%),
    radial-gradient(circle at 92% 20%, rgba(0, 161, 255, .10), transparent 24%),
    linear-gradient(180deg, rgba(246,250,255,.78), rgba(255,255,255,0));
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .74fr) minmax(560px, 1.26fr);
  gap: 54px;
  align-items: center;
}
.command-hero .hero-grid {
  grid-template-columns: minmax(360px, .4fr) minmax(620px, .6fr);
  gap: 34px;
  align-items: start;
}
.hero-copy { min-width: 0; padding-top: 4px; }
.command-hero .hero-copy {
  padding-top: 12px;
}
.command-hero .eyebrow {
  display: none;
}
.command-hero h1 {
  max-width: 520px;
  margin-bottom: 18px;
  color: #041E42;
  font-size: clamp(3rem, 4.3vw, 4.35rem);
  line-height: 1.02;
  font-weight: 900;
}
.command-hero .accent {
  display: block;
  color: #2563EB;
}
.command-hero .lead {
  max-width: 470px;
  margin-bottom: 24px;
  color: #223758;
  font-size: 1.02rem;
  line-height: 1.62;
}
.command-hero .btn-row {
  gap: 16px;
  margin-bottom: 0;
}
.command-hero .btn {
  min-height: 50px;
  padding: 0 24px;
  border-radius: 4px;
  font-size: .92rem;
  font-weight: 850;
}
.command-hero .btn-primary {
  background: #FF7A00;
  border-color: #FF7A00;
  box-shadow: 0 14px 28px rgba(255, 122, 0, .24);
}
.command-hero .btn-secondary {
  background: #fff;
  border-color: #AEBBD0;
  color: #041E42;
  box-shadow: none;
}
.hero-visual {
  min-width: 0;
  position: relative;
  transform: translateX(10px);
}
.command-hero .hero-visual {
  transform: none;
  min-width: 0;
}
.dashboard-stage {
  position: relative;
  padding: 12px;
  border: 1px solid rgba(11, 99, 246, .18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.84), rgba(245,249,255,.96)),
    #fff;
  box-shadow: var(--shadow);
}
.command-hero .dashboard-stage {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  width: min(100%, 760px);
  min-height: 405px;
  margin-left: auto;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #041E42;
  box-shadow: 0 28px 58px rgba(4, 30, 66, .24), 0 0 0 1px rgba(4, 30, 66, .08);
}
.dashboard-stage::before {
  content: "";
  position: absolute;
  inset: 24px -22px -24px 58px;
  z-index: -1;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(11,99,246,.16), rgba(0,161,255,.08));
  filter: blur(10px);
}
.command-hero .dashboard-stage::before {
  inset: auto -36px -46px 120px;
  height: 116px;
  background: linear-gradient(90deg, rgba(37, 99, 235, .28), rgba(77, 174, 255, .18));
  filter: blur(20px);
}
.stage-topline {
  height: 28px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 10px 10px;
}
.stage-topline span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #c8d8ef;
}
.stage-topline span:first-child { background: var(--orange); }
.stage-topline span:nth-child(2) { background: #ffc44f; }
.stage-topline span:nth-child(3) { background: #26c989; }
.hero-visual img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 18px 52px rgba(6, 26, 61, .16);
}
.hero-dashboard-nav {
  padding: 18px 14px;
  color: #fff;
  background: linear-gradient(180deg, #041E42, #02152E);
}
.dashboard-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: .8rem;
}
.dashboard-brand-mark {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.62);
  font-size: .54rem;
  font-weight: 900;
}
.dashboard-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 9px;
  margin-bottom: 7px;
  border-radius: 6px;
  color: rgba(255,255,255,.88);
  font-size: .72rem;
  font-weight: 760;
  white-space: nowrap;
}
.dashboard-nav-item.active {
  background: rgba(37, 99, 235, .34);
  color: #fff;
}
.dashboard-nav-item span {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.38);
  font-size: .56rem;
  font-weight: 900;
}
.hero-dashboard-main {
  margin: 12px 12px 12px 0;
  padding: 16px;
  border-radius: 6px;
  background: #fff;
  min-width: 0;
}
.dashboard-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  color: #041E42;
}
.dashboard-toolbar strong {
  font-size: .95rem;
  font-weight: 900;
}
.dashboard-actions {
  display: flex;
  gap: 13px;
}
.dashboard-actions span {
  width: 12px;
  height: 12px;
  border: 2px solid #526481;
  border-radius: 50%;
}
.dashboard-kpis {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}
.dash-kpi {
  min-height: 102px;
  padding: 14px 12px;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(4, 30, 66, .07);
}
.dash-kpi small {
  display: block;
  min-height: 26px;
  color: #041E42;
  font-size: .58rem;
  font-weight: 850;
  line-height: 1.25;
}
.dash-kpi strong {
  display: block;
  margin-top: 16px;
  color: #050B18;
  font-size: clamp(.82rem, 1vw, 1.05rem);
  font-weight: 900;
  white-space: nowrap;
}
.dash-kpi em {
  display: block;
  margin-top: 12px;
  color: #0B8F78;
  font-size: .66rem;
  font-style: normal;
  font-weight: 900;
  text-align: right;
}
.mini-score {
  position: relative;
  width: 58px;
  height: 58px;
  margin: 4px auto 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(#0B8F78 0 82%, #E5E7EB 82% 100%);
}
.mini-score::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: #fff;
}
.mini-score span {
  position: relative;
  z-index: 1;
  color: #050B18;
  font-size: 1.18rem;
  font-weight: 950;
}
.dashboard-panels {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(0, .95fr) minmax(130px, .72fr);
  gap: 12px;
}
.dash-panel {
  min-width: 0;
  min-height: 174px;
  padding: 14px;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(4, 30, 66, .06);
}
.dash-panel h3 {
  margin: 0 0 10px;
  color: #041E42;
  font-size: .72rem;
  font-weight: 900;
}
.line-chart svg {
  width: 100%;
  height: 126px;
  display: block;
}
.grid-line {
  fill: none;
  stroke: #E5E7EB;
  stroke-width: 1;
}
.months {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2px;
  color: #526481;
  font-size: .5rem;
  font-weight: 750;
}
.donut-wrap {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}
.donut-chart {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: conic-gradient(#0B4DDE 0 36%, #2563EB 36% 64%, #4C8DFF 64% 83%, #78AEFF 83% 93%, #BFD7FF 93% 100%);
  position: relative;
}
.donut-chart::after {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  background: #fff;
}
.donut-wrap ul {
  list-style: none;
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
}
.donut-wrap li {
  display: grid;
  grid-template-columns: 8px 1fr auto;
  align-items: center;
  gap: 7px;
  color: #223758;
  font-size: .6rem;
  font-weight: 760;
}
.donut-wrap li span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2563EB;
}
.donut-wrap li:nth-child(2) span { background: #0B4DDE; }
.donut-wrap li:nth-child(3) span { background: #4C8DFF; }
.donut-wrap li:nth-child(4) span { background: #78AEFF; }
.donut-wrap li:nth-child(5) span { background: #BFD7FF; }
.alerts-panel {
  display: grid;
  align-content: start;
  gap: 12px;
}
.alert-row {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 8px;
  align-items: center;
}
.alert-row strong {
  color: #041E42;
  font-size: 1.15rem;
  font-weight: 950;
}
.alert-row.hot strong { color: #FF4D00; }
.alert-row.warn strong { color: #FF7A00; }
.alert-row.info strong { color: #1D4ED8; }
.alert-row span {
  color: #223758;
  font-size: .62rem;
  font-weight: 760;
}
.alerts-panel a {
  margin-top: 8px;
  color: #2563EB;
  font-size: .68rem;
  font-weight: 900;
}
.kpi-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}
.kpi-card, .card, .price-card, .form-card {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.kpi-card { padding: 18px; min-height: 128px; }
.command-hero .kpi-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
  max-width: 560px;
}
.command-hero .kpi-card {
  min-height: 146px;
  padding: 18px;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(4, 30, 66, .10);
}
.command-hero .kpi-card strong {
  color: #050B18;
  font-size: 1.42rem;
}
.command-hero .kpi-card span {
  color: #0B8F78;
}
.kpi-card p { margin-bottom: 6px; font-size: .8rem; font-weight: 800; color: var(--muted-2); }
.kpi-card strong { display: block; font-size: clamp(1.15rem, 1.7vw, 1.52rem); margin: 10px 0 4px; letter-spacing: 0; white-space: nowrap; }
.kpi-card span, .price-note { color: var(--green); font-size: .82rem; font-weight: 800; }
.score-ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--green) 0 82%, #d9e5f7 82% 100%);
  color: var(--text);
  font-weight: 900;
  position: relative;
}
.score-ring::after { content: ""; position: absolute; inset: 9px; border-radius: 50%; background: var(--panel); }
.score-ring span { position: relative; z-index: 1; color: var(--text); font-size: 1.08rem; }

.trust-bar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 14px 42px rgba(6, 26, 61, .06);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 16px;
  border-right: 1px solid var(--line-soft);
  color: var(--muted);
  font-weight: 800;
  font-size: .86rem;
  min-height: 78px;
}
.trust-item:last-child { border-right: 0; }
.icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #eef6ff, #e4efff);
  color: var(--blue);
  font-weight: 900;
  flex: 0 0 auto;
  box-shadow: inset 0 0 0 1px rgba(11, 99, 246, .08);
}
html[data-theme="dark"] .icon { background: rgba(11, 99, 246, .16); }

.split, .page-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 52px;
  align-items: center;
}
.cards-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.cards-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cards-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card { padding: 26px; min-width: 0; }
.card:hover, .price-card:hover { box-shadow: 0 20px 58px rgba(6, 26, 61, .10); }
.card p:last-child { margin-bottom: 0; }
.stat-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.stat { text-align: center; padding: 24px; border: 1px solid var(--line-soft); border-top: 3px solid var(--blue); border-radius: 8px; background: rgba(255,255,255,.78); }
.stat strong { display: block; color: var(--blue); font-size: 2rem; }

.flow { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; align-items: stretch; }
.flow .card { position: relative; }
.step-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 12px;
}
.check-list { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 10px; }
.check-list li { color: var(--muted); position: relative; padding-left: 26px; }
.check-list li::before { content: "+"; position: absolute; left: 0; color: var(--green); font-weight: 900; }

.pricing-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
.price-card {
  padding: 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 17px;
  min-height: 330px;
  background:
    linear-gradient(180deg, rgba(255,255,255,1), rgba(249,252,255,.96));
}
.price-card.featured {
  border-color: rgba(255, 90, 31, .62);
  box-shadow: 0 24px 70px rgba(255, 90, 31, .16), 0 16px 48px rgba(6, 26, 61, .07);
}
.price-card.featured::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border-top: 4px solid var(--orange);
  pointer-events: none;
}
.badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: #eaf3ff;
  color: var(--blue);
  font-size: .75rem;
  font-weight: 900;
}
.badge.orange { color: var(--orange); background: #fff1eb; }
.price { font-size: clamp(1.85rem, 2.7vw, 2.28rem); line-height: 1; font-weight: 900; color: var(--text); }
.price small { font-size: .9rem; color: var(--muted); font-weight: 750; }
.price-card .btn { margin-top: auto; width: 100%; }

.comparison { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); }
.comparison th, .comparison td { padding: 15px; border-bottom: 1px solid var(--line); text-align: left; }
.comparison th { background: var(--surface); color: var(--text); }
.comparison td { color: var(--muted); }

.page-hero { padding: 72px 0 36px; }
.pricing-hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(11,99,246,.12), transparent 28%),
    linear-gradient(180deg, rgba(246,250,255,.84), rgba(255,255,255,0));
}
.pricing-catalog { padding-top: 42px; }
.page-hero.narrow .lead { max-width: 620px; }
.founder-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
  align-items: center;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(246,250,255,.9));
}
.portrait {
  aspect-ratio: 1;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 29%, #c4d2e4 0 17%, transparent 18%),
    radial-gradient(ellipse at 50% 84%, #0b2c63 0 27%, transparent 28%),
    linear-gradient(160deg, #e8f1fb, #f8fbff);
  border: 1px solid var(--line-soft);
  box-shadow: inset 0 0 0 8px rgba(255,255,255,.48);
}
.signature { color: var(--blue); font-family: "Segoe Script", cursive; font-size: 1.45rem; }

.report-showcase {
  background:
    linear-gradient(180deg, #fff, #fbfdff);
}
.report-grid {
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
}
.report-preview-frame {
  position: relative;
  padding: 12px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f7fbff);
  box-shadow: var(--shadow);
}
.report-preview-frame::after {
  content: "";
  position: absolute;
  inset: auto 48px -18px 48px;
  height: 26px;
  border-radius: 999px;
  background: rgba(11,99,246,.20);
  filter: blur(18px);
  z-index: -1;
}
.report-preview-frame img { border-radius: 6px; }

.pricing-band {
  background:
    radial-gradient(circle at 20% 0%, rgba(255,90,31,.08), transparent 24%),
    linear-gradient(180deg, #f8fbff, #ffffff);
}

.founder-section {
  background:
    linear-gradient(180deg, #fff, #f8fbff);
}
.founder-grid {
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
}

.searchbar, .contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--text);
  padding: 0 14px;
}
.contact-form textarea { min-height: 150px; padding-top: 12px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }

.final-cta {
  background:
    radial-gradient(circle at 12% 50%, rgba(11,99,246,.30), transparent 34%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
  border-radius: 8px;
  padding: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  box-shadow: 0 24px 70px rgba(6, 26, 61, .18);
}
.final-cta p { color: #d9e7ff; margin: 0; }
.site-footer {
  background: #061a3d;
  color: #fff;
  padding: 42px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(6, minmax(0, 1fr));
  gap: 28px;
}
.footer-col h3 { font-size: .86rem; margin-bottom: 12px; color: #fff; }
.footer-col a { display: block; color: #bbcae3; font-size: .86rem; margin: 8px 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 28px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #bbcae3;
  font-size: .84rem;
}
.hidden-by-visibility { display: none !important; }

@media (max-width: 1060px) {
  .desktop-nav { display: none; }
  .nav-toggle { display: grid; }
  .hero-grid, .split, .page-grid, .report-grid, .founder-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 28px; }
  .hero-visual { transform: none; }
  .command-hero {
    padding-top: 48px;
  }
  .command-hero .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .command-hero h1,
  .command-hero .lead {
    max-width: 720px;
  }
  .command-hero .dashboard-stage {
    width: 100%;
    margin: 0;
  }
  .pricing-grid, .cards-grid.four, .flow, .trust-bar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-item { border-right: 0; }
  .footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 50px 0; }
  .brand { min-width: 0; }
  .brand-copy span { display: none; }
  .nav-actions .btn { display: none; }
  .kpi-row, .pricing-grid, .cards-grid, .cards-grid.two, .cards-grid.four, .flow, .stat-grid, .trust-bar, .form-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 56px; }
  .command-hero {
    padding: 38px 0 18px;
    min-height: 0;
  }
  .command-hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.3rem);
    line-height: 1.04;
  }
  .command-hero .lead {
    font-size: .98rem;
    line-height: 1.58;
  }
  .command-hero .btn-row,
  .command-hero .btn {
    width: 100%;
  }
  .command-hero .kpi-row {
    grid-template-columns: 1fr;
    max-width: none;
  }
  .command-hero .dashboard-stage {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero-dashboard-nav {
    display: none;
  }
  .hero-dashboard-main {
    margin: 8px;
    padding: 12px;
  }
  .dashboard-kpis,
  .dashboard-panels,
  .donut-wrap {
    grid-template-columns: 1fr;
  }
  .dash-kpi,
  .dash-panel {
    min-height: auto;
  }
  .months {
    display: none;
  }
  h1 { font-size: clamp(2.4rem, 14vw, 3.35rem); }
  .dashboard-stage { padding: 8px; }
  .command-hero .dashboard-stage { padding: 0; }
  .stage-topline { height: 22px; padding-bottom: 6px; }
  .founder-card { grid-template-columns: 1fr; }
  .final-cta { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
}
