:root {
  --page: #f5f7fa;
  --surface: #ffffff;
  --surface-2: #eef2f6;
  --surface-3: #e7ecf2;
  --text: #111820;
  --text-soft: #536172;
  --text-muted: #7a8696;
  --border: #d9e1ea;
  --border-strong: #c8d2dd;
  --brand: #336ff2;
  --brand-hover: #285fd2;
  --brand-soft: #eaf1ff;
  --danger: #d65057;
  --warning: #c78622;
  --positive: #198d62;
  --violet: #8067dc;
  --header-bg: rgba(245, 247, 250, .86);
  --shadow-product: 0 28px 70px rgba(23, 34, 51, .14);
  --shadow-dialog: 0 30px 90px rgba(12, 20, 32, .24);
  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-sm: 7px;
  --container: min(1280px, calc(100vw - 40px));
  color-scheme: light;
}

html[data-theme="dark"] {
  --page: #11151b;
  --surface: #171c24;
  --surface-2: #1c232d;
  --surface-3: #242d39;
  --text: #f1f4f8;
  --text-soft: #aab4c1;
  --text-muted: #7f8b9a;
  --border: #2c3541;
  --border-strong: #394553;
  --brand: #5588f4;
  --brand-hover: #6d9af5;
  --brand-soft: rgba(85, 136, 244, .12);
  --danger: #f06a72;
  --warning: #e1a550;
  --positive: #58c99b;
  --violet: #9a82eb;
  --header-bg: rgba(17, 21, 27, .84);
  --shadow-product: 0 34px 90px rgba(0, 0, 0, .34);
  --shadow-dialog: 0 34px 100px rgba(0, 0, 0, .45);
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--page);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
::selection { background: var(--brand); color: #fff; }

.container {
  width: var(--container);
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--text);
  color: var(--page);
  border-radius: 8px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background .2s ease, border-color .2s ease;
}
.site-header.scrolled {
  background: var(--header-bg);
  border-color: var(--border);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 34px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}
.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  font-size: 20px;
}
.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-copy strong {
  font-size: 17px;
  letter-spacing: -.02em;
}
.brand-copy small {
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.nav-links {
  margin-left: auto;
  display: flex;
  gap: 28px;
}
.nav-links a {
  color: var(--text-soft);
  font-size: 14px;
  transition: color .18s ease;
}
.nav-links a:hover { color: var(--text); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}
.theme-toggle,
.menu-toggle {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-soft);
}
.theme-toggle {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 9px;
}
.theme-toggle svg { width: 18px; height: 18px; }
html[data-theme="dark"] .icon-moon,
html[data-theme="light"] .icon-sun { display: none; }

.button {
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid transparent;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 650;
  font-size: 14px;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button svg { width: 18px; height: 18px; }
.button-primary { background: var(--brand); color: #fff; }
.button-primary:hover { background: var(--brand-hover); }
.button-secondary { background: var(--surface); color: var(--text); border-color: var(--border); }
.button-secondary:hover,
.button-ghost:hover { background: var(--surface-2); }
.button-ghost { background: transparent; color: var(--text); border-color: var(--border); }
.button-large { min-height: 50px; padding: 0 22px; font-size: 15px; }
.button-light { background: #fff; color: #142037; }
.button-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0 10px;
  border-radius: 9px;
}
.menu-toggle span {
  display: block;
  height: 1.5px;
  margin: 6px 0;
  background: currentColor;
}
.mobile-menu { display: none; }

.hero {
  min-height: 820px;
  padding: 136px 0 82px;
  position: relative;
  overflow: hidden;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.hero-orb-a {
  width: 420px;
  height: 420px;
  right: 4%;
  top: 90px;
  background: color-mix(in srgb, var(--brand) 17%, transparent);
}
.hero-orb-b {
  width: 320px;
  height: 320px;
  left: -100px;
  top: 280px;
  background: color-mix(in srgb, var(--violet) 9%, transparent);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(42px, 5vw, 76px);
  align-items: center;
}
.eyebrow {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 78%, transparent);
  color: var(--text-soft);
  font-size: 12px;
}
.eyebrow > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--positive);
}
.hero h1 {
  max-width: 690px;
  margin: 24px 0 20px;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.03;
  letter-spacing: -.05em;
  font-weight: 760;
}
.hero-lead {
  max-width: 660px;
  margin: 0;
  color: var(--text-soft);
  font-size: 19px;
  line-height: 1.7;
}
.hero-actions {
  margin-top: 31px;
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}
.hero-proof {
  margin-top: 42px;
  padding-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
}
.hero-proof div {
  padding-right: 16px;
  display: flex;
  flex-direction: column;
}
.hero-proof strong { font-size: 14px; }
.hero-proof span {
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 12px;
}

