:root {
  --bg: #0a0a0c;
  --panel: rgba(255, 255, 255, 0.035);
  --line: rgba(255, 255, 255, 0.09);
  --text: #f5f5f7;
  --muted: #a3a3aa;
  --dim: #6f6f76;
  --teal: #28f0b5;
  --accent: #28f0b5;
  --max: 1040px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% -10%, rgba(151, 71, 255, 0.16), transparent 40%),
    radial-gradient(circle at 90% 0%, rgba(40, 240, 181, 0.08), transparent 35%),
    linear-gradient(160deg, #09090b 0%, #111116 45%, #090909 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  /* Full-bleed sections (e.g. .landing-phones) use 100vw, which includes the scrollbar. */
  overflow-x: hidden;
}

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

a:hover {
  text-decoration: underline;
}

h1, h2, h3 {
  font-family: Sora, Inter, sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}

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

.eyebrow {
  margin: 0;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lede {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.lede strong {
  color: var(--text);
}

.muted {
  color: var(--dim);
}

.empty {
  color: var(--muted);
}

/* Header / footer */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px 24px;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}

.site-brand:hover {
  text-decoration: none;
}

.site-brand img {
  height: 28px;
  width: auto;
}

.site-brand span {
  color: var(--teal);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}

.site-nav a {
  color: var(--muted);
  font-family: 'Sora', sans-serif;
  text-align: center;
  line-height: 1.2;
}

.site-nav-cta {
  padding: 10px 20px;
  border: 1px solid rgba(40, 240, 181, 0.4);
  border-radius: 999px;
  color: var(--teal) !important;
}

.site-nav-sub {
  display: flex;
  gap: 20px;
  justify-content: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px 18px;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.site-nav-sub a {
  color: var(--muted);
}

.site-main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 24px 72px;
}

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 24px 48px;
  border-top: 1px solid var(--line);
  color: var(--dim);
  font-size: 13px;
}

.site-footer p {
  margin: 0 0 8px;
}

/* Breadcrumb */

.breadcrumb {
  display: flex;
  gap: 8px;
  margin-bottom: 26px;
  color: var(--dim);
  font-size: 13px;
  font-weight: 600;
}

.breadcrumb a {
  color: var(--muted);
}

/* Hero */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 40px;
  align-items: center;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 0% 0%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 55%),
    var(--panel);
}

.hero-art img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  border-radius: 10px;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.5));
}

.hero-copy h1 {
  margin: 6px 0 14px;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 800;
}

.hero-copy .lede {
  margin: 0 0 26px;
}

.hero-stats {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  margin: 0;
}

.stat {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.25);
}

.stat dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stat dd {
  margin: 4px 0 0;
  font-family: Sora, sans-serif;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat dd small {
  margin-left: 6px;
  color: var(--muted);
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
}

.stat-accent {
  border-color: rgba(40, 240, 181, 0.35);
  background: rgba(40, 240, 181, 0.08);
}

.stat-accent dd {
  color: var(--teal);
}

.stat-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
}

/* Sections */

.section-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 20px;
  margin: 56px 0 22px;
}

.section-heading h2,
.method h2,
.other-cards h2,
.cta-band h2 {
  font-size: 26px;
  font-weight: 700;
}

.section-heading p {
  margin: 0;
  color: var(--dim);
  font-size: 14px;
  font-weight: 600;
}

/* Benefits */

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
}

.benefit {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
}

.benefit-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.benefit-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 22px 22px;
}

