/* Polara v7 exploration: built on v6 and v5 (woodblock sea, indigo sky, white page). */
@font-face {
  font-family: Inter;
  src: url("/assets/fonts/inter-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("/assets/fonts/cormorant-garamond-latin-700.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
:root {
  --white: #fff;
  --ink: #111318;
  --muted: #5b606b;
  --faint: #6b7079;
  --rule: #e6e8ec;
  --rule-strong: #d3d7de;
  --wash: #f6f7f9;
  --indigo: #1b2a4d;
  --indigo-2: #2d4270;
  --tint-1: #eef1f7;
  --tint-2: #cfd8e8;
  --tint-3: #8c9dc0;
  --tint-4: #4a5f8c;
  --night: #0a1226;
  --night-2: #111b36;
  --on-night: #f4f5f8;
  --on-night-muted: #aab2c5;
  --night-line: rgba(244, 245, 248, 0.14);
  --sans: Inter, "Helvetica Neue", Arial, sans-serif;
  --gutter: clamp(20px, 5vw, 88px);
  --max: 1400px;
  --radius: 14px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
  scrollbar-color: #b9bfca var(--white);
}
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font:
    400 17px/1.65 var(--sans),
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
::selection {
  background: var(--indigo);
  color: var(--white);
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
button {
  font: inherit;
  color: inherit;
}
h1,
h2,
h3,
h4,
p,
figure,
ul,
ol {
  margin: 0;
}
ul,
ol {
  padding: 0;
  list-style: none;
}
h1,
h2,
h3 {
  font-weight: 400;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
:focus-visible {
  outline: 2px solid var(--indigo);
  outline-offset: 4px;
  border-radius: 4px;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
table.visually-hidden {
  display: block;
}
.skip-link {
  position: absolute;
  z-index: 50;
  top: -80px;
  left: 16px;
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  border-radius: 999px;
}
.skip-link:focus {
  top: 12px;
}

/* Header (sits on the night hero) */
.header {
  position: absolute;
  z-index: 10;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max);
  margin-inline: auto;
  padding: 26px var(--gutter);
  color: var(--on-night);
}
.wordmark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.17em;
  line-height: 1;
  text-decoration: none;
}
.header nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
}
.header nav a {
  text-decoration: none;
  color: var(--on-night-muted);
  transition: color 0.2s;
}
.header nav a:hover {
  color: var(--on-night);
}
.nav-muted {
  color: #98a1b6;
  font-size: 13px;
}
.header .nav-cta {
  padding: 9px 18px;
  border: 1px solid var(--night-line);
  border-radius: 999px;
  color: var(--on-night);
}
.header .nav-cta:hover {
  border-color: var(--on-night);
}
.header :focus-visible {
  outline-color: var(--on-night);
}
.menu-toggle {
  display: none;
}
.header.is-stuck {
  position: fixed;
  max-width: none;
  padding-block: 14px;
  padding-inline: max(
    var(--gutter),
    calc((100% - var(--max)) / 2 + var(--gutter))
  );
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
  animation: header-in 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes header-in {
  from {
    transform: translateY(-100%);
  }
}
.header.is-stuck .wordmark {
  font-size: 24px;
  color: var(--indigo);
}
.header.is-stuck nav a {
  color: var(--muted);
}
.header.is-stuck nav a:hover {
  color: var(--ink);
}
.header.is-stuck .nav-cta {
  border-color: var(--indigo);
  background: var(--indigo);
  color: var(--white);
}
.header.is-stuck :focus-visible {
  outline-color: var(--indigo);
}
.hover-only {
  display: none;
}
@media (hover: hover) {
  .hover-only {
    display: inline;
  }
}
.role-short {
  display: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition:
    background 0.25s,
    color 0.25s,
    border-color 0.25s;
}
.btn-star {
  background: var(--on-night);
  color: var(--night);
}
.btn-star:hover {
  background: var(--white);
}
.btn-ghost {
  border: 1px solid var(--night-line);
  color: var(--on-night);
}
.btn-ghost:hover {
  border-color: var(--on-night);
}
.btn-lg {
  min-height: 60px;
  padding: 0 32px;
  font-size: clamp(16px, 1.8vw, 18px);
}

/* Hero */
.hero {
  position: relative;
  min-height: max(680px, 100svh);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: var(--on-night);
  background: linear-gradient(
    180deg,
    #070d1d 0%,
    var(--night) 55%,
    #16244a 100%
  );
}
.hero :focus-visible {
  outline-color: var(--on-night);
}
.sky {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.sky-tip {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(10, 18, 38, 0.94);
  border: 1px solid var(--night-line);
  font-size: 12px;
  line-height: 1.45;
  white-space: nowrap;
  opacity: 0;
  transform: translate(-50%, calc(-100% - 14px));
  transition: opacity 0.15s;
}
.sky-tip b {
  display: block;
  font-weight: 500;
}
.sky-tip span {
  color: var(--on-night-muted);
}
.sky-tip.is-on {
  opacity: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding: 160px var(--gutter) 0;
  pointer-events: none;
}
.hero-inner a {
  pointer-events: auto;
}
.hero h1 {
  max-width: 13em;
  font-size: clamp(48px, 6.6vw, 104px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.hero-lead {
  max-width: 34em;
  margin-top: 30px;
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--on-night-muted);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}
.hero-note {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 72px auto 0;
  padding: 0 var(--gutter) 32px;
  font-size: 13px;
  color: var(--on-night-muted);
  padding-right: max(var(--gutter), calc(100% - 62ch));
}

/* Shared section rhythm */
.interlude,
.intel,
.dawn > *,
.v3-stories {
  max-width: var(--max);
  margin-inline: auto;
}
.section-title,
.intel-head h2,
.dawn-head h2,
.ways-title,
.about h2,
.v3-stories h2 {
  font-size: clamp(40px, 4.6vw, 72px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

/* Interlude */
.interlude {
  padding: clamp(110px, 12vw, 180px) var(--gutter) clamp(90px, 10vw, 140px);
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
}
.belief {
  font-size: clamp(36px, 4.2vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.035em;
}
.interlude-copy {
  color: var(--muted);
}
.interlude-copy p + p {
  margin-top: 18px;
}

/* Intelligence */
.intel {
  padding: 0 var(--gutter) clamp(100px, 12vw, 170px);
}
.intel-head {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
  padding-top: clamp(64px, 7vw, 100px);
  border-top: 1px solid var(--rule);
}
.intel-head h2 span {
  display: block;
  margin-top: 18px;
  max-width: 22em;
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--muted);
}
.intel-head p {
  color: var(--muted);
}
.moves {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  margin-top: clamp(56px, 6vw, 88px);
  border-top: 1px solid var(--ink);
}
.moves li + li {
  border-left: 1px solid var(--rule);
}
.moves a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  height: 100%;
  padding: 18px 16px 22px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  transition: background 0.2s;
}
.moves li:first-child a {
  padding-left: 0;
}
.moves a:hover {
  background: var(--wash);
}
.moves b {
  font-size: 12px;
  font-weight: 500;
  color: var(--faint);
  margin-bottom: 18px;
  font-variant-numeric: tabular-nums;
}
.moves span {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
}

.chapter {
  display: grid;
  grid-template-columns: minmax(0, 4.2fr) minmax(0, 7.8fr);
  gap: clamp(36px, 5vw, 88px);
  align-items: center;
  padding-top: clamp(100px, 11vw, 170px);
}
.chapter-flip {
  grid-template-columns: minmax(0, 7.8fr) minmax(0, 4.2fr);
}
.chapter-flip .chapter-text {
  order: 2;
}
.chapter-wide {
  grid-template-columns: minmax(0, 1fr);
}
.chapter-wide .chapter-text {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  column-gap: clamp(36px, 5vw, 88px);
  align-items: start;
  max-width: none;
}
.chapter-wide .chapter-body > p {
  margin-top: 0;
  max-width: 34em;
  color: var(--muted);
}
.chapter-wide .chapter-body > p + p {
  margin-top: 14px;
}
.chapter-num {
  font-size: 12px;
  font-weight: 500;
  color: var(--faint);
  margin-bottom: 18px;
  font-variant-numeric: tabular-nums;
}
.chapter h3 {
  font-size: clamp(32px, 3.1vw, 48px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.chapter-text > p:not(.chapter-num) {
  margin-top: 20px;
  max-width: 30em;
  color: var(--muted);
}
.chapter-text > p + p {
  margin-top: 14px;
}

.chapter-text > p.our-role,
.chapter-body > p.our-role {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  max-width: 30em;
  font-size: 15px;
  color: var(--ink);
}
.our-role b {
  display: block;
  margin-bottom: 2px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

/* Product windows */
.window {
  position: relative;
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  box-shadow: 0 24px 48px -32px rgba(17, 19, 24, 0.22);
  overflow: hidden;
}
.window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--rule);
  font-size: 12px;
}
.window-name {
  font-weight: 600;
  color: var(--ink);
}
.window-status {
  color: var(--muted);
  text-align: right;
}
.window-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  border-top: 1px solid var(--rule);
  font-size: 13px;
  color: var(--muted);
}
.window figcaption,
.window > figcaption {
  padding: 12px max(20px, calc(100% - 72ch)) 16px 20px;
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
  border-top: 1px solid var(--rule);
  background: var(--wash);
}
.replay {
  flex: none;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  background: var(--white);
  font-size: 12px;
  cursor: pointer;
}
.replay:hover {
  border-color: var(--ink);
}

/* 01 Parallel search */
.swarm {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 200px;
}
.swarm-canvas {
  display: block;
  width: 100%;
  height: 400px;
}
.swarm-legend {
  padding: 16px 18px;
  border-left: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 12px;
}
.swarm-legend li {
  transition: opacity 0.5s;
}
.swarm-legend .row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.swarm-legend .name {
  color: var(--ink);
}
.swarm-legend .name i {
  display: none;
}
.swarm-legend .count {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.swarm-legend .bar {
  height: 3px;
  margin-top: 6px;
  border-radius: 3px;
  background: var(--tint-1);
  overflow: hidden;
}
.swarm-legend .bar i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 3px;
  background: var(--indigo) !important;
}
.swarm-legend .tag {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  min-height: 1em;
  color: var(--muted);
}
.swarm-legend li.is-paused {
  opacity: 0.5;
}
.swarm-legend li.is-paused .bar i {
  background: var(--tint-3) !important;
}
.swarm-legend li.is-expanded .tag {
  color: var(--indigo);
  font-weight: 600;
}
.swarm-total {
  color: var(--ink);
}
.swarm-total b {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

/* 02 Research rounds */
.bench {
  padding: 22px 20px 18px;
}
.bench-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 6px;
  align-items: end;
  height: 250px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rule);
}
.bench-week {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 5px;
  height: 100%;
}
.bench-week::after {
  content: attr(data-week);
  position: absolute;
  bottom: -24px;
  font-size: 12px;
  color: var(--muted);
}
.bench-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--tint-2) !important;
  opacity: 0;
  transform: translateY(-24px);
  transition:
    opacity 0.45s,
    transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.4s;
}
.bench-dot[data-f="S"] {
  background: var(--indigo) !important;
}
.bench-dot.is-in {
  opacity: 1;
  transform: none;
}
.bench-dot.is-match {
  box-shadow:
    0 0 0 2px var(--white),
    0 0 0 3.5px var(--indigo);
}
.bench-open {
  position: absolute;
  top: 0;
  bottom: 28px;
  width: 0;
  border-left: 1px dashed var(--indigo);
  opacity: 0;
  transition: opacity 0.5s;
}
.bench-open span {
  position: absolute;
  top: 0;
  left: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--indigo);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  transform: translateX(-100%) translateX(-16px);
}
.bench-open.is-on {
  opacity: 1;
}
.bench-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted);
}
.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.legend i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.bench-count {
  color: var(--ink);
}
.bench-count b {
  font-weight: 600;
}

