@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Host+Grotesk:wght@400;500;600&display=swap");

:root {
  --paper: #f5f1e9;
  --paper-soft: #fbf9f4;
  --paper-deep: #eae4da;
  --ink: #292e4f;
  --ink-soft: #60647a;
  --night: #20243d;
  --night-soft: #292e4b;
  --accent: #4454e1;
  --accent-dark: #3442bd;
  --accent-pale: #e7e9fc;
  --positive: #4454e1;
  --negative: #c95f57;
  --neutral: #a58d61;
  --line: rgba(41, 46, 79, 0.16);
  --line-light: rgba(255, 255, 255, 0.16);
  --white: #fff;
  --serif: "Host Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  --sans: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --display: "Host Grotesk", var(--sans);
  --shell: min(1180px, calc(100vw - 64px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: 1000;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.036;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitchTiles'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

p,
h1,
h2,
h3,
dl,
dd,
figure,
figcaption,
ol,
ul,
blockquote {
  margin: 0;
}

ol,
ul {
  padding: 0;
  list-style: none;
}

::selection {
  color: var(--white);
  background: var(--accent);
}

:focus-visible {
  outline: 3px solid #8d99ff;
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1200;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--accent);
  transform: translateY(-160%);
  transition: transform 180ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.independence-bar {
  position: relative;
  z-index: 80;
  min-height: 38px;
  display: grid;
  place-items: center;
  padding: 8px 24px;
  color: var(--white);
  background: var(--accent);
  text-align: center;
}

.independence-bar p {
  font-size: 11px;
  letter-spacing: 0.015em;
}

.independence-bar strong {
  font-weight: 600;
}

.site-header {
  position: relative;
  z-index: 70;
  height: 76px;
  background: rgba(245, 241, 233, 0.96);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  width: min(1380px, calc(100vw - 48px));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  width: 112px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.back-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  color: #45495f;
  font-size: 12px;
  font-weight: 500;
}

.back-link span {
  font-size: 16px;
  transition: transform 180ms var(--ease);
}

.back-link:hover span {
  transform: translateX(-3px);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  color: var(--white);
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 0;
  font-size: 12px;
  font-weight: 600;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms var(--ease);
}

.button:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
}

.button--small {
  min-height: 44px;
  padding-inline: 18px;
}

.button--light {
  color: var(--ink);
  background: var(--paper-soft);
  border-color: var(--paper-soft);
}

.button--light:hover {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.eyebrow span {
  padding-left: 10px;
  color: var(--ink-soft);
  border-left: 1px solid var(--line);
  font-weight: 500;
}

.eyebrow--light {
  color: #e3e5fb;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 9vw, 130px) 0 54px;
  background:
    radial-gradient(circle at 89% 8%, rgba(68, 84, 225, 0.14), transparent 28%),
    linear-gradient(135deg, var(--paper-soft), var(--paper) 52%, #eee8dd);
}

.hero::before {
  position: absolute;
  top: -175px;
  right: -120px;
  width: min(42vw, 620px);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(68, 84, 225, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 64px rgba(68, 84, 225, 0.027),
    0 0 0 128px rgba(68, 84, 225, 0.021);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  align-items: center;
  gap: clamp(64px, 9vw, 128px);
}

.hero__copy h1 {
  max-width: 780px;
  margin-top: 26px;
  font-family: var(--serif);
  font-size: clamp(43px, 5.6vw, 82px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.hero__lede {
  max-width: 720px;
  margin-top: 32px;
  color: #4d516a;
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 23px);
  letter-spacing: -0.025em;
  line-height: 1.45;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  border-bottom: 1px solid rgba(41, 46, 79, 0.42);
  font-size: 12px;
  font-weight: 600;
}

.text-link span {
  transition: transform 180ms var(--ease);
}

.text-link:hover span {
  transform: translateY(3px);
}

.hero__evidence {
  position: relative;
}

.hero__evidence::before {
  position: absolute;
  z-index: -1;
  inset: 34px -26px -28px 34px;
  content: "";
  background: var(--accent);
  border-radius: 0;
  transform: rotate(3deg);
}

.evidence-card {
  position: relative;
  min-height: 495px;
  display: flex;
  flex-direction: column;
  padding: clamp(30px, 4vw, 48px);
  overflow: hidden;
  color: var(--white);
  background: var(--night);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  box-shadow: 0 30px 80px rgba(38, 41, 70, 0.2);
}

.evidence-card::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

.evidence-card__topline,
.evidence-card__number,
.evidence-card__label,
.evidence-card__meta,
.evidence-card__stamp {
  position: relative;
  z-index: 1;
}

.evidence-card__topline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-light);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.evidence-card__topline span {
  color: rgba(255, 255, 255, 0.56);
  font-weight: 500;
}

.evidence-card__number {
  margin-top: 38px;
  font-family: var(--display);
  font-size: clamp(62px, 7.3vw, 94px);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.85;
}

.evidence-card__label {
  margin-top: 14px;
  color: #c7cdfd;
  font-size: 13px;
}

.evidence-card__meta {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 0;
  margin-top: 46px;
  padding-top: 20px;
  border-top: 1px solid var(--line-light);
}

.evidence-card__meta div {
  padding-right: 12px;
}

.evidence-card__meta div + div {
  padding-left: 16px;
  border-left: 1px solid var(--line-light);
}

.evidence-card__meta dt {
  min-height: 33px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 9px;
  letter-spacing: 0.04em;
  line-height: 1.35;
}

.evidence-card__meta dd {
  margin-top: 9px;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.evidence-card__stamp {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: auto;
  padding-top: 30px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.disclosure {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: start;
  gap: 14px;
  margin-top: clamp(86px, 10vw, 132px);
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.disclosure__mark {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  color: var(--accent);
  border: 1px solid rgba(68, 84, 225, 0.5);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 13px;
}

.disclosure p {
  max-width: 950px;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.65;
}

.disclosure strong {
  color: var(--ink);
  font-weight: 600;
}

.catalog,
.voices,
.decisions,
.method {
  padding: clamp(92px, 11vw, 154px) 0;
}

.catalog {
  background: var(--paper-soft);
}

.section-heading h2 {
  margin-top: 20px;
  font-family: var(--serif);
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.section-heading > p:not(.eyebrow),
.section-heading--split > p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

.section-heading > p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 24px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.48fr);
  align-items: end;
  gap: 80px;
}

.section-heading--split > p {
  padding-bottom: 7px;
}

.volume-chart {
  margin-top: 70px;
  padding: clamp(28px, 4vw, 52px);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 18px 60px rgba(41, 46, 79, 0.055);
}

.volume-chart__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.volume-chart__header h3 {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.volume-chart__header span {
  color: var(--ink-soft);
  font-size: 10px;
  letter-spacing: 0.02em;
}

.volume-chart__rows {
  display: grid;
  gap: 22px;
  margin-top: 30px;
}

.volume-chart__label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 9px;
  font-size: 12px;
}

.volume-chart__label strong {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.volume-chart__track {
  height: 9px;
  display: block;
  overflow: hidden;
  background: var(--paper-deep);
  border-radius: 0;
}

.volume-chart__bar {
  width: var(--share);
  height: 100%;
  display: block;
  background: linear-gradient(90deg, var(--accent), #7380ec);
  border-radius: inherit;
}

.volume-chart figcaption {
  margin-top: 26px;
  padding-top: 18px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  font-size: 10px;
}

.voices {
  position: relative;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.voices::before {
  position: absolute;
  top: 0;
  right: 0;
  width: min(36vw, 520px);
  height: 100%;
  content: "";
  pointer-events: none;
  opacity: 0.42;
  background:
    linear-gradient(90deg, transparent, var(--paper)),
    radial-gradient(circle at 90% 15%, rgba(68, 84, 225, 0.11), transparent 42%);
}

.voices .shell {
  position: relative;
  z-index: 1;
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 68px;
}

.voice-card {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3.2vw, 40px);
  background: var(--paper-soft);
  border: 1px solid var(--line);
  box-shadow: 0 18px 54px rgba(41, 46, 79, 0.05);
}

.voice-card__topline {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.voice-card__topline > span {
  color: var(--accent);
  font-size: 9px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.1em;
}

.voice-card__topline p {
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.035em;
  line-height: 1.45;
  text-align: right;
}

.voice-card blockquote {
  position: relative;
  margin-top: 54px;
  padding-top: 34px;
}

.voice-card blockquote::before {
  position: absolute;
  top: -18px;
  left: -4px;
  content: "\201C";
  color: var(--accent);
  font-family: var(--serif);
  font-size: 72px;
  line-height: 1;
}

.voice-card blockquote p {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 29px);
  letter-spacing: -0.028em;
  line-height: 1.38;
}

.voice-card__source {
  margin-top: auto;
  padding-top: 34px;
}

.voice-card__source > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.voice-card__source cite {
  font-family: var(--display);
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
}

.voice-card__source > div span {
  color: var(--ink-soft);
  font-size: 10px;
}

.voice-card__source ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}

.voice-card__source li {
  padding: 6px 8px;
  color: var(--accent-dark);
  background: var(--accent-pale);
  border: 1px solid rgba(68, 84, 225, 0.15);
  border-radius: 0;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.voice-card__source > p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 9px;
  line-height: 1.5;
}

.voices__note {
  margin-top: 24px;
  padding-top: 18px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  font-size: 10px;
  line-height: 1.65;
}

.analysis {
  padding: clamp(100px, 12vw, 170px) 0;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 15%, rgba(68, 84, 225, 0.2), transparent 28%),
    var(--night);
}

.section-heading--wide {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  column-gap: 90px;
  align-items: end;
}

.section-heading--wide .eyebrow {
  grid-column: 1 / -1;
}

.section-heading--wide h2 {
  max-width: 790px;
}

.section-heading--wide > p:not(.eyebrow) {
  max-width: 410px;
  margin: 0 0 3px;
  color: rgba(255, 255, 255, 0.62);
}

.product-list {
  margin-top: 76px;
  border-top: 1px solid var(--line-light);
}

.product-row {
  display: grid;
  grid-template-columns: 0.8fr 1.3fr 0.85fr;
  align-items: start;
  gap: clamp(32px, 5vw, 72px);
  padding: 42px 0;
  border-bottom: 1px solid var(--line-light);
}

.product-row__identity {
  display: flex;
  gap: 18px;
}

.product-row__number {
  width: 26px;
  flex: 0 0 auto;
  padding-top: 3px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
}

.product-row__identity h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.product-row__identity div p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  letter-spacing: 0.02em;
}

.product-row__signals {
  display: grid;
  gap: 16px;
}

.signal {
  display: grid;
  grid-template-columns: minmax(112px, 0.82fr) minmax(100px, 1fr) auto 48px;
  align-items: center;
  gap: 12px;
}

.signal__label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
}

.signal__track {
  height: 5px;
  display: block;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 0;
}

.signal__track span {
  width: var(--score);
  height: 100%;
  display: block;
  background: var(--positive);
  border-radius: inherit;
}

.signal--negative .signal__track span {
  background: var(--negative);
}

.signal--neutral .signal__track span {
  background: var(--neutral);
}

.signal strong {
  min-width: 56px;
  color: #dce0ff;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.signal--negative strong {
  color: #f3b4ae;
}

.signal--neutral strong {
  color: #dac89f;
}

.signal strong small {
  display: block;
  margin-top: 2px;
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
}

.signal__sample {
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.product-row__read {
  color: rgba(255, 255, 255, 0.64);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.58;
}

.product-row__read > span {
  display: block;
  margin-bottom: 8px;
  color: #aeb7ff;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.decisions {
  background: var(--paper);
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 68px;
}

.decision-card {
  min-height: 490px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3.5vw, 42px);
  background: var(--paper-soft);
  border: 1px solid var(--line);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease);
}

.decision-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(41, 46, 79, 0.09);
}

.decision-card__number {
  color: rgba(41, 46, 79, 0.68);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
}

.decision-card__type {
  margin-top: 54px;
  color: var(--accent);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.decision-card h3 {
  margin-top: 16px;
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 29px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.decision-card > p:not(.decision-card__type) {
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.7;
}

.decision-card__evidence {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.decision-card__evidence > span {
  max-width: 120px;
  color: var(--ink-soft);
  font-size: 9px;
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.decision-card__evidence strong {
  color: var(--accent);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.035em;
  text-align: right;
}

.decision-card__evidence--negative strong {
  color: #ad4640;
}

.decision-card__evidence small {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0;
}

.routing {
  padding: clamp(94px, 11vw, 150px) 0;
  color: var(--white);
  background: var(--accent);
}

.routing__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 0.7fr);
  align-items: center;
  gap: clamp(72px, 11vw, 150px);
}

.routing__copy h2 {
  max-width: 660px;
  margin-top: 22px;
  font-family: var(--serif);
  font-size: clamp(36px, 4.4vw, 61px);
  font-weight: 400;
  letter-spacing: -0.048em;
  line-height: 1.08;
}

.routing__copy > p:not(.eyebrow) {
  max-width: 590px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.75;
}

.routing__recommendation {
  max-width: 590px;
  margin-top: 38px;
  padding: 20px 0 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-left: 3px solid rgba(255, 255, 255, 0.8);
}

.routing__recommendation > span {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.routing__recommendation p {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.5;
}

.routing__visual {
  padding: clamp(28px, 4vw, 48px);
  color: var(--ink);
  background: var(--paper-soft);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 22px 28px 0 rgba(32, 36, 61, 0.18);
}

.routing__topline {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.routing__topline span {
  color: var(--ink-soft);
  font-size: 10px;
  letter-spacing: 0.02em;
}

.routing__topline strong {
  font-family: var(--display);
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.route {
  display: grid;
  grid-template-columns: 12px 1fr;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding: 18px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.route__dot {
  width: 9px;
  height: 9px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(68, 84, 225, 0.11);
}

.route--olive-young .route__dot {
  background: var(--night);
  box-shadow: 0 0 0 5px rgba(32, 36, 61, 0.09);
}

.route--unresolved .route__dot {
  background: var(--neutral);
  box-shadow: 0 0 0 5px rgba(165, 141, 97, 0.12);
}

.route div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}

.route div > span {
  color: var(--ink-soft);
  font-size: 11px;
}

.route strong {
  color: var(--accent);
  font-family: var(--display);
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.route--olive-young strong {
  color: var(--night);
}

.route--unresolved strong {
  color: #7e693f;
}

.route strong small {
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0;
}

.routing__global {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.routing__global div + div {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.routing__global span {
  display: block;
  color: var(--ink-soft);
  font-size: 9px;
  letter-spacing: 0.02em;
}

.routing__global strong {
  display: block;
  margin-top: 8px;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 500;
}

.method {
  background: var(--paper-soft);
}

.method__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(420px, 0.7fr);
  gap: clamp(76px, 12vw, 170px);
}

.method__definitions {
  border-top: 1px solid var(--line);
}

.method__definitions div {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 34px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.method__definitions dt {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.method__definitions dd {
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.65;
}

.method__note {
  display: grid;
  grid-template-columns: 0.3fr 1fr;
  gap: 50px;
  margin-top: 80px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.method__note h3 {
  color: var(--accent);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.method__note p {
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.7;
}

.closing {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(23, 27, 49, 0.2), rgba(23, 27, 49, 0.7)),
    url("/img/concept/hero-night.webp") center 52% / cover no-repeat,
    var(--night);
}

.closing__wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(68, 84, 225, 0.1), transparent 33%),
    linear-gradient(90deg, rgba(26, 30, 53, 0.6), rgba(26, 30, 53, 0.08) 50%, rgba(26, 30, 53, 0.6));
}

.closing__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 110px 0;
  text-align: center;
}

.closing__inner > img {
  width: 44px;
  height: 44px;
  margin-bottom: 30px;
  filter: brightness(0) invert(1);
}

.closing h2 {
  max-width: 800px;
  margin-top: 20px;
  font-family: var(--serif);
  font-size: clamp(38px, 4.8vw, 66px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.closing__inner > p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.7;
}

.closing .button {
  margin-top: 34px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.7);
  background: #191d35;
}

.site-footer__inner {
  min-height: 240px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 48px 0;
}

.site-footer__brand a {
  width: 134px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.site-footer__brand img {
  width: 100%;
  height: auto;
}

.site-footer__brand p {
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 26px;
}

.site-footer nav a {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.site-footer nav a:hover {
  color: var(--white);
}

.site-footer__disclosure {
  grid-column: 1 / -1;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 9px;
  letter-spacing: 0.05em;
}

@media (max-width: 1020px) {
  .hero__grid,
  .routing__grid {
    grid-template-columns: 1fr 0.8fr;
    gap: 52px;
  }

  .hero__copy h1 {
    font-size: clamp(42px, 6.1vw, 62px);
  }

  .evidence-card {
    min-height: 430px;
    padding: 30px;
  }

  .evidence-card__meta {
    grid-template-columns: 1fr 1fr;
    row-gap: 20px;
  }

  .evidence-card__meta div:nth-child(3) {
    padding: 18px 0 0;
    border: 0;
  }

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

  .section-heading--wide > p:not(.eyebrow) {
    margin-top: 24px;
  }

  .product-row {
    grid-template-columns: 0.7fr 1.3fr;
  }

  .product-row__read {
    grid-column: 2;
  }

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

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

  .voice-card:last-child {
    grid-column: 1 / -1;
    min-height: 430px;
  }

  .decision-card:last-child {
    grid-column: 1 / -1;
    min-height: 410px;
  }

  .method__grid {
    gap: 70px;
  }
}

@media (max-width: 780px) {
  :root {
    --shell: min(100% - 40px, 620px);
  }

  .site-header {
    height: 68px;
  }

  .site-header__inner {
    width: calc(100vw - 32px);
  }

  .brand {
    width: 102px;
  }

  .back-link {
    display: none;
  }

  .hero {
    padding-top: 76px;
  }

  .hero::before {
    top: -40px;
    right: -80px;
    width: 380px;
  }

  .hero__grid,
  .section-heading--split,
  .routing__grid,
  .method__grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: 72px;
  }

  .hero__copy h1 br {
    display: none;
  }

  .hero__evidence {
    width: min(100% - 18px, 520px);
    margin-inline: auto;
  }

  .section-heading--split,
  .routing__grid,
  .method__grid {
    gap: 38px;
  }

  .section-heading--split > p {
    max-width: 570px;
  }

  .product-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-row__read {
    grid-column: auto;
    max-width: 560px;
  }

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

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

  .voice-card:last-child {
    grid-column: auto;
  }

  .decision-card,
  .decision-card:last-child {
    grid-column: auto;
    min-height: 430px;
  }

  .routing__visual {
    width: min(100% - 14px, 520px);
    margin-inline: auto;
  }

  .method__note {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .independence-bar {
    padding-inline: 16px;
  }

  .independence-bar p {
    font-size: 9px;
    line-height: 1.45;
  }

  .site-header__inner {
    width: calc(100vw - 28px);
  }

  .button--small {
    min-height: 44px;
    padding-inline: 14px;
    font-size: 10px;
  }

  .hero {
    padding: 62px 0 40px;
  }

  .eyebrow {
    flex-wrap: wrap;
  }

  .hero__copy h1 {
    margin-top: 20px;
    font-size: clamp(36px, 11.6vw, 50px);
  }

  .hero__lede {
    font-size: 17px;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .hero__actions .button,
  .hero__actions .text-link {
    width: 100%;
  }

  .hero__evidence::before {
    inset: 20px -10px -14px 18px;
  }

  .evidence-card {
    min-height: 420px;
    padding: 24px;
  }

  .evidence-card__topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .evidence-card__number {
    font-size: 60px;
  }

  .evidence-card__meta {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .evidence-card__meta div:nth-child(3) {
    padding: 0 0 0 12px;
    border-left: 1px solid var(--line-light);
  }

  .evidence-card__meta div + div {
    padding-left: 12px;
  }

  .evidence-card__meta dt {
    min-height: 42px;
    font-size: 7px;
  }

  .evidence-card__meta dd {
    font-size: 21px;
  }

  .disclosure {
    margin-top: 76px;
  }

  .catalog,
  .voices,
  .decisions,
  .method,
  .analysis,
  .routing {
    padding-block: 88px;
  }

  .section-heading h2,
  .routing__copy h2,
  .closing h2 {
    font-size: clamp(32px, 9.6vw, 43px);
  }

  .volume-chart {
    margin-top: 48px;
    padding: 22px 18px;
  }

  .voice-grid {
    margin-top: 48px;
  }

  .voice-card,
  .voice-card:last-child {
    min-height: 470px;
    padding: 24px;
  }

  .voice-card blockquote p {
    font-size: 23px;
  }

  .volume-chart__label {
    align-items: flex-start;
    font-size: 10px;
  }

  .product-list {
    margin-top: 54px;
  }

  .signal {
    grid-template-columns: 1fr auto 44px;
    gap: 8px;
  }

  .signal__label {
    grid-column: 1 / -1;
  }

  .signal__track {
    grid-column: 1;
  }

  .decision-card,
  .decision-card:last-child {
    min-height: 470px;
  }

  .routing__visual {
    padding: 24px 18px;
    box-shadow: 12px 16px 0 rgba(32, 36, 61, 0.18);
  }

  .route {
    padding-inline: 14px;
  }

  .route div > span {
    max-width: 120px;
  }

  .method__definitions div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .closing {
    min-height: 600px;
  }

  .closing__inner {
    padding-block: 92px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .independence-bar,
  .site-header,
  .closing,
  .site-footer,
  .hero__actions {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }

  .hero,
  .catalog,
  .voices,
  .analysis,
  .decisions,
  .routing,
  .method {
    padding: 40px 0;
    color: #000;
    background: #fff;
  }

  .product-row,
  .product-list,
  .method__definitions,
  .method__definitions div {
    border-color: #aaa;
  }

  .product-row__identity div p,
  .product-row__read,
  .signal__label,
  .signal__sample,
  .section-heading--wide > p:not(.eyebrow),
  .routing__copy > p:not(.eyebrow) {
    color: #333;
  }
}
