/* ============================================================
   components.css — all component-level styles
   ============================================================ */

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wide);
  padding: 14px 28px;
  border: 2px solid var(--red);
  border-radius: var(--r-sm);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.btn-primary:hover { background: var(--red-hover); border-color: var(--red-hover); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font);
  font-size: 14px;
  font-weight: var(--fw-semi);
  letter-spacing: var(--ls-wide);
  padding: 14px 24px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--r-sm);
  cursor: pointer;
  text-decoration: none;
  transition: border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.btn-ghost:hover { border-color: rgba(255, 255, 255, 0.5); color: #fff; }

/* ── Hero copy ── */
.hero-eyebrow {
  font-size: 10px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.5rem, 4.5vw, 4.25rem);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: normal;
  color: var(--red);
}
.hero-sub {
  font-size: var(--text-body-lg);
  font-weight: var(--fw-book);
  color: rgba(255, 255, 255, 0.55);
  max-width: 440px;
  line-height: var(--lh-loose);
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-footnote {
  margin-top: 24px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.02em;
}
.hero-footnote a { color: rgba(255, 255, 255, 0.4); text-decoration: none; }
.hero-footnote a:hover { color: rgba(255, 255, 255, 0.7); }

/* ── DetectX® UI mockup (hero right) ── */
.ui-frame {
  width: 100%;
  max-width: 560px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-md);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(228, 44, 47, 0.15);
  transform: perspective(1400px) rotateY(-4deg) rotateX(2deg);
  overflow: hidden;
  font-size: 11px;
}
.ui-topbar {
  background: #111;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.ui-topbar-left { display: flex; align-items: center; gap: 12px; }
.ui-topbar-logo {
  font-size: 10px;
  font-weight: var(--fw-bold);
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ui-topbar-logo img { height: 14px; }
.ui-topbar-badge {
  background: rgba(228, 44, 47, 0.15);
  border: 1px solid rgba(228, 44, 47, 0.3);
  color: var(--red);
  font-size: 9px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  padding: 2px 6px;
  border-radius: var(--r-sm);
  text-transform: uppercase;
}
.ui-topbar-right { display: flex; align-items: center; gap: 8px; }
.ui-avatar {
  width: 22px; height: 22px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: var(--fw-bold); color: #fff;
}
.ui-body { display: grid; grid-template-columns: 140px 1fr; }
.ui-sidebar {
  background: #161616;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px 0;
}
.ui-sidebar-section { padding: 4px 12px; margin-bottom: 2px; }
.ui-sidebar-label {
  font-size: 8px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  padding: 8px 0 4px;
}
.ui-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: var(--r-sm);
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  font-weight: var(--fw-semi);
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease);
  letter-spacing: 0.01em;
}
.ui-nav-item.active {
  background: rgba(228, 44, 47, 0.12);
  color: #fff;
  border-left: 2px solid var(--red);
  margin-left: -12px;
  padding-left: 18px;
}
.ui-nav-item .dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.dot-red   { background: var(--red); }
.dot-green { background: var(--green); }
.dot-blue  { background: var(--lightblue); }
.dot-grey  { background: rgba(255, 255, 255, 0.2); }
.ui-main { padding: 14px; overflow: hidden; }
.ui-main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.ui-main-title { font-size: 12px; font-weight: var(--fw-bold); color: #fff; letter-spacing: 0.01em; }
.ui-main-sub   { font-size: 9px; color: rgba(255, 255, 255, 0.35); margin-top: 1px; }
.ui-filter-row { display: flex; gap: 4px; margin-bottom: 10px; }
.ui-filter {
  font-size: 9px;
  font-weight: var(--fw-semi);
  padding: 3px 8px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  letter-spacing: 0.03em;
}
.ui-filter.active { background: var(--red); border-color: var(--red); color: #fff; }
.ui-kpi-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; margin-bottom: 10px; }
.ui-kpi {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r-sm);
  padding: 7px 8px;
}
.ui-kpi-val {
  font-size: 16px;
  font-weight: var(--fw-bold);
  color: #fff;
  line-height: 1;
}
.ui-kpi-val--red   { color: var(--red); }
.ui-kpi-val--green { color: var(--green); }
.ui-kpi-label {
  font-size: 8px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 3px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ui-table-head {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 80px;
  gap: 4px;
  padding: 4px 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 2px;
}
.ui-th {
  font-size: 8px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
}
.ui-alert-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 80px;
  gap: 4px;
  padding: 6px 6px;
  border-radius: var(--r-sm);
  align-items: center;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.ui-alert-row:hover { background: rgba(255, 255, 255, 0.04); }
.ui-alert-row.selected { background: rgba(228, 44, 47, 0.08); border-color: rgba(228, 44, 47, 0.15); }
.ui-alert-name { font-size: 10px; font-weight: var(--fw-semi); color: rgba(255, 255, 255, 0.85); }
.ui-alert-sub  { font-size: 8px; color: rgba(255, 255, 255, 0.3); margin-top: 1px; }
.ui-alert-type { font-size: 9px; color: rgba(255, 255, 255, 0.45); }
.ui-alert-score {
  font-size: 10px;
  font-weight: var(--fw-bold);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 4px;
}
.score-bar {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}
.score-fill         { height: 100%; border-radius: 2px; }
.score-fill--high   { background: var(--red); }
.score-fill--med    { background: var(--amber); }
.score-fill--low    { background: var(--green); }
.ui-badge {
  font-size: 8px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 2px 5px;
  border-radius: var(--r-sm);
  display: inline-block;
}
.badge-open   { background: rgba(228, 44, 47, 0.15);   color: var(--red); }
.badge-review { background: rgba(245, 158, 11, 0.15);  color: var(--amber); }
.badge-closed { background: rgba(100, 222, 149, 0.12); color: var(--green); }
.module-action-btn {
  background: var(--red);
  color: #fff;
  font-family: var(--font);
  font-size: 9px;
  font-weight: var(--fw-bold);
  padding: 5px 10px;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
}

/* ── Trust bar ── */
.trust-label {
  font-size: 10px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #bbb;
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-logos {
  display: flex;
  align-items: center;
  gap: 40px;
  flex: 1;
  justify-content: center;
}
.trust-logo-item {
  font-size: 13px;
  font-weight: var(--fw-bold);
  color: #bbb;
  letter-spacing: 0.04em;
  white-space: nowrap;
  filter: grayscale(1);
  opacity: 0.5;
  transition: opacity var(--dur-fast) var(--ease);
}
.trust-logo-item:hover { opacity: 0.85; }
.trust-stat {
  font-size: 13px;
  font-weight: var(--fw-semi);
  color: #999;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.trust-stat strong { color: var(--red); font-weight: var(--fw-bold); }

/* ── Platform tabs ── */
.platform-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}
.platform-tabs {
  background: #fff;
  display: flex;
  flex-direction: column;
}
.platform-tab {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease);
  position: relative;
}
.platform-tab:last-child { border-bottom: none; }
.platform-tab:hover { background: #faf9f7; }
.platform-tab.active {
  background: var(--off-white);
  border-left: 3px solid var(--red);
}
.platform-tab-label {
  font-size: 9px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease);
}
.platform-tab.active .platform-tab-label { opacity: 1; }
.platform-tab h3 {
  font-size: 14px;
  font-weight: var(--fw-bold);
  color: var(--dark);
  margin-bottom: 4px;
  line-height: 1.2;
}
.platform-tab p {
  font-size: 12px;
  color: #999;
  line-height: 1.5;
  display: none;
}
.platform-tab.active p { display: block; color: #666; }
.platform-panel {
  background: var(--dark);
  display: none;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.platform-panel.active { display: flex; }
.module-screen {
  flex: 1;
  padding: 20px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
}
.module-screen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.module-screen-title { font-size: 13px; font-weight: var(--fw-bold); color: #fff; }
.module-screen-sub   { font-size: 9px; color: rgba(255, 255, 255, 0.3); margin-top: 2px; }
.mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 48px;
  margin: 12px 0;
}
.mini-bar {
  flex: 1;
  border-radius: 1px 1px 0 0;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
.mini-bar-fill {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  border-radius: 1px 1px 0 0;
  background: rgba(228, 44, 47, 0.5);
}
.mini-bar-fill.active { background: var(--red); }
.risk-gauge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r-sm);
  padding: 10px 12px;
  margin: 8px 0;
}
.gauge-score {
  font-size: 28px;
  font-weight: var(--fw-bold);
  color: var(--red);
  line-height: 1;
  min-width: 44px;
}
.gauge-label {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.gauge-bar-wrap { flex: 1; }
.gauge-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 4px;
}
.gauge-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--green) 0%, var(--amber) 50%, var(--red) 100%);
}
.gauge-ticks {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  color: rgba(255, 255, 255, 0.2);
}
.network-map {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r-sm);
  height: 120px;
  position: relative;
  overflow: hidden;
  margin: 8px 0;
}
.node {
  position: absolute;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; font-weight: var(--fw-bold);
}
.node-red  { background: rgba(228, 44, 47, 0.25); border: 1px solid rgba(228, 44, 47, 0.5); color: var(--red); }
.node-grey { background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.15); color: rgba(255, 255, 255, 0.5); }
.node-blue { background: rgba(139, 228, 255, 0.1); border: 1px solid rgba(139, 228, 255, 0.3); color: var(--lightblue); }
.edge { position: absolute; background: rgba(255, 255, 255, 0.08); height: 1px; transform-origin: left center; }
.edge.hot { background: rgba(228, 44, 47, 0.4); }