/* 03 Flows */
.flow-scroll {
  overflow-x: auto;
}
.flow {
  min-width: 600px;
  padding: 14px 8px 0;
}
.flow svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}
.flow text {
  fill: var(--ink);
  font:
    500 12px var(--sans),
    sans-serif;
}
.flow text.sub {
  fill: var(--muted);
  font-weight: 400;
}
.flow .band {
  transition: opacity 0.3s;
}
.flow .node {
  cursor: pointer;
}
.flow.is-dim .band:not(.is-hot) {
  opacity: 0.12;
}
.flow-hint {
  display: none;
  padding: 10px 20px 0;
  font-size: 12px;
  color: var(--muted);
}
.insights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
}
.insights li {
  padding: 14px 18px;
  font-size: 13px;
  line-height: 1.45;
}
.insights li + li {
  border-left: 1px solid var(--rule);
}

/* 04 Career */
.career {
  padding: 22px 20px 20px;
}
.career-axis {
  position: relative;
  height: 18px;
  margin: 0 4px;
  font-size: 12px;
  color: var(--muted);
}
.career-axis span {
  position: absolute;
  transform: translateX(-50%);
}
.career-axis span:first-child {
  transform: none;
}
.career-axis span:last-child {
  transform: translateX(-100%);
}
.career-track {
  position: relative;
  height: 52px;
  margin: 6px 4px 0;
  border-radius: 10px;
  background: var(--wash);
}
.career-role {
  position: absolute;
  top: 6px;
  bottom: 6px;
  border: 1px solid var(--rule-strong);
  border-radius: 7px;
  padding: 0 10px;
  background: var(--white) !important;
  text-align: left;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  cursor: pointer;
  transition:
    background 0.25s,
    color 0.25s,
    border-color 0.25s;
}
.career-role:hover {
  border-color: var(--indigo);
}
.career-role[aria-pressed="true"] {
  background: var(--indigo) !important;
  border-color: var(--indigo);
  color: var(--white);
}
.career-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: 24px;
  margin-top: 24px;
}
.career-title {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.025em;
}
.career-co {
  margin-top: 6px;
  font-size: 14px;
  color: var(--muted);
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.chips span {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--rule-strong);
  font-size: 12px;
}
.odds li {
  padding: 9px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 13px;
}
.odds li:first-child {
  padding-top: 0;
}
.odds .odds-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.odds .odds-row em {
  font-style: normal;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.odds .meter {
  height: 4px;
  margin-top: 7px;
  border-radius: 4px;
  background: var(--tint-1);
  overflow: hidden;
}
.odds .meter i {
  display: block;
  height: 100%;
  border-radius: 4px;
  background: var(--indigo);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.odds .is-unknown .odds-row span {
  color: var(--muted);
}
.odds .is-unknown .meter {
  background: none;
  border-top: 1px dashed var(--rule-strong);
  height: 0;
  margin-top: 10px;
}
.odds .is-unknown em {
  color: var(--ink);
  font-weight: 500;
}

/* 05 Matching */
.lenses {
  padding: 18px 20px 20px;
}
.lens-switch {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  gap: 0 24px;
  border-bottom: 1px solid var(--rule);
}
.lens-switch button {
  position: relative;
  flex: none;
  min-height: 40px;
  padding: 0;
  border: 0;
  background: none;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
}
.lens-switch button:hover {
  color: var(--ink);
}
.lens-switch button[aria-pressed="true"] {
  color: var(--ink);
  font-weight: 500;
}
.lens-switch button[aria-pressed="true"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--indigo);
}
.lens-list {
  position: relative;
  margin-top: 12px;
}
.lens-row {
  position: absolute;
  left: 0;
  right: 0;
  height: 48px;
  display: grid;
  grid-template-columns: 24px 34px minmax(0, 1fr) 140px 36px;
  gap: 12px;
  align-items: center;
  padding: 0 10px;
  border-radius: 10px;
  transition:
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
    background 0.4s;
}
.lens-row.is-short {
  background: var(--tint-1);
}
.lens-rank {
  font-size: 13px;
  font-weight: 500;
  color: var(--faint);
  font-variant-numeric: tabular-nums;
}
.lens-row.is-short .lens-rank {
  color: var(--indigo);
}
.avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--wash) !important;
  border: 1px solid var(--rule-strong);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
}
.lens-row.is-short .avatar {
  background: var(--indigo) !important;
  border-color: var(--indigo);
  color: var(--white);
}
.lens-who b {
  display: block;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lens-who span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lens-bars {
  display: grid;
  gap: 3px;
}
.lens-bars i {
  display: block;
  height: 3px;
  border-radius: 3px;
  background: var(--tint-2);
  transition: background 0.4s;
}
.lens-bars i.is-active {
  background: var(--indigo);
}
.lens-score {
  text-align: right;
  font-size: 14px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.lens-summary {
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
}

/* 06 Referrals */
.graph {
  padding: 12px 8px 4px;
}
.graph svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}
.graph text {
  font:
    400 12px var(--sans),
    sans-serif;
  fill: var(--muted);
}
.graph .src text {
  fill: var(--ink);
}
.graph .edge {
  fill: none;
  stroke: var(--rule-strong);
  stroke-width: 1.5;
}
.graph .edge.is-signal {
  stroke: var(--indigo);
  stroke-width: 2;
}
.graph .cand circle.core {
  fill: var(--white);
  stroke: var(--rule-strong);
  transition:
    fill 0.4s,
    stroke 0.4s;
}
.graph .cand.is-hit circle.core {
  stroke: var(--ink);
}
.graph .cand.is-signal circle.core {
  fill: var(--indigo);
  stroke: var(--indigo);
}
.graph .cand.is-signal text.label {
  fill: var(--indigo);
  font-weight: 600;
}
.graph .cand .count {
  fill: var(--ink);
  font-weight: 600;
  text-anchor: middle;
}
.graph .cand.is-signal .count {
  fill: var(--white);
}
.graph .halo {
  fill: var(--indigo);
  opacity: 0;
  transition: opacity 0.6s;
}
.graph .cand.is-signal .halo {
  opacity: 0.1;
}
.graph .src circle {
  fill: var(--ink);
}

/* 07 Decision Matrix */
.pdm {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.35fr) minmax(0, 0.95fr);
}
.pdm-col {
  padding: 18px 20px 20px;
}
.pdm-col + .pdm-col {
  border-left: 1px solid var(--rule);
}
.pdm-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}
.feed {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 360px;
}
.feed li {
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--wash);
  border: 1px solid var(--rule);
  font-size: 12px;
  line-height: 1.45;
  animation: feed-in 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.feed li:first-child {
  background: var(--white);
  border-color: var(--indigo);
}
@keyframes feed-in {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
}
.feed .src {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-weight: 600;
  color: var(--ink);
}
.feed .src span {
  font-weight: 400;
  color: var(--muted);
  text-align: right;
}
.feed q {
  display: block;
  margin-top: 4px;
  color: var(--ink);
}
.crit li {
  padding: 10px 0 11px;
  border-bottom: 1px solid var(--rule);
  transition: background 0.3s;
}
.crit li.is-flash {
  background: linear-gradient(90deg, var(--tint-1), transparent 80%);
}
.crit .crit-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
}
.crit .crit-row span {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}
.crit .crit-meters {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}
.depth {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}
.depth i {
  height: 5px;
  border-radius: 3px;
  background: var(--tint-1);
  transition: background 0.4s;
}
.depth i.on {
  background: var(--indigo);
}
.dots {
  display: inline-flex;
  gap: 3px;
}
.dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1px solid var(--faint);
  transition: background 0.3s;
}
.dots i.on {
  background: var(--ink);
  border-color: var(--ink);
}
.ev-count {
  min-width: 52px;
  font-size: 12px;
  color: var(--muted);
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.ask {
  margin-top: 8px;
  padding: 7px 10px;
  border-radius: 8px;
  background: var(--tint-1);
  font-size: 12px;
  line-height: 1.45;
  color: var(--ink);
  animation: feed-in 0.5s;
}
.pdm-verdict {
  margin-top: 14px;
  font-size: 13px;
}
.pdm-verdict b {
  font-weight: 600;
}
.heat {
  width: 100%;
  border-collapse: separate;
  border-spacing: 3px;
  margin: -3px;
  table-layout: fixed;
}
.heat th {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  text-align: left;
  padding: 0 0 4px;
}
.heat thead th {
  text-align: center;
}
.heat thead th:first-child {
  width: 46%;
  text-align: left;
}
.heat tbody th {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.25;
  padding-right: 6px;
  color: var(--ink);
}
.heat td {
  height: 28px;
  border-radius: 4px;
}
.heat .h1 {
  background: var(--tint-1);
}
.heat .h2 {
  background: var(--tint-2);
}
.heat .h3 {
  background: var(--tint-4);
}
.heat .h4 {
  background: var(--indigo);
}
.heat td.is-open {
  background-image: radial-gradient(
    circle at 50% 50%,
    var(--white) 0 3px,
    transparent 3.5px
  );
}
.heat td.is-col {
  outline: 1.5px solid var(--ink);
  outline-offset: 1px;
}
.heat-pick {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 14px;
}
.heat-pick button {
  min-height: 40px;
  border-radius: 8px;
  border: 1px solid var(--rule-strong);
  background: var(--white);
  font-size: 12px;
  cursor: pointer;
  line-height: 1.2;
}
.heat-pick button b {
  display: block;
  font-size: 15px;
  font-weight: 600;
}
.heat-pick button[aria-pressed="true"] {
  background: var(--indigo);
  border-color: var(--indigo);
  color: var(--white);
}
.heat-key {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
}
.heat-key span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.heat-key i {
  width: 12px;
  height: 12px;
  border-radius: 3px;
}

/* Who we serve */
.dawn {
  padding: 0 var(--gutter);
  border-top: 1px solid var(--rule);
}
.dawn-head {
  padding-top: clamp(100px, 11vw, 170px);
}
.aud-tabs {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  border-bottom: 1px solid var(--rule);
}
.aud-tabs[hidden] {
  display: none;
}
.aud-tabs button {
  position: relative;
  min-height: 48px;
  padding: 0;
  border: 0;
  background: none;
  font-size: 16px;
  color: var(--muted);
  cursor: pointer;
}
.aud-tabs button:hover {
  color: var(--ink);
}
.aud-tabs button[aria-selected="true"] {
  color: var(--ink);
}
.aud-tabs button[aria-selected="true"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--indigo);
}
.audiences .aud-panel {
  padding-top: 48px;
}
.audiences .aud-panel[hidden] {
  display: none;
}
.aud-panel + .aud-panel {
  margin-top: 56px;
}
.is-tabbed .aud-panel + .aud-panel {
  margin-top: 0;
}
.aud-name {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 16px;
}
.is-tabbed .aud-name {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.aud-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(36px, 5vw, 88px);
  align-items: start;
}
.aud-line {
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.025em;
}
.aud-list {
  margin-top: 28px;
}
.aud-list li {
  padding: 14px 0;
  border-top: 1px solid var(--rule);
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
}
.aud-list b {
  display: block;
  font-weight: 500;
  color: var(--ink);
}
.aud-visual {
  padding: 22px 22px 16px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--rule);
  box-shadow: 0 24px 48px -32px rgba(17, 19, 24, 0.22);
}
.aud-visual figcaption {
  margin-top: 14px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
}
.aud-chart svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}
.aud-chart text {
  font:
    400 12px var(--sans),
    sans-serif;
  fill: var(--ink);
}
.aud-chart text.sub {
  fill: var(--muted);
}
.chart-key {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin-bottom: 14px;
  font-size: 12px;
  color: var(--muted);
}
.chart-key span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.chart-key i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.team-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.team-table th {
  padding: 0 0 10px;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  text-align: left;
}
.team-table td,
.team-table tbody th {
  padding: 9px 8px 9px 0;
  border-top: 1px solid var(--rule);
  text-align: left;
  font-weight: 400;
}
.team-table tbody th {
  font-weight: 600;
  color: var(--ink);
}
.team-table td.is-hi {
  font-weight: 600;
  color: var(--indigo);
}
.team-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink);
}
.succ li {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--rule);
  font-size: 13px;
}
.succ li:first-child {
  border-top: 0;
}
.succ .pips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.succ .pips i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.succ .ready {
  background: var(--indigo);
}
.succ .soon {
  border: 1.5px solid var(--indigo);
}
.succ .ext {
  background: var(--tint-3);
  width: 8px !important;
  height: 8px !important;
  margin-top: 2px;
}
.succ .risk {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
}
.succ .risk.is-risk {
  color: var(--ink);
  font-weight: 600;
}
.succ .risk.is-risk::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--ink);
  vertical-align: 2px;
}
.ways {
  padding-top: clamp(110px, 12vw, 170px);
}
.ways-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 40px);
  margin-top: 44px;
}
.ways-list li {
  padding-top: 24px;
  border-top: 1px solid var(--ink);
}
.way-word {
  display: block;
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.ways-list p {
  margin-top: 14px;
  max-width: 24em;
  color: var(--muted);
  font-size: 16px;
}
.about {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(36px, 5vw, 88px);
  padding: clamp(110px, 12vw, 170px) 0;
}
.about-lead {
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.5;
  letter-spacing: -0.015em;
}
.about p + p {
  margin-top: 18px;
  color: var(--muted);
}

/* Closing */
.closing {
  padding: clamp(110px, 13vw, 200px) var(--gutter);
  text-align: center;
  color: var(--on-night);
  background: linear-gradient(180deg, var(--night) 0%, #070d1d 100%);
}
.closing :focus-visible {
  outline-color: var(--on-night);
}
.closing-star {
  display: block;
  width: 28px;
  height: 80px;
  margin: 0 auto 40px;
}
.closing-star path {
  fill: var(--on-night);
}
.closing h2 {
  font-size: clamp(44px, 6.4vw, 104px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.closing p {
  max-width: 30em;
  margin: 24px auto 40px;
  color: var(--on-night-muted);
}
.footer {
  background: #070d1d;
  color: var(--on-night);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  max-width: var(--max);
  margin-inline: auto;
  padding: 40px var(--gutter) 48px;
  border-top: 1px solid var(--night-line);
}
.footer .wordmark {
  font-size: 26px;
}
.footer p {
  margin-top: 12px;
  font-size: 13px;
  color: var(--on-night-muted);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 13px;
}
.footer-links a {
  display: inline-block;
  padding-block: 10px;
  color: var(--on-night-muted);
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--on-night);
}
.footer :focus-visible {
  outline-color: var(--on-night);
}

/* Client stories: local review composition only */
.v3-stories {
  padding: clamp(90px, 10vw, 150px) var(--gutter) 0;
}
.v3-stories em {
  font-style: normal;
}
.v3-stories .review-notice {
  max-width: 44em;
  margin-top: 20px;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px dashed var(--rule-strong);
  font-size: 13px;
  color: var(--muted);
}
.v3-stories .review-notice strong {
  color: var(--ink);
}
.story-rail {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin-top: 44px;
}
.story-card {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  padding: 26px 26px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--rule);
}
.story-card:nth-child(-n + 2) {
  grid-column: span 3;
}
.story-card blockquote {
  margin: 0;
  font-size: 19px;
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: -0.015em;
}
.story-card:nth-child(-n + 2) blockquote {
  font-size: clamp(21px, 1.8vw, 25px);
}
.story-card .who {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 500;
}
.story-card .what {
  margin-top: auto;
  padding-top: 18px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}
.story-card .what b {
  display: block;
  margin-bottom: 4px;
  font-weight: 500;
  color: var(--ink);
}

/* Reveal: content is visible by default; motion only adds an entrance. */
.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.js .reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  .moves {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .moves li:nth-child(5) {
    border-left: 0;
  }
  .moves li:nth-child(n + 5) {
    border-top: 1px solid var(--rule);
  }
  .moves li:nth-child(5) a {
    padding-left: 0;
  }
  .chapter,
  .chapter-flip {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }
  .chapter-flip .chapter-text {
    order: 0;
  }
  .chapter-text {
    max-width: 720px;
  }
  .pdm {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  }
  .pdm-col:last-child {
    grid-column: 1 / -1;
    border-left: 0;
    border-top: 1px solid var(--rule);
  }
  .aud-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .story-rail {
    grid-template-columns: minmax(0, 1fr);
  }
  .story-card,
  .story-card:nth-child(-n + 2) {
    grid-column: auto;
  }
}
@media (max-width: 760px) {
  body {
    font-size: 16px;
  }
  .header {
    padding-block: 18px;
  }
  .wordmark {
    font-size: 25px;
  }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 16px;
    border: 1px solid var(--night-line);
    border-radius: 999px;
    background: rgba(10, 18, 38, 0.6);
    color: var(--on-night);
    font-size: 13px;
    cursor: pointer;
  }
  .header nav {
    position: absolute;
    top: 72px;
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 18px 16px;
    border-radius: var(--radius);
    background: var(--white);
    color: var(--ink);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
  }
  .header nav.is-open {
    display: flex;
  }
  .header.is-stuck {
    padding-block: 10px;
  }
  .header.is-stuck nav {
    top: 62px;
  }
  .header.is-stuck .menu-toggle {
    border-color: var(--rule-strong);
    background: var(--white);
    color: var(--ink);
  }
  .header nav a,
  .nav-muted {
    padding: 12px 0;
    font-size: 16px;
    color: var(--ink);
  }
  .nav-muted {
    color: var(--muted);
  }
  .header nav :focus-visible {
    outline-color: var(--indigo);
  }
  .header .nav-cta {
    margin-top: 8px;
    text-align: center;
    padding: 12px 18px;
    border-color: var(--rule-strong);
    color: var(--ink);
  }
  .hero {
    min-height: 740px;
  }
  .hero-inner {
    padding-top: 120px;
  }
  .hero h1 {
    font-size: clamp(40px, 11vw, 64px);
  }
  .hero-note {
    margin-top: 48px;
    font-size: 12px;
  }
  .interlude,
  .intel-head {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }
  .moves {
    grid-template-columns: minmax(0, 1fr);
  }
  .moves li + li {
    border-left: 0;
    border-top: 1px solid var(--rule);
  }
  .moves a,
  .moves li:nth-child(5) a {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 2px 12px;
    padding: 14px 0;
  }
  .moves b {
    margin: 0;
    width: 20px;
  }
  .moves span {
    flex-basis: 100%;
    padding-left: 32px;
  }
  .chapter {
    padding-top: 96px;
  }
  .chapter-wide .chapter-text {
    display: block;
  }
  .chapter-wide .chapter-body {
    margin-top: 20px;
  }
  .chapter h3 {
    font-size: clamp(30px, 8.4vw, 40px);
  }
  .window {
    border-radius: 12px;
  }
  .window-bar,
  .window-foot {
    padding-inline: 16px;
  }
  .window-bar {
    flex-wrap: wrap;
    row-gap: 2px;
  }
  .window-name {
    white-space: nowrap;
  }
  .flow-hint {
    display: block;
  }
  .swarm {
    grid-template-columns: minmax(0, 1fr);
  }
  .swarm-canvas {
    height: 300px;
  }
  .swarm-legend {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-left: 0;
    border-top: 1px solid var(--rule);
  }
  .bench {
    padding-inline: 14px;
  }
  .bench-grid {
    gap: 3px;
    height: 220px;
  }
  .bench-dot {
    width: 12px;
    height: 12px;
  }
  .bench-week::after {
    font-size: 10px;
  }
  .insights {
    grid-template-columns: minmax(0, 1fr);
  }
  .insights li + li {
    border-left: 0;
    border-top: 1px solid var(--rule);
  }
  .career {
    padding-inline: 14px;
  }
  .career-role {
    padding: 0 6px;
    font-size: 12px;
  }
  .role-full {
    display: none;
  }
  .role-short {
    display: inline;
  }
  .career-detail {
    grid-template-columns: minmax(0, 1fr);
  }
  .lenses {
    padding-inline: 12px;
  }
  .lens-row {
    grid-template-columns: 20px 30px minmax(0, 1fr) 36px;
    gap: 8px;
    padding: 0 6px;
  }
  .lens-bars {
    display: none;
  }
  .avatar {
    width: 28px;
    height: 28px;
  }
  .pdm {
    grid-template-columns: minmax(0, 1fr);
  }
  .pdm-col + .pdm-col {
    border-left: 0;
    border-top: 1px solid var(--rule);
  }
  .feed {
    min-height: 0;
  }
  .aud-tabs {
    gap: 20px;
  }
  .aud-tabs button {
    font-size: 15px;
    white-space: nowrap;
  }
  .aud-visual {
    padding: 16px 14px 12px;
  }
  .team-table {
    font-size: 12px;
  }
  .succ li {
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .succ .pips {
    grid-column: 1 / -1;
    grid-row: 2;
  }
  .ways-list {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }
  .about {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }
  .closing .btn-lg {
    font-size: 16px;
    padding: 0 22px;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ===================================================================== */
/* v5 layer: woodblock sea under an indigo sky. Later rules override v4. */
:root {
  --indigo: #1a3470;
  --indigo-2: #26478f;
  --tint-1: #eef2f9;
  --tint-2: #cdd8ec;
  --tint-3: #8aa0c9;
  --tint-4: #45609a;
  --sky-1: #102f6c;
  --sky-2: #1d4a96;
  --sky-3: #3767b2;
  --sky-4: #9cb3dc;
  --sky-5: #e4ebf6;
  --on-night: #ffffff;
  --on-night-muted: #e1e8f4;
  --night-line: rgba(255, 255, 255, 0.34);
}

/* Hero: indigo sky, a glinting star, moving water */
.hero {
  justify-content: flex-start;
  min-height: max(740px, 100svh);
  background: linear-gradient(
    180deg,
    var(--sky-1) 0%,
    var(--sky-2) 36%,
    var(--sky-3) 56%,
    var(--sky-4) 70%,
    var(--sky-5) 78%,
    #f7f9fc 84%,
    #fff 100%
  );
}
.hero-inner {
  padding-top: clamp(150px, 20vh, 210px);
}
.hero h1 {
  max-width: 12.5em;
  font-size: clamp(46px, 6vw, 96px);
}
.hero-lead {
  color: rgba(255, 255, 255, 0.94);
  max-width: 33em;
}
.north-star {
  position: absolute;
  z-index: 1;
  top: 13%;
  right: 19%;
  width: clamp(54px, 5.6vw, 88px);
  height: auto;
  fill: #f7f5ef;
  filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.55));
  transform-origin: 50% 43%;
  animation: star-glint 7s ease-in-out infinite;
}
@keyframes star-glint {
  0%,
  100% {
    opacity: 0.9;
    transform: scale(1);
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.4));
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
    filter: drop-shadow(0 0 26px rgba(255, 255, 255, 0.75));
  }
}
.sea {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.sea.is-ready {
  opacity: 1;
}
.sea canvas {
  display: block;
  width: 100%;
  height: 100%;
}
.sea-hero {
  height: clamp(190px, 29vh, 320px);
}
.btn-light {
  background: #fff;
  color: var(--indigo);
}
.btn-light:hover {
  background: var(--tint-1);
}
.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.btn-dark {
  border: 0;
  background: var(--indigo);
  color: #fff;
  cursor: pointer;
}
.btn-dark:hover {
  background: var(--indigo-2);
}

/* Short hero for the Intelligence page */
.hero-short {
  min-height: 0;
  padding-bottom: clamp(150px, 20vw, 230px);
}
.hero-short .hero-inner {
  padding-top: clamp(140px, 16vw, 190px);
}
.hero-short .north-star {
  top: 22%;
  width: clamp(44px, 4.4vw, 70px);
}
.sea-band {
  height: clamp(130px, 16vw, 210px);
}
.header nav a[aria-current="page"] {
  color: #fff;
}
.header.is-stuck nav a[aria-current="page"] {
  color: var(--ink);
}

/* Boutique */
.boutique {
  max-width: var(--max);
  margin-inline: auto;
  padding: clamp(100px, 11vw, 160px) var(--gutter) clamp(80px, 9vw, 130px);
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: 36px clamp(40px, 6vw, 96px);
  align-items: end;
}
.boutique-lead {
  color: var(--muted);
}
.principles {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 40px);
  margin-top: clamp(28px, 4vw, 56px);
}
.principles li {
  padding-top: 18px;
  border-top: 1px solid var(--ink);
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
}
.principles b {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* Intelligence head without the long index */
.intel-head h2 {
  font-size: clamp(40px, 4.6vw, 72px);
}
.chapter-wide .window {
  margin-top: clamp(36px, 4vw, 56px);
}

/* Parallel search */
.ps-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 0.6fr);
  column-gap: clamp(36px, 5vw, 72px);
  padding: 22px 24px 24px;
}
.ps-links {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}
.ps-links path {
  fill: none;
  stroke: var(--indigo);
  stroke-width: 1.25;
  opacity: 0.55;
  transition: stroke-dashoffset 0.9s cubic-bezier(0.3, 0.7, 0.2, 1);
}
.ps-col {
  position: relative;
  min-width: 0;
}
.ps-head {
  margin-bottom: 12px;
  font-size: 12px;
  color: var(--muted);
}
.ps-head b {
  margin-right: 6px;
  font-weight: 600;
  color: var(--ink);
}
.ps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3px 12px;
}
.ps-chip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40px 30px;
  gap: 8px;
  align-items: center;
  min-height: 26px;
  padding: 0 8px;
  border-radius: 6px;
  font-size: 12px;
  transition:
    opacity 0.6s,
    background 0.6s;
}
.ps-label {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ps-bar {
  height: 4px;
  border-radius: 4px;
  background: var(--tint-1);
  overflow: hidden;
}
.ps-bar i {
  display: block;
  height: 100%;
  border-radius: 4px;
  background: var(--tint-3);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.ps-n {
  text-align: right;
  font-variant-numeric: tabular-nums;
  color: var(--muted);
}
.ps-chip.is-win {
  background: var(--tint-1);
}
.ps-chip.is-win .ps-label {
  font-weight: 600;
}
.ps-chip.is-win .ps-bar i,
.ps-r2 .ps-bar i {
  background: var(--indigo);
}
.ps-chip.is-out {
  color: var(--faint);
}
.ps-chip.is-out .ps-label {
  text-decoration: line-through;
  text-decoration-color: var(--rule-strong);
}
.ps-chip.is-out .ps-bar i {
  background: var(--rule-strong);
}
.ps-group {
  padding: 6px 0 8px;
  border-top: 1px solid var(--rule);
  opacity: 0.2;
  transition: opacity 0.6s;
}
.is-round2 .ps-group {
  opacity: 1;
}
.ps-from {
  margin: 0 0 2px 8px;
  font-size: 12px;
  font-weight: 600;
}
.ps-from::after {
  content: " → expanded";
  font-weight: 400;
  color: var(--muted);
}
.ps-count {
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}
.ps-note {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}
.ps-field {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 4px;
  margin-top: 18px;
}
.ps-field i {
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--tint-1);
  transition: background 0.3s;
}
.ps-field i.on {
  background: var(--indigo);
}

/* Role switch in the Decision Matrix bar */
.role-switch {
  display: inline-flex;
  gap: 2px;
  margin-left: auto;
  margin-right: 12px;
  padding: 3px;
  border-radius: 999px;
  background: var(--wash);
  border: 1px solid var(--rule);
}
.role-switch button {
  min-height: 30px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: none;
  font-size: 12px;
  color: var(--muted);
  cursor: pointer;
}
.role-switch button[aria-pressed="true"] {
  background: var(--indigo);
  color: #fff;
}

/* More in Polara Intelligence */
.more {
  padding-top: clamp(90px, 10vw, 150px);
}
.more-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ink);
}
.more-head h3 {
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 300;
  letter-spacing: -0.03em;
}
.text-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--indigo);
  text-decoration: none;
  white-space: nowrap;
}
.text-link:hover {
  text-decoration: underline;
}
.more-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.more-grid li + li {
  border-left: 1px solid var(--rule);
}
.more-grid a {
  display: flex;
  flex-direction: column;
  gap: 6px;
  height: 100%;
  padding: 24px 22px 26px;
  text-decoration: none;
  font-size: 14px;
  color: var(--muted);
  transition: background 0.2s;
}
.more-grid li:first-child a {
  padding-left: 0;
}
.more-grid a:hover {
  background: var(--wash);
}
.more-grid b {
  margin-top: 14px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}
