:root {
  --bg: #f7f8f4;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --ink: #2f2d39;
  --ink-soft: #565b65;
  --muted: #737883;
  --line: rgba(47, 45, 57, 0.13);
  --blue: #0755b8;
  --green: #22d64f;
  --radius: 24px;
  --radius-sm: 16px;
  --shadow: 0 24px 70px rgba(24, 36, 54, 0.11);
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

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

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 12%, rgba(34, 214, 79, 0.12), transparent 31%),
    radial-gradient(circle at 12% 18%, rgba(7, 85, 184, 0.09), transparent 29%),
    linear-gradient(140deg, #fbfbf8 0%, #f4f6f2 50%, #eff6f0 100%);
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(7, 85, 184, 0.052) 42% 42.2%, transparent 42.2%),
    linear-gradient(128deg, transparent 0 56%, rgba(34, 214, 79, 0.08) 56% 56.22%, transparent 56.22%),
    repeating-linear-gradient(0deg, transparent 0 31px, rgba(47, 45, 57, 0.024) 31px 32px),
    repeating-linear-gradient(90deg, transparent 0 31px, rgba(47, 45, 57, 0.018) 31px 32px);
  mask-image: radial-gradient(circle at 58% 26%, black, transparent 68%);
  opacity: 0.58;
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.grid-layer,
.glow,
.data-line {
  position: absolute;
  display: block;
}

.grid-layer {
  inset: -10%;
  background-image: radial-gradient(circle at center, rgba(7, 85, 184, 0.12) 0 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(ellipse at 76% 18%, black 0, transparent 58%);
  opacity: 0.22;
}

.glow {
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.16;
}

.glow-blue {
  left: -160px;
  top: 18%;
  background: var(--blue);
}

.glow-green {
  right: -150px;
  top: 4%;
  background: var(--green);
}

.data-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(7, 85, 184, 0.14), rgba(34, 214, 79, 0.22), transparent);
  opacity: 0.34;
}

.line-a {
  width: 720px;
  right: -140px;
  top: 20%;
  transform: rotate(-18deg);
}

.line-b {
  width: 520px;
  left: -160px;
  top: 68%;
  transform: rotate(16deg);
}

.nav,
main,
footer {
  position: relative;
  z-index: 1;
}

.nav {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 0 12px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 56px;
}

.brand-logo-line {
  display: inline-flex;
  align-items: baseline;
}

.brand-byline {
  display: block;
  align-self: flex-end;
  margin-top: 2px;
  color: #6d727d;
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: none;
  white-space: nowrap;
}

.wordmark {
  position: relative;
  font-size: 32px;
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: -0.01em;
}

.wordmark .brand-byline {
  font-size: 9px;
  line-height: 1;
}

