/* ──────────────────────────────────────────────────────────
   Analyseize Home — Home C v2
   "An almanac, not a marketing site." Pew × NYT Upshot × Tufte.
   ────────────────────────────────────────────────────────── */

/* Section utilities shared across blocks */
.section-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.section-tag__num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
}
.section-tag__rule {
  width: 24px;
  height: 1px;
  opacity: 0.4;
}
.section-tag__label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-900);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Section variants change the section-tag accent + rule color */
.tag-terracotta .section-tag__num,
.tag-terracotta .section-tag__rule { color: var(--terracotta-600); background: var(--terracotta-600); }
.tag-terracotta .section-tag__num  { background: transparent; }
.tag-ochre      .section-tag__num,
.tag-ochre      .section-tag__rule { color: var(--ochre-600);      background: var(--ochre-600); }
.tag-ochre      .section-tag__num  { background: transparent; }
.tag-teal       .section-tag__num,
.tag-teal       .section-tag__rule { color: var(--teal-600);       background: var(--teal-600); }
.tag-teal       .section-tag__num  { background: transparent; }

/* ─── 1. Hero ─────────────────────────────────────────────── */
.hero {
  padding: 56px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 64px;
  align-items: stretch;
}
.hero__words {
  padding-top: 32px;
  position: relative;
}
.hero__est {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--terracotta-600);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__est::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--terracotta-600);
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(56px, 7.4vw, 120px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.94;
  margin: 0 0 8px;
  color: var(--ink-900);
}
.hero-h1.italic {
  margin: 0 0 36px;
  font-style: italic;
  color: var(--forest-700);
}
.hero-h1 .dot {
  color: var(--ochre-500);
  font-style: normal;
}
.hero__lead {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.55;
  max-width: 540px;
  margin: 0 0 40px;
  color: var(--ink-900);
}
.hero__cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero__just-published {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding-top: 28px;
  border-top: 1px solid var(--rule-strong);
  max-width: 540px;
}
.hero__just-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.hero__just-label .when {
  color: var(--terracotta-600);
}
.hero__just-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--ink-900);
}
.hero__just-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}

/* Hero chart card (dark) */
.hero-chart {
  background: var(--ink-900);
  color: var(--ivory-50);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.hero-chart__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 4px;
}
.hero-chart__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ochre-500);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-chart__updated {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(247, 243, 236, 0.5);
  letter-spacing: 0.04em;
}
.hero-chart h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 8px 0 4px;
  color: var(--ivory-50);
}
.hero-chart h2 em {
  font-style: italic;
  color: var(--ochre-500);
}
.hero-chart__lead {
  font-size: 13px;
  color: rgba(247, 243, 236, 0.65);
  max-width: 460px;
  margin-bottom: 22px;
}
.hero-chart__svg-wrap {
  flex: 1;
  min-height: 280px;
}
.hero-chart__footer {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(247, 243, 236, 0.14);
  margin-top: 4px;
  font-size: 11px;
  color: rgba(247, 243, 236, 0.55);
}
.hero-chart__footer .swatch {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--terracotta-600);
  margin-right: 6px;
  vertical-align: middle;
}

/* ─── 2. Stat ribbon ──────────────────────────────────────── */
.stat-ribbon {
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
  padding: 48px 0;
  background: linear-gradient(180deg, var(--sand-100) 0%, var(--bg) 100%);
}
.stat-ribbon__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.stat-ribbon__cell {
  padding: 0 28px;
  border-left: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stat-ribbon__cell:first-child {
  padding-left: 0;
  border-left: 0;
}
.stat-ribbon__value {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink-900);
}
.stat-ribbon__suffix {
  color: var(--terracotta-600);
  font-size: 0.65em;
}
.stat-ribbon__label {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.4;
}
@media (max-width: 1080px) {
  .stat-ribbon__grid { grid-template-columns: repeat(3, 1fr); row-gap: 36px; }
}
@media (max-width: 600px) {
  .stat-ribbon__grid { grid-template-columns: repeat(2, 1fr); }
  .stat-ribbon__cell { padding: 0 14px; }
}

