@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: #f3efe7;
  --paper-soft: #fbf9f4;
  --paper-deep: #e6ded2;
  --ink: #252a49;
  --ink-soft: #62667a;
  --night: #171b32;
  --night-soft: #252b49;
  --accent: #5363eb;
  --accent-dark: #3f4fcf;
  --accent-pale: #e7eafb;
  --positive: #6578ef;
  --neutral: #d4c8b8;
  --negative: #d78368;
  --line: rgba(37, 42, 73, 0.15);
  --line-light: rgba(255, 255, 255, 0.15);
  --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(1200px, 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.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: 1000;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.028;
  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='.88' numOctaves='3' stitchTiles='stitchTiles'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%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,
blockquote,
ol,
ul {
  margin: 0;
}

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

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

:focus-visible {
  outline: 3px solid #93a0ff;
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

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

.snapshot-bar {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 24px;
  color: #eef0ff;
  background: var(--accent-dark);
  font-size: 11px;
  letter-spacing: 0.02em;
  text-align: center;
}

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

.snapshot-bar strong::before {
  margin-right: 10px;
  content: "·";
  opacity: 0.7;
}

.site-header {
  position: relative;
  z-index: 50;
  height: 76px;
  background: rgba(251, 249, 244, 0.97);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  width: min(1380px, calc(100vw - 48px));
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 150px 1fr 150px;
  align-items: center;
  gap: 32px;
}

.site-header__brand {
  width: 112px;
}

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

.site-header nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.3vw, 34px);
}

.site-header nav a {
  padding-block: 9px;
  color: #51566e;
  font-size: 12px;
  font-weight: 500;
  transition: color 160ms ease;
}

.site-header nav a:hover {
  color: var(--accent-dark);
}

.header-cta,
.button {
  min-height: 50px;
  display: inline-flex;
  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;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms var(--ease), background 180ms ease, border-color 180ms ease;
}

.header-cta {
  min-height: 44px;
  justify-self: end;
  padding-inline: 18px;
}

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

.button--ghost {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.72);
  transform: translateY(-2px);
}

.eyebrow {
  color: var(--accent);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.45;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 16%, rgba(101, 120, 239, 0.24), transparent 32%),
    radial-gradient(circle at 12% 90%, rgba(83, 99, 235, 0.13), transparent 31%),
    linear-gradient(132deg, #111529, #1c213d 58%, #272e50);
}

.hero::before {
  position: absolute;
  top: -340px;
  right: -230px;
  width: 720px;
  height: 720px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 94px rgba(255, 255, 255, 0.018), 0 0 0 188px rgba(255, 255, 255, 0.012);
  pointer-events: none;
}

.hero__shell {
  position: relative;
  z-index: 1;
  width: var(--shell);
  min-height: 720px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.83fr);
  align-items: center;
  gap: clamp(52px, 7vw, 110px);
  padding-block: clamp(78px, 8vw, 116px);
}

.hero .eyebrow {
  color: #aab3ff;
}

