:root {
  --navy: #10243f;
  --paper: #ffffff;
  --ink: #10243f;
  --body: #333333;
  --muted: #4b5563;
  --rule: #e5e7eb;
  --wash: #eef2f6;
  --on-navy: #c5d4e4;
  --white: #ffffff;
  --action: #15803d;
  --action-hover: #166534;
  --action-active: #14532d;
  --trust: #059669;
  --trust-bg: #f0fdf4;
  --mark: #3b82f6;
  --page: 1160px;
  --gutter: 32px;
  --chapter-space: 64px;
  --band-space: 24px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.modal-overlay { display: none; }

/* Checkout UI adapter. The route controller only hands the selected plan to
   checkout-modal.js; that shared owner creates this flag-gated overlay. */
.sb-checkout-overlay {
  --checkout-surface: #21355a;
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 3vh, 24px);
  overflow: hidden;
  background: rgb(0 0 0 / 65%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.sb-checkout-overlay.active { opacity: 1; pointer-events: auto; }
.sb-checkout-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(1040px, calc(100vw - 48px));
  max-height: 90dvh;
  overflow: hidden;
  background: var(--checkout-surface);
  border-radius: 12px;
  box-shadow: 0 24px 80px rgb(15 23 42 / 28%);
  transform: scale(0.96);
  transition: transform 0.22s ease-out;
}
.sb-checkout-overlay.active .sb-checkout-panel { transform: scale(1); }
.sb-checkout-scroll {
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
  max-height: calc(90dvh - 64px);
  overflow: auto hidden;
  overscroll-behavior: contain;
  background: var(--checkout-surface);
  border-radius: inherit;
}
.sb-checkout-bar {
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  height: 0;
  pointer-events: none;
}
.sb-checkout-bar-close {
  position: absolute;
  top: 7px;
  left: 7px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: rgb(15 23 42 / 68%);
  font: 300 24px/1 system-ui, sans-serif;
  cursor: pointer;
  pointer-events: auto;
}
.sb-checkout-bar-close:hover { background: rgb(15 23 42 / 6%); }
.sb-checkout-bar-close:focus-visible,
.sb-checkout-state-primary:focus-visible,
.sb-checkout-error-actions button:focus-visible {
  outline: 2px solid var(--mark);
  outline-offset: 3px;
}
#stripe-checkout-container {
  width: 100%;
  min-height: 480px;
  overflow-y: visible;
  background: var(--checkout-surface);
}
.sb-checkout-loading,
.sb-checkout-state-card,
.sb-checkout-error-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  padding: 56px 32px;
  text-align: center;
  background: var(--wash);
  color: var(--muted);
}
.sb-checkout-loading-spinner {
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border: 3px solid var(--rule);
  border-top-color: var(--navy);
  border-radius: 50%;
  animation: sb-checkout-spin 0.9s linear infinite;
}
@keyframes sb-checkout-spin { to { transform: rotate(360deg); } }
.sb-checkout-loading-text,
.sb-checkout-state-heading,
.sb-checkout-error-heading { margin: 0 0 8px; color: var(--ink); font-weight: 700; }
.sb-checkout-loading-text { font-size: 15px; }
.sb-checkout-loading-sub { max-width: 320px; margin: 0; font-size: 13px; line-height: 1.4; }
.sb-checkout-state-icon,
.sb-checkout-error-icon { margin-bottom: 14px; font-size: 38px; line-height: 1; }
.sb-checkout-state-heading,
.sb-checkout-error-heading { font-size: 22px; line-height: 1.2; }
.sb-checkout-state-body,
.sb-checkout-error-body {
  max-width: 420px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}
.sb-checkout-state-actions,
.sb-checkout-error-actions { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; width: 100%; }
.sb-checkout-state-primary,
.sb-checkout-error-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 24px;
  border: 1px solid var(--navy);
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font: 700 15px/1.2 system-ui, sans-serif;
  text-decoration: none;
  cursor: pointer;
}
.sb-checkout-error-secondary { background: var(--white) !important; color: var(--navy) !important; }
.sb-checkout-state-promo .sb-checkout-state-body { padding: 14px 18px; border: 1px solid var(--rule); border-radius: 8px; background: var(--paper); }

html, body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body:not(.feed-app) {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
body:not(.feed-app) > main { flex: 1 0 auto; }
body:not(.feed-app) > .site-footer { margin-top: auto; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap {
  width: min(var(--page), calc(100% - var(--gutter) * 2));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 20;
  padding: 12px 18px;
  background: var(--navy);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
}
.skip-link:focus {
  left: 8px;
  top: 8px;
}

.masthead {
  background: var(--navy);
  color: var(--white);
}
.masthead-inner {
  width: min(var(--page), calc(100% - var(--gutter) * 2));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.masthead-inner > a {
  display: inline-flex;
  align-items: center;
  min-width: 44px;
  min-height: 44px;
}
.wordmark { width: 184px; height: auto; }
.tagline {
  margin: 0;
  color: var(--on-navy);
  font-size: 14px;
  letter-spacing: 0.2px;
  padding-left: 20px;
  border-left: 1px solid rgba(197, 212, 228, 0.28);
}
.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--on-navy);
}
.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.nav a:not(.btn),
.site-footer a {
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.nav a:not(.btn):hover,
.nav a:not(.btn):focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
  text-decoration-line: underline;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  min-width: 220px;
  padding: 0 28px;
  background: var(--action);
  color: var(--white);
  font: inherit;
  font-size: 18px;
  font-weight: 700;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
}
.btn.primary:hover { background: var(--action-hover); }
.btn.primary:active {
  background: var(--action-active);
  transform: translateY(1px);
}
.cta-feature {
  justify-content: space-between;
  gap: 24px;
  min-width: 286px;
  padding: 0 10px 0 22px;
  border-radius: 6px;
  box-shadow: 0 0 0 1px rgb(16 36 63 / 12%);
}
.cta-arrow {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  background: rgb(255 255 255 / 16%);
  font-size: 21px;
  line-height: 1;
  transition: transform 120ms ease, background-color 120ms ease;
}
.cta-feature:hover .cta-arrow {
  transform: translateX(2px);
  background: rgb(255 255 255 / 22%);
}
.btn.compact {
  min-height: 44px;
  min-width: 0;
  padding: 0 16px;
  font-size: 15px;
}
.btn:focus-visible {
  outline: 3px solid var(--mark);
  outline-offset: 2px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.text-link:hover { color: #1d4ed8; }

.hero {
  background: var(--paper);
  padding: 16px 0 32px;
}
.home > .hero { padding: 36px 0 44px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(18rem, max-content) minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
}
.offer-cluster { max-width: none; min-width: 0; }
.live-kicker,
.kicker {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
}
.live-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
}
.pip {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mark);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.18);
}
.dateline {
  margin: 0 0 4px;
  min-height: 22px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy);
}
h1 {
  margin: 8px 0 14px;
  font-size: clamp(28px, 2.7vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 800;
}
.home h1 {
  font-size: clamp(30px, 4.1vw, 48px);
  white-space: nowrap;
  text-wrap: nowrap;
}
.home h1 .hero-break { display: none; }
.lead {
  margin: 0 0 12px;
  max-width: 34em;
  font-size: 17px;
  line-height: 1.55;
  color: var(--body);
  text-wrap: pretty;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  margin: 10px 0 10px;
}
.fine {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted);
  text-wrap: balance;
}

