/* ==========================================================================
   LLM Citation Drift Report — landing page
   Techmagnate · converted from Figma (LLM CITATION DRIFT-LPv2)
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --navy: #001b3f;
  --navy-header: rgba(12, 30, 62, .95);
  --ink: #091528;
  --ink-2: #0d1726;
  --muted: #55657e;
  --dim: #8f9eb2;
  --green: #5daf3e;
  --green-hover: #6fc44d;
  --green-ink: #040b15;
  --blue: #004087;
  --blue-hover: #01509f;
  --surface: #f5f7fa;
  --line: #e2e8f0;
  --line-soft: #f1f5f9;
  --white: #fff;
  --hair-light: rgba(255, 255, 255, .08);

  --font: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "Liberation Mono", "Courier New", monospace;

  --gutter: clamp(20px, 5vw, 64px);
  --section-y: clamp(48px, 7vw, 80px);
  --radius: 4px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, p, blockquote, figure { margin: 0; }

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

a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-hover); }

button, input { font: inherit; }

/* ---------- Layout helpers ---------- */
.shell { max-width: 1280px; margin-inline: auto; padding-inline: var(--gutter); }
.shell--narrow { max-width: 1280px; }

.section { padding-block: var(--section-y); }
.section--light { background: var(--white); border-bottom: 1px solid var(--line); }
.section--surface { background: var(--surface); border-bottom: 1px solid var(--line); }
.section--navy { background: var(--navy); border-bottom: 1px solid var(--hair-light); }

.row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 4.5vw, 56px);
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal.is-out { opacity: 0; transform: translateY(-14px); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .reveal.is-in,
  .reveal.is-out { opacity: 1; transform: none; transition: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px clamp(12px, 2vw, 16px);
  border: 0;
  border-radius: var(--radius);
  background: var(--green);
  color: var(--green-ink);
  font-size: 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background .16s var(--ease);
}
.btn:hover { background: var(--green-hover); color: var(--green-ink); }
.btn img { flex: 0 0 auto; }

.btn--sm { min-height: 36px; box-shadow: 0 1px 2px rgba(0, 0, 0, .05); }
.btn--md { min-height: 40px; padding-inline: 20px; }
.btn--lg {
  min-height: 48px;
  padding: 14px clamp(20px, 3vw, 28px);
  font-size: 14px;
  box-shadow: 0 4px 6px -4px rgba(0, 0, 0, .1), 0 10px 15px -3px rgba(0, 0, 0, .1);
}
.btn--xl { min-height: 52px; padding: 16px clamp(22px, 3vw, 32px); font-size: 14px; }
.btn--block { width: 100%; min-height: 47px; font-size: 16px; font-weight: 700;
  color: #050e1a; border-radius: 6px; box-shadow: 0 2px 10px rgba(93, 175, 62, .22); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 12px 8px;
  color: var(--dim);
  font-size: 14px;
  letter-spacing: .025em;
  text-decoration: underline;
}
.btn-ghost:hover { color: var(--white); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--navy-header);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hair-light);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding-block: 14px;
  padding-inline: clamp(16px, 3vw, 32px);
  max-width: 1280px;
  margin-inline: auto;
}
.logo img { width: clamp(104px, 22vw, 136px); height: auto; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  max-width: 100%;
  padding: 6px 12px;
  border: 1px solid var(--hair-light);
  border-radius: var(--radius);
  color: var(--green);
  font-size: clamp(10px, 1.6vw, 11px);
  line-height: 1.5;
  letter-spacing: clamp(.1em, .3vw, .2em);
  text-transform: uppercase;
}
.dot {
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--green);
}

/* ---------- Hero ---------- */
.hero__grid { align-items: flex-start; }
.hero__content {
  flex: 1 1 520px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 5vw, 60px);
}
.hero__copy { display: flex; flex-direction: column; gap: clamp(16px, 2.4vw, 24px); }
.hero__title {
  font-size: clamp(30px, 4.6vw, 48px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.025em;
  color: var(--white);
  text-wrap: pretty;
}
.hero__lede {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.55;
  color: var(--dim);
  text-wrap: pretty;
}
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; padding-top: 8px; }

