:root {
  --purple: #9610ff;
  --purple-dark: #6e00c7;
  --ink: #13102b;
  --ink-2: #211b3c;
  --lavender: #f5e7ff;
  --paper: #fbfafc;
  --white: #ffffff;
  --muted: #615d6f;
  --line: #ded9e5;
  --green: #3f8a22;
  --shadow: 0 18px 50px rgba(19, 16, 43, 0.1);
  --radius-lg: 28px;
  --radius-md: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
}

img, video, iframe { display: block; max-width: 100%; }
a { color: inherit; }
button, summary, a { -webkit-tap-highlight-color: transparent; }
p, h1, h2, h3, ul, ol, blockquote { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -0.035em; }
h1 { max-width: 780px; margin-bottom: 18px; font-size: clamp(2.35rem, 5.5vw, 4.65rem); }
h2 { margin-bottom: 16px; font-size: clamp(1.75rem, 3.6vw, 3.05rem); }
h3 { margin-bottom: 8px; font-size: 1.14rem; }
p { color: var(--muted); }

.skip-link {
  position: fixed;
  left: 14px;
  top: -80px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 10px;
}
.skip-link:focus { top: 14px; }

.container { width: min(calc(100% - 32px), var(--max)); margin-inline: auto; }
.narrow { max-width: 880px; }
.narrow-wide { max-width: 960px; }
.section { padding: 54px 0; }
.section-heading { max-width: 800px; margin-bottom: 22px; }
.section-heading .answer { max-width: 760px; }
.section-kicker,
.eyebrow {
  margin-bottom: 14px;
  color: var(--purple-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.section-ink .section-kicker,
.final-cta .section-kicker { color: #dcb8ff; }
.answer { font-size: 1.04rem; color: var(--ink); }
.lead-answer { font-size: clamp(1.08rem, 2vw, 1.35rem); line-height: 1.45; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(222, 217, 229, 0.82);
  background: rgba(251, 250, 252, 0.94);
  backdrop-filter: blur(14px);
}
.header-inner {
  display: flex;
  width: min(calc(100% - 28px), var(--max));
  min-height: 70px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.wordmark { display: inline-flex; align-items: center; gap: 10px; font-weight: 850; letter-spacing: -0.03em; }
.wordmark-mark {
  display: block;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
}
.header-actions { display: flex; align-items: center; gap: 10px; }
.rating-chip {
  display: none;
  padding: 7px 11px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  white-space: nowrap;
}
.mini-stars { color: var(--purple); letter-spacing: -2px; margin-right: 4px; }
.header-cta { opacity: 0; pointer-events: none; transform: translateY(-5px); }
.header-cta.is-visible { opacity: 1; pointer-events: auto; transform: none; }

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 13px 22px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 8px 0 var(--purple);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 11px 0 var(--purple); }
.button:focus-visible { outline: 3px solid var(--purple); outline-offset: 4px; }
.button-small { min-height: 38px; padding: 9px 14px; font-size: 0.82rem; box-shadow: none; }
.button-light { color: var(--ink); background: var(--white); border-color: var(--white); }
.center-cta { display: flex; justify-content: center; margin-top: 26px; }

.hero { position: relative; padding: 46px 0 58px; overflow: clip; }
.hero::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  left: -150px;
  top: 80px;
  background: var(--lavender);
  border: 2px solid #dcb8ff;
  border-radius: 50%;
}
.hero-grid { position: relative; display: grid; gap: 30px; align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero-lede { max-width: 690px; margin-bottom: 20px; font-size: clamp(1rem, 1.7vw, 1.17rem); }
.research-meta { display: flex; margin: -4px 0 20px; flex-wrap: wrap; gap: 6px 14px; color: var(--muted); font-size: 0.72rem; font-weight: 700; }
.research-meta span + span::before { content: "•"; margin-right: 14px; color: var(--purple); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
.risk-note { color: var(--muted); font-size: 0.9rem; font-weight: 650; }
.risk-note::before { content: "✓"; margin-right: 7px; color: var(--green); font-weight: 900; }
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 610px;
  margin-top: 28px;
  border-block: 1px solid var(--line);
}
.trust-row div { padding: 18px 12px 18px 0; }
.trust-row div + div { padding-left: 16px; border-left: 1px solid var(--line); }
.trust-row strong, .trust-row span { display: block; }
.trust-row strong { font-size: 1.22rem; }
.trust-row span { color: var(--muted); font-size: 0.76rem; }

.media-panel { position: relative; display: block; overflow: hidden; color: inherit; text-decoration: none; }
.hero-media {
  width: min(100%, 390px);
  justify-self: center;
  padding: 12px;
  background: var(--lavender);
  border: 2px solid var(--ink);
  border-radius: 38px 38px 130px 38px;
  box-shadow: 18px 18px 0 var(--purple);
  transform: rotate(1.5deg);
}
.hero-media img { width: 100%; height: clamp(360px, 58vh, 440px); object-fit: cover; object-position: center; border-radius: 27px 27px 104px 27px; }
.floating-badge {
  position: absolute;
  z-index: 3;
  padding: 9px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  box-shadow: 5px 5px 0 var(--ink);
}
.badge-top { top: 26px; left: 24px; }
.badge-bottom { right: 24px; bottom: 28px; }

.source-strip { color: var(--white); background: var(--ink); overflow: hidden; }
.source-ticker-layout { display: grid; grid-template-columns: max-content minmax(0, 1fr); align-items: center; }
.source-label {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 54px;
  padding-right: 24px;
  align-items: center;
  color: #cfc8dc;
  background: var(--ink);
  border-right: 1px solid #39334d;
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.source-ticker { min-width: 0; overflow: hidden; }
.source-track { display: flex; width: max-content; gap: 34px; padding: 18px 0; align-items: center; white-space: nowrap; will-change: transform; }
.source-track strong { display: inline-flex; align-items: center; gap: 34px; font-size: 0.87rem; }
.source-track strong::before { content: "•"; color: var(--purple); font-size: 0.75rem; }

.definition-section { background: var(--white); }
.fact-grid { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 26px; border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; }
.fact-grid div { padding: 16px; border-bottom: 1px solid var(--line); }
.fact-grid div:nth-child(odd) { border-right: 1px solid var(--line); }
.fact-grid div:nth-last-child(-n+2) { border-bottom: 0; }
.fact-grid span, .fact-grid strong { display: block; }
.fact-grid span { color: var(--muted); font-size: 0.76rem; }

.section-ink { color: var(--white); background: var(--ink); }
.section-ink p { color: #c9c3d5; }
.section-ink .answer { color: var(--white); }
.split-layout { display: grid; gap: 40px; align-items: center; }
.verdict-meter { border: 1px solid #48405f; border-radius: var(--radius-lg); overflow: hidden; }
.verdict-meter div { display: flex; padding: 18px 20px; align-items: center; justify-content: space-between; gap: 18px; border-bottom: 1px solid #48405f; }
.verdict-meter div:last-child { border-bottom: 0; }
.verdict-meter span { color: #c9c3d5; }
.verdict-meter strong { color: var(--white); }

.steps { display: grid; gap: 14px; padding: 0; margin: 0; list-style: none; }
.steps li {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  padding: 20px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--purple);
  border-radius: var(--radius-md);
  box-shadow: 7px 7px 0 var(--lavender);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.steps li:hover { transform: translateY(-3px); border-color: var(--purple); box-shadow: 9px 10px 0 #e7c9ff; }
.step-number {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.steps h3 { margin-top: 4px; }
.steps p { margin-bottom: 0; }

.memory-section { background: var(--white); }
.portrait-panel { max-width: 470px; margin-inline: auto; border-radius: 180px 24px 24px 24px; box-shadow: -14px 14px 0 var(--lavender); }
.portrait-panel img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: center top; }
.layer-list { margin-top: 24px; border-top: 1px solid var(--line); }
.layer-list div { display: grid; grid-template-columns: 110px 1fr; gap: 16px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.layer-list span { color: var(--purple-dark); font-weight: 800; }
.layer-list p { margin-bottom: 0; }
.tip { display: flex; gap: 14px; margin-top: 28px; padding: 18px 20px; background: var(--lavender); border-left: 5px solid var(--purple); border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.tip strong { min-width: max-content; color: var(--purple-dark); }
.tip p { margin-bottom: 0; color: var(--ink); }

.section-lavender { background: var(--lavender); }
.feature-grid, .audience-grid, .pricing-grid, .pros-grid { display: grid; gap: 16px; }
.feature-grid, .audience-grid, .pros-grid { align-items: start; }
.card { color: inherit; text-decoration: none; }
.feature-card, .audience-card, .price-card, .pros-card, .review-card {
  position: relative;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.feature-card:hover, .audience-card:hover, .price-card:hover, .pros-card:hover { transform: translateY(-4px); border-color: var(--purple); box-shadow: var(--shadow); }
.review-card:hover { border-color: var(--purple); box-shadow: 0 10px 28px rgba(19, 16, 43, 0.12); }
.feature-card p, .audience-card p, .price-card p { margin-bottom: 0; }
.feature-icon { display: inline-grid; width: 36px; height: 36px; margin-bottom: 20px; place-items: center; color: var(--white); background: var(--ink); border-radius: 50%; font-size: 0.72rem; font-weight: 800; }
.audience-card { border-top: 5px solid var(--purple); }
.audience-card span { display: block; margin-top: 12px; color: var(--purple-dark); font-size: 0.82rem; font-weight: 800; }
.not-for { margin-top: 16px; padding: 17px 19px; color: var(--muted); background: var(--white); border: 1px dashed var(--ink); border-radius: var(--radius-md); }
.not-for strong { color: var(--ink); }

.gallery-section { padding-top: 50px; background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.gallery-card { min-height: 250px; border-radius: 18px; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; }
.gallery-card::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 96px; background: rgba(19, 16, 43, 0.84); }
.gallery-card > span { position: absolute; z-index: 2; left: 18px; right: 18px; bottom: 18px; color: var(--white); }
.gallery-card strong, .gallery-card small { display: block; }
.gallery-card strong { font-size: 1.05rem; }
.gallery-card small { color: #d9d3e3; }

.ratings-layout { display: grid; gap: 18px; margin-top: 26px; align-items: start; }
.rating-cards { display: grid; gap: 12px; }
.source-rating-card { display: block; padding: 18px; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); text-decoration: none; transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease; }
.source-rating-card:hover { transform: translateY(-3px); border-color: var(--purple); box-shadow: 0 9px 22px rgba(19, 16, 43, 0.1); }
.source-rating-card.featured-rating { color: var(--white); background: var(--ink); border-color: var(--ink); box-shadow: 7px 7px 0 var(--purple); }
.source-rating-head { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.source-rating-head span { font-size: 0.9rem; font-weight: 850; }
.source-rating-head strong { font-size: 2rem; line-height: 1; }
.source-stars { margin-top: 8px; color: var(--purple); letter-spacing: 2px; }
.featured-rating .source-stars { color: #c277ff; }
.source-stars span { color: #cbc5d4; }
.source-rating-card p { margin: 10px 0 2px; color: inherit; font-size: 0.82rem; font-weight: 800; }
.source-rating-card small { color: var(--muted); }
.featured-rating small { color: #c9c3d5; }
.rating-progress-panel { padding: 20px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.progress-panel-head { padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.progress-panel-head .section-kicker { margin-bottom: 7px; }
.progress-panel-head h3 { margin: 0; }
.progress-panel-head > span { display: block; margin-top: 5px; color: var(--muted); font-size: 0.76rem; }
.rating-progress-item { padding: 16px 0; border-bottom: 1px solid var(--line); }
.progress-label { display: flex; margin-bottom: 8px; justify-content: space-between; gap: 14px; }
.progress-label strong { color: var(--ink); font-size: 0.87rem; }
.progress-label span { color: var(--purple-dark); font-size: 0.82rem; font-weight: 850; }
.rating-progress-item progress { display: block; width: 100%; height: 10px; overflow: hidden; appearance: none; background: var(--lavender); border: 0; border-radius: 999px; }
.rating-progress-item progress::-webkit-progress-bar { background: var(--lavender); border-radius: 999px; }
.rating-progress-item progress::-webkit-progress-value { background: var(--purple); border-radius: 999px; }
.rating-progress-item progress::-moz-progress-bar { background: var(--purple); border-radius: 999px; }
.rating-progress-item p { margin: 9px 0 0; color: var(--muted); font-size: 0.8rem; line-height: 1.45; }
.unmatched-source { display: flex; padding-top: 16px; flex-wrap: wrap; justify-content: space-between; gap: 6px 16px; }
.unmatched-source strong { color: var(--ink); font-size: 0.82rem; }
.unmatched-source span { color: var(--muted); font-size: 0.78rem; }
.comparison-wrap { margin-top: 26px; overflow-x: auto; border-radius: var(--radius-md); }
table { width: 100%; border-collapse: collapse; text-align: left; }
caption { padding: 0 0 12px; color: var(--muted); font-size: 0.78rem; text-align: left; }
th, td { padding: 16px; vertical-align: top; border-bottom: 1px solid var(--line); }
thead th { color: var(--ink); background: var(--lavender); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; }
tbody th { min-width: 160px; }

.comparison-section .section-heading { max-width: 900px; }
.comparison-table { min-width: 1050px; color: var(--ink); background: var(--white); }
.comparison-table caption { color: #c9c3d5; }
.comparison-table th, .comparison-table td { min-width: 150px; font-size: 0.87rem; }
.comparison-table th:first-child { position: sticky; left: 0; z-index: 2; color: var(--white); background: var(--ink-2); }
.comparison-table .featured { background: #f3e3ff; }
.comparison-note, .pricing-note { margin: 18px 0 0; font-size: 0.84rem; }

.pricing-grid { align-items: start; }
.price-card { display: flex; flex-direction: column; }
.price-card .plan { color: var(--purple-dark); font-weight: 850; }
.price { display: flex; margin-bottom: 8px !important; align-items: baseline; gap: 6px; color: var(--ink); }
.price strong { font-size: 2.25rem; line-height: 1; }
.price span { color: var(--muted); font-size: 0.78rem; }
.price-card ul { padding-left: 18px; color: var(--muted); }
.price-card li { margin-bottom: 8px; }
.price-card .text-link { margin-top: 14px; color: var(--purple-dark); font-weight: 850; }
.price-card.popular { border: 2px solid var(--purple); box-shadow: 9px 9px 0 var(--ink); }
.popular-label { display: inline-block; width: max-content; margin: -12px 0 18px; padding: 6px 10px; color: var(--white); background: var(--purple); border-radius: 999px; font-size: 0.7rem; font-weight: 850; }

.pros-section { background: var(--white); }
.pros-card { border-top: 7px solid var(--green); }
.pros-card.cons { border-top-color: #b33a46; }
.pros-label { color: var(--ink); font-size: 1.2rem; font-weight: 900; }
.pros-card ul { padding-left: 20px; margin: 18px 0 0; color: var(--muted); }
.pros-card li { margin-bottom: 12px; }

.review-section { overflow: hidden; background: var(--lavender); }
.review-heading { display: grid; gap: 26px; align-items: end; }
.review-score { display: flex; flex-direction: column; align-items: flex-start; }
.review-score strong { font-size: 2rem; }
.review-score > span { color: var(--muted); font-size: 0.8rem; }
.review-marquee { margin-top: 22px; padding: 8px 0 24px; overflow: hidden; cursor: grab; }
.review-track { display: flex; width: max-content; gap: 18px; align-items: flex-start; will-change: transform; }
.review-card { display: flex; width: min(82vw, 410px); min-height: 0; flex: 0 0 auto; flex-direction: column; }
.review-stars { color: var(--purple); letter-spacing: 2px; }
.review-stars span { color: #cbc5d4; }
.review-card blockquote { margin: 18px 0; color: var(--ink); font-size: 1rem; line-height: 1.55; }
.review-card cite { margin-top: 4px; color: var(--muted); font-style: normal; font-weight: 800; }

.stats-section { color: var(--white); background: var(--purple); }
.stats-section .section-kicker { color: var(--white); }
.stats-section p, .stats-section .answer { color: var(--white); }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255,255,255,0.42); border: 1px solid rgba(255,255,255,0.42); }
.stats-grid div { padding: 20px 16px; background: var(--purple); }
.stats-grid strong, .stats-grid span { display: block; }
.stats-grid strong { font-size: clamp(2rem, 6vw, 4rem); line-height: 1; }
.stats-grid span { margin-top: 10px; color: #f1dcff; font-size: 0.82rem; }

.updates-section { background: var(--white); }
.timeline { position: relative; padding-left: 28px; border-left: 2px solid var(--line); }
.timeline-item { position: relative; padding: 0 0 30px 12px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before { content: ""; position: absolute; left: -36px; top: 5px; width: 14px; height: 14px; background: var(--purple); border: 5px solid var(--white); border-radius: 50%; box-shadow: 0 0 0 1px var(--purple); }
.timeline-item time { color: var(--purple-dark); font-size: 0.78rem; font-weight: 850; }
.timeline-item h3 { margin-top: 6px; }
.timeline-item p { margin-bottom: 0; }

.safety-section { background: #f8f6ed; }
.boundary-grid { display: grid; gap: 12px; }
.boundary { padding: 18px; background: var(--white); border: 1px solid #ded9c9; border-radius: var(--radius-md); }
.boundary strong { color: var(--ink); }
.boundary p { margin: 8px 0 0; }

.checklist { padding: 0; margin: 0; list-style: none; }
.checklist li { display: grid; grid-template-columns: 42px 1fr; gap: 14px; padding: 17px 0; align-items: center; border-bottom: 1px solid #cfbddd; }
.checklist span { display: grid; width: 34px; height: 34px; place-items: center; color: var(--white); background: var(--ink); border-radius: 50%; font-size: 0.7rem; font-weight: 800; }

.methodology-section { background: var(--white); }
.method-list { padding: 0; margin: 0; list-style: none; border-top: 1px solid var(--line); }
.method-list li { padding: 13px 0; color: var(--muted); border-bottom: 1px solid var(--line); }
.method-list strong { color: var(--ink); }

.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 21px 46px 21px 0; color: var(--ink); 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: "+"; position: absolute; right: 4px; top: 17px; color: var(--purple); font-size: 1.6rem; line-height: 1; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { padding: 0 34px 22px 0; }
.faq-list details strong { color: var(--ink); }

.final-cta { padding: 64px 0; color: var(--white); background: var(--ink); }
.final-cta-inner { max-width: 900px; text-align: center; }
.final-cta h2 { max-width: 780px; margin-inline: auto; }
.final-cta p { max-width: 650px; margin-inline: auto; color: #c9c3d5; }
.final-cta .button { margin-top: 16px; background: var(--purple); border-color: var(--purple); box-shadow: 0 8px 0 var(--white); }
.trust-chips { display: flex; margin-top: 24px; flex-wrap: wrap; justify-content: center; gap: 9px; }
.trust-chips span { padding: 7px 11px; color: #ded8e8; border: 1px solid #4a435c; border-radius: 999px; font-size: 0.76rem; }

.site-footer { padding: 38px 0 76px; background: var(--white); border-top: 1px solid var(--line); }
.footer-grid { display: grid; gap: 18px; }
.footer-grid p { margin: 0; font-size: 0.85rem; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 12px; }
.footer-legal span { color: var(--muted); font-size: 0.8rem; }
.copyright { padding-top: 18px; border-top: 1px solid var(--line); }

.mobile-sticky-cta {
  position: fixed;
  z-index: 90;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--ink);
  border: 2px solid var(--white);
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 6px 0 var(--purple);
}

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 620ms ease, transform 620ms ease; }
.reveal.is-revealed { opacity: 1; transform: none; }

@media (min-width: 640px) {
  .rating-chip { display: flex; }
  .header-cta { display: inline-flex; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { gap: 16px; }
  .gallery-card { min-height: 300px; }
  .boundary-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(5, 1fr); }
  .review-heading { grid-template-columns: 1fr auto; }
}

@media (min-width: 900px) {
  .section { padding: 60px 0; }
  .hero { padding: 56px 0 66px; }
  .hero-grid { grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr); }
  .split-layout { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 78px; }
  .media-left > :first-child { order: 0; }
  .media-left > :last-child { order: 1; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
  .steps li { display: block; min-height: 0; padding: 20px; }
  .steps .step-number { margin-bottom: 22px; }
  .audience-grid, .pricing-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-card { min-height: 300px; }
  .pros-grid { grid-template-columns: repeat(2, 1fr); }
  .ratings-layout { grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr); gap: 24px; }
  .footer-grid { grid-template-columns: 1.1fr 1.4fr auto; align-items: start; }
  .footer-legal { justify-content: flex-end; }
  .copyright { grid-column: 1 / -1; }
  .mobile-sticky-cta { display: none; }
  .site-footer { padding-bottom: 48px; }
}

@media (max-width: 639px) {
  h1 { font-size: clamp(2.2rem, 10.5vw, 3.25rem); }
  .section { padding: 46px 0; }
  .hero { padding: 34px 0 44px; }
  .hero-grid { gap: 22px; }
  .hero-media img { height: 330px; }
  .site-header .wordmark > span:last-child { font-size: 0.9rem; }
  .research-meta { display: grid; gap: 3px; }
  .research-meta span + span::before { content: none; }
  .source-label { min-height: 50px; padding-right: 14px; font-size: 0.62rem; letter-spacing: 0.07em; }
  .source-track { gap: 24px; padding: 15px 0; }
  .source-track strong { gap: 24px; font-size: 0.8rem; }
  .header-actions .rating-chip { display: none; }
  .header-cta { display: none; }
  .trust-row { grid-template-columns: repeat(3, 1fr); }
  .trust-row div, .trust-row div + div { padding: 10px 6px; border-bottom: 0; }
  .trust-row div + div { border-left: 1px solid var(--line); }
  .trust-row strong { font-size: 1.02rem; }
  .trust-row span { font-size: 0.68rem; }
  .fact-grid { grid-template-columns: 1fr; }
  .fact-grid div, .fact-grid div:nth-child(odd) { border-right: 0; border-bottom: 1px solid var(--line); }
  .fact-grid div:last-child { border-bottom: 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-card { min-height: 250px; }
  .tip { flex-direction: column; gap: 4px; }
}

@media (max-width: 420px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card { min-height: 220px; }
  .rating-progress-panel { padding: 17px; }
  th, td { padding: 12px; }
  .comparison-table th, .comparison-table td { min-width: 138px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .review-track { transform: none !important; overflow-x: auto; }
  .source-ticker { overflow-x: auto; scrollbar-width: none; }
  .source-ticker::-webkit-scrollbar { display: none; }
  .source-track { transform: none !important; will-change: auto; }
}