.hero-art {
  display: flex;
  flex-direction: column;
  min-width: 0;
  margin: 0;
}
.hero-art img {
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 50% 38%;
  border: 1px solid var(--rule);
}
.hero-art figcaption {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
  white-space: normal;
  text-wrap: pretty;
}
.hero-art-label {
  color: var(--navy);
  font-weight: 700;
}
.btn.primary.compact { color: var(--white); }
.price-card .trial-kicker {
  margin: 0 0 24px;
}

.lead-story {
  margin: 0;
  min-height: 16rem;
}
.home .lead-story { min-height: 354px; }
.home .live-grid.is-feed-unavailable .lead-story { min-height: 0; }
.lead-story h2 {
  margin: 6px 0 12px;
  font-size: clamp(28px, 3.2vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.dek {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 1.5;
  color: var(--body);
}
.lead-story .story-body,
.lead-story .dek {
  max-width: 36em;
  text-wrap: pretty;
}
.provenance {
  margin: 16px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted);
  text-wrap: balance;
}

.lead-skeleton {
  display: grid;
  gap: 12px;
  padding-top: 4px;
}
.skeleton-line,
.skeleton-row {
  display: block;
  height: 18px;
  background: var(--wash);
  border: 1px solid var(--rule);
}
.skeleton-line.short { width: 68%; }
.skeleton-meta { width: 30%; height: 14px; }
.skeleton-title { height: 34px; }
.skeleton-source { width: 56%; height: 36px; margin-top: 4px; }
.board-skeleton { display: grid; gap: 16px; }
.skeleton-row { height: 72px; }

.trial-chip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 0.35em;
}
.trial-chip span { white-space: nowrap; }
.price-card .trial-chip { justify-content: center; }
.provenance strong {
  display: block;
  margin-bottom: 2px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}
.feed-story .provenance {
  margin-top: 10px;
  padding-top: 0;
  border-top: 0;
  font-size: 13px;
}

.sources {
  background: var(--wash);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: var(--band-space) 0;
}
.sources-label {
  margin: 0 0 14px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--body);
}
.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.logo-row img {
  height: 26px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
}

.live { padding: var(--chapter-space) 0; }
.live .kicker {
  display: flex;
  align-items: center;
  gap: 8px;
}
.live-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 56px;
  align-items: start;
}
.live-rail {
  border-left: 1px solid var(--rule);
  padding-left: 32px;
}
.live-rail .headline { font-size: 16px; line-height: 1.35; }
.live-rail .story-row:first-child { border-top: 0; padding-top: 4px; }
.board {
  display: block;
}
.story-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: start;
  gap: 10px;
  padding: 16px 0;
  border-top: 1px solid var(--rule);
}
.lead-row { padding-top: 18px; }
.lead-row .headline { font-size: 26px; line-height: 1.18; }
.section { font-size: 13px; font-weight: 700; color: var(--navy); }
.headline {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.02em;
}
.meta {
  width: max-content;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--wash);
  font-size: 13px;
  font-weight: 600;
  color: var(--body);
}

.pay-banner {
  max-width: 40rem;
  margin: 64px auto;
  padding: 32px;
  background: var(--paper);
  border: 1px solid #cbd5e1;
  text-align: center;
}