.wordmark-text,
.wordmark-dot {
  display: inline-block;
  background: linear-gradient(90deg, var(--blue), #078d9d 54%, var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-gradient {
  display: inline-block;
  background: linear-gradient(90deg, var(--blue), #078d9d 54%, var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 820;
}

.wordmark-dot {
  position: relative;
  margin-left: 1px;
  background: var(--green);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mobile-line {
  display: inline;
}

.nav nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.nav .strategy-nav {
  justify-content: flex-end;
}

.nav nav a,
.nav-cta,
.primary,
.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #34313e;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(12px);
  font-size: 14px;
  font-weight: 760;
  line-height: 1;
}

.nav nav a:hover,
.secondary:hover {
  border-color: rgba(34, 214, 79, 0.48);
  color: #17151e;
}

.nav nav a.back-home-link {
  color: #ffffff;
  border-color: rgba(7, 85, 184, 0.72);
  background: linear-gradient(90deg, var(--blue), #078d9d);
  box-shadow: 0 12px 30px rgba(7, 85, 184, 0.14);
}

.nav nav a.back-home-link::before {
  content: "<";
  margin-right: 8px;
  font-weight: 950;
}

.nav nav a.back-home-link:hover {
  color: #ffffff;
  border-color: rgba(34, 214, 79, 0.7);
  background: linear-gradient(90deg, var(--blue), #078d9d 62%, var(--green));
}

.nav-cta,
.primary {
  color: #ffffff;
  border-color: #34313e;
  background: #34313e;
  box-shadow: 0 18px 42px rgba(45, 43, 54, 0.16);
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(68px, 8vw, 116px) 0;
  border-top: 1px solid var(--line);
}

.hero {
  min-height: calc(100vh - 102px);
  padding-top: clamp(44px, 7vw, 86px);
  padding-bottom: clamp(44px, 7vw, 86px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.62fr);
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
  border-top: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 820;
  line-height: 1.2;
}

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

h1 {
  max-width: 9ch;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(72px, 9.4vw, 132px);
  font-weight: 950;
  line-height: 0.82;
  letter-spacing: 0;
}

h2 {
  max-width: 14ch;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(36px, 4.6vw, 64px);
  font-weight: 920;
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: 0;
}

p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.62;
}

.hero-lede {
  max-width: 630px;
  color: #111018;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.16;
}

.hero-audience {
  max-width: 560px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 14px;
}

.hero-metrics {
  width: min(100%, 630px);
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-metrics span {
  min-height: 72px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  color: var(--muted);
  border-right: 1px solid var(--line);
  font-size: 13px;
}

.hero-metrics span:last-child {
  border-right: 0;
}

.hero-metrics strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-console,
.diagnostic-panel,
.review-panel,
.access {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.5)),
    rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
}

.hero-console {
  position: relative;
  padding: 18px;
  overflow: hidden;
}

.hero-console::before,
.diagnostic-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(34, 214, 79, 0.08), transparent 38%),
    repeating-linear-gradient(90deg, rgba(7, 85, 184, 0.055) 0 1px, transparent 1px 46px);
  opacity: 0.72;
}

.console-head,
.signal-board,
.chart-card,
.diagnostic-panel > * {
  position: relative;
  z-index: 1;
}

.console-head,
.chart-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.console-head {
  padding: 8px 8px 18px;
}