.hero-product { min-width: 0; }
.product-frame {
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-product);
}
.frame-top {
  min-height: 41px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}
.frame-dots { display: flex; gap: 5px; }
.frame-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border-strong);
}
.frame-address {
  max-width: 340px;
  margin: 0 auto;
  padding: 5px 12px;
  border-radius: 6px;
  background: var(--surface);
  color: var(--text-muted);
  font-size: 8px;
  text-align: center;
}
.frame-online {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--positive);
  font-size: 8px;
}
.frame-online span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.dashboard {
  height: 500px;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 148px;
  background: var(--page);
  font-size: 8px;
}
.dash-sidebar,
.dash-inspector { background: var(--surface); }
.dash-sidebar {
  padding: 14px 9px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.dash-logo {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--brand);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}
.dash-sidebar nav {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.dash-sidebar nav b {
  padding: 7px 7px;
  border-radius: 5px;
  color: var(--text-soft);
  font-weight: 520;
  line-height: 1.2;
}
.dash-sidebar nav .active {
  background: var(--surface-2);
  color: var(--text);
}
.dash-sidebar > small {
  margin-top: auto;
  color: var(--text-muted);
}
.dash-content {
  min-width: 0;
  padding: 14px;
  overflow: hidden;
}
.dash-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.dash-header span {
  color: var(--brand);
  text-transform: uppercase;
  font-size: 6px;
  letter-spacing: .1em;
}
.dash-header h2 {
  margin: 4px 0 0;
  font-size: 16px;
  line-height: 1.1;
}
.dash-header p {
  margin: 4px 0 0;
  color: var(--text-muted);
}
.dash-header button {
  padding: 6px 8px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--surface);
  color: var(--text);
  font-size: 6px;
}
.dash-top-grid {
  margin-top: 13px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
}
.dash-verdict {
  padding: 10px;
  border-right: 1px solid var(--border);
}
.dash-verdict span,
.dash-ratings span,
.dash-kpis span {
  color: var(--text-muted);
  text-transform: uppercase;
  font-size: 5.5px;
  letter-spacing: .08em;
}
.dash-verdict strong {
  display: block;
  margin-top: 5px;
  font-size: 11px;
}
.dash-verdict p {
  margin: 5px 0 0;
  color: var(--text-soft);
  line-height: 1.45;
}
.dash-ratings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.dash-ratings article {
  padding: 9px;
  border-right: 1px solid var(--border);
}
.dash-ratings article:last-child { border-right: 0; }
.dash-ratings strong {
  display: block;
  margin-top: 6px;
  font-size: 15px;
}
.dash-ratings small { color: var(--text-muted); }
.dash-kpis {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
}
.dash-kpis article {
  padding: 8px;
  border-right: 1px solid var(--border);
}
.dash-kpis article:last-child { border-right: 0; }
.dash-kpis span {
  display: block;
  min-height: 16px;
}
.dash-kpis strong { font-size: 10px; }
.positive { color: var(--positive); }