.pricing {
  margin-top: 0;
  padding: var(--chapter-space) 0;
  background: var(--wash);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.page-pricing h1 { text-wrap: balance; }
.page-pricing .hero { padding: 24px 0 16px; }
.page-pricing .hero .offer-cluster {
  width: 100%;
  max-width: none;
  margin: 0;
}
.page-pricing .hero .lead { max-width: none; }
.price-card {
  max-width: 40rem;
  margin: 0 auto;
  padding: 32px;
  background: var(--paper);
  border: 1px solid #cbd5e1;
  text-align: center;
}
.home .independence-card-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(270px, 0.72fr);
  gap: 42px;
  align-items: center;
  max-width: none;
  padding: 38px 40px;
  text-align: left;
}
.home .independence-card-layout .price-lead {
  max-width: none;
  margin: 0 0 10px;
  text-align: left;
}
.home .independence-card-layout .trial-kicker { margin: 0; }
.independence-action { min-width: 0; text-align: center; }
.independence-action .trial-chip { margin-top: 12px; }
.page-pricing .pricing {
  padding: 32px 0 12px;
  background: var(--paper);
  border: 0;
}
.page-pricing .hero .wrap,
.page-pricing .pricing > .wrap,
.page-pricing .faq .wrap { max-width: 76rem; }
.page-pricing .hero .price-includes {
  max-width: none;
  margin: 18px 0 0;
  color: var(--body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}
.page-pricing .faq { padding: 32px 0; }
.page-pricing .faq-item {
  padding: 0 0 24px;
  border-top: 0;
  border-bottom: 0;
}
.page-pricing .faq-item h3 { text-wrap: pretty; }
.pricing-decision {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
  max-width: 76rem;
  margin: 0 auto;
}
.pricing-decision .price-card {
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  text-align: left;
}
.pricing-decision .price-card .price-lead {
  max-width: none;
  margin-left: 0;
  text-align: left;
}
.pricing-decision .price-includes,
.pricing-decision .price-editions,
.pricing-decision .mission {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}
.pricing-art {
  margin: 0;
  overflow: hidden;
}
.pricing-art img {
  width: 100%;
  height: clamp(360px, 34vw, 480px);
  object-fit: cover;
  object-position: 62% center;
  border: 1px solid var(--rule);
}
.page-pricing .pricing-art img { height: clamp(340px, 29vw, 400px); }
.price-card .btn { width: 100%; }
.pricing h2 { margin: 0 0 8px; font-size: 22px; letter-spacing: -0.02em; }
.billing-options {
  display: grid;
  gap: 12px;
  margin: 24px 0 20px;
}
.page-pricing .billing-options {
  gap: 10px;
  margin: 12px 0 14px;
}
.billing-option {
  appearance: none;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  column-gap: 12px;
  align-items: start;
  width: 100%;
  min-height: 44px;
  padding: 18px 20px;
  border: 1px solid #b8c4d1;
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.page-pricing .billing-option { padding: 15px 18px; }
.billing-option:hover { border-color: #718399; }
.billing-option:focus-visible {
  outline: 3px solid rgb(59 130 246 / 30%);
  outline-offset: 2px;
}
.billing-option.is-selected {
  border: 2px solid var(--action);
  background: var(--trust-bg);
}
.billing-radio {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border: 1.5px solid #718399;
  border-radius: 50%;
  background: var(--paper);
  margin-top: 2px;
}
.billing-option.is-selected .billing-radio {
  border-color: var(--action);
  background: var(--action);
  box-shadow: inset 0 0 0 6px var(--paper);
}
.billing-name {
  display: block;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.05;
}
.billing-badge {
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}
.billing-price {
  display: block;
  margin-top: 5px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.billing-price span {
  margin-left: 2px;
  font-size: 16px;
  font-weight: 650;
  letter-spacing: 0;
}
.billing-detail {
  display: block;
  margin-top: 6px;
  color: var(--body);
  font-size: 16px;
  line-height: 1.35;
  text-wrap: pretty;
}
.price-includes {
  margin: 0 0 14px;
  color: var(--body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.48;
  text-wrap: pretty;
}
.page-pricing .price-includes {
  margin-bottom: 14px;
  line-height: 1.48;
}
.price-editions {
  max-width: 34rem;
  margin: 0 auto 20px;
  color: var(--body);
  font-size: 16px;
  line-height: 1.5;
}
.page-pricing .price-editions {
  margin-bottom: 14px;
  line-height: 1.42;
}
.price-card .price-lead,
.trial-strip .price-lead {
  margin: 0 auto 10px;
  max-width: 20em;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ink);
}
.trial-kicker {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.35;
  color: var(--body);
}
.price-terms {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.4;
  color: var(--muted);
}
.price-card .fine,
.trial-strip .fine { margin-top: 12px; }
.page-pricing .price-card .fine { margin-top: 8px; }
.page-pricing .price-card .honesty {
  color: var(--body);
  font-size: 15px;
  line-height: 1.4;
}
.save { color: var(--trust); font-weight: 700; }
.price-lead {
  margin: 0 auto 10px;
  max-width: 20em;
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
}

.mission {
  margin: 18px auto 0;
  max-width: 34rem;
  text-align: center;
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
}
.page-pricing .mission { margin-top: 12px; }
.page-pricing .pricing-decision .honesty,
.page-pricing .pricing-decision .mission {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.why-band {
  padding: var(--chapter-space) 0;
  border-top: 1px solid var(--rule);
}
.why {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 72px;
  margin: 0;
  padding: 0;
}
.why h2 {
  grid-column: 1 / -1;
  margin: 0 0 10px;
  font-size: 24px;
  letter-spacing: -0.02em;
  line-height: 1.25;
  text-wrap: balance;
}
.why p {
  margin: 0 0 14px;
  max-width: 34em;
  font-size: 18px;
  line-height: 1.55;
  color: var(--body);
  text-wrap: pretty;
}
.why strong {
  color: var(--ink);
}

.faq { padding: var(--chapter-space) 0; }
.faq .wrap { max-width: 36rem; }
.faq-head {
  margin: 0 0 24px;
  font-size: 24px;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ink);
}
.faq-item {
  padding: 32px 0;
  border-top: 1px solid var(--rule);
}
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-item h3 {
  margin: 0 0 10px;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--ink);
  text-wrap: balance;
}
.faq-item p {
  margin: 0;
  max-width: 34rem;
  font-size: 18px;
  line-height: 1.6;
  color: var(--body);
  text-wrap: pretty;
}
@media (min-width: 1100px) {
  .faq .wrap {
    max-width: var(--page);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 72px;
  }
  .faq-head { grid-column: 1 / -1; margin-bottom: 24px; }
  .faq-item:nth-child(2),
  .faq-item:nth-child(3) { border-top: 0; padding-top: 0; }
  .faq-item:last-child { border-bottom: 0; }
  .faq-item:nth-last-child(2) { border-bottom: 0; }
}
.trial-terms {
  margin: 20px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  text-align: left;
}
.trial-terms p {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--body);
}
.trial-terms p:last-child { margin-bottom: 0; }

.site-footer {
  background: var(--navy);
  color: var(--on-navy);
  padding: 28px 0;
  font-size: 14px;
}
.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.site-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  color: var(--on-navy);
  font-size: 13px;
}
.site-footer a:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links li + li::before {
  content: "·";
  margin: 0 8px;
}
.footer-links li { display: inline-flex; align-items: center; }

.legal-page {
  background: var(--paper);
}
.legal-header {
  padding: var(--chapter-space) 0 40px;
  background: var(--wash);
  border-bottom: 1px solid var(--rule);
}
.legal-header .wrap,
.legal-body .wrap {
  width: min(760px, calc(100% - var(--gutter) * 2));
}
.legal-header h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 48px);
  text-wrap: balance;
}
.legal-summary {
  max-width: 38em;
  margin: 0;
  color: var(--body);
  font-size: 18px;
  line-height: 1.55;
  text-wrap: balance;
}
.legal-dates {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}
.legal-body {
  padding: 40px 0 var(--chapter-space);
}
.legal-document {
  color: var(--body);
  font-size: 17px;
  line-height: 1.7;
  overflow-wrap: anywhere;
}
.legal-document > :first-child { margin-top: 0; }
.legal-document h2 {
  margin: 46px 0 12px;
  color: var(--navy);
  font-size: 26px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.legal-document h3 {
  margin: 30px 0 10px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.35;
  text-wrap: balance;
}
.legal-document p { margin: 0 0 18px; }
.legal-document ul {
  margin: 0 0 22px;
  padding-left: 24px;
}
.legal-document li { margin: 0 0 10px; }
.legal-document a {
  color: var(--navy);
  font-weight: 650;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.legal-document a:hover { color: #1d4ed8; }
.legal-document a:focus-visible {
  outline: 3px solid var(--mark);
  outline-offset: 3px;
}
.legal-notice {
  margin: 24px 0;
  padding: 20px 22px;
  background: var(--wash);
  border-left: 4px solid var(--navy);
}
.legal-notice > :last-child { margin-bottom: 0; }
.legal-disclaimer {
  margin: 24px 0;
  padding: 20px 22px;
  border: 1px solid var(--rule);
}
.legal-disclaimer h3 { margin-top: 0; }
.legal-disclaimer > :last-child { margin-bottom: 0; }
.legal-contact {
  margin-top: 46px;
  padding-top: 4px;
  border-top: 1px solid var(--rule);
}
.legal-contact address { font-style: normal; }

/* Shared protected/public utility routes: sign in, Daily Archive, and Account. */
.utility-page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--paper);
}
.utility-main { flex: 1 0 auto; }
.utility-heading {
  padding: 48px 0 32px;
  background: var(--wash);
  border-bottom: 1px solid var(--rule);
}
.utility-heading h1 { margin-top: 0; text-wrap: balance; }
.utility-heading .lead { margin-bottom: 0; }
.utility-shell {
  width: min(620px, calc(100% - var(--gutter) * 2));
  padding-top: var(--chapter-space);
  padding-bottom: var(--chapter-space);
}
.utility-shell-wide { width: min(var(--page), calc(100% - var(--gutter) * 2)); }
.signin-card,
.access-card,
.billing-card,
.transaction-card,
.settings-card,
.support-route-card,
.account-status-card,
.account-actions-card,
.account-delivery-card,
.archive-index,
.archive-reader {
  padding: 28px;
  border: 1px solid var(--rule);
  background: var(--paper);
}
.signin-card h1 { margin-top: 0; text-wrap: balance; }
.signin-card .lead { max-width: 30em; }
.field-group { margin: 24px 0 18px; }
.field-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}
.field {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid #94a3b8;
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 17px;
}
.field:focus { outline: 3px solid var(--mark); outline-offset: 2px; }
.utility-action {
  min-width: 0;
  background: var(--navy);
}
.utility-action-label {
  position: relative;
  z-index: 1;
  display: inline-block;
  color: var(--white);
  -webkit-text-fill-color: var(--white);
  transform: translateZ(0);
}
.utility-action:hover { background: #1e3a5f; }
.utility-note,
.field-message {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  text-wrap: pretty;
}
.field-message.is-error { color: #9f1239; }
.field-message a { color: var(--navy); font-weight: 700; text-decoration: underline; }
.utility-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 20px; margin-top: 22px; }
.text-button {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--navy);
  border-radius: 4px;
  background: var(--paper);
  color: var(--navy);
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}
.access-card { max-width: 620px; margin: 0 auto; text-align: center; }
.access-card h2 { margin: 0 0 10px; font-size: 26px; text-wrap: balance; }
.access-card p { margin: 0 auto 20px; max-width: 34em; color: var(--body); line-height: 1.55; }
.utility-skeleton {
  display: block;
  width: 100%;
  height: 18px;
  margin-bottom: 14px;
  background: var(--wash);
  border: 1px solid var(--rule);
}
.utility-skeleton.is-heading { width: 58%; height: 34px; }
.utility-skeleton.is-tall { height: 180px; margin-bottom: 0; }
.archive-loading,
.account-loading { max-width: 860px; margin: 0 auto; }
.archive-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.archive-index { position: sticky; top: 24px; }
.archive-index h2,
.archive-reader h1,
.archive-reader h2,
.account-grid h2 { margin-top: 0; text-wrap: balance; }
.archive-edition-list { display: grid; gap: 8px; margin-top: 18px; }
.archive-edition-button {
  width: 100%;
  min-height: 44px;
  padding: 8px 12px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: var(--paper);
  color: var(--navy);
  font: inherit;
  font-size: 15px;
  font-weight: 650;
  text-align: left;
  cursor: pointer;
}
.archive-edition-button:hover { background: var(--wash); }
.archive-edition-button.is-current { border-color: var(--navy); background: var(--navy); color: var(--white); }
.archive-reader { min-height: 360px; overflow-wrap: anywhere; }
.archive-reader img { height: auto; }
.archive-inert-link { color: inherit; text-decoration: none; }
.archive-reader table { width: 100%; border-collapse: collapse; }
.archive-reader th,
.archive-reader td { vertical-align: top; }
.account-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 24px;
  align-items: start;
}
.account-delivery-card { grid-column: 1 / -1; }
.account-badge {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 4px 9px;
  border-radius: 4px;
  background: #dbeafe;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}
.account-status-card > p,
.account-delivery-card > p { color: var(--body); line-height: 1.55; }
.account-details { margin: 24px 0 0; border-top: 1px solid var(--rule); }
.account-details div { display: flex; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--rule); }
.account-details dt { color: var(--muted); }
.account-details dd { margin: 0; color: var(--ink); font-weight: 700; text-align: right; }
.account-notice { padding: 14px 16px; border-left: 3px solid var(--mark); background: #eaf3ff; }
.account-action-list { display: grid; }
.account-action-list a,
.account-action-list button {
  display: grid;
  width: 100%;
  min-height: 64px;
  gap: 3px;
  padding: 12px 0;
  border: 0;
  border-top: 1px solid var(--rule);
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}
.account-action-list a:last-child,
.account-action-list button:last-child { border-bottom: 1px solid var(--rule); }
.account-action-list strong { color: var(--navy); }
.account-action-list span { color: var(--muted); font-size: 14px; line-height: 1.4; }
.account-action-list a:hover strong,
.account-action-list button:hover strong { text-decoration: underline; }
.account-action-list a:focus-visible,
.account-action-list button:focus-visible,
.support-route-card a:focus-visible { outline: 3px solid var(--mark); outline-offset: 3px; }

.settings-grid,
.support-route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}
.settings-card h2,
.support-route-card h2 { margin-top: 0; text-wrap: balance; }
.settings-card > :last-child { margin-bottom: 0; }
.settings-card .account-details { margin-top: 12px; }
.settings-actions-card { grid-row: span 2; }
.settings-delete-card { border-left: 3px solid var(--navy); }
.settings-card .utility-action { margin-top: 10px; }
.field-message.is-success { color: var(--navy); }
.support-route-card { padding: 0; }
.support-route-card a {
  display: grid;
  min-height: 148px;
  gap: 10px;
  align-content: start;
  padding: 26px 28px;
  color: var(--navy);
  text-decoration: none;
}
.support-route-card strong { font-size: 19px; line-height: 1.25; text-wrap: balance; }
.support-route-card span { color: var(--body); line-height: 1.55; text-wrap: pretty; }
.support-route-card a:hover { background: var(--wash); }