.benefit-cadence {
  margin: 0 0 6px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.benefit h3 {
  font-size: 20px;
  font-weight: 700;
}

.benefit-value {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.benefit-value strong {
  color: var(--teal);
  font-family: Sora, sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.benefit-detail {
  color: var(--dim);
}

.benefit-override {
  margin: 4px 0 0;
  color: #fbbf24;
  font-size: 13px;
  font-weight: 700;
}

.benefit-annual {
  margin: 10px 0 0;
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(40, 240, 181, 0.08);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.benefit-annual strong {
  color: var(--teal);
}

.benefit-annual.muted {
  background: rgba(255, 255, 255, 0.04);
  color: var(--dim);
}

.benefit-description {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.benefit-more {
  margin-top: auto;
  padding-top: 16px;
}

.benefit-more summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid rgba(40, 240, 181, 0.4);
  border-radius: 999px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.benefit-more summary::-webkit-details-marker {
  display: none;
}

.benefit-more summary::after {
  content: '+';
  font-size: 16px;
  line-height: 1;
}

.benefit-more[open] summary::after {
  content: '−';
}

.benefit-more[open] summary {
  background: rgba(40, 240, 181, 0.1);
}

.benefit-explainer {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.benefit-explainer > :first-child {
  margin-top: 0;
}

.benefit-explainer h1,
.benefit-explainer h2,
.benefit-explainer h3 {
  margin: 16px 0 6px;
  color: var(--text);
  font-size: 16px;
}

.benefit-explainer p,
.benefit-explainer ul,
.benefit-explainer ol {
  margin: 0 0 10px;
}

.benefit-explainer ul,
.benefit-explainer ol {
  padding-left: 20px;
}

.benefit-explainer strong {
  color: var(--text);
}

.terms-link {
  display: inline-block;
  margin-top: 6px;
  font-weight: 700;
}

/* Method */

.method {
  margin-top: 56px;
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
}

.method ul {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.method li + li {
  margin-top: 8px;
}

/* CTA */

.cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  padding: 30px 32px;
  border: 1px solid rgba(40, 240, 181, 0.35);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(40, 240, 181, 0.14), rgba(151, 71, 255, 0.08));
}

.cta-band p {
  margin: 6px 0 0;
  color: var(--muted);
}

.button {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 12px;
  background: var(--teal);
  color: #081310;
  font-family: Sora, sans-serif;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(40, 240, 181, 0.2);
  white-space: nowrap;
}

.button:hover {
  text-decoration: none;
  filter: brightness(1.05);
}

/* Other cards */

.other-cards {
  margin-top: 56px;
}

.other-cards ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.other-cards a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  color: var(--text);
  font-weight: 700;
}

.other-cards a:hover {
  border-color: rgba(40, 240, 181, 0.4);
  text-decoration: none;
}

.other-cards img {
  width: 56px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.other-cards small {
  display: block;
  color: var(--dim);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Index page */

.page-intro {
  max-width: 680px;
  margin: 20px 0 40px;
}

.page-intro h1 {
  margin: 8px 0 14px;
  font-size: clamp(34px, 5vw, 50px);
  font-weight: 800;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.card-tile {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
  color: var(--text);
  transition: border-color 0.15s, transform 0.15s;
}

.card-tile:hover {
  border-color: rgba(40, 240, 181, 0.4);
  text-decoration: none;
  transform: translateY(-2px);
}

.card-tile-art {
  width: 70%;
  margin: 0 auto 18px;
  border-radius: 10px;
  filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.45));
}

.card-tile h2 {
  margin: 4px 0 14px;
  font-size: 22px;
  font-weight: 700;
}

.card-tile-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0 0 16px;
}

.card-tile-stats dt {
  color: var(--dim);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.card-tile-stats dd {
  margin: 2px 0 0;
  font-family: Sora, sans-serif;
  font-size: 22px;
  font-weight: 800;
}

.card-tile-stats .accent {
  color: var(--teal);
}

.tile-cta {
  margin-top: auto;
  color: var(--teal);
  font-size: 14px;
  font-weight: 700;
}

/* Article pages */

.article {
  max-width: 680px;
  margin: 20px auto 0;
  text-align: center;
}

.article-header h1 {
  margin: 10px 0 18px;
  color: var(--teal);
  font-size: clamp(44px, 9vw, 72px);
  font-weight: 800;
  line-height: 0.95;
}

.article-header .lede {
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.4;
  color: #efefef;
}

.article-figure {
  margin: 40px 0 0;
}

.article-figure img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.35);
}

.article-figure figcaption {
  margin-top: 12px;
  color: var(--dim);
  font-size: 13px;
}

.article-section {
  margin-top: 44px;
}

.article-section h2 {
  margin: 0 0 14px;
  font-size: clamp(24px, 4vw, 30px);
  font-weight: 800;
}

.article-section p,
.article-list {
  max-width: 580px;
  margin: 0 auto 16px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.article-section p:last-child {
  margin-bottom: 0;
}

.article-list {
  padding: 0;
  list-style: none;
}

.article-list li + li {
  margin-top: 14px;
}

.article-list strong {
  color: var(--text);
}

.article-cta {
  margin-top: 56px;
  text-align: left;
}

/* News */

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}

.news-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
  color: var(--text);
  transition: border-color 0.15s, transform 0.15s;
}

.news-card:hover {
  border-color: rgba(40, 240, 181, 0.4);
  text-decoration: none;
  transform: translateY(-2px);
}

.news-card-art {
  aspect-ratio: 16 / 9;
  width: 100%;
  object-fit: cover;
}

.news-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 22px 24px 24px;
}

.news-card h2 {
  font-size: 22px;
  font-weight: 800;
}

.news-card p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.news-date {
  display: block;
  color: var(--dim);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-article {
  max-width: 720px;
}

.news-article .article-header h1 {
  margin-top: 14px;
  font-size: clamp(36px, 6.5vw, 58px);
  line-height: 1.05;
}

.news-article .article-figure img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.news-body {
  text-align: left;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.news-body > :first-child {
  margin-top: 0;
}

.news-body h1,
.news-body h2,
.news-body h3 {
  margin: 36px 0 12px;
  color: var(--text);
  font-size: clamp(22px, 3.5vw, 28px);
}

.news-body h3 {
  font-size: 20px;
}

.news-body p,
.news-body ul,
.news-body ol {
  margin: 0 0 18px;
}

.news-body ul,
.news-body ol {
  padding-left: 24px;
}

.news-body li + li {
  margin-top: 6px;
}

.news-body strong {
  color: var(--text);
}

.news-body img {
  margin: 24px 0;
  border-radius: 14px;
}

.news-body blockquote {
  margin: 0 0 18px;
  padding: 4px 0 4px 18px;
  border-left: 3px solid var(--teal);
  color: var(--text);
}

.news-body code {
  padding: 1px 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.92em;
}

.news-body hr {
  margin: 32px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

/* Homepage (ported from the former React landing page) */

.landing-hero {
  max-width: 720px;
  margin: 0 auto;
  padding: 36px 0 40px;
  font-family: Sora, Inter, sans-serif;
  text-align: center;
}

.landing-hero h1 {
  max-width: 490px;
  margin: 0 auto;
  color: var(--teal);
  font-size: clamp(2.2rem, 9vw, 3.25rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: 0;
}

.landing-hero > p {
  max-width: 360px;
  margin: 13px auto 19px;
  color: #d2d2d6;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.landing-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* Full-bleed strip; phones overflow the viewport and scroll horizontally. */
.landing-phones {
  /* Padding gives the glow room inside the clipping scroller; negative margins cancel it in layout. */
  --glow-room: 70px;
  margin: calc(28px - var(--glow-room)) calc(50% - 50vw) calc(30px - var(--glow-room));
  padding: var(--glow-room) 40px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 40px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.landing-phones::-webkit-scrollbar {
  display: none;
}

.landing-phones-track {
  display: flex;
  gap: 18px;
  width: max-content;
  margin: 0 auto;
}

.landing-phone {
  --phone-width: 218px;
  position: relative;
  flex: 0 0 var(--phone-width);
  width: var(--phone-width);
  /* Roughly the top 55% of a 9:19.5 phone screenshot. */
  aspect-ratio: 9 / 10.7;
  margin: 0;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.55);
  border-radius: 18px;
  background: #0f0f12;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 0 36px rgba(40, 240, 181, 0.28),
    0 0 80px rgba(151, 71, 255, 0.22),
    0 18px 40px rgba(0, 0, 0, 0.45);
  scroll-snap-align: center;
}

.landing-phone img {
  width: 100%;
  height: auto;
}

/* Fade the cropped bottom edge so the screenshot reads as continuing. */
.landing-phone::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 34%;
  background: linear-gradient(to bottom, rgba(10, 10, 12, 0), #0d0d10 94%);
  pointer-events: none;
}

.landing-primary {
  display: inline-block;
  border-radius: 9px;
  background: var(--teal);
  color: #081310;
  font-size: 16px;
  font-weight: 800;
  padding: 13px 19px;
  box-shadow: 0 12px 25px rgba(40, 240, 181, 0.16);
}

.landing-primary:hover {
  text-decoration: none;
  filter: brightness(1.05);
}

.landing-secondary {
  display: inline-block;
  color: #d5d5d8;
  font-size: 16px;
  font-weight: 800;
  padding: 12px 3px;
}

.landing-guest-cta {
  margin: 6px 0 22px;
}

.hero-phone-wrap {
  display: grid;
  place-items: center;
  margin: 20px 0 0;
}

.hero-image {
  width: min(90vw, 360px);
  height: auto;
}

.landing-feature-list {
  display: grid;
  gap: 72px;
  max-width: 720px;
  margin: 0 auto;
  padding: 0;
  font-family: Sora, Inter, sans-serif;
}

.landing-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-inline: auto;
}

.feature-copy {
  width: 100%;
  max-width: 430px;
  text-align: center;
}

.feature-eyebrow {
  position: relative;
  margin: 0;
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-eyebrow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(239, 239, 239, 0.5);
  transform: translateY(-50%);
}

.feature-eyebrow span {
  position: relative;
  z-index: 1;
  padding: 0 10px;
  background: #111116;
}

.feature-copy h2 {
  margin: 20px 0;
  color: var(--teal);
  font-size: clamp(1.55rem, 6.8vw, 1.95rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

.feature-copy p {
  margin: 0;
  color: #d0d0d4;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.feature-image-wrap {
  display: grid;
  place-items: center;
  width: min(100%, 360px);
}

.feature-image {
  width: 100%;
  height: auto;
}

.feature-image-card {
  margin-top: 40px;
  border-radius: 10px;
}

.landing-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin: 64px 0 0;
  font-size: 14px;
  font-weight: 700;
}

@media (min-width: 700px) {
  .landing-hero {
    padding: 64px 0 56px;
  }

  .landing-feature {
    max-width: 520px;
    padding: 52px 0;
  }
}

/* Benefit pages */

.benefit-hero .hero-copy .lede a {
  color: var(--text);
  font-weight: 700;
}

.benefit-facts {
  grid-template-columns: repeat(auto-fit, minmax(180px, max-content));
}

.stat .stat-text {
  font-size: 20px;
  line-height: 1.2;
}

.benefit-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.benefit-meta span {
  margin-right: 4px;
  color: var(--dim);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.benefit-hero-override {
  margin: 16px 0 0;
}

.benefit-ended-note {
  margin: 18px 0 0;
  padding: 12px 16px;
  border: 1px solid rgba(229, 132, 98, 0.4);
  border-radius: 12px;
  background: rgba(229, 132, 98, 0.08);
  color: #f0b39a;
  font-size: 14px;
  font-weight: 600;
}

.benefit-article {
  max-width: 720px;
  margin: 48px auto 0;
}

.tldr {
  margin-bottom: 28px;
  padding: 20px 24px;
  border: 1px solid rgba(40, 240, 181, 0.35);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(40, 240, 181, 0.14), rgba(255, 255, 255, 0.02));
}

.tldr p:last-child {
  margin: 8px 0 0;
  color: var(--text);
  font-family: Sora, Inter, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

.benefit-article-image {
  width: 100%;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.benefit-article-body {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.benefit-article-body > :first-child {
  margin-top: 0;
}

.benefit-article-body h1,
.benefit-article-body h2,
.benefit-article-body h3 {
  margin: 28px 0 10px;
  color: var(--text);
  font-size: 22px;
}

.benefit-article-body h3 {
  font-size: 18px;
}

.benefit-article-body p,
.benefit-article-body ul,
.benefit-article-body ol {
  margin: 0 0 14px;
}

.benefit-article-body ul,
.benefit-article-body ol {
  padding-left: 22px;
}

.benefit-article-body strong {
  color: var(--text);
}

.benefit-source {
  margin: 20px 0 0;
  color: var(--dim);
  font-size: 14px;
}

.benefit h3 a {
  color: inherit;
}

/* Benefits hub */

.benefits-intro {
  max-width: 760px;
}

.intro-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
}

.intro-secondary {
  color: var(--muted);
  font-weight: 700;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.category-tile {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
}

.category-tile h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
}

.category-tile > p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}

.category-links {
  margin: 14px 0 0;
  padding: 14px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.category-links li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 8px;
  font-size: 14px;
  font-weight: 600;
}

.category-links li + li {
  margin-top: 6px;
}

.category-links small {
  color: var(--dim);
  font-size: 12px;
  font-weight: 600;
}

.featured-grid .benefit-description a {
  color: var(--text);
  font-weight: 600;
}

.other-cards .section-heading {
  margin: 56px 0 0;
}

.method-note {
  margin: 18px 0 0;
  color: var(--muted);
}

.method li strong {
  color: var(--text);
}

/* Responsive */

@media (max-width: 760px) {
  .site-header {
    padding: 16px 18px;
  }

  .site-nav-sub {
    padding: 0 18px 14px;
  }

  .site-brand span {
    display: none;
  }

  .site-main {
    padding: 8px 18px 56px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 20px;
    border-radius: 22px;
  }

  .hero-art img {
    max-width: 280px;
  }

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

  .stat dd {
    font-size: 30px;
  }

  .section-heading {
    margin-top: 40px;
  }

  .method,
  .cta-band {
    padding: 22px 20px;
  }
}