.hero h1 {
  max-width: 760px;
  margin-top: 24px;
  font-family: var(--serif);
  font-size: clamp(45px, 5.3vw, 75px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.hero__lede {
  max-width: 680px;
  margin-top: 30px;
  color: #c6cbe2;
  font-family: var(--display);
  font-size: clamp(17px, 1.7vw, 21px);
  letter-spacing: -0.018em;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
}

.hero__stats > div {
  min-width: 0;
  padding-right: 16px;
}

.hero__stats dt {
  min-height: 36px;
  color: #9da4bf;
  font-size: 9px;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.hero__stats dd {
  margin-top: 5px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero__product {
  position: relative;
  overflow: hidden;
  background: #0d1020;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.33);
}

.hero__product > img {
  width: 100%;
  aspect-ratio: 1.15;
  object-fit: cover;
  object-position: 56% center;
}

.hero__product figcaption {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  background: rgba(13, 16, 32, 0.96);
}

.hero__product figcaption span:first-child {
  font-size: 12px;
  font-weight: 600;
}

.hero__product figcaption a {
  color: #aab3ff;
  font-size: 10px;
  font-weight: 600;
}

.hero__product-note {
  position: absolute;
  top: 18px;
  left: 18px;
  max-width: 190px;
  padding: 14px 16px;
  color: var(--ink);
  background: rgba(251, 249, 244, 0.94);
  backdrop-filter: blur(10px);
}

.hero__product-note strong {
  display: block;
  font-family: var(--display);
  font-size: 25px;
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero__product-note span {
  display: block;
  margin-top: 7px;
  color: var(--ink-soft);
  font-size: 9px;
  line-height: 1.35;
}

.scope-band {
  color: #333954;
  background: #e3e6fb;
  border-bottom: 1px solid rgba(63, 79, 207, 0.16);
}

.scope-band__inner {
  width: var(--shell);
  min-height: 92px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding-block: 20px;
}

.scope-band p {
  max-width: 880px;
  font-size: 13px;
  line-height: 1.55;
}

.scope-band a {
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 600;
  border-bottom: 1px solid rgba(37, 42, 73, 0.4);
}

.section {
  padding-block: clamp(92px, 10vw, 144px);
}

.section-heading {
  max-width: 650px;
}

.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(160px, 0.42fr) minmax(0, 1fr);
  gap: clamp(40px, 7vw, 108px);
}

.section-heading h2 {
  max-width: 820px;
  font-family: var(--serif);
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.09;
}

.section-heading > h2 {
  margin-top: 20px;
}

.section-heading p:not(.eyebrow) {
  max-width: 690px;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 72px;
  background: var(--line);
  border: 1px solid var(--line);
}

.decision-grid article {
  min-height: 280px;
  padding: clamp(30px, 4vw, 48px);
  background: var(--paper-soft);
}

.decision-grid span,
.roi-formula > span {
  color: var(--accent);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.decision-grid strong {
  display: block;
  margin-top: 24px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.decision-grid p {
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

.decision-grid p b {
  color: var(--ink);
  font-weight: 600;
}

.sentiment-card {
  margin-top: 28px;
  padding: clamp(24px, 4vw, 48px);
  background: var(--white);
  border: 1px solid var(--line);
}

.sentiment-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.sentiment-card__head > div:first-child strong,
.comparison-card__head strong,
.domain-card__head strong {
  display: block;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.sentiment-card__head > div:first-child span,
.comparison-card__head span,
.domain-card__head span {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 10px;
}

.sentiment-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--ink-soft);
  font-size: 9px;
}

.sentiment-legend span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.sentiment-legend i {
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 50%;
}

.positive { background: var(--positive); }
.neutral { background: var(--neutral); }
.negative { background: var(--negative); }

.sentiment-row {
  display: grid;
  grid-template-columns: 142px minmax(180px, 1fr) 126px;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(37, 42, 73, 0.09);
}

.sentiment-row.is-highlighted {
  margin-inline: -14px;
  padding-inline: 28px;
  background: #f2f3ff;
}

.sentiment-row > div:first-child strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
}

.sentiment-row > div:first-child span {
  display: block;
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 9px;
}

.sentiment-row > b {
  color: var(--accent-dark);
  font-size: 10px;
  font-weight: 600;
  text-align: right;
}

.sentiment-row > b.is-risk {
  color: #af604b;
}

.sentiment-bar {
  height: 10px;
  display: flex;
  overflow: hidden;
  background: var(--paper-deep);
  border-radius: 0;
}

.sentiment-bar i {
  width: var(--share);
  height: 100%;
  display: block;
}

.card-note,
.creator-note,
.routing-disclosure {
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.55;
}

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

.source-grid > a {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  color: var(--white);
  background: var(--night-soft);
  transition: transform 220ms var(--ease), background 180ms ease;
}

.source-grid > a:hover {
  background: #303759;
  transform: translateY(-4px);
}

.source-grid > a > span {
  color: #aeb7ff;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.source-grid blockquote {
  margin-top: 28px;
  font-family: var(--serif);
  font-size: 25px;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.source-grid p {
  margin-top: 22px;
  color: #c5c9dc;
  font-size: 10px;
  line-height: 1.5;
}

.source-grid em,
.creator-grid em {
  margin-top: auto;
  padding-top: 24px;
  color: #aeb7ff;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
}

.comparisons {
  background: var(--paper-soft);
  border-block: 1px solid var(--line);
}

.comparisons__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(60px, 9vw, 138px);
}

.text-link {
  display: inline-block;
  margin-top: 28px;
  padding-bottom: 5px;
  color: var(--ink);
  border-bottom: 1px solid rgba(37, 42, 73, 0.38);
  font-size: 11px;
  font-weight: 600;
}

.comparison-card,
.domain-card {
  padding: clamp(28px, 4vw, 46px);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 25px 70px rgba(37, 42, 73, 0.08);
}

.comparison-card__head,
.domain-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.comparison-row,
.domain-row {
  min-height: 46px;
  display: grid;
  grid-template-columns: 102px minmax(120px, 1fr) 38px;
  align-items: center;
  gap: 14px;
}

.comparison-row span,
.domain-row span {
  overflow: hidden;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.comparison-row i,
.domain-row i {
  width: var(--value);
  min-width: 4px;
  height: 8px;
  display: block;
  background: var(--accent);
  border-radius: 0;
}

.comparison-row b,
.domain-row b {
  font-size: 10px;
  font-weight: 600;
  text-align: right;
}

.comparison-card > p {
  margin-top: 22px;
  padding-top: 22px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  font-size: 10px;
  line-height: 1.55;
}

.routing {
  color: var(--white);
  background:
    radial-gradient(circle at 88% 10%, rgba(83, 99, 235, 0.24), transparent 28%),
    linear-gradient(145deg, var(--night), #202642);
}

.section-heading--light .eyebrow,
.routing .routing-opportunity .eyebrow {
  color: #aeb7ff;
}

.section-heading--light p:not(.eyebrow) {
  color: #bfc4d9;
}

.routing-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 72px;
  border: 1px solid var(--line-light);
}

.routing-stats > div {
  min-height: 168px;
  padding: 28px;
  border-right: 1px solid var(--line-light);
}

.routing-stats > div:last-child {
  border-right: 0;
}

.routing-stats dt {
  color: #9fa5be;
  font-size: 9px;
  letter-spacing: 0.02em;
}

.routing-stats dd {
  margin-top: 17px;
  font-family: var(--display);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
}

.routing-stats span {
  display: block;
  margin-top: 13px;
  color: #aeb3c9;
  font-size: 9px;
  line-height: 1.4;
}

.routing-layout {
  display: grid;
  grid-template-columns: minmax(390px, 0.86fr) minmax(0, 1fr);
  gap: 22px;
  margin-top: 22px;
}

.domain-card {
  color: var(--ink);
  box-shadow: none;
}

.domain-row i {
  background: var(--positive);
}

.routing-opportunity {
  padding: clamp(32px, 5vw, 56px);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-light);
}

.routing-opportunity h3 {
  max-width: 560px;
  margin-top: 20px;
  font-family: var(--serif);
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.routing-opportunity ol {
  margin-top: 34px;
}

.routing-opportunity li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  padding-block: 18px;
  border-top: 1px solid var(--line-light);
}

.routing-opportunity li > span {
  color: #939cff;
  font-size: 10px;
}

.routing-opportunity li p {
  color: #bdc2d6;
  font-size: 11px;
  line-height: 1.55;
}

.routing-opportunity li strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-weight: 600;
}

.routing-disclosure {
  color: #9da3bb;
}

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

.creator-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 70px;
}

.creator-grid > a {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 220ms var(--ease), box-shadow 220ms ease;
}

.creator-grid > a:hover {
  box-shadow: 0 22px 54px rgba(37, 42, 73, 0.09);
  transform: translateY(-5px);
}

.creator-card__top {
  min-height: 38px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.creator-card__top span {
  color: var(--accent);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.creator-card__top b {
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 500;
  text-align: right;
}

.creator-grid h3 {
  margin-top: 25px;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.creator-grid > a > p {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.65;
}

.creator-grid dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 24px;
}

.creator-grid dl > div {
  padding: 12px;
  background: var(--paper-soft);
}

.creator-grid dt {
  min-height: 28px;
  color: var(--ink-soft);
  font-size: 8px;
  line-height: 1.35;
}

.creator-grid dd {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
}

.creator-grid em {
  color: var(--accent-dark);
}

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

.roi-table {
  margin-top: 72px;
  background: var(--line);
  border: 1px solid var(--line);
}

.roi-row {
  display: grid;
  grid-template-columns: 0.82fr 1.08fr 1.18fr 1.08fr;
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.roi-row:last-child {
  border-bottom: 0;
}

.roi-row > * {
  min-width: 0;
  min-height: 116px;
  padding: 24px;
  display: flex;
  align-items: center;
  background: var(--paper-soft);
  font-size: 11px;
  line-height: 1.55;
}

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

.roi-row span {
  color: var(--ink-soft);
}

.roi-row--head > * {
  min-height: 56px;
  color: var(--white);
  background: var(--night-soft);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.roi-formula {
  margin-top: 20px;
  padding: clamp(28px, 4vw, 44px);
  background: #e3e6fb;
  border: 1px solid rgba(83, 99, 235, 0.18);
}

.roi-formula p {
  max-width: 930px;
  margin-top: 14px;
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.roi-formula strong {
  font-weight: 400;
}

.roi-formula small {
  display: block;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 9px;
}

.method {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.method__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.2fr);
  gap: clamp(60px, 9vw, 140px);
}

.method__notes article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 20px;
  padding-block: 26px;
  border-top: 1px solid var(--line);
}

.method__notes article:first-child {
  padding-top: 0;
  border-top: 0;
}

.method__notes article > span {
  color: var(--accent);
  font-size: 10px;
}

.method__notes h3 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.method__notes p {
  margin-top: 9px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.65;
}

.closing {
  padding-block: clamp(98px, 12vw, 170px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(18, 22, 42, 0.88), rgba(18, 22, 42, 0.52)),
    url("/img/concept/backgrounds/every-view.webp") center 48% / cover no-repeat;
}

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

.closing .eyebrow {
  color: #aeb7ff;
}

.closing h2 {
  max-width: 850px;
  margin-top: 22px;
  font-family: var(--serif);
  font-size: clamp(38px, 5.6vw, 74px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.closing p:not(.eyebrow) {
  margin-top: 24px;
  color: #d1d5e6;
  font-size: 16px;
}

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

.site-footer {
  padding-block: 58px 28px;
  color: #d6d9e8;
  background: #111526;
}

.site-footer__inner {
  width: var(--shell);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 54px;
}

.site-footer__brand img {
  width: 112px;
  height: auto;
}

.site-footer__brand p {
  margin-top: 20px;
  color: #888fa9;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.45;
}

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

.site-footer nav a {
  color: #b1b6cb;
  font-size: 10px;
}

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

.site-footer small {
  grid-column: 1 / -1;
  padding-top: 28px;
  color: #676e89;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 9px;
}

@media (max-width: 1050px) {
  .site-header__inner {
    grid-template-columns: 120px 1fr 140px;
    gap: 20px;
  }

  .site-header nav {
    gap: 16px;
  }

  .hero__shell {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.74fr);
    gap: 46px;
  }

  .hero__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 24px;
  }

  .hero__stats dt {
    min-height: 26px;
  }

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

  .creator-grid > a {
    min-height: 360px;
  }

  .roi-row {
    grid-template-columns: 0.78fr 1fr 1fr 1fr;
  }
}

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

  .site-header {
    height: auto;
  }

  .site-header__inner {
    min-height: 72px;
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 12px;
    scrollbar-width: none;
  }

  .site-header nav::-webkit-scrollbar {
    display: none;
  }

  .hero__shell {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hero h1 {
    font-size: clamp(43px, 8.8vw, 66px);
  }

  .hero__product {
    width: min(100%, 620px);
  }

  .section-heading--split,
  .comparisons__grid,
  .method__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .decision-grid article {
    min-height: 0;
  }

  .source-grid > a {
    min-height: 250px;
  }

  .comparisons__grid {
    gap: 54px;
  }

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

  .routing-stats > div:nth-child(2) {
    border-right: 0;
  }

  .routing-stats > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-light);
  }

  .routing-layout {
    grid-template-columns: 1fr;
  }

  .roi-table {
    display: grid;
    gap: 14px;
    background: transparent;
    border: 0;
  }

  .roi-row {
    grid-template-columns: 1fr;
    gap: 0;
    background: var(--paper-soft);
    border: 1px solid var(--line);
  }

  .roi-row > * {
    min-height: 0;
    display: block;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(37, 42, 73, 0.08);
  }

  .roi-row > *:last-child {
    border-bottom: 0;
  }

  .roi-row > *::before {
    display: block;
    margin-bottom: 5px;
    color: var(--accent);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.02em;
  }

  .roi-row:not(.roi-row--head) > *:nth-child(1)::before { content: "Decision"; }
  .roi-row:not(.roi-row--head) > *:nth-child(2)::before { content: "Evidence baseline"; }
  .roi-row:not(.roi-row--head) > *:nth-child(3)::before { content: "Action"; }
  .roi-row:not(.roi-row--head) > *:nth-child(4)::before { content: "Measure"; }

  .roi-row--head {
    display: none;
  }

  .method__grid {
    gap: 54px;
  }
}

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

  .snapshot-bar {
    display: block;
    padding-inline: 16px;
    line-height: 1.45;
  }

  .snapshot-bar strong {
    display: block;
  }

  .snapshot-bar strong::before {
    display: none;
  }

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

  .site-header__brand {
    width: 100px;
  }

  .header-cta {
    min-height: 40px;
    padding-inline: 13px;
    font-size: 10px;
  }

  .site-header nav {
    gap: 18px;
  }

  .site-header nav a {
    flex: 0 0 auto;
    font-size: 10px;
  }

  .hero__shell {
    padding-block: 68px 76px;
  }

  .hero h1 {
    font-size: clamp(38px, 11.6vw, 54px);
    line-height: 1.06;
  }

  .hero__lede {
    font-size: 16px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__stats {
    gap: 22px 14px;
  }

  .hero__product > img {
    aspect-ratio: 1;
  }

  .hero__product figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .hero__product-note {
    top: 12px;
    left: 12px;
  }

  .scope-band__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding-block: 22px;
  }

  .section {
    padding-block: 82px;
  }

  .section-heading h2 {
    font-size: clamp(31px, 9.6vw, 43px);
    line-height: 1.11;
  }

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

  .sentiment-card {
    padding: 20px 16px;
  }

  .sentiment-card__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .sentiment-row {
    grid-template-columns: 94px minmax(96px, 1fr);
    gap: 10px;
    min-height: 74px;
    padding-inline: 6px;
  }

  .sentiment-row.is-highlighted {
    margin-inline: -6px;
    padding-inline: 12px;
  }

  .sentiment-row > b {
    grid-column: 2;
    margin-top: -15px;
    font-size: 9px;
  }

  .source-grid > a {
    padding: 26px;
  }

  .comparison-card,
  .domain-card {
    padding: 22px 18px;
  }

  .comparison-card__head,
  .domain-card__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .comparison-row,
  .domain-row {
    grid-template-columns: 80px minmax(80px, 1fr) 32px;
    gap: 9px;
  }

  .routing-stats {
    grid-template-columns: 1fr;
  }

  .routing-stats > div,
  .routing-stats > div:nth-child(2) {
    min-height: 142px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .routing-stats > div:last-child {
    border-bottom: 0;
  }

  .routing-opportunity {
    padding: 30px 22px;
  }

  .creator-grid {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .creator-grid > a {
    min-height: 350px;
  }

  .roi-table {
    margin-top: 50px;
  }

  .closing h2 {
    font-size: clamp(35px, 10.4vw, 51px);
  }

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

  .site-footer nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: initial;
  }

  .site-footer small {
    grid-column: auto;
  }
}

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

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