:root {
  --blue: #08a9ed;
  --blue-dark: #087eb1;
  --navy: #111827;
  --text: #334155;
  --muted: #64748b;
  --line: #dfe6ed;
  --soft: #f6f8fb;
  --white: #ffffff;
  --green: #16885f;
  --max: 1240px;
  --shadow: 0 16px 44px rgba(15, 23, 42, .09);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

section[id],
.creator-card[id] { scroll-margin-top: 88px; }

body {
  margin: 0;
  color: var(--navy);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

a { color: inherit; }

button { font: inherit; }

.meter-pixel {
  position: absolute;
  left: -9999px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 68px;
  padding-inline: max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(223, 230, 237, .9);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-size: 1.35rem;
  font-weight: 850;
  letter-spacing: -.04em;
  text-decoration: none;
}

.brand img { width: 34px; height: 34px; }

.site-nav {
  display: flex;
  gap: 26px;
  justify-content: center;
}

.site-nav a,
.site-footer nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #526176;
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-footer nav a:hover { color: var(--blue-dark); }

.header-action,
.button,
.card-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  color: var(--white);
  border-radius: 12px;
  background: var(--blue-dark);
  box-shadow: 0 10px 24px rgba(8, 169, 237, .2);
  font-weight: 800;
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.header-action { min-height: 42px; padding-inline: 16px; font-size: .86rem; }

.header-action:hover,
.button:hover,
.card-button:hover {
  background: #056b96;
  box-shadow: 0 12px 28px rgba(8, 126, 177, .24);
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, .95fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
  max-width: var(--max);
  min-height: 700px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 92px) 24px;
}

.hero__copy { max-width: 650px; }

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue-dark);
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3.6rem, 6.3vw, 6.6rem);
  font-weight: 880;
  letter-spacing: -.04em;
  line-height: .92;
  text-wrap: balance;
}

.hero__text {
  max-width: 55ch;
  margin: 26px 0 0;
  color: var(--text);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
}

.hero__chips span {
  padding: 8px 12px;
  color: #3f4d61;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: .84rem;
  font-weight: 750;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 30px;
}

.text-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  color: #445268;
  font-weight: 750;
  text-decoration: none;
}

.text-link:hover { color: var(--blue-dark); }

.hero__gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(150px, .85fr);
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  min-height: 540px;
}

.hero-tile {
  position: relative;
  min-height: 0;
  overflow: hidden;
  color: var(--white);
  border-radius: 24px;
  background: #dbe5ec;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .17);
  text-decoration: none;
}

.hero-tile--large { grid-row: 1 / 3; }

.hero-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.hero-tile:hover img { transform: scale(1.025); }

.hero-tile::after {
  position: absolute;
  inset: 30% 0 0;
  content: '';
  background: linear-gradient(180deg, transparent, rgba(7, 12, 24, .88));
}

.hero-tile > span {
  position: absolute;
  z-index: 1;
  inset: auto 18px 18px;
  display: grid;
  gap: 2px;
}

.hero-tile small {
  color: rgba(255, 255, 255, .82);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-tile strong { font-size: clamp(1.15rem, 2vw, 1.8rem); line-height: 1.05; }

.directory,
.content-section,
.how,
.faq {
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: 24px;
}

.directory {
  padding-block: 82px 96px;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: flex;
  gap: 30px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 28px;
}

.section-heading h2,
.free-note h2 {
  max-width: 17ch;
  margin: 0;
  font-size: clamp(2.15rem, 4vw, 3.7rem);
  letter-spacing: -.04em;
  line-height: 1;
  text-wrap: balance;
}

.section-heading > p {
  max-width: 52ch;
  margin: 0;
  color: var(--muted);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 36px 0 0;
}

.filter {
  min-height: 44px;
  padding: 0 17px;
  color: #455469;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
  font-size: .9rem;
  font-weight: 750;
}

.filter:hover,
.filter[aria-pressed='true'] {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
}

.filter-status {
  margin: 14px 0 24px;
  color: var(--muted);
  font-size: .9rem;
}

.creator-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

@media (min-width: 981px) {
  .creator-card:last-child { grid-column: 2; }
}

.creator-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 10px 34px rgba(15, 23, 42, .07);
}

.creator-card[hidden] { display: none; }

.creator-card__media {
  position: relative;
  aspect-ratio: 4 / 4.5;
  overflow: hidden;
  background: #e8eef3;
}