/* ─── 3. Featured spread ──────────────────────────────────── */
.featured {
  padding: 120px 0 96px;
  position: relative;
  overflow: hidden;
}
.featured-title-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}
.featured-h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 5.4vw, 84px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 0 0 24px;
}
.featured-h2 em {
  font-style: italic;
  color: var(--forest-700);
}
.featured__intro {
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 20px;
  color: var(--ink-900);
}
.featured__meta {
  display: flex;
  gap: 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.featured__meta .key {
  color: var(--ink-900);
}

.featured-chart {
  background: var(--bg);
  border: 1px solid var(--rule-strong);
  padding: 36px 40px 32px;
  position: relative;
  margin-bottom: 56px;
}
.featured-chart__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 4px;
}
.featured-chart__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--terracotta-600);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.featured-chart__meta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
}
.featured-chart h3 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 8px 0 6px;
  max-width: 760px;
}
.featured-chart__lead {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
}
.featured-chart__footer {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  margin-top: 14px;
  border-top: 1px solid var(--rule);
  font-size: 11px;
  color: var(--muted);
}

.findings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.finding-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: border-color .2s;
}
.finding-card:hover {
  border-color: var(--rule-strong);
}
.finding-card__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.finding-card__num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--terracotta-600);
  font-weight: 600;
}
.finding-card__arrow {
  color: var(--stone-400);
}
.finding-card h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.22;
  margin: 0;
  color: var(--ink-900);
}
.finding-card p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}
.finding-card__chart {
  margin-top: auto;
  padding-top: 8px;
}
.finding-card__chart .bar-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 8px;
  margin-bottom: 10px;
  align-items: baseline;
}
.finding-card__chart .bar-row__label {
  font-size: 11px;
}
.finding-card__chart .bar-row__label.hi {
  color: var(--terracotta-600);
  font-weight: 600;
}
.finding-card__chart .bar-row__value {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
}
.finding-card__chart .bar-track {
  height: 6px;
  background: var(--sand-200);
  grid-column: 1 / -1;
}
.finding-card__chart .bar-fill {
  height: 100%;
}
.finding-card__legend {
  display: flex;
  gap: 14px;
  margin-top: 14px;
  font-size: 10px;
  color: var(--muted);
}
.finding-card__legend .swatch {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 6px;
  vertical-align: middle;
}

.featured-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 36px;
  background: var(--ink-900);
  color: var(--ivory-50);
  flex-wrap: wrap;
  gap: 24px;
}
.featured-cta__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ochre-500);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.featured-cta__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.featured-cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.featured-cta__actions .btn--ghost {
  color: var(--ivory-50);
  border-color: rgba(247, 243, 236, 0.3);
}
.featured-cta__actions .btn--ghost:hover {
  background: var(--ivory-50);
  color: var(--ink-900);
}

/* ─── 4. How we work ──────────────────────────────────────── */
.work-section {
  padding: 120px 0;
  border-top: 1px solid var(--rule-strong);
  background: var(--bg);
}
.work-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
}
.work-aside {
  position: sticky;
  top: 100px;
  align-self: start;
}
.work-aside h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.2vw, 60px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 0 0 24px;
}
.work-aside h2 em {
  font-style: italic;
  color: var(--forest-700);
}
.work-aside p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-900);
  margin: 0;
  max-width: 320px;
}
.work-aside__model {
  margin-top: 32px;
  padding: 20px 0;
  border-top: 1px solid var(--rule);
}
.work-aside__model .eyebrow {
  margin-bottom: 10px;
}
.work-aside__model ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-900);
}

