@font-face {
  font-family: "Inter";
  src: url("./fonts/inter-var.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: optional;
}

:root {
  --bg: #1d1d1b;
  --surface: #242422;
  --surface-2: #2d2d2b;
  --text: #f3f3f3;
  --muted: #b7b7b7;
  --line: #3a3a38;
  --brand: #009ce0;
  --brand-bright: #10b3ff;
  --accent: #ff4a1c;
  --paper: #f7f8fa;
  --paper-2: #eef3f6;
  --ink: #151513;
  --container: 1160px;
  --radius: 0.8rem;
  --radius-lg: 1.35rem;
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  --shadow-soft: 0 18px 44px rgba(20, 20, 19, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.58;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 82% 0%, rgba(0, 156, 224, 0.24), transparent 40%),
    radial-gradient(circle at 6% 18%, rgba(255, 74, 28, 0.13), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.05), transparent 38%),
    linear-gradient(180deg, #262624 0%, #1b1b19 55%, #171716 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.12;
  text-wrap: balance;
}

h1 {
  max-width: 13ch;
  margin-bottom: 1rem;
  font-size: clamp(2.35rem, 9vw, 5.1rem);
  letter-spacing: 0;
}

h2 {
  max-width: 18ch;
  margin-bottom: 1rem;
  font-size: clamp(1.65rem, 5vw, 3rem);
}

h3 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 100;
  padding: 0.55rem 0.8rem;
  border-radius: 0.5rem;
  background: var(--brand-bright);
  color: #00151f;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(17, 17, 16, 0.76);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: min(58vw, 232px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  font-size: 0.94rem;
}

.site-nav a,
.nav-dropdown summary {
  color: #dedede;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.nav-dropdown summary:hover,
.nav-dropdown summary:focus-visible {
  color: var(--brand-bright);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  display: inline-flex;
  align-items: center;
  gap: 0.26rem;
  cursor: pointer;
  list-style: none;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::after {
  content: "▾";
  font-size: 0.72rem;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  display: none;
  min-width: 15rem;
  padding: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(20, 20, 19, 0.98);
  box-shadow: var(--shadow);
}

.nav-dropdown[open] .dropdown-menu {
  display: grid;
  gap: 0.25rem;
}

.dropdown-menu a {
  padding: 0.48rem 0.62rem;
  border-radius: 0.5rem;
  white-space: nowrap;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: rgba(0, 156, 224, 0.14);
}

.nav-cta {
  padding: 0.54rem 0.88rem;
  border: 1px solid rgba(16, 179, 255, 0.62);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font: inherit;
  padding: 0.48rem 0.82rem;
}

.section {
  position: relative;
  padding: clamp(5.2rem, 9vw, 8rem) 0;
}

.section-light {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(250, 251, 252, 0.98)),
    var(--paper);
  color: var(--ink);
}

.section-light p,
.section-light .eyebrow,
.section-light li {
  color: #4b4c4b;
}

.section-line {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(0, 156, 224, 0.08));
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
}

.section-heading h2 {
  max-width: 19ch;
}

.wide-heading {
  max-width: 900px;
}

.wide-heading h2 {
  max-width: 22ch;
}

.section-card {
  padding: clamp(1.25rem, 3vw, 2.2rem);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.js .reveal-on-scroll {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.js .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: calc(100vh - 4.2rem);
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: clip;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.8fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.hero h1 span,
.text-blue {
  color: var(--brand-bright);
}

.hero-lead {
  max-width: 62ch;
  color: #e4e4e4;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero-support {
  max-width: 62ch;
  color: #c4c4c4;
}

.hero-note {
  max-width: 68ch;
  margin-top: 1.2rem;
  color: #e9eef2;
  font-weight: 650;
}

.hero-panel {
  position: relative;
  padding: clamp(1.3rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.09), rgba(0, 156, 224, 0.12));
  box-shadow: var(--shadow);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0.85rem auto auto 0.85rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(255, 74, 28, 0.8);
}

.hero-dashboard {
  display: grid;
  gap: 1rem;
  border-radius: var(--radius-lg);
}

.dashboard-top,
.kpi-row,
.pipeline-visual,
.chart-card {
  position: relative;
  z-index: 1;
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.dashboard-top .eyebrow {
  margin-bottom: 0;
}

.dashboard-top span {
  padding: 0.32rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #d9eef8;
  font-size: 0.78rem;
  font-weight: 800;
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.kpi-row div {
  min-width: 0;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.045);
}

.kpi-row strong,
.kpi-row span {
  display: block;
}

.kpi-row strong {
  color: #ffffff;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.05;
}

.kpi-row span {
  margin-top: 0.25rem;
  color: #aebdc6;
  font-size: 0.76rem;
  line-height: 1.25;
}

.pipeline-visual {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.045);
}

.pipeline-visual div {
  min-height: 6.5rem;
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(16, 179, 255, 0.16), rgba(16, 179, 255, 0.02));
}