/* ── Solutions overview ── */
.sol-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
  padding-bottom: 40px;
  border-bottom: 1.5px solid #111;
}
.sol-header-overline {
  font-size: 10px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.sol-header h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: var(--fw-bold);
  color: var(--dark);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
}
.sol-header-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sol-header-right p { font-size: 16px; color: #666; line-height: var(--lh-loose); }
.sol-count-row { display: flex; gap: 32px; padding-top: 8px; }
.sol-count strong {
  font-size: 28px;
  font-weight: var(--fw-bold);
  color: var(--dark);
  display: block;
  line-height: 1;
}
.sol-count span {
  font-size: 11px;
  font-weight: var(--fw-semi);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #aaa;
}
.sol-modules {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.sol-module {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 22px 24px 22px 0;
  border-bottom: 1px dotted #d0cec9;
  border-right: 1px solid transparent;
  transition: background var(--dur-fast) var(--ease);
  cursor: default;
  position: relative;
}
.sol-module:nth-child(odd)  { padding-right: 40px; border-right: 1px dotted #d0cec9; }
.sol-module:nth-child(even) { padding-left: 40px; }
.sol-module:hover { background: #faf9f7; }
.sol-module:hover .sol-mod-num  { color: var(--dark); }
.sol-module:hover .sol-mod-icon { background: var(--red); color: #fff; }
.sol-mod-num {
  font-size: 28px;
  font-weight: var(--fw-bold);
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.sol-mod-name {
  font-size: 15px;
  font-weight: var(--fw-bold);
  color: var(--dark);
  margin-bottom: 3px;
  line-height: 1.2;
}
.sol-mod-desc { font-size: 12px; color: #999; line-height: 1.5; }
.sol-mod-icon {
  width: 32px; height: 32px;
  background: var(--red-soft);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  flex-shrink: 0;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.sol-bottom {
  margin-top: 48px;
  background: var(--dark);
  padding: 32px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}
.sol-bottom-left { display: flex; align-items: center; gap: 48px; }
.sol-bottom-stat .num {
  font-size: 32px;
  font-weight: var(--fw-bold);
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.02em;
}
.sol-bottom-stat .lbl {
  font-size: 11px;
  font-weight: var(--fw-semi);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 4px;
}
.sol-bottom-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

/* ── Product showcase ── */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.showcase-card {
  background: #fff;
  border: 1px solid var(--border);
  overflow: hidden;
}
.showcase-screen {
  background: var(--dark);
  padding: 16px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-bottom: 2px solid var(--red);
  position: relative;
  overflow: hidden;
}
.showcase-screen::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(228, 44, 47, 0.07) 0%, transparent 60%);
  pointer-events: none;
}
.showcase-body    { padding: 24px 24px 28px; }
.showcase-body h3 {
  font-size: 17px;
  font-weight: var(--fw-bold);
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.25;
}
.showcase-body p  { font-size: 14px; color: #777; line-height: var(--lh-loose); margin-bottom: 16px; }
.showcase-link {
  font-size: 13px;
  font-weight: var(--fw-bold);
  color: var(--red);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.showcase-link:hover { text-decoration: underline; }

/* ── Stats section ── */
.stats-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.stats-rule {
  width: 32px;
  height: 3px;
  background: var(--dark);
  margin-bottom: 24px;
}
.stats-split h2 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: var(--fw-bold);
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.stats-split > .stats-left > p {
  font-size: 16px;
  color: #888;
  line-height: var(--lh-loose);
  max-width: 360px;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.stat-cell {
  padding: 32px 28px 28px;
  background: #fff;
  border: 1px solid var(--border);
}
.stat-number {
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  font-weight: var(--fw-bold);
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 14px;
  font-weight: var(--fw-bold);
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.3;
}
.stat-sub { font-size: 13px; color: #999; line-height: 1.55; }

/* ── How it works — pipeline ── */
.pipeline-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  gap: 0;
}
.pipeline-row::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 56px;
  right: 56px;
  height: 1px;
  border-top: 1.5px dashed #ccc;
  z-index: 0;
}
.pipeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 1;
  padding: 0 12px;
}
.pipeline-icon {
  width: 56px; height: 56px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--dark);
  position: relative;
  z-index: 1;
}
.pipeline-icon--accent {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
}
.pipeline-step h4 {
  font-size: 13px;
  font-weight: var(--fw-bold);
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.3;
}
.pipeline-step p { font-size: 12px; color: #999; line-height: 1.55; max-width: 130px; }
.pipeline-pills {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.pipeline-pill {
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: var(--r-sm);
  background: #fff;
  border: 1px solid var(--border);
  color: var(--dark);
}

/* ── False positive chart ── */
.fp-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: center;
  margin-top: 56px;
}
.fp-chart-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 28px 28px 20px;
}
.fp-chart-title {
  font-size: 10px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 24px;
}
.fp-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 160px;
  margin-bottom: 12px;
}
.fp-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  height: 100%;
  justify-content: flex-end;
}
.fp-bar-before {
  width: 100%;
  border-radius: 1px 1px 0 0;
  background: #ddd;
}
.fp-bar-after {
  width: 100%;
  border-radius: 1px 1px 0 0;
  background: var(--red);
  opacity: 0.85;
}
.fp-month-lbl { font-size: 8px; color: #bbb; }
.fp-legend {
  display: flex;
  gap: 20px;
  padding-top: 12px;
  border-top: 1px dotted #d0cec9;
}
.fp-legend-item { display: flex; align-items: center; gap: 6px; font-size: 11px; color: #888; }
.fp-legend-dot  { width: 10px; height: 10px; border-radius: 1px; flex-shrink: 0; }
.fp-callout-stat {
  font-size: 64px;
  font-weight: var(--fw-bold);
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.03em;
}
.fp-callout-unit  { font-size: 28px; }
.fp-callout-label {
  font-size: 13px;
  font-weight: var(--fw-bold);
  color: var(--dark);
  margin: 8px 0 16px;
}
.fp-callout-desc  { font-size: 14px; color: #777; line-height: var(--lh-loose); }

/* ── 360° ring diagram ── */
.ring-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: center;
  margin-top: 56px;
}
.ring-diagram { position: relative; height: 380px; }
.ring-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 3;
  box-shadow: 0 0 0 16px rgba(228, 44, 47, 0.12), 0 0 0 32px rgba(228, 44, 47, 0.06);
}
.ring-center-label {
  font-size: 8px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.ring-center-title {
  font-size: 13px;
  font-weight: var(--fw-bold);
  color: #fff;
  margin-top: 2px;
  line-height: 1.2;
}
.ring-spoke {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-sm);
  padding: 8px 12px;
  white-space: nowrap;
  z-index: 2;
}
.ring-spoke-icon { color: var(--red); flex-shrink: 0; }
.ring-spoke-name { font-size: 11px; font-weight: var(--fw-bold); color: #fff; }
.ring-spoke-val  { font-size: 9px; color: rgba(255, 255, 255, 0.4); margin-top: 1px; }
.ring-copy h3 {
  font-size: 26px;
  font-weight: var(--fw-bold);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.ring-copy p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 24px;
}
.ring-features { display: flex; flex-direction: column; gap: 10px; }
.ring-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: var(--fw-semi);
}
.ring-feature-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* ── Architecture diagram ── */
.arch-diagram {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  align-items: center;
  gap: 0;
  min-height: 400px;
  position: relative;
}
.arch-col { display: flex; flex-direction: column; gap: 10px; }
.arch-col-label {
  font-size: 9px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.arch-node {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.arch-node--dark      { background: var(--dark); border-color: var(--dark); }
.arch-node--highlight { border-color: rgba(228, 44, 47, 0.4); background: rgba(228, 44, 47, 0.04); }
.arch-node-icon {
  width: 28px; height: 28px;
  border-radius: var(--r-sm);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--red-soft);
  color: var(--red);
}
.arch-node--dark .arch-node-icon { background: rgba(255, 255, 255, 0.08); color: rgba(255, 255, 255, 0.6); }
.arch-node-label { font-size: 11px; font-weight: var(--fw-bold); color: var(--dark); line-height: 1.2; }
.arch-node--dark .arch-node-label { color: #fff; }
.arch-node-sub  { font-size: 9px; color: #aaa; margin-top: 1px; }
.arch-node--dark .arch-node-sub { color: rgba(255, 255, 255, 0.35); }
.arch-center-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  position: relative;
}
.arch-engine {
  background: var(--dark);
  border: 2px solid rgba(228, 44, 47, 0.45);
  border-radius: var(--r-md);
  padding: 28px 24px;
  text-align: center;
  width: 200px;
  box-shadow: 0 0 0 10px rgba(228, 44, 47, 0.04), 0 12px 48px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}
.arch-engine-badge {
  font-size: 8px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.arch-engine-logo { height: 18px; margin: 0 auto 10px; opacity: 0.9; }
.arch-engine-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  margin-top: 12px;
}
.arch-chip {
  font-size: 8px;
  font-weight: var(--fw-bold);
  padding: 2px 6px;
  border-radius: 1px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.03em;
}
.arch-chip--red { background: rgba(228, 44, 47, 0.2); color: var(--red); }
.arch-bottom-strip {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 36px;
  border: 1px solid var(--border);
  background: #fff;
  overflow: hidden;
}
.arch-strip-item {
  flex: 1;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-right: 1px solid var(--border);
}
.arch-strip-item:last-child { border-right: none; }
.arch-strip-icon {
  width: 32px; height: 32px;
  background: var(--red-soft);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}
.arch-strip-label { font-size: 12px; font-weight: var(--fw-bold); color: var(--dark); line-height: 1.2; }
.arch-strip-sub   { font-size: 10px; color: #aaa; margin-top: 1px; }

/* ── Customers ── */
.customers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.customer-quote {
  background: var(--white);
  padding: 52px 48px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.quote-mark {
  font-size: 72px;
  line-height: 0.8;
  color: var(--red);
  font-family: Georgia, serif;
  margin-bottom: 20px;
  display: block;
}
.quote-text {
  font-size: 20px;
  font-weight: var(--fw-book);
  color: var(--dark);
  line-height: 1.5;
  margin-bottom: 32px;
  font-style: italic;
}
.quote-attr { border-top: 1px solid var(--border); padding-top: 20px; }
.quote-role {
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}
.quote-org { font-size: 14px; font-weight: var(--fw-semi); color: var(--dark); }
.customer-logos {
  background: var(--off-white);
  padding: 52px 48px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.customer-logos-label {
  font-size: 10px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 8px;
}
.logo-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.logo-box {
  background: #fff;
  border: 1px solid var(--border);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
}
.logo-box span { font-size: 14px; font-weight: var(--fw-bold); color: #999; letter-spacing: 0.02em; }
.customers-case-link {
  font-size: 13px;
  font-weight: var(--fw-bold);
  color: var(--red);
  text-decoration: none;
  letter-spacing: 0.02em;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: block;
}
.customers-case-link:hover { text-decoration: underline; }

/* ── Final CTA ── */
.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: var(--fw-bold);
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.final-cta p {
  font-size: var(--text-body-lg);
  color: rgba(255, 255, 255, 0.45);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.final-cta-address {
  margin-top: 28px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.04em;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .sol-modules { grid-template-columns: 1fr; }
  .sol-module:nth-child(odd)  { border-right: none; padding-right: 0; }
  .sol-module:nth-child(even) { padding-left: 0; }
  .sol-bottom { grid-template-columns: 1fr; }
  .sol-bottom-left { flex-wrap: wrap; gap: 24px; }
}

@media (max-width: 900px) {
  .sol-header          { grid-template-columns: 1fr; gap: 24px; }
  .showcase-grid       { grid-template-columns: 1fr; }
  .stats-split         { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid          { grid-template-columns: 1fr; }
  .platform-grid       { grid-template-columns: 1fr; }
  .fp-layout           { grid-template-columns: 1fr; }
  .ring-layout         { grid-template-columns: 1fr; }
  .ring-diagram        { height: 300px; }
  .arch-diagram        { grid-template-columns: 1fr; }
  .arch-bottom-strip   { flex-direction: column; }
  .customers-grid      { grid-template-columns: 1fr; }
  .pipeline-row        { flex-direction: column; align-items: center; }
  .pipeline-row::before { display: none; }
  .pipeline-step       { max-width: 240px; }
  .trust-logos         { gap: 20px; }
}