.mini {
  display: grid;
  height: 48px;
  align-content: end;
}
.mini i {
  display: block;
  border-radius: 999px;
  background: var(--tint-2);
}
.mini i.on {
  background: var(--indigo);
}
.mini-bench {
  grid-template-columns: repeat(6, 10px);
  gap: 6px;
}
.mini-bench i {
  width: 10px;
  height: 10px;
}
.mini-career {
  grid-template-columns: 2fr 2fr 3fr 3fr;
  gap: 4px;
  max-width: 180px;
}
.mini-career i {
  height: 16px;
  border-radius: 4px;
}
.mini-lenses {
  gap: 5px;
  max-width: 180px;
}
.mini-lenses i {
  height: 6px;
}
.mini-lenses i:nth-child(1) {
  width: 92%;
}
.mini-lenses i:nth-child(2) {
  width: 84%;
}
.mini-lenses i:nth-child(3) {
  width: 66%;
}
.mini-lenses i:nth-child(4) {
  width: 50%;
}
.mini-referrals svg {
  width: 150px;
  height: 48px;
  fill: none;
  stroke: var(--indigo);
  stroke-width: 1.5;
}
.mini-referrals circle {
  fill: var(--indigo);
}
.sample-note {
  margin-top: 36px;
  font-size: 12px;
  color: var(--muted);
}
.aud-title {
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 600;
}