.creator-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.creator-card:hover .creator-card__media img { transform: scale(1.02); }

.access-badge {
  position: absolute;
  inset: 14px auto auto 14px;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  color: var(--white);
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 8px 20px rgba(15, 23, 42, .18);
  font-size: .74rem;
  font-weight: 850;
}

.creator-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.creator-card__name {
  display: flex;
  gap: 10px;
  align-items: baseline;
  justify-content: space-between;
}

.creator-card h3 {
  margin: 0;
  font-size: 1.45rem;
  letter-spacing: -.03em;
}

.creator-card__name span { color: var(--muted); font-size: .82rem; }

.creator-card__body > p {
  margin: 12px 0 0;
  color: var(--text);
}

.best-for {
  padding-top: 12px;
  border-top: 1px solid #edf1f5;
  font-size: .9rem;
}

.best-for strong { display: block; color: var(--navy); }

.access-note { color: var(--muted) !important; font-size: .82rem; }

.card-button {
  width: 100%;
  margin-top: auto;
  padding-inline: 16px;
  position: relative;
  top: 12px;
}

.affiliate-note {
  max-width: 760px;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: .84rem;
  text-align: center;
}

.content-section {
  padding-block: 88px;
  border-top: 1px solid var(--line);
}

.content-section--soft {
  max-width: none;
  padding-inline: max(24px, calc((100vw - var(--max)) / 2));
  background: var(--soft);
}

.content-heading {
  max-width: 880px;
  margin-bottom: 38px;
}

.content-heading h2 {
  max-width: 19ch;
  margin: 0;
  font-size: clamp(2.15rem, 4vw, 3.7rem);
  letter-spacing: -.04em;
  line-height: 1;
  text-wrap: balance;
}

.content-heading > p:last-child {
  max-width: 68ch;
  margin: 20px 0 0;
  color: var(--text);
  font-size: 1.03rem;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(15, 23, 42, .06);
}

.comparison-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.comparison-table th {
  color: #536176;
  background: #eef4f8;
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.comparison-table tr:last-child td { border-bottom: 0; }

.comparison-table td { color: var(--text); }

.comparison-table td:first-child a {
  color: var(--blue-dark);
  font-weight: 850;
  text-decoration: none;
}

.profile-guide {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.profile-guide article {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.profile-guide .profile-guide__feature {
  grid-column: 1 / -1;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
}

.profile-guide figure {
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: #e8eef3;
}

.profile-guide figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-guide__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
}

.profile-guide h3,
.prose-grid h3,
.free-note__copy h3 {
  margin: 0;
  font-size: 1.3rem;
  letter-spacing: -.025em;
  line-height: 1.2;
}

.profile-guide h3 a,
.prose-grid a {
  color: var(--blue-dark);
  text-underline-offset: 3px;
}

.profile-guide h3 span {
  display: block;
  margin: 5px 0 0;
  color: var(--muted);
  font-size: .8rem;
  font-weight: 650;
  letter-spacing: 0;
}

.profile-guide p,
.prose-grid p {
  margin: 11px 0 0;
  color: var(--text);
}

.profile-guide__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.profile-guide__tags span {
  padding: 5px 9px;
  color: #315167;
  border-radius: 999px;
  background: #eaf7fd;
  font-size: .72rem;
  font-weight: 800;
}

.profile-guide__action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 18px;
  color: var(--blue-dark);
  font-size: .9rem;
  font-weight: 850;
  text-underline-offset: 4px;
}

.prose-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.prose-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.prose-grid--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.choice-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  counter-reset: choice-step;
}

.choice-flow article {
  position: relative;
  padding: 28px 0 0;
  border-top: 3px solid var(--blue);
  counter-increment: choice-step;
}

.choice-flow article::before {
  display: inline-grid;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--navy);
  content: counter(choice-step);
  font-size: .82rem;
  font-weight: 850;
}

.choice-flow h3,
.cost-list h3,
.mood-grid h3,
.method-grid h3,
.budget-band h3 {
  margin: 0;
  font-size: 1.3rem;
  letter-spacing: -.025em;
  line-height: 1.22;
}

.choice-flow p,
.cost-list p,
.mood-grid p,
.method-grid p,
.budget-band p {
  margin: 10px 0 0;
  color: var(--text);
}

.cost-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 46px;
  border-top: 1px solid var(--line);
  counter-reset: cost-item;
}