.console-head span,
.chart-top span,
.signal-board span,
.review-bar span {
  color: #6c7078;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.console-head strong,
.signal-board strong,
.chart-top strong,
.review-bar strong {
  color: var(--ink);
}

.signal-board {
  display: grid;
  gap: 10px;
}

.signal-board article,
.chart-card,
.problem-grid article,
.team-grid article,
.outcome-card,
.model-card,
.implementation-grid article,
.proof-grid article,
.risk-columns article,
.build-list span,
.diligence-grid span {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.signal-board article {
  padding: 16px;
}

.signal-board strong {
  display: block;
  margin: 6px 0 12px;
  font-size: 22px;
}

.meter {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(47, 45, 57, 0.1);
}

.meter i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.chart-card {
  margin-top: 12px;
  padding: 18px;
}

.chart-card svg {
  width: 100%;
  display: block;
  margin-top: 12px;
}

.chart-grid path {
  stroke: rgba(47, 45, 57, 0.12);
  stroke-width: 1;
}

.chart-area {
  fill: url(#areaGradient);
}

.chart-line {
  fill: none;
  stroke: url(#lineGradient);
  stroke-width: 6;
  stroke-linecap: round;
  filter: drop-shadow(0 0 12px rgba(34, 214, 79, 0.2));
}

.hero-review-file {
  padding: clamp(18px, 2.4vw, 26px);
}

.review-meta,
.review-file-table,
.review-file-checklist {
  position: relative;
  z-index: 1;
}

.review-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.review-meta span,
.review-file-checklist span {
  border: 1px solid rgba(47, 45, 57, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
  line-height: 1.25;
}

.review-meta span {
  min-height: 64px;
  padding: 12px;
}

.review-meta strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-file-table {
  overflow: hidden;
  border: 1px solid rgba(47, 45, 57, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.7);
}

.review-file-head,
.review-file-table > div:not(.review-file-head) {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(92px, 0.62fr);
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
}

.review-file-head {
  border-bottom: 1px solid rgba(47, 45, 57, 0.1);
  background: rgba(7, 85, 184, 0.05);
}

.review-file-head span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-file-table > div:not(.review-file-head) {
  border-bottom: 1px solid rgba(47, 45, 57, 0.08);
}

.review-file-table > div:last-child {
  border-bottom: 0;
}

.review-file-table strong {
  color: var(--ink);
  font-size: 15px;
}

.review-file-table span {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 760;
}

.review-file-table em {
  justify-self: start;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(7, 85, 184, 0.08);
  font-size: 12px;
  font-style: normal;
  font-weight: 860;
}

.review-file-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.review-file-checklist span {
  min-height: 42px;
  padding: 12px 13px;
  color: var(--ink-soft);
}

.review-file-checklist span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--green);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.section-heading.split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.48fr);
  gap: clamp(24px, 6vw, 74px);
  align-items: end;
}

.section-heading.split > p {
  margin-bottom: 22px;
}

.performance,
.problem,
.models,
.review,
.robustness,
.build {
  position: relative;
}

.performance::before,
.problem::before,
.models::before,
.review::before,
.robustness::before,
.build::before {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  color: rgba(47, 45, 57, 0.035);
  font-weight: 950;
  line-height: 0.78;
}

.performance > *,
.problem > *,
.models > *,
.review > *,
.robustness > *,
.build > * {
  position: relative;
  z-index: 1;
}

.performance::before {
  content: "LIVE DATA";
  right: 0;
  top: 30px;
  font-size: clamp(62px, 10vw, 146px);
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.performance .section-heading.split {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 260px);
}

.overcompound-page h1 {
  max-width: none;
  overflow-wrap: normal;
  white-space: nowrap;
  font-size: clamp(54px, 7.2vw, 104px);
  line-height: 0.9;
}

.overcompound-page .section-heading.split {
  align-items: start;
}

.overcompound-page .strategy-selector {
  margin-top: clamp(48px, 6vw, 86px);
}

.strategy-selector {
  width: min(100%, 260px);
  display: grid;
  gap: 8px;
  justify-self: end;
  align-self: end;
  position: relative;
}

.strategy-selector span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.strategy-selector select {
  appearance: none;
  width: 100%;
  min-height: 46px;
  padding: 11px 48px 11px 18px;
  border: 1px solid rgba(47, 45, 57, 0.13);
  border-radius: 999px;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(7, 85, 184, 0.08), rgba(34, 214, 79, 0.12)),
    rgba(255, 255, 255, 0.68);
  box-shadow:
    0 18px 42px rgba(24, 36, 54, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  font: inherit;
  font-size: 14px;
  font-weight: 860;
  cursor: pointer;
}

.strategy-selector::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 17px;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  pointer-events: none;
  transform: rotate(45deg);
}

.strategy-selector select:focus {
  outline: none;
  border-color: rgba(34, 214, 79, 0.5);
  box-shadow:
    0 0 0 4px rgba(34, 214, 79, 0.1),
    0 18px 42px rgba(24, 36, 54, 0.12);
}

.strategy-selector:hover select {
  border-color: rgba(7, 85, 184, 0.34);
  background:
    linear-gradient(90deg, rgba(7, 85, 184, 0.12), rgba(34, 214, 79, 0.16)),
    rgba(255, 255, 255, 0.78);
}

.problem::before {
  content: "EXPOSURE\A GAP";
  right: 0;
  top: 30px;
  font-size: clamp(62px, 10vw, 146px);
  white-space: pre-line;
}

.models::before {
  content: "MODEL\A STACK";
  left: 0;
  top: 36px;
  font-size: clamp(62px, 10vw, 146px);
  white-space: pre-line;
}

.review::before {
  content: "DUE\A DILIGENCE";
  right: 0;
  top: 30px;
  font-size: clamp(56px, 9vw, 132px);
  white-space: pre-line;
}

.robustness::before {
  content: "ROBUSTNESS";
  right: 0;
  top: 24px;
  font-size: clamp(52px, 8vw, 124px);
}

.build::before {
  content: "LICENSE\A THE EDGE";
  right: 0;
  top: 34px;
  font-size: clamp(66px, 11vw, 164px);
  white-space: pre-line;
}

.problem-lead {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.42fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: end;
  margin-bottom: 34px;
}

.diagnostic-panel {
  position: relative;
  padding: 26px;
  overflow: hidden;
}

.diagnostic-panel > span,
.outcome-card span,
.model-card span,
.proof-grid span,
.risk-columns span,
.problem-grid span,
.team-grid span,
.model-card dt {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.diagnostic-panel strong {
  display: block;
  max-width: 12ch;
  margin: 18px 0 30px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 0.95;
}

.diagnostic-panel div {
  display: grid;
  gap: 9px;
  margin-top: 16px;
}

.diagnostic-panel small {
  color: var(--ink-soft);
  font-weight: 760;
}

.diagnostic-panel i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.performance-panel {
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.56)),
    rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
}