.timeline-card {
  margin-top: 8px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
}
.timeline-title {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.timeline-title strong,
.timeline-title small { display: block; }
.timeline-title small {
  margin-top: 2px;
  color: var(--text-muted);
}
.timeline-title > span { color: var(--text-muted); }
.timeline-title > span i {
  width: 7px;
  height: 3px;
  margin-right: 3px;
  display: inline-block;
  border-radius: 3px;
  background: var(--danger);
}
.timeline-years {
  margin: 9px 0 6px 82px;
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 5px;
}
.timeline-row {
  min-height: 32px;
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: center;
  border-top: 1px solid var(--border);
}
.timeline-row b {
  color: var(--text-soft);
  font-weight: 520;
}
.timeline-row > div {
  position: relative;
  height: 15px;
  background-image: repeating-linear-gradient(90deg, var(--border) 0 1px, transparent 1px 20%);
}
.bar {
  position: absolute;
  top: 5px;
  height: 6px;
  border-radius: 4px;
}
.bar.blue { background: var(--brand); }
.bar.amber { background: var(--warning); }
.bar.violet { background: var(--violet); }
.bar.red {
  top: 6.5px;
  z-index: 2;
  height: 3px;
  background: var(--danger);
}
.activity-bars {
  height: 24px !important;
  padding: 3px 2px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  background-image: none !important;
}
.activity-bars i {
  flex: 1;
  min-width: 2px;
  border-radius: 2px 2px 0 0;
  background: color-mix(in srgb, var(--brand) 65%, var(--surface));
}
.dash-inspector {
  padding: 15px 11px;
  border-left: 1px solid var(--border);
}
.dash-inspector > span {
  color: var(--brand);
  text-transform: uppercase;
  font-size: 5.5px;
  letter-spacing: .1em;
}
.dash-inspector h3 {
  margin: 5px 0 12px;
  font-size: 11px;
}
.dash-inspector ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dash-inspector li {
  padding: 9px 0;
  display: flex;
  gap: 7px;
  border-top: 1px solid var(--border);
}
.dash-inspector li > i {
  width: 6px;
  height: 6px;
  margin-top: 2px;
  flex: 0 0 auto;
  border-radius: 50%;
}
.dash-inspector li > i.danger { background: var(--danger); }
.dash-inspector li > i.warning { background: var(--warning); }
.dash-inspector li > i.neutral { background: var(--brand); }
.dash-inspector li b,
.dash-inspector li small { display: block; }
.dash-inspector li small {
  margin-top: 2px;
  color: var(--text-muted);
  line-height: 1.35;
}
.client-note {
  margin-top: 12px;
  padding: 9px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: var(--surface-2);
}
.client-note span {
  color: var(--text-muted);
  text-transform: uppercase;
  font-size: 5px;
}
.client-note p {
  margin: 5px 0 0;
  color: var(--text-soft);
  line-height: 1.4;
}
.product-caption {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--text-muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.product-caption strong {
  color: var(--text-soft);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}

.source-line {
  border-block: 1px solid var(--border);
  background: var(--surface);
}
.source-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.source-inner i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border-strong);
}
.source-inner strong { color: var(--text); }