/* Checkout recovery and authenticated subscription cancellation. */
.utility-actions-centered { justify-content: center; }
.checkout-return-card { text-align: center; }
.checkout-return-card > p {
  max-width: 34em;
  margin-right: auto;
  margin-left: auto;
  color: var(--body);
  line-height: 1.55;
  text-wrap: pretty;
}
.checkout-return-support {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
}
.cancellation-shell { width: min(720px, calc(100% - var(--gutter) * 2)); }
.cancellation-card > p:not(.account-badge),
.cancellation-effect p {
  color: var(--body);
  line-height: 1.55;
  text-wrap: pretty;
}
.cancellation-card > :last-child { margin-bottom: 0; }
.cancellation-effect {
  margin: 22px 0;
  padding: 18px 20px;
  border-left: 3px solid var(--navy);
  background: var(--wash);
}
.cancellation-effect p { margin: 0; }
.cancellation-effect .cancellation-date {
  margin-top: 7px;
  color: var(--ink);
  font-weight: 700;
}
.cancellation-reasons {
  display: grid;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  border: 0;
}
.cancellation-reasons legend {
  margin-bottom: 10px;
  color: var(--ink);
  font-weight: 700;
}
.cancellation-reasons label {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--rule);
  color: var(--body);
  cursor: pointer;
  text-wrap: pretty;
}
.cancellation-reasons label:hover { background: var(--wash); }
.cancellation-reasons input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin: 0;
  accent-color: var(--navy);
}
.cancellation-reasons label:has(input:focus-visible) { outline: 3px solid var(--mark); outline-offset: 2px; }
.cancellation-feedback {
  min-height: 112px;
  padding: 12px 14px;
  line-height: 1.45;
  resize: vertical;
}
.cancellation-confirm-action { background: var(--navy); }
.cancellation-confirm-action:hover { background: #1e3a5f; }
.cancellation-card button:disabled { cursor: not-allowed; opacity: 0.55; }

.billing-loading { max-width: 620px; margin: 0 auto; }
.billing-card,
.transaction-card {
  width: 100%;
  padding: 30px;
  border: 1px solid var(--rule);
  background: var(--paper);
}
.billing-card h2,
.transaction-card h1,
.transaction-card h2 { margin: 0 0 12px; text-wrap: balance; }
.transaction-card h1 { font-size: clamp(30px, 4vw, 42px); line-height: 1.08; }
.billing-state-body,
.transaction-card > p:not(.account-badge) { color: var(--body); line-height: 1.55; text-wrap: pretty; }
.transaction-card .utility-skeleton:first-of-type { margin-top: 28px; }
.transaction-card .account-details dd { max-width: 66%; overflow-wrap: anywhere; }
.email-correction-dialog {
  width: min(560px, calc(100% - 32px));
  padding: 0;
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 24px 80px rgb(16 36 63 / 22%);
}
.email-correction-dialog::backdrop { background: rgb(16 36 63 / 62%); }
.email-correction-dialog form { position: relative; padding: 30px; }
.email-correction-dialog h2 { margin: 0 42px 10px 0; text-wrap: balance; }
.email-correction-dialog .field-group { margin-bottom: 10px; }
.dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.nav a.current {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}
[data-access-mode="public"] [data-nav="entitled"],
[data-access-mode="subscriber"] [data-nav="public"],
[data-access-mode="subscriber"] [data-public-cta] {
  display: none;
}

.feed-app {
  --feed-filter-height: 65px;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.feed-scroll {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
}
.feed-page {
  padding: 0 0 64px;
}
.feed-page > .wrap {
  width: min(860px, calc(100% - var(--gutter) * 2));
  padding-top: 28px;
}
.feed-filter-bar {
  position: sticky;
  top: 0;
  z-index: 5;
  min-height: var(--feed-filter-height);
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  box-shadow: 0 3px 12px rgba(16, 36, 63, 0.06);
}
.feed-filter-inner {
  position: relative;
  width: min(860px, calc(100% - var(--gutter) * 2));
  margin: 0 auto;
  padding: 10px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  align-items: center;
  gap: 8px;
}
.feed-filter-inner::before,
.feed-filter-inner::after {
  position: absolute;
  top: 10px;
  z-index: 2;
  width: 24px;
  height: 44px;
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 120ms ease;
}
.feed-filter-inner::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper), rgba(255, 255, 255, 0));
}
.feed-filter-inner::after {
  right: 52px;
  background: linear-gradient(270deg, var(--paper), rgba(255, 255, 255, 0));
}
.feed-filter-bar[data-filter-overflow-start="true"] .feed-filter-inner::before { opacity: 1; }
.feed-filter-bar[data-filter-overflow-end="true"] .feed-filter-inner::after { opacity: 1; }
.feed-filter-loading {
  display: none;
  min-width: 0;
  height: 44px;
  align-items: center;
  gap: 8px;
  overflow: hidden;
}
.feed-filter-bar[data-filters-ready="false"] .feed-filter-loading { display: flex; }
.feed-filter-bar[data-filters-ready="false"] .feed-filters { display: none; }
.feed-filter-loading span {
  flex: 0 0 auto;
  height: 44px;
  border-radius: 4px;
  background: linear-gradient(90deg, #e6effa 20%, #cfe2f8 48%, #e6effa 76%);
  background-size: 220% 100%;
  animation: feed-body-scan 1.45s ease-in-out infinite;
}
.feed-filter-loading .is-short { width: 72px; }
.feed-filter-loading .is-medium { width: 88px; }
.feed-filter-loading .is-long { width: 108px; }
.feed-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}
.feed-toolbar .feed-when { margin: 0; }
.feed-page[aria-busy="true"] .feed-when .dateline {
  width: min(21rem, 78vw);
  height: 22px;
  overflow: hidden;
  border-radius: 999px;
  background: linear-gradient(90deg, #e6effa 20%, #cfe2f8 48%, #e6effa 76%);
  background-size: 220% 100%;
  color: transparent;
  animation: feed-body-scan 1.45s ease-in-out infinite;
}
.feed-page[aria-busy="true"] .feed-when .dateline time { visibility: hidden; }
.feed-status {
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--muted);
}
.feed-status:empty {
  display: none;
}
.feed-access-notice {
  margin: 0 0 20px;
  padding: 14px 16px;
  border-left: 3px solid var(--mark);
  background: #eaf3ff;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.45;
}
.feed-access-notice strong,
.feed-access-notice span { display: block; }
.feed-access-notice .upgrade-copy-403-entitled { display: none; }
.feed-access-notice.is-403-entitled .upgrade-copy-default { display: none; }
.feed-access-notice.is-403-entitled .upgrade-copy-403-entitled { display: block; }
.feed-public-bridge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 32px 0 0;
  padding: 24px 26px;
  border: 1px solid var(--rule);
  background: var(--wash);
}
.feed-public-bridge h2 {
  margin: 0 0 5px;
  font-size: 22px;
  line-height: 1.2;
  text-wrap: pretty;
}
.feed-public-bridge p {
  margin: 0;
  color: var(--body);
  font-size: 16px;
  line-height: 1.45;
}
.feed-public-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 0 0 auto;
}
.feed-public-actions .btn { min-width: 164px; }
.feed-filters {
  display: flex;
  flex-wrap: nowrap;
  align-content: flex-start;
  gap: 8px;
  min-height: 44px;
  margin: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.feed-filters::-webkit-scrollbar { display: none; }
.feed-filter[hidden] {
  display: none;
}
.feed-filter {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--rule);
  background: var(--paper);
  color: var(--navy);
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
}
.feed-filter.is-current {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.feed-filter [data-feed-count] {
  display: inline-block;
  min-width: 2ch;
  font-size: 13px;
  font-weight: 700;
  color: inherit;
  opacity: 0.7;
}
.feed-to-top {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: var(--paper);
  color: var(--navy);
  font: inherit;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(3px);
  transition: opacity 120ms ease, transform 120ms ease, background-color 120ms ease;
}
.feed-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.feed-to-top:hover { background: var(--wash); }
.feed-to-top:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}
.feed-tag {
  display: inline-block;
  margin-right: 8px;
  padding: 2px 8px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.feed-tag.is-updated {
  background: #e8f0fb;
  color: var(--navy);
}
.feed-tag.is-new {
  background: #dbeafe;
  color: #1e40af;
}
.story-so-what,
.story-callout {
  margin: 16px 0 0;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--body);
}
.story-callout strong,
.story-so-what strong {
  font-weight: 700;
  color: var(--ink);
}
.pull-slot {
  height: 0;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  transition: height 80ms linear;
}
.is-armed .pull-slot { color: var(--navy); }
.is-refreshing .pip {
  animation: pip-pulse 0.9s ease-in-out infinite;
}
@keyframes pip-pulse {
  50% { transform: scale(1.25); opacity: 0.6; }
}
.new-pill {
  position: sticky;
  top: calc(var(--feed-filter-height) + 8px);
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  min-height: 44px;
  margin: 0 auto 12px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}