/* Client stories carousel */
.stories {
  max-width: var(--max);
  margin-inline: auto;
  padding: clamp(90px, 10vw, 150px) var(--gutter) 0;
}
.stories-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
}
.stories h2 {
  font-size: clamp(40px, 4.6vw, 72px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.04em;
  scroll-margin-top: 92px;
}
.car-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}
.car-nav span {
  min-width: 44px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.car-nav button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--rule-strong);
  background: #fff;
  cursor: pointer;
}
.car-nav button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.car-nav button:hover {
  border-color: var(--ink);
}
.stories .review-notice {
  max-width: 44em;
  margin-top: 18px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px dashed var(--rule-strong);
  font-size: 13px;
  color: var(--muted);
}
.stories .review-notice strong {
  color: var(--ink);
}
.car {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  padding-bottom: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.car::-webkit-scrollbar {
  display: none;
}
.story-card {
  position: relative;
  flex: 0 0 min(460px, 84%);
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px 30px 28px;
  border-radius: 16px;
  overflow: hidden;
  isolation: isolate;
  scroll-snap-align: start;
  color: #fff;
  background: var(--sky-2);
}
.story-card::before {
  content: "";
  position: absolute;
  inset: -6%;
  z-index: -2;
  background-image: var(--art);
  background-size: var(--size, auto 160%);
  background-position: var(--pos, center bottom);
  background-repeat: no-repeat;
  animation: card-drift 22s ease-in-out infinite alternate;
}
.story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(16, 47, 108, 0.1) 0%,
    rgba(16, 47, 108, 0.35) 40%,
    rgba(12, 32, 76, 0.92) 78%
  );
}
@keyframes card-drift {
  from {
    transform: scale(1) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-2.5%, -1.5%, 0);
  }
}
.story-card blockquote {
  margin: 0;
  font-size: clamp(19px, 1.6vw, 22px);
  font-weight: 300;
  line-height: 1.42;
  letter-spacing: -0.015em;
}
.story-card .who {
  margin-top: 18px;
  font-size: 13px;
  font-weight: 600;
}
.story-card .what {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.86);
}