.pipeline-visual div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.pipeline-visual span {
  color: #bcd4df;
  font-size: 0.78rem;
}

.pipeline-visual strong {
  color: #ffffff;
  font-size: clamp(1.25rem, 3vw, 1.8rem);
}

.chart-card {
  display: grid;
  gap: 0.7rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
}

.chart-row {
  display: grid;
  grid-template-columns: minmax(5.2rem, 0.8fr) minmax(0, 1.4fr);
  gap: 0.7rem;
  align-items: center;
}

.chart-row span {
  color: #d7edf8;
  font-size: 0.82rem;
}

.chart-row i,
.graph-line i {
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.chart-row i::before,
.graph-line i::before {
  content: "";
  display: block;
  width: var(--bar);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), var(--brand-bright), #a9e4ff);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--reveal-delay, 0ms) + 120ms);
}

.js .reveal-on-scroll.is-visible .chart-row i::before,
.js .reveal-on-scroll.is-visible .graph-line i::before {
  transform: scaleX(1);
}

.system-flow {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.flow-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.72rem;
  align-items: start;
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.68rem;
  background: rgba(0, 0, 0, 0.16);
}

.flow-dot {
  width: 1.8rem;
  height: 1.8rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--brand), #a9e4ff);
  color: #00151f;
  font-weight: 800;
  font-size: 0.82rem;
}

.eyebrow {
  margin-bottom: 0.75rem;
  color: var(--brand-bright);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.lead {
  max-width: 68ch;
  color: #dedede;
  font-size: clamp(1.02rem, 1.8vw, 1.2rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.82rem 1.18rem;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(120deg, var(--brand), var(--brand-bright));
  color: #00151f;
  box-shadow: 0 12px 34px rgba(0, 156, 224, 0.32);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #f2f2f2;
}

.section-light .btn-secondary {
  border-color: rgba(0, 0, 0, 0.22);
  color: var(--ink);
}

.grid-two {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: clamp(2rem, 6vw, 4rem);
  align-items: start;
}

.cards-grid,
.metrics-grid,
.vertical-grid,
.steps-grid,
.qualification-grid,
.cases-grid,
.pain-grid,
.system-map {
  display: grid;
  gap: 1rem;
}

.cards-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.metrics-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vertical-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  counter-reset: step;
}

.qualification-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.4rem;
}

.cases-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.4rem;
}

.pain-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(1rem, 3vw, 1.5rem);
  align-items: stretch;
}

.loss-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  background: #171716;
  box-shadow: var(--shadow-soft);
}

.loss-card strong {
  color: #ffffff;
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  line-height: 1.14;
}

.loss-card p {
  margin-top: 1rem;
  margin-bottom: 0;
  color: #c9d5dc;
}

.pain-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pain-grid li {
  min-height: 6rem;
  padding: 1.1rem 1.1rem 1.1rem 3rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1rem;
  background: #ffffff;
  color: #252624;
  font-weight: 720;
  box-shadow: 0 12px 30px rgba(20, 20, 19, 0.07);
  position: relative;
}

.pain-grid li::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  top: 1.35rem;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0.42rem rgba(255, 74, 28, 0.13);
}

.system-map {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
  position: relative;
}

.system-map::before {
  content: "";
  position: absolute;
  top: 2.1rem;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16, 179, 255, 0.8), transparent);
}

.system-map div {
  position: relative;
  z-index: 1;
  min-height: 12rem;
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 1rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(0, 156, 224, 0.1));
  box-shadow: var(--shadow);
}

.system-map span {
  display: inline-grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  margin-bottom: 1.4rem;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--brand), #a9e4ff);
  color: #00151f;
  font-size: 0.82rem;
  font-weight: 900;
}

.system-map strong {
  display: block;
  margin-bottom: 0.45rem;
  color: #ffffff;
  font-size: 1.1rem;
}

.system-map p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.four-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.metric,
.step,
.callout {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.04), rgba(0, 156, 224, 0.07));
  box-shadow: var(--shadow);
}