.practice-row {
  display: grid;
  grid-template-columns: 60px 1fr 40px;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
  color: var(--ink-900);
}
.practice-row:first-child { border-top: 1px solid var(--rule-strong); }
.practice-row__num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  transition: color .2s;
}
.practice-row:hover .practice-row__num {
  color: var(--terracotta-600);
}
.practice-row h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0 0 10px;
}
.practice-row p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 16px;
  color: var(--ink-900);
  max-width: 640px;
}
.practice-row__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.practice-row__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 2px;
  background: var(--sand-100);
  color: var(--ink-900);
  border: 1px solid var(--rule);
}
.practice-row__arrow {
  color: var(--terracotta-600);
  margin-top: 10px;
  transition: transform .2s;
}
.practice-row:hover .practice-row__arrow {
  transform: translateX(6px);
}

@media (max-width: 1080px) {
  .work-grid { grid-template-columns: 1fr; gap: 48px; }
  .work-aside { position: relative; top: auto; }
  .practice-row { grid-template-columns: 44px 1fr 28px; gap: 18px; padding: 28px 0; }
  .practice-row__num { font-size: 26px; }
}

/* ─── 5. Sector atlas ─────────────────────────────────────── */
.sector-atlas {
  padding: 120px 0;
  background: var(--sand-100);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.sector-atlas__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}
.sector-atlas__head h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.2vw, 60px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 0;
  max-width: 880px;
}
.sector-atlas__head h2 em {
  font-style: italic;
  color: var(--forest-700);
}
.sector-atlas__link { padding-bottom: 6px; }

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule-strong);
}
.sector-card {
  background: var(--bg);
  padding: 24px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 200px;
  color: var(--ink-900);
  position: relative;
  text-decoration: none;
}
.sector-card__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.sector-card__index {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.sector-card__count {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border: 1px solid currentColor;
  border-radius: 2px;
}
.sector-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 8px 0 0;
}
.sector-card__bottom { margin-top: auto; }
.sector-card__bottom .eyebrow {
  font-size: 9px;
  letter-spacing: 0.14em;
  margin-bottom: 4px;
}
.sector-card__underline {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  transition: width .35s cubic-bezier(.65, 0, .35, 1);
}
.sector-card:hover .sector-card__underline { width: 100%; }

@media (max-width: 1080px) {
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .sectors-grid { grid-template-columns: 1fr; }
}

/* ─── 6. Twenty years ─────────────────────────────────────── */
.twenty-years {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.twenty-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 56px;
}
.twenty-grid h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.2vw, 60px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 0 0 24px;
}
.twenty-grid > .right p {
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
  color: var(--ink-900);
  max-width: 460px;
}
.twenty-grid > .right { padding-bottom: 8px; }
.twenty-grid .summary {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.twenty-grid .summary__cell .value {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}
.twenty-grid .summary__cell .value.tcolor { color: var(--terracotta-600); }
.twenty-grid .summary__cell .value sup {
  color: var(--terracotta-600);
  font-size: 0.6em;
  vertical-align: baseline;
  margin-left: 1px;
}
.twenty-grid .summary__cell .label {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}

.timeline-chart {
  background: var(--bg);
  border: 1px solid var(--rule-strong);
  padding: 48px 32px 24px;
  position: relative;
}
.timeline-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 200px;
  position: relative;
}
.timeline-bars::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: var(--rule);
}
.timeline-bar {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.timeline-bar__fill {
  width: 60%;
  background: var(--sand-200);
  border: 1px solid var(--rule);
  border-bottom: none;
}
.timeline-bar__fill.milestone {
  background: var(--terracotta-600);
  border: none;
}
.timeline-axis {
  display: flex;
  gap: 4px;
  margin-top: 8px;
}
.timeline-axis div {
  flex: 1;
  text-align: center;
  font-size: 9px;
  color: var(--muted);
  font-family: var(--font-mono);
}
.timeline-milestones {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.timeline-milestones__row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}
.timeline-milestones__year {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--terracotta-600);
  letter-spacing: 0.1em;
  font-weight: 600;
  padding-top: 2px;
}
.timeline-milestones__label {
  font-size: 13px;
  color: var(--ink-900);
  line-height: 1.5;
}