.section { padding: 108px 0; }
.section-heading {
  display: grid;
  grid-template-columns: 52px 1.1fr .7fr;
  gap: 34px;
  align-items: end;
  margin-bottom: 54px;
}
.section-heading.compact { margin-bottom: 48px; }
.section-number {
  color: var(--brand);
  font-size: 12px;
  font-weight: 750;
}
.section-kicker {
  color: var(--brand);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.section-heading h2,
.report-copy h2,
.security-copy h2,
.faq-heading h2,
.cta-card h2 {
  margin: 12px 0 0;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.section-heading p,
.report-copy > p,
.security-copy > p {
  margin: 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.7;
}

.story-list {
  border-top: 1px solid var(--border);
}
.story {
  min-height: 480px;
  padding: 52px 0;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(50px, 7vw, 100px);
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.story-reverse .story-copy { order: 2; }
.story-reverse .story-visual { order: 1; }
.story-label {
  color: var(--brand);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.story-copy h3 {
  margin: 13px 0 15px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.1;
  letter-spacing: -.04em;
}
.story-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.7;
}
.story-copy ul,
.report-copy ul {
  list-style: none;
  padding: 0;
  margin: 25px 0 0;
  display: grid;
  gap: 10px;
}
.story-copy li,
.report-copy li {
  padding-left: 24px;
  position: relative;
  color: var(--text-soft);
}
.story-copy li::before,
.report-copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--positive);
  font-weight: 800;
}
.story-visual {
  min-height: 320px;
  padding: clamp(24px, 3vw, 42px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.source-visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-content: center;
}
.source-node {
  padding: 18px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface-2);
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}
.source-connector {
  grid-column: 1 / -1;
  height: 38px;
  position: relative;
}
.source-connector::before,
.source-connector::after {
  content: "";
  position: absolute;
  background: var(--border-strong);
}
.source-connector::before {
  left: 16%;
  right: 16%;
  top: 10px;
  height: 1px;
}
.source-connector::after {
  left: 50%;
  top: 10px;
  width: 1px;
  height: 28px;
}
.source-result {
  grid-column: 1 / -1;
  padding: 24px;
  border: 1px solid color-mix(in srgb, var(--brand) 45%, var(--border));
  border-radius: var(--radius-md);
  background: var(--brand-soft);
}
.source-result span {
  color: var(--brand);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
}
.source-result strong,
.source-result small { display: block; }
.source-result strong {
  margin-top: 7px;
  font-size: 22px;
}
.source-result small {
  margin-top: 5px;
  color: var(--text-soft);
}

.timeline-demo {
  display: grid;
  align-content: center;
}
.mini-years {
  margin: 0 0 8px 128px;
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 10px;
}
.mini-row {
  min-height: 58px;
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  border-top: 1px solid var(--border);
}
.mini-row b {
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 600;
}
.mini-row > div {
  position: relative;
  height: 21px;
  background-image: repeating-linear-gradient(90deg, var(--border) 0 1px, transparent 1px 20%);
}
.mini-row i {
  position: absolute;
  top: 7px;
  height: 8px;
  border-radius: 4px;
}
.mini-row i.blue,
.mini-legend i.blue { background: var(--brand); }
.mini-row i.amber { background: var(--warning); }
.mini-row i.violet { background: var(--violet); }
.mini-row i.red,
.mini-legend i.red {
  top: 9px;
  z-index: 2;
  height: 4px;
  background: var(--danger);
}
.mini-legend {
  margin-top: 18px;
  display: flex;
  gap: 18px;
  color: var(--text-muted);
  font-size: 11px;
}
.mini-legend span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.mini-legend i {
  width: 14px;
  height: 4px;
  border-radius: 3px;
}

.action-visual {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}
.action-visual > div {
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface-2);
}
.action-visual > div.action-final {
  border-color: color-mix(in srgb, var(--brand) 42%, var(--border));
  background: var(--brand-soft);
}
.action-visual span,
.action-visual strong,
.action-visual small { display: block; }
.action-visual span {
  color: var(--brand);
  font-size: 10px;
  font-weight: 700;
}
.action-visual strong { margin-top: 42px; }
.action-visual small {
  margin-top: 5px;
  color: var(--text-muted);
}
.action-visual > i {
  width: 18px;
  height: 1px;
  background: var(--border-strong);
}

.workflow-section {
  border-block: 1px solid var(--border);
  background: var(--surface);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.step {
  min-height: 290px;
  padding: 25px;
  border-right: 1px solid var(--border);
  background: var(--page);
}
.step:last-child { border-right: 0; }
.step > span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 750;
}
.step h3 {
  margin: 98px 0 12px;
  font-size: 25px;
  letter-spacing: -.035em;
}
.step p {
  margin: 0;
  color: var(--text-soft);
}