.section-light .card,
.section-light .metric,
.section-light .step,
.section-light .callout {
  border-color: rgba(0, 0, 0, 0.09);
  background: linear-gradient(180deg, #ffffff, #fbfcfd);
  box-shadow: 0 12px 32px rgba(20, 20, 19, 0.08);
}

.card {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: clamp(1.15rem, 2.4vw, 1.55rem);
}

.callout {
  padding: clamp(1.15rem, 2.4vw, 1.55rem);
}

.card p:last-child,
.metric p:last-child,
.step p:last-child,
.callout p:last-child {
  margin-bottom: 0;
}

.card small {
  display: block;
  color: #d6edf8;
  font-weight: 750;
  margin-bottom: 0.75rem;
}

.section-light .card small {
  color: #006fa2;
}

.card ul,
.check-list,
.plain-list {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
}

.diagnostic-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1rem;
  align-items: stretch;
}

.diagnostic-list {
  align-content: start;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  padding: clamp(1rem, 2.2vw, 1.25rem);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.16);
}

.diagnostic-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  padding: 0.8rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.045);
  color: #e4edf2;
}

.diagnostic-list span {
  color: var(--brand-bright);
  font-size: 0.75rem;
  font-weight: 900;
}

.diagnostic-summary {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.2rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: 1rem;
  background: #f7f8fa;
  color: var(--ink);
}

.diagnostic-summary p {
  color: #4b4c4b;
}

.diagnostic-summary .btn {
  width: fit-content;
}

.card li,
.check-list li {
  position: relative;
  padding-left: 1.35rem;
  color: #d7d7d7;
}

.section-light .card li,
.section-light .check-list li {
  color: #404240;
}

.card li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 74, 28, 0.18);
}

.plain-list li {
  position: relative;
  padding-left: 1.35rem;
  color: #d7d7d7;
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.55rem;
  height: 0.12rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}

.section-light .plain-list li {
  color: #404240;
}

.section-light .plain-list li::before {
  background: rgba(0, 0, 0, 0.32);
}

.card .btn {
  width: fit-content;
  margin-top: auto;
}

.highlight {
  padding: clamp(1.25rem, 3vw, 2rem);
  border-left: 4px solid var(--brand-bright);
  border-radius: var(--radius);
  background: rgba(16, 179, 255, 0.1);
}

.highlight strong {
  display: block;
  color: var(--text);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.section-light .highlight {
  background: rgba(0, 156, 224, 0.1);
}

.section-light .highlight strong {
  color: var(--ink);
}

.callout-muted {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.025), rgba(255, 74, 28, 0.06));
}

.section-light .callout-muted {
  background: #f2f4f6;
}

.compare-table {
  display: grid;
  margin-top: 1.4rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.compare-table-strong {
  margin-top: 0;
}

.section-light .compare-table {
  border-color: rgba(0, 0, 0, 0.09);
  background: linear-gradient(180deg, #ffffff, #fbfcfd);
  box-shadow: 0 12px 32px rgba(20, 20, 19, 0.08);
}

.compare-table > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.compare-table > div + div {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.section-light .compare-table > div + div {
  border-top-color: rgba(0, 0, 0, 0.08);
}

.compare-table span,
.compare-table strong {
  padding: clamp(1rem, 2.2vw, 1.35rem);
}

.compare-table span + span,
.compare-table strong + strong {
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.section-light .compare-table span + span,
.section-light .compare-table strong + strong {
  border-left-color: rgba(0, 0, 0, 0.08);
}

.compare-head {
  background: rgba(16, 179, 255, 0.1);
}

.section-light .compare-head {
  background: rgba(0, 156, 224, 0.08);
}

.compare-table span {
  color: #d7d7d7;
}

.section-light .compare-table span {
  color: #404240;
}

.proof-note {
  max-width: 58ch;
  margin-top: 1.2rem;
  color: #f1f6f8;
  font-weight: 750;
}

.metrics-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(300px, 1.12fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin-bottom: 1.4rem;
}

.metric-graph {
  display: grid;
  gap: 0.9rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.085), rgba(0, 156, 224, 0.1));
  box-shadow: var(--shadow);
}

.graph-line {
  display: grid;
  grid-template-columns: minmax(7rem, 0.95fr) minmax(0, 1.4fr) auto;
  gap: 0.8rem;
  align-items: center;
}

.graph-line span {
  color: #e6eef3;
  font-weight: 720;
  font-size: 0.92rem;
}

.graph-line strong {
  min-width: 2.2rem;
  color: #ffffff;
  text-align: right;
}

.metric,
.step {
  padding: clamp(1.15rem, 2.4vw, 1.55rem);
}

.step,
.metric,
.card,
.callout,
.case-card {
  min-height: 100%;
}

.metric h3 {
  color: var(--brand-bright);
}

.section-light .metric h3 {
  color: #006fa2;
}

.step {
  counter-increment: step;
}

.step::before {
  content: counter(step, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.8rem;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--brand), #a9e4ff);
  color: #00151f;
  font-size: 0.82rem;
  font-weight: 850;
}

.cta-band {
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(0, 156, 224, 0.22), rgba(255, 74, 28, 0.12));
  border: 1px solid rgba(16, 179, 255, 0.34);
  box-shadow: var(--shadow);
}

.case-card {
  padding: clamp(1.15rem, 2.4vw, 1.55rem);
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff, #fbfcfd);
  box-shadow: var(--shadow-soft);
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .chart-row i::before,
  .graph-line i::before {
    transform: scaleX(1);
    transition: none;
  }
}

.case-card > span {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.34rem 0.6rem;
  border-radius: 999px;
  background: rgba(0, 156, 224, 0.1);
  color: #006fa2;
  font-size: 0.78rem;
  font-weight: 850;
}

.case-card dl {
  display: grid;
  gap: 0.8rem;
  margin: 1rem 0 0;
}

.case-card dl div {
  padding-top: 0.8rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.case-card dt {
  color: #151513;
  font-weight: 850;
}

.case-card dd {
  margin: 0.16rem 0 0;
  color: #4b4c4b;
}

.cta-band h2 {
  max-width: 20ch;
}

.site-footer {
  padding: 3.3rem 0 2.2rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.04));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 1.7rem;
}