.new-pill[hidden] { display: none; }
.feed-post {
  padding: 32px 0;
  border-top: 1px solid var(--rule);
}
.feed-initial-skeleton { display: grid; }
.feed-initial-story {
  display: grid;
  gap: 11px;
  padding: 32px 0;
  border-top: 1px solid var(--rule);
}
.feed-initial-line {
  display: block;
  height: 10px;
  max-width: 44rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #e6effa 20%, #cfe2f8 48%, #e6effa 76%);
  background-size: 220% 100%;
  animation: feed-body-scan 1.45s ease-in-out infinite;
}
.feed-initial-line.is-meta { width: 24%; height: 8px; }
.feed-initial-line.is-title { width: 82%; height: 22px; }
.feed-initial-line.is-title-short { width: 58%; height: 22px; }
.feed-initial-line.is-copy { width: 94%; }
.feed-initial-line.is-copy-short { width: 70%; }
.feed-post:last-child { border-bottom: 1px solid var(--rule); }
.feed-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}
.feed-section {
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.meta-separator { color: #9ca3af; }
.feed-post .headline {
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.18;
  margin: 0 0 8px;
  max-width: 32em;
  text-wrap: balance;
}
.feed-body-placeholder {
  position: relative;
  display: grid;
  gap: 10px;
  max-width: 44rem;
  padding: 4px 0 4px 15px;
  overflow: hidden;
}
.feed-body-placeholder::before {
  position: absolute;
  inset: 2px auto 2px 0;
  width: 3px;
  border-radius: 999px;
  background: #bfdbfe;
  content: "";
}
.feed-body-skeleton {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--wash) 20%, #dbeafe 48%, var(--wash) 76%);
  background-size: 220% 100%;
}
.feed-post.is-loading .feed-body-placeholder::before { background: var(--mark); }
.feed-post.is-loading .feed-body-skeleton { animation: feed-body-scan 1.45s ease-in-out infinite; }
.feed-body-skeleton.is-long { width: 92%; }
.feed-body-skeleton.is-medium { width: 78%; }
.feed-body-skeleton.is-short { width: 54%; }
.feed-post.is-entering { animation: feed-body-enter 180ms ease-out both; }
@keyframes feed-body-scan {
  from { background-position: 115% 0; }
  to { background-position: -115% 0; }
}
@keyframes feed-body-enter {
  from { opacity: 0.55; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.feed-when {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin: 0;
}
.feed-when .feed-live {
  margin: 0;
}
.feed-when .dateline { margin: 0; }
.feed-when .pip { flex: 0 0 auto; }
.story-body {
  margin: 0 0 16px;
  max-width: 44rem;
  font-size: 17px;
  line-height: 1.55;
  color: var(--body);
}
.story-body p { margin: 0 0 12px; }
.story-body p:last-child { margin-bottom: 0; }
.feed-post .story-callout,
.feed-post .provenance { max-width: 44rem; }
.feed-post .story-body { margin-bottom: 0; }
.feed-post .provenance {
  margin: 14px 0 0;
  padding: 0 0 0 12px;
  border-top: 0;
  border-left: 3px solid #bfdbfe;
  line-height: 1.4;
  text-wrap: pretty;
}
.feed-post .story-body + .provenance { margin-top: 10px; }
.feed-post .provenance strong {
  margin: 0;
  line-height: 1.35;
}
.provenance-sources {
  display: block;
  margin-top: 1px;
}
.feed-shallow {
  padding: 24px 0;
}
.feed-shallow .headline {
  max-width: 36em;
  font-size: 20px;
  text-wrap: balance;
}
.feed-shallow .feed-post-meta { margin: 0; }
.story-note {
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--body);
}
.story-note strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}
.feed-story {
  padding: 18px 0;
  border-top: 1px solid var(--rule);
}
.feed-story:last-child { border-bottom: 1px solid var(--rule); }
.feed-story .headline { font-size: 20px; margin-bottom: 8px; }
.feed-story .dek {
  margin: 0 0 10px;
  font-size: 16px;
}
.trial-strip {
  margin: 36px auto 0;
  max-width: 36rem;
  padding: 24px;
  border: 1px solid var(--rule);
  text-align: center;
}
.trial-strip p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.45;
  color: var(--body);
}
.trial-strip .trial-kicker {
  margin: 0 0 8px;
  font-size: 18px;
}
.trial-strip .price-terms {
  margin: 0 0 16px;
  font-size: 15px;
  color: var(--muted);
}
.trial-strip .fine { margin-top: 10px; }