/* Closing: the sky returns, with a form */
.closing {
  position: relative;
  padding: clamp(110px, 12vw, 170px) var(--gutter) clamp(230px, 24vw, 330px);
  text-align: left;
  color: #fff;
  background: linear-gradient(
    180deg,
    var(--sky-1) 0%,
    var(--sky-2) 40%,
    var(--sky-3) 60%,
    var(--sky-4) 76%,
    var(--sky-5) 86%,
    #fff 100%
  );
  overflow: hidden;
}
.closing-star {
  top: 12%;
  right: 8%;
  width: clamp(40px, 3.6vw, 60px);
}
.closing-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(40px, 6vw, 96px);
  max-width: var(--max);
  margin-inline: auto;
  align-items: start;
}
.closing h2 {
  font-size: clamp(42px, 5.4vw, 88px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.closing-copy p {
  max-width: 26em;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.94);
}
.contact-card {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 3vw, 36px);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 40px 80px -40px rgba(10, 25, 60, 0.6);
}
.field {
  display: grid;
  gap: 6px;
}
.field label {
  font-size: 13px;
  font-weight: 500;
}
.field label span {
  font-weight: 400;
  color: var(--muted);
}
.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--rule-strong);
  border-radius: 10px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
}
.field textarea {
  resize: vertical;
}
.field input:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--indigo);
  outline-offset: 1px;
  border-color: var(--indigo);
}
.contact-card .btn {
  justify-self: start;
  min-width: 140px;
  justify-content: center;
}
.contact-status {
  font-size: 13px;
  color: var(--muted);
}
.closing .contact-status[data-state="success"] {
  color: var(--indigo);
}
.closing .contact-status[data-state="error"] {
  color: #a32828;
}
.contact-status:empty { display: none; }
.contact-card .btn:disabled {
  cursor: wait;
  opacity: 0.7;
}
.contact-status a {
  color: var(--indigo);
}
.closing .contact-privacy {
  margin: 0;
  color: #5b606b;
  font-size: 12px;
  line-height: 1.5;
}
.contact-privacy a {
  color: #1b2a4d;
  text-underline-offset: 3px;
}
.privacy-main {
  width: min(100%, 860px);
  margin: 0 auto;
  padding: clamp(80px, 10vw, 150px) 24px;
}
.page-privacy .header {
  position: relative;
  max-width: none;
  color: var(--ink);
  background: var(--white);
  border-bottom: 1px solid var(--rule);
}
.page-privacy .header .wordmark { color: var(--indigo); }
.page-privacy .header nav a { color: var(--muted); }
.page-privacy .header nav a:hover { color: var(--ink); }
.page-privacy .header .nav-cta {
  color: var(--white);
  background: var(--indigo);
  border-color: var(--indigo);
}
.page-privacy .header :focus-visible { outline-color: var(--indigo); }
@media (max-width: 760px) {
  .page-privacy .header .menu-toggle {
    color: var(--ink);
    background: var(--white);
    border-color: var(--rule-strong);
  }
  .page-privacy .header nav a { color: var(--ink); }
  .page-privacy .header .nav-cta { color: var(--white); }
}
.privacy-main h1 {
  margin: 0 0 28px;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.035em;
}
.privacy-main .privacy-intro {
  max-width: 62ch;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
}
.privacy-main section {
  padding-top: 40px;
  margin-top: 48px;
  border-top: 1px solid var(--rule);
}
.privacy-main h2 {
  margin: 0 0 18px;
  font-size: clamp(25px, 3vw, 32px);
  font-weight: 400;
  letter-spacing: -0.025em;
}
.privacy-main p {
  max-width: 70ch;
  line-height: 1.7;
}
.privacy-main section p + p { margin-top: 18px; }
.privacy-main a { color: var(--indigo); text-underline-offset: 3px; }
.privacy-main .privacy-date { margin-top: 48px; font-size: 13px; color: var(--muted); }
.sea-closing {
  height: clamp(170px, 20vw, 280px);
}
.closing :focus-visible {
  outline-color: var(--indigo);
}
.closing-copy :focus-visible {
  outline-color: #fff;
}
.footer {
  background: #fff;
  color: var(--ink);
}
.footer-inner {
  border-top: 1px solid var(--rule);
}
.footer .wordmark {
  color: var(--indigo);
}
.footer p,
.footer-links a {
  color: var(--muted);
}
.footer-links a:hover {
  color: var(--ink);
}
.footer :focus-visible {
  outline-color: var(--indigo);
}
.cta-band {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(90px, 10vw, 140px) var(--gutter);
  border-top: 1px solid var(--rule);
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 300;
  letter-spacing: -0.04em;
}
.cta-band p {
  margin: 16px auto 28px;
  color: var(--muted);
}
.page-intel .moves {
  margin-top: 0;
  border-top: 0;
  border-bottom: 1px solid var(--rule);
}
.page-intel .moves a {
  padding-block: 18px;
  gap: 10px;
}
.page-intel .moves b {
  margin-bottom: 0;
}
.page-intel .intel {
  padding-top: 40px;
}