.footer-logo {
  width: 210px;
  margin-bottom: 1rem;
}

.footer-title {
  margin-bottom: 0.65rem;
  color: #f2f2f2;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.45rem;
}

.footer-links a {
  width: fit-content;
  color: #d7edf8;
  font-size: 0.94rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--brand-bright);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #9eb2bf;
  font-size: 0.86rem;
}

.page-hero {
  padding: clamp(4.5rem, 8vw, 7rem) 0 clamp(3.5rem, 7vw, 5.5rem);
}

.page-hero h1 {
  max-width: 16ch;
}

.page-hero .lead {
  max-width: 62ch;
}

.mini-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.mini-flow span {
  padding: 0.42rem 0.68rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #e9eef2;
  font-size: 0.88rem;
}

.section-light .mini-flow span {
  border-color: rgba(0, 0, 0, 0.15);
  color: #252624;
}

.whatsapp-float {
  display: none;
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 0.78rem;
    font-size: 0.88rem;
  }

  .vertical-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .four-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .system-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .system-map::before {
    display: none;
  }

  .metrics-showcase,
  .pain-layout,
  .diagnostic-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 880px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.9rem 1rem 1.1rem;
    background: #161615;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 1rem;
  }

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

  .site-nav a,
  .nav-dropdown summary {
    padding: 0.48rem 0;
  }

  .nav-dropdown summary {
    justify-content: space-between;
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    min-width: 0;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.04);
  }

  .hero {
    min-height: auto;
  }

  .hero-inner,
  .grid-two,
  .cards-grid,
  .four-grid,
  .metrics-grid,
  .steps-grid,
  .qualification-grid,
  .cases-grid,
  .pain-grid,
  .diagnostic-list {
    grid-template-columns: 1fr;
  }

  .hero-dashboard,
  .metric-graph,
  .section-card {
    border-radius: 1rem;
  }

  .kpi-row,
  .pipeline-visual {
    grid-template-columns: 1fr;
  }

  .pipeline-visual div {
    min-height: auto;
  }

  .pipeline-visual div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
  }

  .graph-line,
  .chart-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .diagnostic-summary .btn {
    width: 100%;
  }

  .compare-table > div {
    grid-template-columns: 1fr;
  }

  .compare-table span + span,
  .compare-table strong + strong {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
  }

  .section-light .compare-table span + span,
  .section-light .compare-table strong + strong {
    border-top-color: rgba(0, 0, 0, 0.08);
  }

  .actions,
  .actions .btn,
  .card .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 2rem, var(--container));
  }

  .brand-logo {
    width: min(56vw, 190px);
  }

  .nav-wrap {
    min-height: 3.9rem;
  }

  .section,
  .page-hero {
    padding-block: 4rem;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(2.05rem, 12vw, 3.05rem);
  }

  .page-hero h1 {
    max-width: 15ch;
  }

  .hero {
    padding-block: 3rem 4rem;
  }

  .vertical-grid {
    grid-template-columns: 1fr;
  }

  .pain-grid li {
    min-height: auto;
  }

}