.performance-panel + .performance-panel {
  margin-top: 18px;
}

.performance-header {
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 18px;
  align-items: start;
}

.performance-header span {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.performance-header strong {
  color: var(--ink);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
}

.performance-header p,
.performance-updated {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
}

.chart-reset {
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.68);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 780;
}

.chart-reset:hover {
  color: var(--ink);
  border-color: rgba(7, 85, 184, 0.3);
}

.performance-chart {
  height: clamp(320px, 42vw, 520px);
  padding: clamp(12px, 2vw, 18px);
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid rgba(47, 45, 57, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
}

.performance-chart canvas {
  display: block;
  min-height: 100%;
}

.positions-chart {
  height: clamp(360px, 48vw, 560px);
}

.latest-positions-chart {
  height: clamp(320px, 42vw, 480px);
}

.performance-updated {
  margin-top: 14px;
}

.return-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(47, 45, 57, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
}

.return-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  color: var(--ink);
  font-size: 14px;
}

.return-table th,
.return-table td {
  padding: 15px 18px;
  border-bottom: 1px solid rgba(47, 45, 57, 0.08);
  text-align: right;
  white-space: nowrap;
}

.return-table th:first-child,
.return-table td:first-child {
  text-align: left;
}

.return-table thead th {
  color: var(--blue);
  background: rgba(7, 85, 184, 0.05);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.return-table tbody th {
  color: var(--ink);
  font-weight: 880;
}

.return-table tbody td {
  color: #34313e;
  font-weight: 760;
}

.return-table tbody tr:last-child th,
.return-table tbody tr:last-child td {
  border-bottom: 0;
}

.problem-grid,
.team-grid,
.outcome-grid,
.model-catalogue,
.proof-grid,
.risk-columns,
.diligence-grid,
.robustness-table {
  display: grid;
  gap: 14px;
}

.problem-grid.dense {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.problem-grid article,
.team-grid article,
.outcome-card,
.model-card,
.implementation-grid article,
.proof-grid article,
.risk-columns article {
  padding: clamp(22px, 3vw, 34px);
}

.problem-grid article {
  min-height: 220px;
  display: grid;
  grid-template-rows: auto minmax(52px, auto) 1fr;
  align-content: start;
  gap: 10px;
}

.problem-grid article span {
  margin-bottom: 4px;
}

.problem-grid article h3,
.problem-grid article p {
  margin-bottom: 0;
}

.outcome-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(90deg, rgba(7, 85, 184, 0.04), transparent 45%, rgba(34, 214, 79, 0.08)),
    rgba(255, 255, 255, 0.36);
}

.outcome-card {
  position: relative;
  min-height: 348px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.outcome-card::before {
  content: "";
  position: absolute;
  inset: auto 22px 22px 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  opacity: 0.55;
}

.outcome-card small {
  position: absolute;
  right: 18px;
  top: 14px;
  color: rgba(47, 45, 57, 0.06);
  font-size: 62px;
  font-weight: 950;
  line-height: 1;
}

.outcome-card h3 {
  min-height: 78px;
}

.outcome-card strong,
.audience-table strong,
.robustness-table strong {
  color: var(--ink);
}

.model-catalogue {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 28px);
}

.model-card {
  position: relative;
  min-height: 400px;
  overflow: hidden;
}

.model-card::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(34, 214, 79, 0.22);
  transform: rotate(28deg);
}

.model-card:nth-child(odd) {
  background:
    radial-gradient(circle at 88% 14%, rgba(34, 214, 79, 0.16), transparent 36%),
    var(--surface-strong);
}