.cost-list article {
  position: relative;
  padding: 28px 0 28px 58px;
  border-bottom: 1px solid var(--line);
  counter-increment: cost-item;
}

.cost-list article::before {
  position: absolute;
  top: 28px;
  left: 0;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--blue-dark);
  border: 1px solid #b9dff0;
  border-radius: 50%;
  content: counter(cost-item, decimal-leading-zero);
  font-size: .72rem;
  font-weight: 850;
}

.mood-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.mood-grid article {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  min-width: 0;
  overflow: hidden;
  border-radius: 16px;
  background: var(--white);
}

.mood-grid img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
}

.mood-grid article > div { padding: 24px; }

.mood-grid a,
.method-grid a { color: var(--blue-dark); text-underline-offset: 3px; }

.method-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 0 48px;
  max-width: 980px;
}

.method-grid article {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.method-grid article:first-child {
  grid-row: 1 / 3;
  padding-right: 48px;
  border-right: 1px solid var(--line);
}

.budget-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border-radius: 16px;
  background: #eaf7fd;
}

.budget-band article { padding: 28px; }

.budget-band article + article { border-left: 1px solid #cce9f5; }

.reading-guide {
  max-width: 920px;
  border-top: 1px solid var(--line);
  counter-reset: profile-check;
}

.reading-guide article {
  display: grid;
  grid-template-columns: 54px minmax(220px, .7fr) minmax(0, 1.3fr);
  gap: 12px 28px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  counter-increment: profile-check;
}

.reading-guide article::before {
  grid-column: 1;
  grid-row: 1 / 3;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--blue);
  content: counter(profile-check);
  font-size: .82rem;
  font-weight: 850;
}

.reading-guide h3 {
  grid-column: 2;
  grid-row: 1 / 3;
  margin: 0;
  font-size: 1.32rem;
  letter-spacing: -.025em;
  line-height: 1.22;
}

.reading-guide p {
  grid-column: 3;
  margin: 0;
  color: var(--text);
}

.how {
  padding-block: 92px;
  border-top: 1px solid var(--line);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.steps article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--soft);
}

.steps article > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--blue);
  font-weight: 850;
}

.steps h3 { margin: 20px 0 0; font-size: 1.25rem; }

.steps p { margin: 8px 0 0; color: var(--text); }

.free-note {
  display: grid;
  grid-template-columns: minmax(250px, .8fr) minmax(0, 1.2fr);
  gap: clamp(36px, 7vw, 90px);
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 24px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 0 0 100vmax var(--navy);
  clip-path: inset(0 -100vmax);
}

