:root {
  --blue: #1f44a3;
  --purple: #5c3298;
  --red: #d32638;
  --sand: #e7d2b7;
  --ink: #252525;
  --muted: #626262;
  --line: #e7e7e7;
  --soft: #f7f7f5;
  --white: #ffffff;
  --page: 1200px;
  --gutter: 24px;
  --sans: "Inter", Arial, sans-serif;
  --serif: "Source Serif 4", Georgia, serif;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-latin-wght-normal.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Source Serif 4";
  src: url("/assets/fonts/source-serif-4-latin-wght-normal.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
h1, h2, h3 { overflow-wrap: break-word; }

.site-shell {
  width: min(var(--page), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.partner {
  padding: 24px 0 32px;
  border-top: 4px solid var(--ink);
  border-bottom: 1px solid var(--line);
  background: #fbf8f4;
}

.partner__inner { max-width: 1056px; }

.partner__meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.partner__creative {
  display: block;
  border: 1px solid var(--line);
  background: var(--white);
}

.partner__creative img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
}

.masthead {
  position: relative;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.masthead__inner {
  display: flex;
  min-height: 104px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.wordmark { display: inline-flex; align-items: center; gap: 12px; }
.wordmark__stack { display: grid; gap: 1px; }

.wordmark__logo {
  width: 64px;
  height: 64px;
  flex: none;
  overflow: hidden;
}
.wordmark__logo img { width: 115px; max-width: none; height: auto; transform: translate(-23.5%, -17%); }

.wordmark__text { display: grid; gap: 1px; }
.wordmark__text strong { font-size: 25px; letter-spacing: -.035em; line-height: 1; }
.wordmark__text small { color: var(--muted); font-size: 12px; }
.wordmark__socials { display: flex; gap: 7px; margin-top: 7px; }
.social-link {
  display: inline-grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border: 1px solid #c9c9c9;
  border-radius: 50%;
  color: var(--ink);
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
  cursor: pointer;
}
.social-link:hover { border-color: var(--blue); color: var(--blue); }
.social-link--x { font-size: 9px; }
.social-link--facebook { font-family: Arial, sans-serif; font-size: 13px; }

.masthead__issue {
  display: grid;
  gap: 2px;
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}
.masthead__issue span { color: var(--ink); font-weight: 600; }

.launch-strip {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}
.launch-strip__label { display: inline-flex; align-items: center; gap: 5px; text-transform: uppercase; letter-spacing: .055em; }
.launch-strip__label i { width: 7px; height: 7px; margin-right: 2px; border-radius: 50%; background: var(--red); }
.launch-strip__label strong { color: var(--ink); }
.launch-strip__time { color: var(--ink); font-variant-numeric: tabular-nums; }

.brand-rule { position: absolute; inset: auto 0 -1px; display: grid; grid-template-columns: repeat(5, 1fr); height: 3px; }
.brand-rule span:nth-child(1) { background: var(--blue); }
.brand-rule span:nth-child(2) { background: var(--ink); }
.brand-rule span:nth-child(3) { background: var(--sand); }
.brand-rule span:nth-child(4) { background: var(--red); }
.brand-rule span:nth-child(5) { background: var(--purple); }

.editorial { padding: 72px 0 96px; }

.issue-intro {
  display: grid;
  grid-template-columns: minmax(180px, 3fr) minmax(360px, 7fr);
  column-gap: 48px;
  padding-bottom: 64px;
}

.issue-intro__kicker {
  margin: 7px 0 0;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
}

.issue-intro h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.03;
  letter-spacing: -.055em;
}

.issue-intro > p:last-child {
  grid-column: 2;
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--ink);
}
.section-heading h2 { margin: 0; font-size: 13px; font-weight: 600; }
.section-heading span { color: var(--muted); font-size: 12px; }

.lead-story {
  display: grid;
  grid-template-columns: 7fr 5fr;
  min-height: 520px;
  border-top: 4px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.lead-story__copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: clamp(32px, 5vw, 64px);
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.eyebrow--blue { color: var(--blue); }
.eyebrow--purple { color: var(--purple); }
.eyebrow--red { color: var(--red); }

.lead-story h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(40px, 5vw, 72px);
  line-height: .98;
  letter-spacing: -.055em;
}
.lead-story h2 a:hover { color: var(--purple); }

.lead-story__dek {
  max-width: 630px;
  margin: 24px 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.5;
}

.evidence-chip { margin: 0 0 32px; }
.evidence-chip div { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px; }
.evidence-chip dt { color: var(--muted); font-size: 13px; }
.evidence-chip dd { order: -1; margin: 0; color: var(--purple); font-size: 28px; font-weight: 600; letter-spacing: -.04em; }

.button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.button--primary { background: var(--blue); color: var(--white); }
.button--primary:hover { background: #173784; }
.button:focus-visible, a:focus-visible, input:focus-visible, summary:focus-visible { outline: 3px solid rgba(31, 68, 163, .28); outline-offset: 3px; }
.button:disabled { cursor: wait; opacity: .58; }

.lead-story__media { min-height: 100%; background: var(--soft); overflow: hidden; }
.lead-story__media img { width: 100%; height: 100%; object-fit: cover; }

.latest { margin-top: 72px; }

.data-section { margin-top: 72px; }

.data-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 4px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.data-brief {
  display: flex;
  min-width: 0;
  min-height: 360px;
  flex-direction: column;
  padding: 32px 24px 28px;
  border-right: 1px solid var(--line);
}
.data-brief:last-child { border-right: 0; }
.data-brief h3 { margin: 0; font-size: 23px; line-height: 1.16; letter-spacing: -.035em; }
.data-brief h3 a:hover { color: var(--blue); }
.data-brief__metric { margin: 28px 0 12px; font-size: 42px; font-weight: 600; line-height: 1; letter-spacing: -.05em; }
.data-brief__dek { margin: 0 0 24px; color: var(--muted); font-family: var(--serif); font-size: 16px; }
.data-brief .text-link { margin-top: auto; }

.story-row {
  display: grid;
  grid-template-columns: 1fr 288px;
  gap: 48px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.story-row__copy { max-width: 760px; }
.story-row h3 { margin: 0; font-size: clamp(25px, 3vw, 36px); line-height: 1.12; letter-spacing: -.035em; }
.story-row h3 a:hover { color: var(--blue); }
.story-row__copy > p:not(.eyebrow) { max-width: 680px; margin: 12px 0 18px; color: var(--muted); font-family: var(--serif); font-size: 18px; }
.story-row__media { aspect-ratio: 16 / 10; background: var(--soft); overflow: hidden; }
.story-row__media img { width: 100%; height: 100%; object-fit: cover; }
.text-link { color: var(--blue); font-size: 14px; font-weight: 600; }
.text-link:hover { text-decoration: underline; text-underline-offset: 3px; }

.signup {
  padding: 72px 0;
  border-top: 1px solid var(--line);
  background: var(--soft);
}

.signup__grid { display: grid; grid-template-columns: 4fr 8fr; gap: 72px; }
.signup__intro h2 { margin: 0; font-size: clamp(30px, 4vw, 48px); line-height: 1.04; letter-spacing: -.045em; }
.signup__intro > p:last-child { max-width: 400px; margin: 16px 0 0; color: var(--muted); }
.signup-form { padding-top: 4px; }
.signup__form-wrap { min-width: 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid label { display: grid; gap: 7px; }
.form-grid label > span { color: var(--muted); font-size: 12px; font-weight: 600; }
.form-grid input {
  width: 100%;
  height: 44px;
  padding: 9px 12px;
  border: 1px solid #c9c9c9;
  border-radius: 4px;
  color: var(--ink);
  background: var(--white);
}
.form-grid input:hover { border-color: #999; }
.form-grid input:focus { border-color: var(--blue); }
.optional-fields { margin-top: 16px; }
.optional-fields summary { width: fit-content; color: var(--blue); font-size: 13px; cursor: pointer; }
.form-grid--optional { margin-top: 16px; }
.coupon-preview {
  display: grid;
  grid-template-columns: minmax(230px, auto) 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 20px;
  padding: 16px 18px;
  border: 1px dashed #aaa;
  background: var(--white);
}

.why {
  padding: 72px 0;
  border-top: 1px solid var(--line);
  background: var(--white);
}
.why__inner {
  display: grid;
  grid-template-columns: 3fr 9fr;
  gap: 48px;
  align-items: start;
}
.why__inner > .eyebrow { margin-top: 9px; }
.why__inner h2 { max-width: 780px; margin: 0; font-size: clamp(34px, 5vw, 58px); line-height: 1.02; letter-spacing: -.055em; }
.why__inner div > p { max-width: 680px; margin: 22px 0 28px; color: var(--muted); font-family: var(--serif); font-size: 19px; line-height: 1.6; }
.why__inner div > span { margin-left: 16px; color: var(--muted); font-size: 12px; }
.coupon-preview.is-ready { border-color: var(--blue); box-shadow: inset 3px 0 0 var(--blue); }
.coupon-preview__code { display: grid; gap: 3px; }
.coupon-preview__code span { color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.coupon-preview__code output { color: #777; font-size: clamp(18px, 2.5vw, 24px); font-weight: 700; letter-spacing: .055em; white-space: nowrap; }
.coupon-preview.is-ready output { color: var(--blue); }
.coupon-preview p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.45; }
.signup-form__action { display: flex; align-items: center; gap: 16px; margin-top: 24px; }
.form-status { margin: 0; color: var(--muted); font-size: 13px; }
.form-error { min-height: 20px; margin: 14px 0 -8px; color: var(--red); font-size: 13px; }

.signup-confirmation { max-width: 680px; padding-top: 2px; outline: none; }
.signup-confirmation h3 { margin: 0; font-size: clamp(30px, 4vw, 44px); line-height: 1.04; letter-spacing: -.04em; }
.signup-confirmation > p:not(.eyebrow) { max-width: 570px; margin: 14px 0 0; color: var(--muted); }
.coupon-card {
  display: flex;
  max-width: 570px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding: 17px 18px;
  border: 1px dashed var(--ink);
  background: var(--white);
}
.coupon-card > div { display: grid; gap: 3px; }
.coupon-card span { color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.coupon-card output { font-size: clamp(19px, 3vw, 25px); font-weight: 700; letter-spacing: .055em; }
.coupon-copy { padding: 7px 0; border: 0; border-bottom: 1px solid var(--ink); color: var(--ink); background: transparent; font-size: 12px; font-weight: 650; cursor: pointer; }
.coupon-copy:hover { color: var(--blue); border-color: var(--blue); }
.signup-confirmation .confirmation-note { font-size: 13px; }

.footer { border-top: 1px solid var(--line); }
.footer__inner { display: grid; min-height: 88px; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; color: var(--muted); font-size: 12px; }
.footer__inner > span:last-child { text-align: right; }
.footer__socials { display: flex; align-items: center; justify-content: center; gap: 14px; }
.footer__follow { color: var(--ink); font-weight: 650; }
.footer__socials a { display: inline-flex; align-items: center; gap: 5px; color: var(--ink); }
.footer__socials a:hover { color: var(--blue); }
.footer-social__icon { display: inline-grid; width: 22px; height: 22px; place-items: center; border: 1px solid #c9c9c9; border-radius: 50%; font-size: 13px; font-weight: 650; line-height: 1; }
.footer-social__icon--x { font-size: 9px; }
.footer-social__icon--facebook { font-family: Arial, sans-serif; font-size: 14px; }

.article-page { padding: 72px 0 96px; }
.article-shell { width: min(880px, calc(100% - (var(--gutter) * 2))); margin-inline: auto; }
.back-link { display: inline-block; margin-bottom: 48px; color: var(--blue); font-size: 14px; font-weight: 600; }
.article-header h1 { margin: 0; font-size: clamp(44px, 7vw, 80px); line-height: .98; letter-spacing: -.06em; }
.article-dek { max-width: 760px; margin: 24px 0; color: var(--muted); font-family: var(--serif); font-size: clamp(20px, 3vw, 26px); line-height: 1.45; }
.article-meta { display: flex; flex-wrap: wrap; gap: 16px 32px; padding-top: 16px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.article-figure { margin: 48px 0; }
.article-figure img { width: 100%; max-height: 620px; object-fit: cover; }
.article-figure figcaption { margin-top: 8px; color: var(--muted); font-size: 12px; }
.article-body { max-width: 720px; margin-inline: auto; font-family: var(--serif); font-size: 20px; line-height: 1.7; }
.article-body h2 { margin: 56px 0 16px; font-family: var(--sans); font-size: 28px; line-height: 1.2; letter-spacing: -.03em; }
.article-body p { margin: 0 0 24px; }

@media (max-width: 820px) {
  :root { --gutter: 16px; }
  .partner { padding: 16px 0 24px; }
  .partner__meta { letter-spacing: .03em; }
  .masthead__inner { min-height: 88px; }
  .editorial, .article-page { padding: 48px 0 72px; }
  .issue-intro { grid-template-columns: 1fr; gap: 16px; padding-bottom: 48px; }
  .issue-intro > p:last-child { grid-column: 1; }
  .lead-story { grid-template-columns: 1fr; }
  .lead-story__copy { padding: 32px 0; }
  .lead-story__media { order: -1; min-height: auto; aspect-ratio: 16 / 10; }
  .story-row { grid-template-columns: 1fr 200px; gap: 24px; }
  .data-board { grid-template-columns: 1fr 1fr; }
  .data-brief { min-height: 320px; border-bottom: 1px solid var(--line); }
  .data-brief:nth-child(2n) { border-right: 0; }
  .data-brief:nth-last-child(-n + 2) { border-bottom: 0; }
  .signup__grid { grid-template-columns: 1fr; gap: 40px; }
  .why__inner { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 560px) {
  .partner__meta { align-items: flex-start; flex-direction: column; gap: 2px; }
  .partner__creative img { min-height: 220px; object-fit: cover; object-position: center; }
  .wordmark__logo { width: 54px; height: 54px; }
  .wordmark__logo img { width: 97px; height: auto; }
  .wordmark__text strong { font-size: 22px; }
  .masthead__issue time { display: none; }
  .issue-intro h1 { letter-spacing: -.045em; }
  .lead-story h2 { font-size: 38px; }
  .story-row { grid-template-columns: 1fr; gap: 20px; padding: 28px 0; }
  .story-row__media { order: -1; }
  .data-board { grid-template-columns: 1fr; }
  .data-brief { min-height: 0; padding: 28px 0; border-right: 0; }
  .data-brief:nth-last-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .data-brief:last-child { border-bottom: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .coupon-preview { grid-template-columns: 1fr; gap: 8px; }
  .signup-form__action { align-items: flex-start; flex-direction: column; }
  .coupon-card { align-items: flex-start; flex-direction: column; gap: 10px; }
  .footer__inner { min-height: 0; grid-template-columns: 1fr; justify-items: start; gap: 14px; padding-block: 24px; }
  .footer__inner > span:last-child { text-align: left; }
  .footer__socials { flex-wrap: wrap; justify-content: flex-start; }
  .article-header h1 { font-size: 46px; }
  .article-body { font-size: 18px; }
  .launch-strip { align-items: flex-start; flex-direction: column; gap: 4px; padding-block: 12px; }
  .why__inner div > span { display: block; margin: 12px 0 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}



/* Preserve full image compositions on narrow screens. */
@media (max-width: 560px) {
  .partner__creative img,
  .lead-story__media img,
  .story-row__media img,
  .article-figure img,
  .interactive-reader-shell .article-image img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    object-fit: contain;
    object-position: center;
  }

  .lead-story__media,
  .story-row__media {
    min-height: 0;
    aspect-ratio: auto;
  }
}


/* Clean, deliberate masthead and a proper Instagram glyph. */
.wordmark__socials .social-link:first-child span {
  position: relative;
  display: block;
  width: 11px;
  height: 11px;
  border: 1.4px solid currentColor;
  border-radius: 3px;
  font-size: 0;
}

.wordmark__socials .social-link:first-child span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  border: 1.2px solid currentColor;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.wordmark__socials .social-link:first-child span::after {
  content: "";
  position: absolute;
  top: 1.4px;
  right: 1.4px;
  width: 1.5px;
  height: 1.5px;
  border-radius: 50%;
  background: currentColor;
}

@media (max-width: 560px) {
  .partner { padding: 12px 0 18px; }
  .partner__meta { display: none; }
  .partner__creative { border: 0; }

  .masthead__inner {
    min-height: 82px;
    padding-block: 12px;
    gap: 12px;
  }

  .wordmark { gap: 10px; }
  .wordmark__text strong { font-size: 24px; }
  .wordmark__text small { display: none; }
  .wordmark__socials { gap: 6px; margin-top: 5px; }
  .social-link { width: 24px; height: 24px; }
  .masthead__issue { font-size: 11px; white-space: nowrap; }
  .launch-strip { display: none; }
}


/* Proper Instagram glyph. */
.wordmark__socials .social-link:first-child span{position:relative;display:block;width:11px;height:11px;border:1.4px solid currentColor;border-radius:3px;font-size:0}
.wordmark__socials .social-link:first-child span::before{content:"";position:absolute;top:50%;left:50%;width:4px;height:4px;border:1.2px solid currentColor;border-radius:50%;transform:translate(-50%,-50%)}
.wordmark__socials .social-link:first-child span::after{content:"";position:absolute;top:1.4px;right:1.4px;width:1.5px;height:1.5px;border-radius:50%;background:currentColor}


.footer-social__icon--instagram{position:relative;display:inline-block;width:13px;height:13px;border:1.4px solid currentColor;border-radius:4px;font-size:0}
.footer-social__icon--instagram::before{content:"";position:absolute;top:50%;left:50%;width:5px;height:5px;border:1.2px solid currentColor;border-radius:50%;transform:translate(-50%,-50%)}
.footer-social__icon--instagram::after{content:"";position:absolute;top:1.6px;right:1.6px;width:1.6px;height:1.6px;border-radius:50%;background:currentColor}



/* Metric context: pair the headline number with its plain-English meaning. */
.data-brief__metric {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  letter-spacing: 0;
}
.data-brief__metric strong {
  flex: 0 0 auto;
  font-size: 42px;
  font-weight: 600;
  line-height: .9;
  letter-spacing: -.05em;
}
.data-brief__metric span {
  max-width: 150px;
  padding-bottom: 2px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
}

/* Keep the full signup workflow quiet until the reader asks for it. */
.signup-disclosure > summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  cursor: pointer;
}
.signup-disclosure > summary::-webkit-details-marker { display: none; }
.signup-disclosure__open { display: none; }
.signup-disclosure[open] .signup-disclosure__closed { display: none; }
.signup-disclosure[open] .signup-disclosure__open { display: inline; }
.signup-disclosure__panel { margin-top: 28px; }
.signup-disclosure[open] > summary {
  color: var(--ink);
  background: transparent;
  box-shadow: inset 0 0 0 1px var(--line);
}

/* A deliberately restrained status marker on the partner creative. */
.partner__creative { position: relative; }
.partner__coming-soon {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  color: var(--ink);
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(37,37,37,.14);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.partner__coming-soon i {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: coming-soon-pulse 1.8s ease-in-out infinite;
}
@keyframes coming-soon-pulse {
  0%, 100% { opacity: .35; }
  50% { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .partner__coming-soon i { animation: none; opacity: 1; }
}



@media (max-width: 560px) {
  .launch-strip {
    display: flex;
    min-height: 0;
    padding-block: 9px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 9px;
    white-space: nowrap;
  }
  .launch-strip__label {
    overflow: hidden;
    letter-spacing: .035em;
    text-overflow: ellipsis;
  }
  .launch-strip__time {
    flex: 0 0 auto;
    margin-left: auto;
    font-size: 10px;
    letter-spacing: .01em;
  }
  .data-brief__metric {
    align-items: center;
    gap: 10px;
  }
  .data-brief__metric strong { font-size: 44px; }
  .data-brief__metric span {
    max-width: 165px;
    padding-bottom: 0;
    font-size: 12px;
  }
  .signup-disclosure__trigger { width: 100%; }
  .signup-disclosure__panel { margin-top: 24px; }
  .partner__coming-soon {
    top: 9px;
    right: 9px;
    padding: 6px 8px;
    font-size: 9px;
  }
}