.model-card:nth-child(even) {
  background:
    linear-gradient(180deg, rgba(7, 85, 184, 0.06), rgba(255, 255, 255, 0.58));
}

.model-card h3 {
  max-width: 19ch;
  font-size: clamp(26px, 3vw, 40px);
}

.model-card dl {
  display: grid;
  gap: 8px;
  margin: 24px 0 0;
}

.model-card dd {
  margin: 0 0 12px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.audience-table {
  display: grid;
  grid-template-columns: repeat(6, minmax(180px, 1fr));
  overflow-x: auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.audience-table div {
  min-height: 178px;
  padding: 22px;
  border-left: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.38);
}

.audience-table div:last-child {
  border-right: 1px solid var(--line);
}

.audience-table strong,
.robustness-table strong {
  display: block;
  margin-bottom: 8px;
}

.audience-table span,
.robustness-table span {
  color: var(--muted);
  line-height: 1.55;
}

.build {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(340px, 0.58fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.build-copy p:last-child {
  max-width: 690px;
}

.build-list {
  display: grid;
  gap: 10px;
}

.build-list span,
.diligence-grid span {
  min-height: 62px;
  display: flex;
  align-items: center;
  padding: 15px 17px;
  color: #34313e;
}

.build-list span:nth-child(odd) {
  border-color: rgba(34, 214, 79, 0.24);
}

.review-panel {
  overflow: hidden;
}

.review-bar {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
}

.review-bar strong {
  font-size: 15px;
  font-weight: 880;
}

.review-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 16px;
  gap: 12px;
}

.review-summary article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.52));
}

.review-summary span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.review-summary strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 20px;
}

.review-summary p {
  margin-bottom: 0;
  font-size: 14px;
}

.diligence-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0 16px 16px;
}

.risk {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.risk-copy p:last-child {
  max-width: 560px;
}

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

.risk-columns article {
  min-height: 230px;
}

.robustness-table {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 0%, rgba(7, 85, 184, 0.1), transparent 30%),
    rgba(255, 255, 255, 0.36);
}

.robustness-table div {
  min-height: 106px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.implementation-grid {
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.36);
}

.implementation-grid article {
  flex: 1 1 0;
  min-width: 0;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.48);
}

.implementation-grid article:last-child {
  border-right: 0;
}

.implementation-grid article:nth-child(even) {
  background:
    linear-gradient(180deg, rgba(7, 85, 184, 0.06), rgba(255, 255, 255, 0.48));
}

.offering-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.offering-grid article {
  min-height: 230px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background:
    radial-gradient(circle at 86% 12%, rgba(34, 214, 79, 0.15), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.58)),
    rgba(255, 255, 255, 0.64);
  box-shadow:
    0 18px 54px rgba(24, 36, 54, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.offering-grid article:nth-child(even) {
  background:
    radial-gradient(circle at 86% 12%, rgba(7, 85, 184, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.58)),
    rgba(255, 255, 255, 0.64);
}

.offering-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offering-grid h3 {
  min-height: 58px;
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 0.98;
}

.offering-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 620;
  line-height: 1.48;
}

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

.proof-grid article,
.team-grid article {
  min-height: 250px;
}

.disclaimer-strip {
  margin: 18px 0 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: #6c7078;
  background: rgba(255, 255, 255, 0.42);
  font-size: 13px;
}

.access {
  margin-bottom: 40px;
  padding: clamp(34px, 6vw, 64px);
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.86), rgba(34, 214, 79, 0.12)),
    rgba(255, 255, 255, 0.62);
}

.access h2 {
  max-width: 11ch;
}

.access p {
  max-width: 720px;
  margin-bottom: 0;
}

.access-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.catalogue-form {
  width: min(100%, 460px);
  display: grid;
  gap: 10px;
}

.catalogue-form label {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 780;
}

.catalogue-form-row {
  display: grid;
  grid-template-columns: minmax(130px, 1fr) minmax(160px, 1fr);
  gap: 10px;
}

.field {
  display: grid;
  gap: 8px;
}