.web-cta-bar { display: none; }

/* Public information routes: dated sample, method, sources, About, and Contact. */
.public-information-page { background: var(--paper); }
.public-information-heading {
  padding: 52px 0 34px;
  background: var(--paper);
}
.public-prose { max-width: 760px; }
.public-information-heading h1,
.public-information-section h2,
.public-information-section h3,
.public-decision h2,
.contact-status h2 {
  text-wrap: pretty;
}
.public-information-heading h1 {
  max-width: 18em;
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
}
.public-information-heading .lead {
  max-width: 42em;
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
  text-wrap: pretty;
}
.edition-tagline,
.public-dateline,
.direct-support {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}
.edition-tagline { color: var(--navy); font-weight: 700; }
.direct-support a,
.payment-attention a { color: var(--navy); font-weight: 700; }
.public-information-section { padding: var(--chapter-space) 0; }
.public-information-compact { padding-top: 28px; }
.public-information-section p {
  color: var(--body);
  font-size: 17px;
  line-height: 1.65;
  text-wrap: pretty;
}
.public-information-section h2 { margin: 0 0 14px; font-size: clamp(26px, 3vw, 34px); }
.public-information-section h3 { margin: 0 0 10px; font-size: 22px; line-height: 1.25; }
.method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.method-step {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--rule);
  background: var(--paper);
}
.method-step .method-number {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}
.method-step p:last-child { margin-bottom: 0; }
.public-link,
.public-link-row a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--navy);
  font-weight: 700;
}
.public-link-row { display: flex; flex-wrap: wrap; gap: 10px 28px; margin-top: 22px; }
.independence-card {
  padding: 30px;
  border: 1px solid var(--navy);
  background: var(--paper);
}
.independence-card p:last-child { margin-bottom: 0; }
.source-mechanism { max-width: 42em; margin-bottom: 36px; }
.source-mechanism .mechanism-count {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 26px;
  font-weight: 800;
}
.source-mechanism p:last-child { margin: 0; }
.source-grid-label { font-size: 24px !important; }
.public-source-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}
.public-source-grid figure {
  min-height: 116px;
  margin: 0;
  padding: 18px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  border: 1px solid var(--rule);
  background: var(--paper);
}
.public-source-grid img { width: auto; max-width: 100%; height: auto; max-height: 34px; object-fit: contain; }
.public-source-grid figcaption { color: var(--muted); font-size: 13px; text-align: center; }
.receipt-example {
  margin-top: 24px;
  padding: 24px;
  border-left: 3px solid var(--mark);
  background: #eaf3ff;
}
.sample-reader { width: min(780px, calc(100% - var(--gutter) * 2)); }
.sample-reader > h2 { margin-bottom: 32px; }
.sample-story { padding: 32px 0; border-top: 1px solid var(--rule); }
.sample-story:last-child { padding-bottom: 0; }
.sample-story > p:not(.sample-section):not(.source-receipt) { margin: 0; }
.sample-section {
  margin: 0 0 8px !important;
  color: var(--navy) !important;
  font-size: 12px !important;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.source-receipt {
  margin: 14px 0 0 !important;
  padding-left: 12px;
  border-left: 3px solid #bfdbfe;
  font-size: 15px !important;
  line-height: 1.45 !important;
}
.source-receipt strong,
.source-receipt span { display: block; }
.source-receipt span { margin-top: 2px; }
.public-decision { padding: 0 0 var(--chapter-space); }
.public-decision-card {
  max-width: 760px;
  padding: 30px;
  border: 1px solid var(--navy);
  text-align: center;
}
.public-decision-card h2 { margin: 0 0 12px; }
.public-decision-card > p { margin: 0 auto 18px; max-width: 40em; color: var(--body); line-height: 1.55; }
.public-decision-card .btn { width: min(100%, 360px); }
.public-decision-card .fine { margin: 12px auto 0; color: var(--muted); font-size: 14px; }
.payment-attention { padding: 14px 0; background: #eaf3ff; color: var(--navy); }
.payment-attention p { margin: 0; line-height: 1.5; }
.contact-wrap { width: min(720px, calc(100% - var(--gutter) * 2)); }
.contact-form { padding: 30px; border: 1px solid var(--rule); }
.contact-form .field-group:first-child { margin-top: 0; }
.contact-form .field-group:last-of-type { margin-bottom: 24px; }
.contact-message { min-height: 176px; padding: 12px 14px; line-height: 1.5; resize: vertical; }
.contact-counter { margin: 8px 0 0; color: var(--muted); font-size: 14px; }
.contact-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.contact-status { margin-top: 22px; padding: 22px; border-left: 3px solid var(--navy); background: var(--wash); }
.contact-status h2 { margin: 0 0 8px; font-size: 22px; }
.contact-status p { margin: 0; color: var(--body); line-height: 1.55; }
.contact-status:focus { outline: 3px solid var(--mark); outline-offset: 3px; }

@media (max-width: 820px) {
  .footer-links { gap: 0 16px; }
  .footer-links li + li::before {
    content: none;
    margin: 0;
  }
  .sb-checkout-overlay { padding: 0; }
  .sb-checkout-panel {
    width: 100vw;
    max-height: 100dvh;
    height: 100dvh;
    padding-block: env(safe-area-inset-top) env(safe-area-inset-bottom);
    border-radius: 0;
    box-shadow: none;
    transform: translateY(100%);
  }
  .sb-checkout-overlay.active .sb-checkout-panel { transform: translateY(0); }
  .sb-checkout-scroll { max-height: none; border-radius: 0; }
  .sb-checkout-bar-close {
    top: calc(6px + env(safe-area-inset-top));
    left: calc(6px + env(safe-area-inset-left));
  }
  #stripe-checkout-container,
  .sb-checkout-loading,
  .sb-checkout-state-card,
  .sb-checkout-error-card { min-height: calc(100dvh - env(safe-area-inset-top) - env(safe-area-inset-bottom)); }
  .sb-checkout-loading,
  .sb-checkout-state-card,
  .sb-checkout-error-card { padding: calc(76px + env(safe-area-inset-top)) 20px calc(28px + env(safe-area-inset-bottom)); }
  .sb-checkout-state-actions,
  .sb-checkout-error-actions { flex-direction: column; align-items: stretch; max-width: 320px; margin: 0 auto; }
  .sb-checkout-state-primary,
  .sb-checkout-error-actions button { width: 100%; }
  :root {
    --gutter: 20px;
    --chapter-space: 48px;
    --band-space: 20px;
  }
  .hero { padding: 8px 0 24px; }
  .home > .hero { padding: 28px 0 34px; }
  .page-pricing .hero { padding: 18px 0 10px; }
  .page-pricing .pricing { padding: 28px 0 12px; }
  .page-pricing .faq { padding: 28px 0 32px; }
  .page-pricing .billing-options { margin-top: 14px; }
  .page-pricing .billing-option { padding: 13px 16px; }
  .page-pricing .billing-option { grid-template-columns: 24px minmax(0, 1fr); }
  .page-pricing .billing-badge {
    grid-column: 2;
    justify-self: start;
    margin-top: 8px;
  }
  .masthead-inner {
    min-height: 100px;
    padding: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: 56px 44px;
    column-gap: 12px;
    row-gap: 0;
  }
  .feed-app {
    --feed-filter-height: 61px;
  }
  .masthead-inner > a {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
  }
  .nav {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    min-width: 0;
    margin: 0;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid rgba(197, 212, 228, 0.22);
    font-size: 14px;
    white-space: nowrap;
  }
  .wordmark { width: 145px; }
  .tagline,
  .has-web-cta .masthead-cta,
  .home .live-kicker { display: none; }
  .has-web-cta { padding-bottom: 72px; }
  .has-web-cta.feed-app { padding-bottom: 0; }
  .has-web-cta.feed-app .feed-scroll { padding-bottom: 72px; }
  .web-cta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 6;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
    background: var(--paper);
    border-top: 1px solid var(--rule);
  }
  .web-cta-bar p {
    margin: 0;
    font-size: 13px;
    line-height: 1.3;
    color: var(--muted);
    max-width: 14em;
  }
  .web-cta-bar .btn { width: auto; min-width: 148px; }
  .live { padding: var(--chapter-space) 0; }
  .live .kicker { margin-bottom: 6px; }
  .sources { padding: var(--band-space) 0; }
  .offer-cluster {
    padding: 0;
    max-width: none;
  }
  .pricing-decision {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }
  .home .independence-card-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    padding: 26px 22px;
  }
  .pricing-art img {
    height: auto;
    object-position: center;
  }
  .page-pricing .pricing-art img { height: auto; }
  .hero-art { display: none; }
  .hero-grid {
    display: block;
    grid-template-columns: none;
    gap: 0;
  }
  .lead { font-size: 16px; line-height: 1.35; margin-bottom: 6px; }
  h1 { font-size: 28px; margin: 0 0 6px; white-space: normal; }
  .home h1 {
    font-size: clamp(24px, 7.15vw, 28px);
    margin: 0 0 6px;
    white-space: nowrap;
  }
  .home h1 .hero-break { display: none; }
  .live-grid { display: block; }
  .live-rail { border-left: 0; padding-left: 0; margin-top: 12px; }
  .live-rail .story-row:first-child { border-top: 1px solid var(--rule); padding-top: 12px; }
  .why { display: block; }
  .story-row { padding: 12px 0; }
  .lead-story h2 { margin: 2px 0 6px; font-size: 26px; }
  .home .lead-story { min-height: 414px; }
  .lead-story .story-body,
  .lead-story .dek { font-size: 16px; line-height: 1.3; }
  .lead-story .story-body { margin-bottom: 4px; }
  .lead-story .provenance { margin-top: 6px; padding-top: 4px; font-size: 13px; line-height: 1.4; }
  .lead-story .provenance strong { font-size: 12px; }
  .feed-page { padding: 0 0 56px; }
  .feed-page > .wrap { padding-top: 24px; }
  .feed-filter-inner { padding: 8px 0; }
  .feed-page h1 { font-size: 26px; line-height: 1.15; }
  .feed-post { padding: 24px 0; }
  .feed-post-meta { gap: 5px; }
  .feed-shallow { padding: 22px 0; }
  .feed-public-bridge { align-items: stretch; flex-direction: column; gap: 18px; padding: 22px; }
  .feed-public-actions { justify-content: space-between; }
  .actions { flex-direction: column; align-items: stretch; margin: 4px 0; }
  .btn { width: 100%; }
  .logo-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 20px;
    padding: 2px 0;
  }
  .logo-row li { flex: 0 1 auto; }
  .logo-row img { height: 22px; }
  .legal-header { padding: 40px 0 28px; }
  .legal-header h1 { font-size: 32px; }
  .legal-summary { font-size: 17px; }
  .legal-body { padding: 30px 0 48px; }
  .legal-document { font-size: 16px; line-height: 1.65; }
  .legal-document h2 { margin-top: 38px; font-size: 23px; }
  .legal-document h3 { margin-top: 26px; font-size: 19px; }
  .legal-notice,
  .legal-disclaimer { padding: 18px; }
  .utility-heading { padding: 36px 0 24px; }
  .utility-shell { padding-top: 48px; padding-bottom: 48px; }
  .signin-card,
  .access-card,
  .billing-card,
  .transaction-card,
  .settings-card,
  .account-status-card,
  .account-actions-card,
  .account-delivery-card,
  .archive-index,
  .archive-reader { padding: 22px; }
  .utility-actions { align-items: stretch; flex-direction: column; }
  .utility-actions .btn,
  .utility-actions .text-link,
  .utility-actions .text-button { width: 100%; justify-content: center; }
  .archive-layout,
  .account-grid,
  .settings-grid,
  .support-route-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 20px; }
  .settings-actions-card { grid-row: auto; }
  .support-route-card a { min-height: 0; padding: 22px; }
  .public-information-heading { padding: 38px 0 24px; }
  .public-information-heading h1 { font-size: 32px; }
  .public-information-section { padding: 48px 0; }
  .public-information-compact { padding-top: 18px; }
  .method-grid { grid-template-columns: minmax(0, 1fr); gap: 16px; }
  .method-step { min-height: 0; padding: 22px; }
  .public-source-grid {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    scrollbar-width: none;
  }
  .public-source-grid::-webkit-scrollbar { display: none; }
  .public-source-grid figure { flex: 0 0 180px; }
  .public-decision-card,
  .contact-form,
  .independence-card { padding: 22px; }
  .public-link-row { display: grid; gap: 4px; }
  .archive-index { position: static; }
  .archive-edition-list { grid-template-columns: minmax(0, 1fr); }
  .account-delivery-card { grid-column: auto; }
  .transaction-card .account-details div { align-items: flex-start; flex-direction: column; gap: 5px; }
  .transaction-card .account-details dd { max-width: none; text-align: left; }
  .email-correction-dialog form { padding: 24px 22px; }
}