@media (max-width: 1180px) {
  .principles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .ps-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    row-gap: 28px;
  }
  .ps-out {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 24px;
    align-items: end;
  }
  .ps-out .ps-head {
    grid-column: 1 / -1;
  }
  .ps-field {
    grid-column: 1 / -1;
    grid-template-columns: repeat(24, minmax(0, 1fr));
  }
  .more-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .more-grid li:nth-child(3) {
    border-left: 0;
  }
  .more-grid li:nth-child(n + 3) {
    border-top: 1px solid var(--rule);
  }
  .more-grid li:nth-child(3) a {
    padding-left: 0;
  }
  .closing-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 760px) {
  .hero {
    min-height: 780px;
    background: linear-gradient(
      180deg,
      var(--sky-1) 0%,
      var(--sky-2) 42%,
      var(--sky-3) 66%,
      var(--sky-4) 78%,
      var(--sky-5) 85%,
      #fff 100%
    );
  }
  .hero-inner {
    padding-top: 128px;
  }
  .hero h1 {
    font-size: clamp(38px, 10.5vw, 56px);
  }
  .north-star {
    top: 88px;
    right: 9%;
    width: 38px;
  }
  .sea-hero {
    height: 170px;
  }
  .boutique {
    grid-template-columns: minmax(0, 1fr);
  }
  .principles {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }
  .ps-layout {
    grid-template-columns: minmax(0, 1fr);
    padding: 16px 14px 18px;
  }
  .ps-links {
    display: none;
  }
  .ps-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .ps-out {
    grid-template-columns: minmax(0, 1fr);
  }
  .ps-field {
    grid-template-columns: repeat(15, minmax(0, 1fr));
  }
  .window-bar .role-switch {
    order: 3;
    margin: 6px 0 0;
  }
  .more-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .more-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .more-grid li + li {
    border-left: 0;
    border-top: 1px solid var(--rule);
  }
  .more-grid a,
  .more-grid li:nth-child(3) a {
    padding: 20px 0;
  }
  .stories-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .story-card {
    min-height: 480px;
    padding: 24px 22px;
  }
  .closing {
    padding-bottom: 200px;
  }
  .closing-star {
    top: 40px;
  }
  .sea-closing {
    height: 150px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .north-star,
  .story-card::before {
    animation: none !important;
  }
  .sea {
    opacity: 1;
  }
}
.closing-star {
  height: auto;
  margin: 0;
}

/* v5 refinements */
.north-star {
  right: 9%;
  top: 11%;
}
@media (min-width: 1181px) {
  .ps-layout {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 0.55fr);
  }
}
.ps-chip {
  grid-template-columns: minmax(0, 1fr) 32px 28px;
  gap: 6px;
}
.ps-field {
  grid-template-columns: repeat(12, 10px);
  gap: 5px;
}
.closing .contact-status {
  max-width: none;
  margin: 0;
  color: var(--muted);
  text-align: left;
}
.story-card {
  background: linear-gradient(180deg, #2a5aa8 0%, #6f8fca 55%, #1d4a96 100%);
}
.story-card::before {
  mix-blend-mode: multiply;
}
.closing-star {
  top: 44px;
  width: clamp(34px, 2.8vw, 44px);
}
@media (max-width: 760px) {
  .ps-field {
    grid-template-columns: repeat(15, 10px);
  }
}

/* ===================================================================== */
/* v6 layer */

/* Company talent profile: org map */
.org {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr);
  gap: 28px;
  padding: 18px 20px 20px;
}
.org-switch {
  margin-bottom: 14px;
}
.org-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 12px;
}
.org-table thead th {
  padding: 0 8px 8px 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 500;
  color: var(--muted);
  text-align: left;
}
.org-table thead td {
  width: 17%;
}
.org-table tbody th {
  padding: 10px 8px 10px 0;
  font-weight: 500;
  text-align: left;
  vertical-align: top;
  border-top: 1px solid var(--rule);
}
.org-table td {
  padding: 10px 4px;
  vertical-align: top;
  border-top: 1px solid var(--rule);
}
.org-table td i {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 3px 3px 0;
  border-radius: 50%;
  transition:
    background 0.5s,
    box-shadow 0.5s;
}
.org-short {
  display: none;
}
.k0 {
  background: var(--indigo);
}
.k1 {
  background: var(--tint-3);
}
.k2 {
  background: #fff;
  box-shadow: inset 0 0 0 1.5px var(--indigo);
}
.k3 {
  background: var(--tint-1);
  box-shadow: inset 0 0 0 1px var(--rule-strong);
}
.org-legend {
  display: grid;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}