.report-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(60px, 8vw, 110px);
  align-items: center;
}
.report-copy > p { margin-top: 20px; }
.report-stack {
  min-height: 480px;
  position: relative;
}
.report-page {
  width: min(540px, 80vw);
  height: 382px;
  position: absolute;
  right: 0;
  top: 46px;
  padding: 25px;
  border: 1px solid #d9dee5;
  border-radius: 8px;
  background: #fff;
  color: #17202b;
  box-shadow: 0 20px 55px rgba(17, 27, 42, .13);
  transform-origin: bottom right;
}
.report-page-back {
  transform: translate(-72px, -14px) rotate(-7deg) scale(.92);
  opacity: .58;
}
.report-page-middle {
  transform: translate(-34px, -4px) rotate(-3deg) scale(.96);
  opacity: .82;
}
.report-page-front { transform: rotate(1.8deg); }
.report-page-head {
  padding-bottom: 12px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e1e6ed;
  font-size: 8px;
  letter-spacing: .08em;
}
.report-page-head span {
  color: #336ff2;
  font-weight: 800;
}
.report-title-line {
  margin: 23px 0 18px;
  font-size: 17px;
  font-weight: 800;
}
.report-ratings,
.report-kpis {
  display: grid;
  gap: 8px;
}
.report-ratings { grid-template-columns: repeat(3, 1fr); }
.report-kpis {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 9px;
}
.report-ratings i,
.report-kpis i,
.report-notes i {
  display: block;
  border-radius: 5px;
  background: #edf1f5;
}
.report-ratings i { height: 64px; }
.report-kpis i { height: 43px; }
.report-notes {
  margin-top: 12px;
  display: grid;
  gap: 7px;
}
.report-notes i {
  height: 28px;
  border-left: 3px solid #df5860;
}
.report-chart {
  margin-top: 24px;
  display: grid;
  gap: 18px;
}
.report-chart i {
  height: 23px;
  border-radius: 4px;
  background: linear-gradient(90deg, #edf1f5 0 25%, #6f93df 25% 70%, #df5860 70% 76%, #edf1f5 76%);
}
.report-table {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}
.report-table i {
  height: 40px;
  display: block;
  border-bottom: 1px solid #e1e6ed;
}

.audience-section {
  border-block: 1px solid var(--border);
  background: var(--surface);
}
.audience-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.audience-list article {
  min-height: 280px;
  padding: 24px;
  border-right: 1px solid var(--border);
  background: var(--page);
}
.audience-list article:last-child { border-right: 0; }
.audience-list span {
  color: var(--brand);
  font-size: 11px;
  font-weight: 750;
}
.audience-list h3 {
  margin: 82px 0 12px;
  font-size: 22px;
  letter-spacing: -.035em;
}
.audience-list p {
  margin: 0;
  color: var(--text-soft);
}

.security-section { background: var(--surface); }
.security-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(60px, 8vw, 110px);
  align-items: center;
}
.security-copy > p { margin-top: 20px; }
.operator-card {
  margin-top: 29px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--page);
}
.operator-card span,
.operator-card strong,
.operator-card small { display: block; }
.operator-card span {
  color: var(--brand);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.operator-card strong { margin-top: 8px; }
.operator-card small {
  margin-top: 5px;
  color: var(--text-soft);
}
.security-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.security-flow article {
  min-height: 220px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  background: var(--page);
}
.security-flow article.active {
  background: var(--brand);
  color: #fff;
}
.security-flow article span {
  color: var(--brand);
  font-size: 10px;
  font-weight: 750;
}
.security-flow article.active span { color: rgba(255,255,255,.78); }
.security-flow article strong {
  margin-top: auto;
  font-size: 17px;
}
.security-flow article small {
  margin-top: 6px;
  color: var(--text-muted);
}
.security-flow article.active small { color: rgba(255,255,255,.72); }
.security-flow > i {
  width: 44px;
  display: grid;
  place-items: center;
  border-inline: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  font-style: normal;
}

.faq-section {
  border-block: 1px solid var(--border);
}
.faq-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(60px, 8vw, 110px);
}
.faq-list { border-top: 1px solid var(--border); }
.faq-list details { border-bottom: 1px solid var(--border); }
.faq-list summary {
  padding: 24px 48px 24px 0;
  position: relative;
  list-style: none;
  cursor: pointer;
  font-weight: 650;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 18px;
  color: var(--text-muted);
  font-size: 24px;
  font-weight: 400;
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list p {
  max-width: 760px;
  margin: -2px 0 24px;
  color: var(--text-soft);
}

.cta-section { padding: 72px 0 110px; }
.cta-card {
  padding: 52px 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 52px;
  align-items: center;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #2f66da, #4a7de8);
  color: #fff;
}
.cta-card > div > span {
  color: #d8e4ff;
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.cta-card h2 {
  max-width: 760px;
  margin-top: 12px;
}
.cta-card p {
  max-width: 700px;
  margin: 17px 0 0;
  color: #dfe8ff;
  font-size: 17px;
}
.cta-actions {
  min-width: 205px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.footer-main {
  padding: 58px 0 40px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
}
.footer-brand p {
  max-width: 360px;
  margin: 18px 0 0;
  color: var(--text-soft);
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links strong {
  margin-bottom: 5px;
  font-size: 13px;
}
.footer-links a,
.footer-links button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text-soft);
  font-size: 13px;
  text-align: left;
}
.footer-links a:hover,
.footer-links button:hover { color: var(--text); }
.footer-operator {
  min-height: 62px;
  display: grid;
  grid-template-columns: 1.25fr .8fr 1.25fr .9fr;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 11px;
}
.footer-bottom {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 11px;
}

.access-dialog {
  width: min(720px, calc(100vw - 28px));
  padding: 0;
  border: 0;
  border-radius: var(--radius-lg);
  background: transparent;
  color: var(--text);
}
.access-dialog::backdrop {
  background: rgba(4, 8, 14, .72);
  backdrop-filter: blur(7px);
}
.access-form {
  padding: 34px;
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-dialog);
}
.dialog-close {
  width: 36px;
  height: 36px;
  position: absolute;
  right: 18px;
  top: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--text);
  font-size: 22px;
}
.access-form h2 {
  margin: 10px 0 8px;
  font-size: 34px;
  letter-spacing: -.035em;
}
.access-form > p {
  margin: 0 0 24px;
  color: var(--text-soft);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-grid label span {
  color: var(--text-soft);
  font-size: 12px;
}
.form-grid input,
.form-grid textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--border);
  border-radius: 8px;
  outline: none;
  background: var(--page);
  color: var(--text);
}
.form-grid input:focus,
.form-grid textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
}
.form-wide { grid-column: 1 / -1; }
.consent-row {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text-soft);
  font-size: 12px;
}
.consent-row input { margin-top: 3px; }
.consent-row a { color: var(--brand); text-decoration: underline; }
.dialog-actions {
  margin-top: 22px;
  display: flex;
  gap: 10px;
}
.form-note {
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--warning) 11%, transparent);
  color: var(--warning);
  font-size: 11px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
  transition-delay: var(--delay, 0ms);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .header-login,
  .header-access { display: none; }
  .mobile-menu {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 66px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
    box-shadow: var(--shadow-product);
  }
  .mobile-menu.open { display: grid; }
  .mobile-menu a,
  .mobile-menu button {
    padding: 12px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--text);
    text-align: left;
  }
  .mobile-menu button { background: var(--brand); color: #fff; }
  .hero-grid,
  .report-grid,
  .security-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy { max-width: 760px; }
  .hero-product { max-width: 900px; }
  .section-heading {
    grid-template-columns: 42px 1fr;
  }
  .section-heading > p {
    grid-column: 2;
    max-width: 740px;
  }
  .story {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .story-reverse .story-copy,
  .story-reverse .story-visual { order: initial; }
  .steps-grid,
  .audience-list { grid-template-columns: 1fr 1fr; }
  .step:nth-child(2),
  .audience-list article:nth-child(2) { border-right: 0; }
  .step:nth-child(-n+2),
  .audience-list article:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .report-stack { min-height: 460px; }
  .security-flow { max-width: 900px; }
  .faq-grid { grid-template-columns: 1fr; gap: 42px; }
  .cta-card { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: row; }
  .footer-main { grid-template-columns: 1fr; gap: 38px; }
}

@media (max-width: 760px) {
  :root { --container: min(100% - 28px, 1280px); }
  .header-inner { min-height: 64px; }
  .brand-copy small { display: none; }
  .hero {
    min-height: auto;
    padding: 112px 0 64px;
  }
  .hero h1 { font-size: 44px; }
  .hero-lead { font-size: 17px; }
  .hero-proof { grid-template-columns: 1fr; gap: 16px; }
  .hero-proof div { padding: 0; }
  .product-frame { border-radius: 12px; }
  .dashboard {
    height: 420px;
    grid-template-columns: 84px minmax(0, 1fr);
  }
  .dash-inspector { display: none; }
  .dash-sidebar { padding: 10px 6px; }
  .dash-sidebar nav b {
    padding: 6px 4px;
    font-size: 6px;
  }
  .dash-content { padding: 10px; }
  .dash-header h2 { font-size: 13px; }
  .dash-top-grid { grid-template-columns: 1fr; }
  .dash-verdict { display: none; }
  .dash-kpis { grid-template-columns: 1fr 1fr; }
  .dash-kpis article:nth-child(2) { border-right: 0; }
  .dash-kpis article:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .timeline-years { margin-left: 72px; }
  .timeline-row { grid-template-columns: 68px 1fr; }
  .product-caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
  .source-inner {
    min-height: 62px;
    gap: 13px;
    flex-wrap: wrap;
    font-size: 9px;
  }
  .source-inner i { display: none; }
  .section { padding: 76px 0; }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 38px;
  }
  .section-heading > p { grid-column: auto; }
  .section-heading h2,
  .report-copy h2,
  .security-copy h2,
  .faq-heading h2,
  .cta-card h2 { font-size: 36px; }
  .story {
    min-height: auto;
    padding: 38px 0;
  }
  .story-visual { min-height: 280px; padding: 20px; }
  .action-visual {
    grid-template-columns: 1fr 1fr;
  }
  .action-visual > i { display: none; }
  .steps-grid,
  .audience-list { grid-template-columns: 1fr; }
  .step,
  .step:nth-child(n),
  .audience-list article,
  .audience-list article:nth-child(n) {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
  .step:last-child,
  .audience-list article:last-child { border-bottom: 0; }
  .step h3,
  .audience-list h3 { margin-top: 62px; }
  .report-stack { min-height: 330px; }
  .report-page {
    width: 92%;
    height: 260px;
    padding: 15px;
  }
  .report-page-back { transform: translate(-28px, -8px) rotate(-6deg) scale(.94); }
  .report-page-middle { transform: translate(-14px, -2px) rotate(-3deg) scale(.97); }
  .report-title-line { margin: 14px 0 10px; font-size: 12px; }
  .report-ratings i { height: 42px; }
  .report-kpis i { height: 30px; }
  .security-flow {
    grid-template-columns: 1fr;
  }
  .security-flow > i {
    width: auto;
    min-height: 40px;
    border: 0;
    border-block: 1px solid var(--border);
  }
  .security-flow article { min-height: 150px; }
  .cta-card { padding: 34px 26px; }
  .cta-actions { flex-direction: column; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-operator {
    padding: 18px 0;
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    padding: 18px 0;
    flex-direction: column;
    align-items: flex-start;
  }
  .form-grid { grid-template-columns: 1fr; }
  .form-wide { grid-column: auto; }
  .dialog-actions { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