/* ---------- Metric chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  flex: 1 1 116px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 12px 14px;
  border: 1px solid var(--hair-light);
  border-radius: var(--radius);
  background: rgba(0, 27, 63, .8);
}
.chip__num { font-size: clamp(20px, 2.4vw, 24px); line-height: 1.33; color: var(--white); }
.chip__num--green { color: var(--green); }
.chip__label {
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--dim);
}

/* ---------- Forms ---------- */
.form-card {
  flex: 1 1 380px;
  min-width: 0;
  max-width: 448px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25);
}
.form-card__title {
  padding-top: 4px;
  font-size: clamp(21px, 2.6vw, 25px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.02em;
  text-wrap: pretty;
}
.form-card__sub { font-size: 14px; line-height: 1.45; color: var(--muted); }

.form { display: flex; flex-direction: column; gap: 16px; padding-top: 16px; }
.form--stack { gap: 22px; }
.form__group { display: flex; flex-direction: column; gap: 8px; }
.form__pair { display: flex; flex-wrap: wrap; gap: 16px; }

.field { min-width: 0; display: flex; flex-direction: column; gap: 6px; }
.form__pair .field { flex: 1 1 220px; }
.field__label {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
}
.field__label--ink { color: var(--ink); font-weight: 400; letter-spacing: .05em; }
.field__input {
  width: 100%;
  min-height: 46px;
  padding: 12px 16px;
  border: 1px solid var(--dim);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
  font-size: 16px;
  outline: none;
  transition: border-color .16s var(--ease);
}
.field__input:focus { border-color: var(--blue); }
.field__input--soft { border-color: var(--line); border-radius: var(--radius); background: rgba(245, 247, 250, .3); }

.field__otp { position: relative; display: flex; align-items: center; }
.field__otp .field__input { padding-right: 96px; }
.otp-btn {
  position: absolute;
  right: 10px;
  min-height: 26px;
  padding: 4px 10px;
  border: 1px solid #0c1e3e;
  border-radius: var(--radius);
  background: var(--blue);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
  cursor: pointer;
  transition: background .16s var(--ease);
}
.otp-btn:hover { background: var(--blue-hover); }

/* ---------- Counter band ---------- */
.band__inner { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(28px, 4vw, 40px); max-width: 1152px; margin-inline: auto; }
.band__dots { flex: 0 1 165px; min-width: 120px; }
.band__dots svg { width: 100%; height: auto; }
.band__figure { flex: 0 1 auto; display: flex; align-items: flex-end; gap: clamp(12px, 2vw, 20px); }
.band__num { font-size: clamp(64px, 11vw, 128px); line-height: .95; letter-spacing: -.05em; color: var(--green); }
.band__cap {
  padding-bottom: clamp(4px, 1vw, 10px);
  font-size: clamp(11px, 1.3vw, 14px);
  line-height: 1.25;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
}
.band__text {
  flex: 1 1 420px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: clamp(0px, 3vw, 40px);
  border-left: 1px solid var(--hair-light);
}
.band__title {
  max-width: 519px;
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -.025em;
  color: var(--white);
  text-wrap: pretty;
}
.band__body { max-width: 519px; font-size: clamp(15px, 1.5vw, 16px); line-height: 1.5; color: var(--white); text-wrap: pretty; }

/* ---------- Key findings ---------- */
.findings__stack { display: flex; flex-direction: column; gap: clamp(28px, 3.5vw, 40px); }
.findings__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: clamp(24px, 6vw, 96px);
  padding-bottom: clamp(28px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
}
.findings__title {
  flex: 1 1 420px;
  min-width: 0;
  max-width: 483px;
  margin-top: 24px;
  font-size: clamp(26px, 3.6vw, 36px);
  font-weight: 400;
  line-height: 1.11;
  letter-spacing: -.025em;
  color: var(--ink-2);
  text-wrap: pretty;
}
.findings__sub {
  flex: 1 1 380px;
  min-width: 0;
  max-width: 538px;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.55;
  color: var(--muted);
  text-wrap: pretty;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
  gap: 30px;
  padding-top: 8px;
}
.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  min-height: 253px;
  padding: clamp(20px, 2.6vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
}
.card__body { display: flex; flex-direction: column; gap: 11px; }
.card__num {
  padding-top: 9px;
  font-size: clamp(38px, 4.4vw, 48px);
  line-height: 1;
  letter-spacing: -.025em;
  color: var(--blue);
}
.card__text { font-size: 15px; line-height: 1.52; color: var(--muted); text-wrap: pretty; }
.card__foot {
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  font-size: 11px;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--muted);
}

.more-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--white);
}
.more-bar__text { font-size: 16px; line-height: 1.5; }

/* ---------- Chart ---------- */
.chart-sec__row { align-items: center; max-width: 1152px; margin-inline: auto; }
.chart-sec__aside { flex: 1 1 300px; min-width: 0; max-width: 420px; display: flex; flex-direction: column; gap: 12px; }
.chart-sec__title {
  font-size: clamp(26px, 3.6vw, 36px);
  font-weight: 400;
  line-height: 1.11;
  letter-spacing: -.025em;
  color: var(--ink-2);
}
.chart-sec__body { font-size: clamp(15px, 1.6vw, 18px); line-height: 1.45; color: var(--muted); text-wrap: pretty; }