.org-legend li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.org-legend i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.org-insights {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.org-insights li {
  padding-top: 10px;
  border-top: 1px solid var(--rule);
  font-size: 14px;
  line-height: 1.45;
}
.org-profile {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 10px;
  background: var(--tint-1);
  font-size: 13px;
}
.org-profile-title {
  font-weight: 600;
  margin-bottom: 6px;
}
.org-profile ul {
  display: grid;
  gap: 4px;
  padding-left: 16px;
  list-style: disc;
}
.org-feeds {
  margin-top: 10px;
  color: var(--muted);
}
.org-more {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  padding: 12px 20px 16px;
  border-top: 1px solid var(--rule);
  font-size: 12px;
  color: var(--muted);
}
.org-more::before {
  content: "Also in the profile:";
  margin-right: 4px;
  padding: 4px 0;
}
.org-more li {
  padding: 4px 10px;
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
}

/* Scattered information, before it is filed */
.pdm-scatter {
  position: relative;
  height: 230px;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
  background: var(--wash);
}
.scatter-caption {
  position: absolute;
  left: 20px;
  top: 12px;
  z-index: 2;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
}
.scatter-chip {
  position: absolute;
  width: clamp(120px, 13vw, 180px);
  padding: 8px 10px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--rule-strong);
  box-shadow: 0 8px 18px -12px rgba(17, 19, 24, 0.35);
  font-size: 12px;
  line-height: 1.35;
  transform: rotate(var(--r));
  transition:
    transform 0.7s cubic-bezier(0.5, 0, 0.2, 1),
    opacity 0.6s ease;
}
.scatter-chip b {
  display: block;
  font-weight: 600;
}
.scatter-chip span {
  color: var(--muted);
}
.scatter-chip.is-filed {
  opacity: 0;
  transform: translateY(120px) rotate(0deg) scale(0.7);
}
.pdm-scatter.is-filed {
  height: 56px;
  transition: height 0.6s ease;
}
.pdm-scatter.is-filed .scatter-caption {
  color: var(--indigo);
}

/* People leaders: one scorecard */
.compare {
  display: grid;
}
.compare li {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) auto minmax(60px, 1fr) 28px auto;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid var(--rule);
  font-size: 13px;
}
.compare li:first-child {
  border-top: 0;
}
.compare-who b {
  display: block;
  font-weight: 600;
}
.compare-who span {
  display: block;
  font-size: 12px;
  color: var(--muted);
}
.compare-tag {
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid var(--rule-strong);
  font-size: 12px;
  color: var(--muted);
}
.is-internal .compare-tag {
  border-color: var(--indigo);
  color: var(--indigo);
  font-weight: 600;
}
.compare-bar {
  height: 6px;
  border-radius: 6px;
  background: var(--tint-1);
  overflow: hidden;
}
.compare-bar i {
  display: block;
  height: 100%;
  border-radius: 6px;
  background: var(--tint-3);
  transform-origin: left;
}
.is-internal .compare-bar i {
  background: var(--indigo);
}
.compare-score {
  text-align: right;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.compare-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--ink);
}
.about-link {
  display: inline-block;
  margin-top: 20px;
}

/* About page */
.hero-lead-lg {
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.45;
  max-width: 30em;
}
.a-section {
  max-width: var(--max);
  margin-inline: auto;
  padding: clamp(80px, 9vw, 130px) var(--gutter) 0;
}
.a-head {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(28px, 5vw, 88px);
  align-items: start;
  padding-bottom: clamp(32px, 4vw, 48px);
}
.a-head h2,
.founder h2 {
  font-size: clamp(34px, 3.6vw, 56px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.a-head p {
  color: var(--muted);
  font-size: 18px;
}
.do-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}
.do-grid li {
  padding-top: 16px;
  border-top: 1px solid var(--ink);
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}
.do-grid b {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}
.diff-table {
  border-top: 1px solid var(--ink);
}
.diff-row {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr) minmax(0, 1.6fr);
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 15px;
  line-height: 1.5;
}
.diff-row > span:nth-child(2) {
  color: var(--muted);
}
.diff-row > span:nth-child(3) {
  color: var(--ink);
}
.diff-row b {
  font-weight: 500;
}
.diff-headrow {
  padding: 12px 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.diff-headrow > span:nth-child(3) {
  color: var(--indigo);
}
.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}
.steps li {
  position: relative;
  padding-top: 30px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}