.free-note .eyebrow { color: #6ed0f8; }

.free-note > p:last-child {
  margin: 0;
  color: #d8e0ea;
  font-size: 1.06rem;
}

.free-note__copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.free-note__copy h3 { color: var(--white); }

.free-note__copy p {
  margin: 9px 0 0;
  color: #d8e0ea;
  font-size: .97rem;
}

.faq { padding-block: 92px 104px; }

.faq-list {
  max-width: 900px;
  border-top: 1px solid var(--line);
}

.faq-list details { border-bottom: 1px solid var(--line); }

.faq-list summary {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 1.07rem;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after { content: '+'; color: var(--blue-dark); font-size: 1.5rem; }

.faq-list details[open] summary::after { content: '−'; }

.faq-list p { max-width: 70ch; margin: -4px 0 22px; color: var(--text); }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
  padding: 52px 24px 34px;
  border-top: 1px solid var(--line);
}

.site-footer > div > p {
  max-width: 460px;
  margin: 10px 0 0;
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  justify-content: flex-end;
  max-width: 560px;
}

.partner-links {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(15, 23, 42, .12);
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.6;
}

.partner-links__label {
  color: var(--text);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.partner-links__content a {
  color: var(--blue-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.partner-links__content br { display: none; }

.copyright {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  color: #7b8799;
  font-size: .8rem;
}

:where(a, button, summary):focus-visible {
  outline: 3px solid rgba(8, 169, 237, .48);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .site-header { grid-template-columns: auto 1fr; }
  .header-action { display: none; }
  .site-nav { justify-content: flex-end; }
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero__copy { max-width: 760px; }
  .hero h1 { max-width: 12ch; }
  .hero__gallery { min-height: 620px; }
  .creator-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .profile-guide,
  .prose-grid,
  .prose-grid--four,
  .free-note__copy { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .profile-guide { grid-template-columns: 1fr; }
  .profile-guide .profile-guide__feature { grid-column: auto; }
  .profile-guide article,
  .profile-guide .profile-guide__feature { grid-template-columns: 180px minmax(0, 1fr); }
  .mood-grid article { grid-template-columns: 140px minmax(0, 1fr); }
  .budget-band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .budget-band article:nth-child(3) { border-left: 0; border-top: 1px solid #cce9f5; }
  .budget-band article:nth-child(4) { border-top: 1px solid #cce9f5; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer nav { justify-content: flex-start; }
}

@media (max-width: 680px) {
  html { scroll-padding-top: 76px; }
  section[id],
  .creator-card[id] { scroll-margin-top: 76px; }
  .site-header { min-height: 62px; padding-inline: 16px; }
  .brand { font-size: 1.1rem; }
  .brand img { width: 30px; height: 30px; }
  .site-nav { gap: 12px; }
  .site-nav a { font-size: .78rem; }
  .site-nav a:nth-child(2) { display: none; }
  .hero { gap: 38px; padding: 44px 16px 56px; }
  .hero h1 { font-size: clamp(3.2rem, 15vw, 4.7rem); }
  .hero__text { font-size: 1rem; }
  .hero__gallery { grid-template-columns: 1fr 1fr; min-height: 460px; gap: 10px; }
  .hero-tile { border-radius: 18px; }
  .hero-tile > span { inset: auto 12px 12px; }
  .hero-tile small { font-size: .6rem; }
  .directory, .content-section, .how, .faq { padding-inline: 16px; }
  .directory { padding-block: 62px 72px; }
  .content-section { padding-block: 68px; }
  .section-heading { display: grid; gap: 16px; align-items: start; }
  .section-heading h2, .free-note h2 { font-size: 2.45rem; }
  .filters { margin-top: 26px; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 6px; scrollbar-width: none; }
  .filters::-webkit-scrollbar { display: none; }
  .filter { flex: 0 0 auto; }
  .creator-grid { grid-template-columns: 1fr; }
  .creator-card__media { aspect-ratio: 4 / 4.25; }
  .steps { grid-template-columns: 1fr; }
  .profile-guide,
  .prose-grid,
  .prose-grid--four,
  .free-note__copy,
  .choice-flow,
  .cost-list,
  .mood-grid,
  .method-grid,
  .budget-band { grid-template-columns: 1fr; }
  .profile-guide article,
  .profile-guide .profile-guide__feature { grid-template-columns: 1fr; }
  .profile-guide figure { aspect-ratio: 4 / 3; }
  .profile-guide article:nth-child(2) figure img,
  .profile-guide article:nth-child(3) figure img,
  .profile-guide article:nth-child(5) figure img,
  .profile-guide article:nth-child(7) figure img { object-position: 50% 20%; }
  .profile-guide article:nth-child(4) figure img,
  .profile-guide article:nth-child(6) figure img { object-position: 50% 28%; }
  .profile-guide__copy { padding: 20px; }
  .mood-grid article { grid-template-columns: 116px minmax(0, 1fr); }
  .mood-grid img { min-height: 100%; }
  .mood-grid article > div { padding: 18px; }
  .method-grid article:first-child { grid-row: auto; padding-right: 0; border-right: 0; }
  .reading-guide article { grid-template-columns: 44px minmax(0, 1fr); gap: 10px 14px; }
  .reading-guide article::before { grid-row: 1; width: 38px; height: 38px; }
  .reading-guide h3 { grid-column: 2; grid-row: 1; }
  .reading-guide p { grid-column: 2; }
  .budget-band article + article { border-top: 1px solid #cce9f5; border-left: 0; }
  .comparison-table { min-width: 0; }
  .comparison-table thead { display: none; }
  .comparison-table tbody { display: grid; gap: 12px; padding: 12px; }
  .comparison-table tr { display: grid; padding: 10px 14px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); }
  .comparison-table td { display: grid; grid-template-columns: 94px minmax(0, 1fr); gap: 12px; padding: 8px 0; border-bottom: 1px solid #edf1f5; }
  .comparison-table td:last-child { border-bottom: 0; }
  .comparison-table td::before { color: var(--muted); content: attr(data-label); font-size: .72rem; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; }
  .how, .faq { padding-block: 68px 76px; }
  .free-note { grid-template-columns: 1fr; gap: 24px; padding: 58px 16px; }
  .site-footer { padding: 42px 16px 28px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