.chart {
  flex: 1 1 480px;
  min-width: 0;
  padding: clamp(18px, 2.8vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
}
.chart__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: clamp(16px, 2vw, 24px);
  border-bottom: 1px solid var(--line);
}
.chart__caption { font-size: clamp(14px, 1.6vw, 16px); line-height: 1.5; }
.legend { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.legend__item { display: flex; align-items: center; gap: 6px; font-size: 12px; line-height: 1.33; color: var(--muted); }
.legend__swatch { flex: 0 0 auto; width: 12px; height: 12px; border-radius: var(--radius); background: var(--ink); }
.legend__swatch--green { background: var(--green); }

.bars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(4px, 1.4vw, 16px);
  padding: clamp(32px, 5vw, 64px) 0 16px;
}
.bar { flex: 1 1 0; min-width: 0; max-width: 83px; display: flex; flex-direction: column; align-items: center; }
.bar__val { margin-bottom: 8px; font-size: clamp(11px, 1.3vw, 14px); line-height: 1.4; }
.bar__fill {
  width: 100%;
  max-width: 54px;
  background: var(--ink);
  border-radius: var(--radius) var(--radius) 0 0;
}
.bar__label {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: clamp(9px, 1.15vw, 12px);
  line-height: 1.33;
  letter-spacing: .05em;
  color: var(--muted);
  white-space: nowrap;
}
.bar__fill--a { height: clamp(120px, 20vw, 184px); }
.bar__fill--b { height: clamp(110px, 18.4vw, 169px); }
.bar__fill--c { height: clamp(102px, 17vw, 156px); }
.bar__fill--d { height: clamp(117px, 19.5vw, 180px); }

.bar--peak .bar__fill {
  background: var(--green);
  box-shadow: 0 2px 4px -2px rgba(0, 0, 0, .1), 0 4px 6px -1px rgba(0, 0, 0, .1);
}
.bar--peak .bar__label { font-weight: 700; color: var(--ink); }

.chart__note { padding-top: 16px; border-top: 1px solid var(--line); font-size: 11px; line-height: 1.5; color: var(--muted); text-wrap: pretty; }

/* ---------- Thesis ---------- */
.thesis {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--hair-light);
  border-bottom: 1px solid var(--hair-light);
  background: #0b1a2c url("../images/editorial-bg.png") center / cover no-repeat;
  padding-block: clamp(52px, 7.5vw, 88px);
}
.thesis__inner { max-width: 864px; display: flex; flex-direction: column; gap: clamp(18px, 2.4vw, 24px); }
.kicker { display: flex; align-items: center; gap: 12px; }
.kicker__rule { flex: 0 0 auto; width: 32px; height: 1px; background: var(--green); }
.kicker__text {
  font-family: var(--font-mono);
  font-size: clamp(10px, 1.3vw, 12px);
  font-weight: 700;
  line-height: 1.33;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green);
}
.thesis__quote {
  font-size: clamp(30px, 5.4vw, 60px);
  line-height: 1.05;
  letter-spacing: -.025em;
  color: var(--white);
  text-wrap: pretty;
}
.thesis__quote em {
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 4px solid var(--green);
  color: var(--green);
  font-style: normal;
  white-space: nowrap;
}
.thesis__quote span { display: block; }
.meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  padding-top: clamp(20px, 3vw, 32px);
  border-top: 1px solid var(--hair-light);
  font-size: 14px;
  line-height: 1.43;
  color: var(--dim);
}
.meta__dot { flex: 0 0 auto; width: 6px; height: 6px; border-radius: 999px; background: rgba(143, 158, 178, .4); }

/* ---------- Download ---------- */
.download__row { align-items: flex-start; justify-content: center; max-width: 1152px; margin-inline: auto; gap: clamp(32px, 5vw, 64px); }
.cover-wrap { flex: 0 1 380px; min-width: 0; display: flex; justify-content: center; }
.cover {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 380px;
  min-height: 507px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(24px, 3.4vw, 36px);
  border: 1px solid #0d1e38;
  border-radius: var(--radius-lg);
  background: var(--ink);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25);
}
.cover__glow {
  position: absolute;
  right: 0;
  top: 1px;
  width: 128px;
  height: 128px;
  border-radius: 999px;
  background: rgba(93, 175, 62, .1);
  filter: blur(40px);
}
.cover__edge { position: absolute; left: 1px; top: 0; bottom: 0; width: 10px; background: var(--green); }
.cover > *:not(.cover__glow):not(.cover__edge) { position: relative; }
.cover__head { display: flex; flex-direction: column; gap: 16px; }
.cover__kicker {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--green);
}
.cover__title { font-size: clamp(28px, 3.6vw, 36px); line-height: 1.11; letter-spacing: -.025em; color: var(--white); }
.cover__sub {
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.33;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--dim);
}
.cover__specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-block: 24px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.spec { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px; font-size: 12px; line-height: 1.33; }
.spec__k { color: var(--dim); }
.spec__v { font-family: var(--font-mono); font-weight: 700; color: var(--white); }
.spec__v--green { color: var(--green); }
.cover__foot { padding-top: 8px; font-size: 11px; line-height: 1.62; color: var(--dim); text-wrap: pretty; }