.steps li::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  right: calc(-1 * clamp(16px, 2vw, 28px));
  height: 1px;
  background: var(--tint-3);
}
.steps li:last-child::before {
  right: 0;
}
.steps li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--indigo);
}
.steps span {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--faint);
}
.steps b {
  display: block;
  margin: 2px 0 6px;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
}
.founder {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: clamp(28px, 5vw, 88px);
  align-items: center;
}
.founder-art {
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(16, 47, 108, 0.05), rgba(16, 47, 108, 0.35)),
    url("/assets/art/woodblock-2.webp") 30% 100% / auto 150% no-repeat,
    var(--sky-4);
  background-blend-mode: normal, multiply, normal;
}
.founder-name {
  margin: 14px 0 16px;
  font-size: 20px;
  font-weight: 500;
}
.founder p + p {
  margin-top: 14px;
}
.founder p:not(.founder-name) {
  color: var(--muted);
  max-width: 36em;
}
.faq {
  border-top: 1px solid var(--ink);
}
.faq details {
  border-bottom: 1px solid var(--rule);
}
.faq summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  min-height: 56px;
  align-items: center;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 300;
  color: var(--muted);
}
.faq details[open] summary::after {
  content: "−";
}
.faq details p {
  max-width: 44em;
  padding: 0 0 20px;
  color: var(--muted);
}
.page-about .cta-band {
  margin-top: clamp(80px, 9vw, 130px);
}

@media (max-width: 1180px) {
  .org {
    grid-template-columns: minmax(0, 1fr);
  }
  .do-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 32px;
  }
  .steps li::before {
    right: 0;
  }
}
@media (max-width: 760px) {
  .principles {
    grid-template-columns: minmax(0, 1fr);
  }
  .org {
    padding-inline: 12px;
  }
  .org-full {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }
  .org-short {
    display: inline;
  }
  .org-table thead td {
    width: 25%;
  }
  .org-table tbody th {
    font-size: 12px;
  }
  .org-table td i {
    width: 10px;
    height: 10px;
    margin: 0 2px 2px 0;
  }
  .scatter-chip {
    width: 150px;
  }
  .compare li {
    grid-template-columns: minmax(0, 1fr) auto auto;
    row-gap: 6px;
  }
  .compare-bar {
    grid-column: 1 / 2;
  }
  .compare .dots {
    display: none;
  }
  .a-head,
  .founder {
    grid-template-columns: minmax(0, 1fr);
  }
  .do-grid,
  .steps {
    grid-template-columns: minmax(0, 1fr);
  }
  .diff-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
  }
  .diff-headrow {
    display: none;
  }
  .diff-row > span:nth-child(2)::before {
    content: "Traditional: ";
    font-weight: 500;
  }
  .diff-row > span:nth-child(3)::before {
    content: "Polara: ";
    font-weight: 600;
    color: var(--indigo);
  }
  .founder-art {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 1600px) {
  .org-full {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }
  .org-short {
    display: inline;
  }
}

@media (max-width: 760px) {
  .pdm-scatter {
    height: 200px;
  }
  .scatter-chip {
    width: auto;
    padding: 6px 9px;
  }
  .scatter-chip span {
    display: none;
  }
}
@media (max-width: 760px) {
  .org-table thead th {
    padding: 0 2px 8px 0;
    text-overflow: clip;
  }
  .org-table thead td {
    width: 22%;
  }
}

/* ===================================================================== */
/* v7 layer */
.diff-outcome {
  margin-top: 28px;
  max-width: 40em;
  font-size: clamp(20px, 1.7vw, 24px);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.02em;
}
.founder-link {
  display: inline-block;
  margin-top: 20px;
}

.steps em {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: 12px;
  font-weight: 500;
  color: var(--indigo);
}
@media (max-width: 760px) {
}

/* How we work: the search room */
.how-window {
  margin-bottom: clamp(40px, 5vw, 64px);
}
.js .steps-source {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.sr-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-bottom: 1px solid var(--rule);
}
.sr-tabs button {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  min-height: 60px;
  padding: 12px 20px;
  border: 0;
  border-right: 1px solid var(--rule);
  background: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-align: left;
  cursor: pointer;
}
.sr-tabs button:last-child {
  border-right: 0;
}
.sr-tabs button span {
  font-size: 12px;
  color: var(--faint);
}
.sr-tabs button.is-done {
  color: var(--ink);
}
.sr-tabs button[aria-pressed="true"] {
  color: var(--ink);
  background: var(--tint-1);
}
.sr-tabs button[aria-pressed="true"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--indigo);
}
.sr-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr) minmax(0, 1fr);
}
.sr-col,
.sr-short {
  position: relative;
  padding: 18px 20px 20px;
  transition: background 0.5s ease;
}
.sr-col.is-active,
.sr-short.is-active.is-on {
  background: #f7f9fd;
}
.sr-col.is-active::before,
.sr-short.is-active.is-on::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--indigo);
}
.sr-col + .sr-col {
  border-left: 1px solid var(--rule);
}
.sr-head {
  margin-bottom: 14px;
}
.sr-head b {
  display: block;
  font-size: 14px;
  font-weight: 600;
}
.sr-head span {
  font-size: 12px;
  color: var(--muted);
}
.sr-chips {
  margin: 0 0 16px;
}
.sr-label {
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.sr-score li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 60px 30px;
  gap: 8px;
  align-items: center;
  padding: 6px 0;
  border-top: 1px solid var(--rule);
  font-size: 12px;
}
.sr-score em {
  font-style: normal;
  text-align: right;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.sr-bar {
  height: 5px;
  border-radius: 5px;
  background: var(--tint-1);
  overflow: hidden;
}
.sr-bar i {
  display: block;
  height: 100%;
  border-radius: 5px;
  background: var(--indigo);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.sr-log {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 250px;
}
.sr-log li {
  padding: 9px 12px;
  border-radius: 10px;
  border: 1px solid var(--rule);
  background: var(--wash);
  font-size: 13px;
  line-height: 1.4;
}
.sr-log li.is-new {
  border-color: var(--indigo);
  background: #fff;
  animation: feed-in 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.sr-log li span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--indigo);
}
.sr-people li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 9px 0;
  border-top: 1px solid var(--rule);
  font-size: 12px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s ease,
    visibility 0s linear 0.5s;
}
.sr-people li.is-on {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
.sr-people b {
  display: block;
  font-size: 13px;
  font-weight: 500;
}
.sr-people div span {
  color: var(--muted);
}
.sr-state {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
}
.sr-state.is-yes {
  color: var(--indigo);
  font-weight: 600;
}
.sr-bench {
  margin-top: 12px;
  padding: 8px 12px;
  border-radius: 10px;
  background: var(--tint-1);
  font-size: 13px;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
}
.sr-bench.is-on {
  opacity: 1;
  visibility: visible;
}
.sr-short {
  border-top: 1px solid var(--rule);
}
.sr-short:not(.is-on) .sr-verdict {
  visibility: hidden;
}
.sr-short ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.sr-short li {
  display: grid;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--rule);
  font-size: 13px;
}
.sr-short li b {
  font-weight: 600;
}
.sr-verdict {
  font-size: 12px;
  color: var(--muted);
}
.sr-verdict.is-complete {
  color: var(--indigo);
  font-weight: 600;
}
.sr-foot {
  padding: 14px 20px 16px;
  border-top: 1px solid var(--rule);
  background: var(--wash);
  font-size: 14px;
  color: var(--muted);
}
.sr-foot b {
  color: var(--ink);
  font-weight: 600;
}
@media (max-width: 1000px) {
  .sr-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .sr-col + .sr-col {
    border-left: 0;
    border-top: 1px solid var(--rule);
  }
  .sr-tabs {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .sr-tabs button {
    flex: none;
    padding: 10px 16px;
  }
}
@media (max-width: 760px) {
  .sr-short ul {
    grid-template-columns: minmax(0, 1fr);
  }
  .sr-col,
  .sr-short {
    padding-inline: 14px;
  }
}