@media (max-width: 1080px) {
  .twenty-grid { grid-template-columns: 1fr; gap: 40px; }
  .timeline-milestones { grid-template-columns: 1fr; gap: 14px; }
}

/* ─── 7. Voices ───────────────────────────────────────────── */
.voices {
  background: var(--ink-900);
  color: var(--ivory-50);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.voices__big-quote {
  position: absolute;
  left: 5%;
  top: 20%;
  font-family: var(--font-display);
  font-size: 380px;
  line-height: 1;
  font-weight: 500;
  color: rgba(247, 243, 236, 0.04);
  pointer-events: none;
  letter-spacing: -0.04em;
}
.voices .section-tag__label { color: var(--ivory-50); }
.voices blockquote {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin: 0 0 40px;
  max-width: 1000px;
  position: relative;
}
.voices blockquote em {
  font-style: italic;
  color: var(--ochre-500);
}
.voices__attribution {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(247, 243, 236, 0.16);
}
.voices__portrait {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--forest-700);
  border: 1px solid rgba(247, 243, 236, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 9px;
  color: rgba(247, 243, 236, 0.5);
}
.voices__attribution .name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}
.voices__attribution .org {
  font-size: 13px;
  color: rgba(247, 243, 236, 0.6);
}
.voices__partners {
  display: flex;
  gap: 16px;
  align-items: center;
}
.voices__partners span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(247, 243, 236, 0.4);
  letter-spacing: 0.06em;
}

@media (max-width: 880px) {
  .voices__attribution { grid-template-columns: auto 1fr; }
  .voices__partners { grid-column: 1 / -1; flex-wrap: wrap; }
}

/* ─── 8. Subscribe ────────────────────────────────────────── */
.subscribe {
  padding: 120px 0;
  background: var(--bg);
}
.subscribe-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.subscribe-grid h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.4vw, 64px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 0 0 24px;
}
.subscribe-grid h2 em {
  font-style: italic;
  color: var(--forest-700);
}
.subscribe-grid p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-900);
  margin: 0;
  max-width: 540px;
}
.subscribe__card {
  background: var(--sand-100);
  padding: 40px 36px;
  border: 1px solid var(--rule-strong);
  position: relative;
}
.subscribe__card .eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--terracotta-600);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.subscribe__card form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.subscribe__card input {
  border: 0;
  border-bottom: 1px solid var(--ink-900);
  background: transparent;
  padding: 12px 0;
  font-size: 18px;
  font-family: var(--font-display);
  color: var(--ink-900);
  outline: none;
  width: 100%;
}
.subscribe__card button {
  align-self: flex-start;
  margin-top: 18px;
}
.subscribe__card .meta {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  display: flex;
  gap: 24px;
  font-size: 11px;
  color: var(--muted);
  flex-wrap: wrap;
}
.subscribe__card .meta .mono {
  color: var(--ink-900);
}
.subscribe__success {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink-900);
}

@media (max-width: 1080px) {
  .subscribe-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ─── Responsive collapses (shared with tokens.css media query) ── */
@media (max-width: 1080px) {
  .hero { padding: 40px 0 64px; }
  .featured { padding: 80px 0 64px; }
  .featured-title-grid { grid-template-columns: 1fr; gap: 24px; }
  .featured-cta { flex-direction: column; align-items: flex-start; }
  .findings-grid { grid-template-columns: 1fr; gap: 20px; }
  .work-section { padding: 80px 0; }
  .sector-atlas { padding: 80px 0; }
  .twenty-years { padding: 80px 0; }
  .voices { padding: 100px 0; }
  .voices__big-quote { font-size: 240px; top: 10%; }
  .subscribe { padding: 80px 0; }
}