.lead-card {
  flex: 1 1 520px;
  min-width: 0;
  max-width: 646px;
  padding: clamp(24px, 3.6vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
}
.lead-card__title {
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -.025em;
  text-wrap: pretty;
}
.lead-card__sub { padding-top: 12px; font-size: clamp(15px, 1.6vw, 16px); line-height: 1.5; color: var(--muted); }

.assurances {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.assurance { display: flex; align-items: center; gap: 8px; font-size: 12px; line-height: 1.33; color: var(--muted); }
.assurance .dot { width: 8px; height: 8px; }

/* ---------- Methodology ---------- */
.method__row { align-items: flex-start; max-width: 1152px; margin-inline: auto; gap: clamp(28px, 3.5vw, 40px); }
.method__aside { flex: 1 1 300px; min-width: 0; max-width: 400px; display: flex; flex-direction: column; gap: 12px; }
.method__title { font-size: clamp(26px, 3.6vw, 36px); font-weight: 400; line-height: 1.1; letter-spacing: -.025em; }
.method__body { font-size: clamp(15px, 1.6vw, 16px); line-height: 1.5; color: var(--muted); text-wrap: pretty; }
.method__link { padding-top: 12px; font-size: 14px; line-height: 1.43; }
.method__link a { color: var(--ink); text-decoration: underline; }
.method__link a:hover { color: var(--blue); }

.accordion { flex: 1 1 440px; min-width: 0; display: flex; flex-direction: column; gap: 16px; }
.acc { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); }
.acc__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
  padding: clamp(18px, 2.4vw, 24px);
  list-style: none;
  cursor: pointer;
}
.acc__summary::-webkit-details-marker { display: none; }
.acc__label { display: flex; align-items: baseline; gap: 12px; min-width: 0; }
.acc__idx { flex: 0 0 auto; font-family: var(--font-mono); font-size: 12px; line-height: 1.33; color: var(--dim); }
.acc__name { font-size: clamp(16px, 1.8vw, 18px); line-height: 1.45; }
.acc__icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 20px;
  line-height: 1;
  transition: transform .16s var(--ease);
}
.acc[open] .acc__icon { transform: rotate(45deg); }
.acc__panel { padding: 0 clamp(18px, 2.4vw, 24px) 24px; border-top: 1px solid var(--line); }
.acc__panel p { padding-top: 20px; font-size: 15px; line-height: 1.6; color: var(--muted); text-wrap: pretty; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  border-top: 1px solid var(--hair-light);
  padding-block: clamp(56px, 8vw, 95px) 38px;
}
.site-footer__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 3vw, 40px);
  padding-bottom: clamp(28px, 4vw, 48px);
  border-bottom: 1px solid var(--hair-light);
}
.site-footer__title {
  flex: 1 1 360px;
  min-width: 0;
  font-size: clamp(26px, 3.6vw, 36px);
  font-weight: 400;
  line-height: 1.11;
  letter-spacing: -.025em;
  color: var(--white);
  text-wrap: pretty;
}
.site-footer__legal { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; padding-top: 32px; font-size: 12px; line-height: 1.33; }
.site-footer__brand { letter-spacing: .05em; color: var(--white); }
.site-footer__copy { color: var(--dim); }

/* ---------- Breakpoints ---------- */
@media (max-width: 1024px) {
  .band__text { padding-left: 0; border-left: 0; }
  .findings__title { max-width: none; }
}

@media (max-width: 720px) {
  .hero__actions { gap: 8px; }
  .hero__actions .btn { width: 100%; }
  .btn-ghost { width: 100%; justify-content: center; }
  .chip { flex-basis: calc(50% - 6px); }
  .more-bar { flex-direction: column; align-items: stretch; }
  .more-bar .btn { width: 100%; }
  .site-footer__cta .btn { width: 100%; }
  .bars { padding-top: 28px; }
}

@media (max-width: 400px) {
  .chip { flex-basis: 100%; }
  .legend { gap: 10px; }
}