.catalogue-form input {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  font: inherit;
  font-size: 14px;
  outline: none;
}

.catalogue-form input:focus {
  border-color: rgba(7, 85, 184, 0.45);
  box-shadow: 0 0 0 4px rgba(7, 85, 184, 0.1);
}

.catalogue-form button {
  cursor: pointer;
  font: inherit;
  grid-column: 1 / -1;
}

.catalogue-email-link {
  justify-self: start;
}

.contact-us {
  margin-bottom: 40px;
  padding: clamp(28px, 5vw, 48px);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  background: rgba(255, 255, 255, 0.54);
}

.contact-us h2 {
  max-width: 12ch;
}

.contact-us p {
  max-width: 620px;
  margin-bottom: 0;
}

footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 46px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: start;
  gap: 20px;
  border-top: 1px solid var(--line);
}

footer span {
  color: var(--ink);
  font-weight: 950;
}

.footer-brand {
  background: linear-gradient(90deg, var(--blue), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

footer p {
  max-width: 620px;
  margin-bottom: 0;
  font-size: 13px;
}

.footer-link {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 760;
}

.footer-link:hover {
  color: var(--ink);
}

.privacy-policy {
  padding-top: clamp(46px, 6vw, 78px);
}

.privacy-policy h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

.policy-copy {
  max-width: 880px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow);
}

.policy-copy h2 {
  margin: 34px 0 12px;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: 0;
}

.policy-copy h2:first-child {
  margin-top: 0;
}

.policy-copy p,
.policy-copy li {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.policy-copy ul {
  margin: 0 0 22px;
  padding-left: 22px;
}

.policy-copy a {
  color: var(--blue);
  font-weight: 780;
}

.cookie-notice {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 20;
  width: min(960px, calc(100% - 28px));
  padding: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(47, 45, 57, 0.16);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(24, 36, 54, 0.2);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.cookie-notice strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 15px;
}

.cookie-notice p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-actions button {
  cursor: pointer;
  font: inherit;
}

@media (prefers-reduced-motion: no-preference) {
  .glow-blue {
    animation: driftA 12s ease-in-out infinite alternate;
  }

  .glow-green {
    animation: driftB 14s ease-in-out infinite alternate;
  }

  .chart-line {
    stroke-dasharray: 760;
    stroke-dashoffset: 760;
    animation: drawLine 2.2s ease forwards;
  }
}

@keyframes driftA {
  to {
    transform: translate(42px, -26px);
  }
}

@keyframes driftB {
  to {
    transform: translate(-46px, 34px);
  }
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    align-items: start;
  }

  .hero-console {
    max-width: 680px;
  }

  .problem-grid.dense,
  .outcome-grid,
  .diligence-grid,
  .robustness-table {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-summary {
    grid-template-columns: 1fr;
  }

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

  .implementation-grid article {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 980px) {
  .nav nav {
    display: none;
  }

  .nav .strategy-nav {
    display: flex;
    justify-content: flex-end;
  }

  .hero,
  .section-heading.split,
  .problem-lead,
  .model-catalogue,
  .risk,
  .risk-columns,
  .proof-grid,
  .team-grid,
  .offering-grid,
  .build {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    align-items: start;
  }

  .access,
  .contact-us {
    flex-direction: column;
    align-items: flex-start;
  }

  .performance-header {
    grid-template-columns: 1fr;
  }

  .performance .section-heading.split {
    grid-template-columns: 1fr;
  }

  .strategy-selector {
    width: min(100%, 320px);
    justify-self: start;
  }

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

  .access-actions {
    justify-content: flex-start;
  }

  .catalogue-form-row {
    grid-template-columns: 1fr;
  }

  .catalogue-form button {
    width: 100%;
  }

  .cookie-notice {
    width: min(calc(100% - 28px), 960px);
    max-width: calc(100vw - 28px);
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  html,
  body,
  .site-shell {
    max-width: 100%;
    overflow-x: hidden;
  }

  .nav,
  .section,
  footer {
    width: min(calc(100% - 60px), var(--max));
    max-width: calc(100vw - 60px);
  }

  .brand {
    min-height: 48px;
  }

  .wordmark {
    font-size: 26px;
  }

  .nav {
    gap: 14px;
  }

  .nav .strategy-nav a {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 12px;
    white-space: nowrap;
  }

  h1 {
    margin-bottom: 16px;
    font-size: clamp(42px, 13vw, 56px);
    line-height: 0.92;
    overflow-wrap: anywhere;
  }

  .hero-copy,
  .hero-console {
    width: min(100%, calc(100vw - 60px));
    max-width: calc(100vw - 60px);
    min-width: 0;
  }

  .performance {
    padding-top: 42px;
    overflow: hidden;
  }

  .performance::before {
    top: 12px;
    right: 0;
    max-width: 100%;
    font-size: clamp(34px, 13vw, 58px);
    opacity: 0.7;
  }

  .performance .section-heading {
    margin-bottom: 24px;
  }

  .performance h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: clamp(40px, 13vw, 58px);
    line-height: 0.98;
  }

  .overcompound-page h1 {
    font-size: clamp(30px, 8.8vw, 48px);
  }

  .overcompound-page .strategy-selector {
    margin-top: 0;
  }

  .strategy-selector {
    max-width: 100%;
    width: 100%;
  }

  .strategy-selector select {
    min-width: 0;
    font-size: 13px;
  }

  .strategy-selector::after {
    bottom: 16px;
  }

  .performance-panel {
    padding: 14px;
    border-radius: var(--radius-sm);
  }

  .performance-panel + .performance-panel {
    margin-top: 14px;
  }

  .performance-header {
    gap: 10px;
    margin-bottom: 12px;
  }

  .performance-header strong {
    font-size: 22px;
    line-height: 1.1;
  }

  .performance-header p,
  .performance-updated {
    font-size: 12px;
  }

  .chart-reset {
    width: 100%;
  }

  h2 {
    font-size: clamp(34px, 12vw, 58px);
  }

  .hero-lede {
    width: min(100%, calc(100vw - 60px));
    max-width: calc(100vw - 60px);
    font-size: 19px;
    line-height: 1.22;
    overflow-wrap: anywhere;
  }

  .mobile-line {
    display: block;
    max-width: 100%;
  }

  .hero-audience,
  .console-head,
  .review-meta,
  .review-file-table,
  .review-file-checklist {
    max-width: calc(100vw - 60px);
  }

  .cookie-notice {
    left: 24px;
    right: auto;
    width: min(calc(100vw - 100px), 320px);
    max-width: none;
    transform: none;
    grid-template-columns: 1fr;
  }

  .cookie-notice p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
    margin-top: 22px;
    width: min(calc(100vw - 100px), 320px);
    max-width: 100%;
    justify-self: start;
  }

  .hero-actions a {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .hero-metrics span {
    min-height: 58px;
    padding: 12px 14px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-console {
    width: min(100%, calc(100vw - 60px));
    padding: 14px;
    border-radius: var(--radius-sm);
  }

  .review-meta,
  .review-file-checklist {
    grid-template-columns: 1fr;
  }

  .review-file-head {
    display: none;
  }

  .review-file-table > div:not(.review-file-head) {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .performance-chart {
    height: 360px;
    padding: 10px;
    overflow-x: auto;
  }

  .positions-chart {
    height: 420px;
  }

  .latest-positions-chart {
    height: 520px;
  }

  .console-head,
  .chart-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .console-head strong,
  .review-meta span,
  .review-file-table strong,
  .review-file-table span,
  .review-file-table em,
  .review-file-checklist span {
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .signal-board article {
    padding: 13px;
  }

  .signal-board strong {
    margin-bottom: 10px;
    font-size: 18px;
  }

  .chart-card {
    padding: 14px;
  }

  .chart-card svg {
    max-height: 160px;
  }

  .hero-metrics span:last-child {
    border-bottom: 0;
  }

  .review-bar {
    min-height: 0;
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
  }

  .problem-grid.dense,
  .outcome-grid,
  .diligence-grid,
  .robustness-table,
  .implementation-grid {
    grid-template-columns: 1fr;
  }

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

  .implementation-grid article {
    border-right: 0;
  }
}