/* Canonical mobile WebView app mode. The generator stamps data-app-mode before
   first paint, so native-only chrome never flashes while the bridge loads. */
:root {
  --sb-safe-top: env(safe-area-inset-top, 0px);
  --sb-safe-right: env(safe-area-inset-right, 0px);
  --sb-safe-bottom: env(safe-area-inset-bottom, 0px);
  --sb-safe-left: env(safe-area-inset-left, 0px);
}

html[data-app-mode="true"] {
  background: #10243f;
  font-size: 18px;
}

html[data-app-mode="true"] body {
  min-height: 100dvh;
  padding: var(--sb-safe-top) var(--sb-safe-right) var(--sb-safe-bottom) var(--sb-safe-left);
  padding-bottom: calc(var(--sb-safe-bottom) + 4.75rem);
  font-size: 18px;
}

html[data-app-mode="true"] .masthead,
html[data-app-mode="true"] .site-footer,
html[data-app-mode="true"] .web-cta-bar,
html[data-app-mode="true"] .skip-link,
html[data-app-mode="true"] .nav-wrapper,
html[data-app-mode="true"] .nav-mobile-overlay,
html[data-app-mode="true"] #footer-placeholder,
html[data-app-mode="true"] [data-public-cta] {
  display: none !important;
}

html[data-app-mode="true"] .feed-scroll {
  min-height: calc(100dvh - var(--sb-safe-top) - var(--sb-safe-bottom));
}

/* App-mode public-feed paint keeps the initial skeleton and the resolved empty
 * state in the same reserved block. Without this floor, the first response can
 * move every section below the homepage feed and breach the app CLS budget. */
html[data-app-mode="true"] .home [data-feed="public"] {
  min-height: 20rem;
}

html[data-app-mode="true"] body.verify-link-page .page-container,
html[data-app-mode="true"] body.verify-link-page .utility-hero,
html[data-app-mode="true"] body.verify-link-page #authGate {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

html[data-app-mode="true"] .utility-main,
html[data-app-mode="true"] .feed-page {
  padding-top: 1rem;
  padding-bottom: 1.5rem;
}

html[data-app-mode="true"] [data-app-only] {
  display: block;
}

html[data-app-mode="true"] [data-app-only][hidden] {
  display: none;
}

html:not([data-app-mode="true"]) [data-app-only] {
  display: none !important;
}

html[data-app-mode="true"] .app-bottom-nav {
  position: fixed;
  z-index: 20;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.25rem;
  min-height: 4rem;
  padding: 0.5rem var(--sb-safe-right) calc(0.5rem + var(--sb-safe-bottom)) var(--sb-safe-left);
  background: #10243f;
  box-shadow: 0 -0.25rem 1rem rgb(15 26 43 / 18%);
}

html[data-app-mode="true"][data-app-access-state="entitled"] .app-bottom-nav {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

html[data-app-mode="true"][data-app-access-state="access"] .app-bottom-nav,
html[data-app-mode="true"][data-app-access-state="signed_out"] .app-bottom-nav {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

html[data-app-mode="true"] .app-bottom-nav a {
  display: flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 650;
  text-align: center;
  text-decoration: none;
}

html[data-app-mode="true"] .app-bottom-nav a[aria-current="page"] {
  background: rgb(255 255 255 / 16%);
}

html:not([data-app-mode="true"]) .app-bottom-nav,
html[data-app-mode="true"] .app-bottom-nav [hidden] {
  display: none !important;
}

html[data-app-mode="true"] .story-share {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 0.5rem;
}

@media (prefers-reduced-motion: reduce) {
  .feed-body-skeleton,
  .feed-filter-loading span,
  .feed-initial-line,
  .feed-page[aria-busy="true"] .feed-when .dateline,
  .feed-post.is-entering,
  .feed-to-top,
  .feed-filter-bar {
    animation: none;
    transition: none;
  }
}
