:root {
  color-scheme: light;
  --canvas: #f4f5f3;
  --surface: #ffffff;
  --surface-muted: #ecefec;
  --ink: #171a18;
  --muted: #626863;
  --faint: #626863;
  --line: #d7dbd7;
  --line-strong: #b8beb9;
  --accent: #176b52;
  --accent-soft: #e4f0eb;
  --own: #176b52;
  --own-soft: #e4f0eb;
  --paid: #a43f48;
  --paid-soft: #f7e8e9;
  --gifted: #85570f;
  --gifted-soft: #f5edda;
  --affiliate: #315f96;
  --affiliate-soft: #e8eef6;
  --not-sponsored: #486663;
  --not-sponsored-soft: #e7efee;
  --unknown: #5f6670;
  --unknown-soft: #eceef1;
  --focus: #006cc4;
  --danger: #a2323c;
  --danger-soft: #fae9ea;
  --radius: 6px;
  --content-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family:
    Pretendard,
    "Noto Sans KR",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 15px;
  line-height: 1.55;
  word-break: keep-all;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration-color: var(--line-strong);
  text-underline-offset: 3px;
}

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

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--focus) 32%, transparent);
  outline-offset: 2px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 9px 12px;
  transform: translateY(-160%);
  border-radius: var(--radius);
  background: var(--ink);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 96%, transparent);
  backdrop-filter: blur(10px);
}

.header-inner,
.page-shell,
.site-footer {
  width: min(100%, var(--content-width));
  margin: 0 auto;
}

.header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  min-height: 56px;
  padding: 0 24px;
  gap: 24px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 760;
  text-decoration: none;
}

.wordmark strong {
  padding: 2px 5px;
  border: 1px solid var(--accent);
  border-radius: 3px;
  color: var(--accent);
  font-size: 10px;
  line-height: 1.25;
}

.header-scope,
.data-status,
.header-nav {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-nav a {
  text-decoration: none;
}

.header-nav a:hover {
  color: var(--ink);
  text-decoration: underline;
}

.data-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.data-status::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gifted);
  content: "";
}

.data-status[data-tone="ready"]::before {
  background: var(--accent);
}

.data-status[data-tone="empty"]::before {
  background: var(--unknown);
}

.data-status[data-tone="error"]::before {
  background: var(--danger);
}

.page-shell {
  padding: 0 24px 64px;
}

.scope-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 56px;
  padding: 32px 0 24px;
}

.scope-copy {
  min-width: 0;
}

.kicker,
.section-label {
  margin: 0 0 5px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.scope-copy h1 {
  margin: 0;
  font-size: 30px;
  font-weight: 760;
  line-height: 1.22;
  letter-spacing: 0;
}

.scope-copy > p:last-child {
  max-width: 690px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.data-meta {
  display: grid;
  grid-template-columns: repeat(3, auto);
  margin: 0;
  border-left: 1px solid var(--line);
}

.data-meta div {
  min-width: 118px;
  padding: 2px 16px;
  border-right: 1px solid var(--line);
}

.data-meta dt,
.summary-grid dt,
.product-facts dt,
.breakdown-grid dt {
  color: var(--muted);
  font-size: 11px;
}

.data-meta dd {
  margin: 5px 0 0;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.system-state,
.noscript-state {
  display: grid;
  place-content: center;
  min-height: 260px;
  padding: 32px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: var(--surface);
  text-align: center;
}

.system-state strong {
  display: block;
  font-size: 17px;
}

.system-state span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
}

.system-state[data-tone="error"] {
  border-color: color-mix(in srgb, var(--danger) 35%, var(--line));
  background: var(--danger-soft);
}

.system-state[data-tone="empty"] {
  background: var(--surface-muted);
}

.research-progress-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(320px, 1.2fr) minmax(190px, 0.65fr);
  align-items: stretch;
  min-width: 0;
  margin-bottom: 16px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: var(--surface-muted);
}

.research-scope-copy,
.caption-progress-block,
.underwear-signal-block {
  min-width: 0;
  padding: 14px 16px;
}

.research-scope-copy,
.caption-progress-block {
  border-right: 1px solid var(--line);
}

.research-scope-copy h2 {
  margin: 0;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.3;
  letter-spacing: 0;
}

.research-scope-copy > p:last-child,
.caption-progress-block p,
.underwear-signal-block p,
.underwear-signal-block small {
  overflow-wrap: anywhere;
}

.research-scope-copy > p:last-child {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.research-scope-copy > p:last-child strong {
  color: var(--ink);
}

.caption-progress-block {
  display: grid;
  align-content: center;
  gap: 7px;
}

.caption-progress-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  min-width: 0;
  gap: 12px;
}

.caption-progress-heading label,
.underwear-signal-block p {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.caption-progress-heading strong {
  flex: 0 0 auto;
  font-size: 15px;
  font-variant-numeric: tabular-nums;
}

.caption-progress-block progress {
  width: 100%;
  height: 8px;
  overflow: hidden;
  border: 0;
  border-radius: 2px;
  appearance: none;
  background: var(--line);
}

.caption-progress-block progress::-webkit-progress-bar {
  background: var(--line);
}

.caption-progress-block progress::-webkit-progress-value {
  background: var(--accent);
}

.caption-progress-block progress::-moz-progress-bar {
  background: var(--accent);
}

.caption-progress-block p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.underwear-signal-block {
  display: grid;
  align-content: center;
}

.underwear-signal-block p {
  margin: 0;
}

.underwear-signal-block strong {
  margin-top: 2px;
  color: var(--affiliate);
  font-size: 22px;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}

.underwear-signal-block small {
  display: block;
  margin-top: 3px;
  color: var(--faint);
  font-size: 10px;
  line-height: 1.45;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  min-width: 0;
  gap: 16px;
}

.section-heading h2,
.evidence-heading h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 750;
  line-height: 1.3;
  letter-spacing: 0;
}

.section-heading > p,
.evidence-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.summary-section {
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: var(--surface);
}

.summary-heading {
  padding: 13px 16px 11px;
  border-bottom: 1px solid var(--line);
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: 0;
}

.summary-metric {
  min-width: 0;
  padding: 13px 15px 15px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.summary-metric:nth-child(6n) {
  border-right: 0;
}

.summary-metric:nth-last-child(-n + 6) {
  border-bottom: 0;
}

.summary-metric dd {
  margin: 3px 0 0;
  font-size: 24px;
  font-weight: 760;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}

.summary-metric small {
  display: block;
  margin-top: 3px;
  overflow: hidden;
  color: var(--faint);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.summary-metric[data-kind="own"] dd {
  color: var(--own);
}

.summary-metric[data-kind="paid"] dd {
  color: var(--paid);
}

.summary-metric[data-kind="gifted"] dd {
  color: var(--gifted);
}

.summary-metric[data-kind="affiliate"] dd {
  color: var(--affiliate);
}

.summary-metric[data-kind="notSponsored"] dd {
  color: var(--not-sponsored);
}

.summary-metric[data-kind="unknown"] dd {
  color: var(--unknown);
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  align-items: end;
  gap: 16px 24px;
  padding: 16px 0;
}

.search-control {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  max-width: 520px;
  gap: 10px;
}

.search-control label,
.disclosure-filter legend {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.search-control input {
  width: 100%;
  min-width: 0;
  height: 38px;
  padding: 7px 11px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  outline: none;
}

.search-control input::placeholder {
  color: #626863;
  opacity: 1;
}

.search-control input:focus {
  border-color: var(--focus);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--focus) 14%, transparent);
}

.disclosure-filter {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
  gap: 10px;
}

.filter-buttons {
  display: inline-flex;
  min-width: 0;
}

.filter-buttons button {
  min-height: 38px;
  padding: 7px 11px;
  border: 1px solid var(--line-strong);
  border-right: 0;
  border-radius: 0;
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  white-space: nowrap;
}

.filter-buttons button:first-child {
  border-radius: var(--radius) 0 0 var(--radius);
}

.filter-buttons button:last-child {
  border-right: 1px solid var(--line-strong);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.filter-buttons button:hover {
  background: var(--surface-muted);
  color: var(--ink);
}

.filter-buttons button[aria-pressed="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: #ffffff;
}

.filter-buttons button[aria-pressed="true"] + button {
  border-left-color: var(--ink);
}

.filter-result {
  grid-column: 1 / -1;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.data-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1.72fr);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: var(--surface);
}

.ranking-pane {
  min-width: 0;
  border-right: 1px solid var(--line-strong);
}

.detail-pane {
  min-width: 0;
  padding: 0 20px 18px;
  outline: none;
}

.pane-heading,
.evidence-heading {
  min-height: 62px;
  padding: 13px 16px 12px;
  border-bottom: 1px solid var(--line);
}

.evidence-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-right: 0;
  padding-left: 0;
}

.table-wrap {
  width: 100%;
  overflow: visible;
}

.ranking-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.ranking-table th {
  height: 42px;
  padding: 7px 8px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
  text-align: right;
  line-height: 1.3;
  overflow-wrap: anywhere;
  white-space: normal;
}

.ranking-table th:first-child {
  width: 49px;
  text-align: center;
}

.ranking-table th:nth-child(2) {
  width: auto;
  text-align: left;
}

.ranking-table th:nth-child(3),
.ranking-table th:nth-child(4) {
  width: 76px;
}

.ranking-table td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--line);
  font-variant-numeric: tabular-nums;
  text-align: right;
  vertical-align: middle;
}

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

.ranking-table tbody tr[data-selected="true"] {
  background: var(--accent-soft);
  box-shadow: inset 3px 0 0 var(--accent);
}

.ranking-table tbody tr:hover {
  background: color-mix(in srgb, var(--accent-soft) 56%, var(--surface));
}

.ranking-table .rank-cell {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  text-align: center;
}

.ranking-table .product-cell {
  min-width: 0;
  padding-right: 4px;
  text-align: left;
}

.product-select {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  gap: 9px;
  text-align: left;
}

.product-select-copy {
  min-width: 0;
}

.product-select-copy span,
.product-select-copy strong {
  display: block;
  overflow-wrap: anywhere;
}

.product-select-copy span {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 10px;
}

.product-select-copy strong {
  font-size: 13px;
  font-weight: 720;
  line-height: 1.4;
}

.product-image {
  position: relative;
  display: grid;
  overflow: hidden;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.product-image-list {
  width: 48px;
  aspect-ratio: 4 / 5;
}

.product-image-detail {
  width: 108px;
  aspect-ratio: 4 / 5;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-image-fallback {
  padding: 5px;
  color: var(--faint);
  font-size: 9px;
  line-height: 1.25;
  text-align: center;
}

.count-cell {
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.count-cell small {
  color: var(--faint);
  font-size: 10px;
  font-weight: 500;
}

.detail-header {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr) auto;
  align-items: start;
  gap: 16px;
  padding: 17px 0 16px;
  border-bottom: 1px solid var(--line);
}

.detail-rank {
  margin: 0 0 3px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}

.detail-title {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 22px;
  font-weight: 760;
  line-height: 1.3;
  letter-spacing: 0;
}

.detail-brand {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.product-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(68px, auto));
  align-items: end;
  margin: 0;
  border-left: 1px solid var(--line);
}

.product-facts div {
  padding: 3px 14px;
  border-right: 1px solid var(--line);
}

.product-facts dd,
.breakdown-grid dd {
  margin: 2px 0 0;
  font-weight: 760;
  font-variant-numeric: tabular-nums;
}

.breakdown-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-column: 1 / -1;
  margin: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.breakdown-grid div {
  min-width: 0;
  padding: 9px 11px;
  border-right: 1px solid var(--line);
}

.breakdown-grid div:last-child {
  border-right: 0;
}

.breakdown-grid dd {
  font-size: 14px;
}

.breakdown-grid [data-kind="own"] dd {
  color: var(--own);
}

.breakdown-grid [data-kind="paid"] dd {
  color: var(--paid);
}

.breakdown-grid [data-kind="gifted"] dd {
  color: var(--gifted);
}

.breakdown-grid [data-kind="affiliate"] dd {
  color: var(--affiliate);
}

.breakdown-grid [data-kind="notSponsored"] dd {
  color: var(--not-sponsored);
}

.breakdown-grid [data-kind="unknown"] dd {
  color: var(--unknown);
}

.video-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.evidence-intro {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.creator-evidence-group {
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  background: #ffffff;
}

.creator-evidence-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: #f7f8f5;
}

.creator-evidence-name,
.creator-evidence-summary,
.creator-evidence-period {
  margin: 0;
}

.creator-evidence-name {
  font-size: 15px;
}

.creator-evidence-summary {
  margin-top: 3px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.creator-evidence-period {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.creator-history-button {
  flex: 0 0 auto;
  padding: 8px 10px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-size: 11px;
  font-weight: 750;
  cursor: pointer;
}

.creator-history-button:hover,
.creator-history-button:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

.creator-video-list {
  padding: 0 16px;
  margin: 0;
  list-style: none;
}

.video-item {
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr);
  min-width: 0;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  gap: 15px;
}

.video-item:last-child {
  border-bottom: 0;
}

.video-thumb {
  position: relative;
  align-self: start;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 16 / 9;
  background: #dfe2df;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-thumb::after {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid #ffffff;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.7));
  content: "";
  pointer-events: none;
}

.thumb-fallback {
  display: grid;
  width: 100%;
  height: 100%;
  place-content: center;
  color: var(--muted);
  font-size: 11px;
}

.video-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.video-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 7px;
  gap: 5px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 21px;
  padding: 2px 6px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
}

.badge[data-kind="own"] {
  border-color: color-mix(in srgb, var(--own) 35%, var(--line));
  background: var(--own-soft);
  color: var(--own);
}

.badge[data-kind="paid"] {
  border-color: color-mix(in srgb, var(--paid) 35%, var(--line));
  background: var(--paid-soft);
  color: var(--paid);
}

.badge[data-kind="gifted"] {
  border-color: color-mix(in srgb, var(--gifted) 35%, var(--line));
  background: var(--gifted-soft);
  color: var(--gifted);
}

.badge[data-kind="affiliate"] {
  border-color: color-mix(in srgb, var(--affiliate) 30%, var(--line));
  background: var(--affiliate-soft);
  color: var(--affiliate);
}

.badge[data-kind="notSponsored"] {
  border-color: color-mix(in srgb, var(--not-sponsored) 30%, var(--line));
  background: var(--not-sponsored-soft);
  color: var(--not-sponsored);
}

.badge[data-kind="unknown"] {
  border-color: color-mix(in srgb, var(--unknown) 30%, var(--line));
  background: var(--unknown-soft);
  color: var(--unknown);
}

.badge.window-out {
  border-style: dashed;
  background: transparent;
}

.video-title {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 15px;
  font-weight: 720;
  line-height: 1.42;
  letter-spacing: 0;
}

.video-title a {
  text-decoration: none;
}

.video-title a:hover {
  text-decoration: underline;
}

.video-byline {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.video-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 8px;
  gap: 10px;
}

.video-footer span {
  color: var(--faint);
  font-size: 10px;
}

.source-link {
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 11px;
  font-weight: 750;
  text-decoration: underline;
}

.source-link::after {
  margin-left: 3px;
  content: "↗";
}

.pane-empty {
  margin: 0;
  padding: 36px 16px;
  color: var(--muted);
  text-align: center;
}

.creator-timeline {
  margin-top: 44px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: var(--surface);
  scroll-margin-top: 72px;
}

.timeline-heading {
  align-items: start;
  padding: 14px 16px 13px;
  border-bottom: 1px solid var(--line);
}

.timeline-heading > div {
  min-width: 0;
}

.timeline-heading > p {
  max-width: 440px;
  padding-top: 3px;
  text-align: right;
}

.timeline-intro {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.timeline-controls {
  display: grid;
  grid-template-columns: minmax(280px, 520px) auto;
  align-items: end;
  justify-content: space-between;
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  gap: 16px 24px;
}

.timeline-select-control {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  min-width: 0;
  gap: 10px;
}

.timeline-select-control label,
.timeline-period-filter legend {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.timeline-select-control select {
  width: 100%;
  min-width: 0;
  height: 38px;
  padding: 7px 32px 7px 11px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  outline: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.timeline-select-control select:focus {
  border-color: var(--focus);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--focus) 14%, transparent);
}

.timeline-period-filter {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
  gap: 10px;
}

.segmented-buttons {
  display: inline-flex;
  min-width: 0;
}

.segmented-buttons button {
  min-width: 94px;
  min-height: 38px;
  padding: 7px 12px;
  border: 1px solid var(--line-strong);
  border-right: 0;
  border-radius: 0;
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  white-space: nowrap;
}

.segmented-buttons button:first-child {
  border-radius: var(--radius) 0 0 var(--radius);
}

.segmented-buttons button:last-child {
  border-right: 1px solid var(--line-strong);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.segmented-buttons button:hover {
  background: var(--surface-muted);
  color: var(--ink);
}

.segmented-buttons button[aria-pressed="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: #ffffff;
}

.segmented-buttons button[aria-pressed="true"] + button {
  border-left-color: var(--ink);
}

.timeline-result-row {
  padding: 9px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-muted);
}

.timeline-result-row p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.timeline-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline-event {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  min-width: 0;
  padding: 17px 16px 18px;
  border-bottom: 1px solid var(--line);
  gap: 18px;
}

.timeline-event:last-child {
  border-bottom: 0;
}

.timeline-date {
  color: var(--muted);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  white-space: nowrap;
}

.timeline-event-copy {
  min-width: 0;
}

.timeline-event-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  min-width: 0;
  gap: 16px;
}

.timeline-product {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  align-items: baseline;
  margin: 0;
  gap: 5px 8px;
}

.timeline-brand {
  color: var(--accent);
  font-size: 11px;
  font-weight: 750;
}

.timeline-product strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 14px;
  line-height: 1.4;
}

.timeline-badges {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 5px;
}

.timeline-video-title {
  margin: 7px 0 0;
  overflow-wrap: anywhere;
  font-size: 14px;
  font-weight: 620;
  line-height: 1.5;
  letter-spacing: 0;
}

.timeline-event-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: 10px;
  gap: 12px;
}

.timeline-evidence-type,
.timeline-link-unavailable {
  color: var(--faint);
  font-size: 10px;
}

.timeline-source-link {
  white-space: nowrap;
}

.reader-notes {
  padding-top: 44px;
  scroll-margin-top: 72px;
}

.notes-heading {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-strong);
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line-strong);
}

.notes-grid article {
  min-width: 0;
  padding: 17px 18px 18px 0;
  border-right: 1px solid var(--line);
}

.notes-grid article + article {
  padding-left: 18px;
}

.notes-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.notes-grid h3 {
  margin: 0;
  font-size: 13px;
  font-weight: 750;
}

.notes-grid p,
.methodology-note {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.notes-grid strong {
  color: var(--ink);
}

.methodology-note {
  padding: 11px 0 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  padding: 20px 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.site-footer p {
  margin: 0;
}

.site-footer strong {
  color: var(--ink);
}

.site-footer a {
  font-weight: 700;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.noscript-state {
  position: fixed;
  z-index: 50;
  right: 16px;
  bottom: 16px;
  left: 16px;
  min-height: 0;
  border: 1px solid var(--danger);
  border-radius: var(--radius);
  background: var(--danger-soft);
}

.error-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
}

.error-main {
  width: min(100%, 520px);
  padding: 30px 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.error-main .wordmark {
  margin-bottom: 32px;
}

.error-code {
  margin: 0 0 5px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.error-main h1 {
  margin: 0;
  font-size: 28px;
  letter-spacing: 0;
}

.error-main > p:not(.error-code) {
  margin: 9px 0 24px;
  color: var(--muted);
}

.error-main > a {
  color: var(--accent);
  font-weight: 750;
}

@media (max-width: 1040px) {
  .header-inner,
  .page-shell,
  .site-footer {
    width: 100%;
  }

  .scope-band {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 18px;
  }

  .data-meta {
    justify-self: start;
  }

  .summary-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .summary-metric {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .summary-metric:nth-child(3n) {
    border-right: 0;
  }

  .summary-metric:nth-last-child(-n + 6) {
    border-bottom: 1px solid var(--line);
  }

  .summary-metric:nth-last-child(-n + 3) {
    border-bottom: 0;
  }

  .filter-bar {
    grid-template-columns: 1fr;
  }

  .search-control {
    max-width: none;
  }

  .disclosure-filter {
    justify-self: start;
  }

  .data-layout {
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  }

  .video-item {
    grid-template-columns: 148px minmax(0, 1fr);
  }

  .notes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .notes-grid article:nth-child(2) {
    padding-right: 0;
    border-right: 0;
  }

  .notes-grid article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .notes-grid article:nth-child(3) {
    padding-left: 0;
  }
}

@media (max-width: 760px) {
  html {
    scroll-behavior: auto;
  }

  .site-header {
    position: static;
  }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 52px;
    padding: 0 16px;
    gap: 12px;
  }

  .header-scope,
  .header-nav {
    display: none;
  }

  .page-shell {
    padding: 0 16px 48px;
  }

  .scope-band {
    padding: 24px 0 20px;
  }

  .scope-copy h1 {
    font-size: 26px;
  }

  .data-meta {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .data-meta div {
    min-width: 0;
    padding: 2px 9px;
  }

  .data-meta dd {
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .research-progress-band {
    grid-template-columns: minmax(0, 1fr);
  }

  .research-scope-copy,
  .caption-progress-block {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .summary-heading,
  .timeline-heading,
  .notes-heading {
    align-items: start;
    flex-direction: column;
    gap: 5px;
  }

  .timeline-heading > p {
    max-width: none;
    padding-top: 0;
    text-align: left;
  }

  .summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .summary-metric,
  .summary-metric:nth-child(3n),
  .summary-metric:nth-last-child(-n + 6) {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .summary-metric:nth-child(2n) {
    border-right: 0;
  }

  .summary-metric:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .summary-metric:last-child {
    grid-column: auto;
    border-right: 0;
    border-bottom: 0;
  }

  .filter-bar {
    gap: 13px;
  }

  .search-control,
  .disclosure-filter {
    grid-template-columns: 1fr;
    align-items: stretch;
    width: 100%;
    gap: 6px;
  }

  .filter-buttons {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .filter-buttons button,
  .filter-buttons button:first-child,
  .filter-buttons button:last-child {
    min-width: 0;
    border: 1px solid var(--line-strong);
    border-radius: 0;
    white-space: normal;
  }

  .filter-buttons button:first-child {
    border-radius: var(--radius) 0 0 0;
  }

  .filter-buttons button:nth-child(3) {
    border-radius: 0 var(--radius) 0 0;
  }

  .filter-buttons button:nth-child(4) {
    border-radius: 0;
  }

  .filter-buttons button:last-child {
    grid-column: 1 / 4;
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .data-layout {
    grid-template-columns: 1fr;
  }

  .ranking-pane {
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }

  .ranking-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .ranking-table tbody,
  .ranking-table tr {
    display: block;
    width: 100%;
  }

  .ranking-table tbody tr {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 58px 50px;
    align-items: center;
  }

  .ranking-table td {
    display: block;
    min-width: 0;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .ranking-table .count-cell::before {
    display: block;
    margin-bottom: 1px;
    color: var(--faint);
    content: attr(data-label);
    font-size: 9px;
    font-weight: 500;
  }

  .detail-pane {
    padding-right: 14px;
    padding-left: 14px;
    scroll-margin-top: 8px;
  }

  .timeline-controls {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 13px;
  }

  .timeline-select-control,
  .timeline-period-filter {
    grid-template-columns: 1fr;
    align-items: stretch;
    width: 100%;
    gap: 6px;
  }

  .segmented-buttons {
    width: 100%;
  }

  .segmented-buttons button {
    min-width: 0;
    flex: 1 1 50%;
  }

  .timeline-event {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
  }

  .video-item {
    grid-template-columns: 164px minmax(0, 1fr);
  }

  .notes-grid {
    grid-template-columns: 1fr;
  }

  .notes-grid article,
  .notes-grid article + article,
  .notes-grid article:nth-child(3) {
    padding: 15px 0;
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .notes-grid article:first-child {
    border-top: 0;
  }

  .site-footer {
    padding-right: 16px;
    padding-left: 16px;
    gap: 16px;
    flex-wrap: wrap;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 14px;
  }

  .creator-evidence-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .creator-history-button {
    width: 100%;
  }

  .data-status {
    font-size: 10px;
  }

  .scope-copy > p:last-child {
    font-size: 13px;
  }

  .data-meta dt {
    font-size: 10px;
  }

  .data-meta dd {
    font-size: 11px;
  }

  .system-state {
    min-height: 220px;
    padding: 24px 18px;
  }

  .summary-metric {
    padding-right: 12px;
    padding-left: 12px;
  }

  .summary-metric dd {
    font-size: 22px;
  }

  .pane-heading {
    min-height: 58px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .detail-header {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 11px;
  }

  .product-image-detail {
    width: 88px;
  }

  .product-facts {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .product-facts div {
    padding: 7px 12px 0 0;
    border-right: 0;
  }

  .breakdown-grid div {
    padding-right: 7px;
    padding-left: 7px;
  }

  .breakdown-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .breakdown-grid div:nth-child(3n) {
    border-right: 0;
  }

  .breakdown-grid div:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }

  .breakdown-grid dt {
    font-size: 9px;
  }

  .video-item {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .video-thumb {
    max-width: none;
  }

  .video-footer {
    align-items: start;
  }

  .timeline-heading,
  .timeline-controls,
  .timeline-result-row,
  .timeline-event {
    padding-right: 12px;
    padding-left: 12px;
  }

  .timeline-event {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .timeline-event-heading {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }

  .timeline-badges {
    justify-content: flex-start;
  }

  .timeline-event-footer {
    align-items: start;
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* Human Proof editorial redesign */
:root {
  --canvas: #faf8f5;
  --surface: #fffdfa;
  --surface-muted: #f2eeea;
  --ink: #11110f;
  --muted: #67625d;
  --faint: #77716b;
  --line: #ddd7d0;
  --line-strong: #c9c1b9;
  --accent: #8f203d;
  --accent-soft: #f4e8eb;
  --own: #18734f;
  --own-soft: #e8f1ec;
  --paid: #8f203d;
  --content-width: 1440px;
}

body {
  background: var(--canvas);
  font-size: 15px;
}

.site-header {
  background: color-mix(in srgb, var(--canvas) 97%, transparent);
  backdrop-filter: blur(14px);
}

.header-inner,
.page-shell,
.site-footer {
  width: min(100%, var(--content-width));
}

.header-inner {
  grid-template-columns: auto minmax(0, 1fr) minmax(240px, 320px);
  min-height: 64px;
  padding: 0 32px;
  gap: 32px;
}

.wordmark {
  gap: 10px;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.wordmark strong {
  padding: 0;
  border: 0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0;
}

.header-nav {
  align-self: stretch;
  justify-content: center;
  gap: 44px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.header-nav a {
  display: grid;
  position: relative;
  place-items: center;
}

.header-nav a:first-child::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: "";
}

.header-nav a:hover {
  color: var(--accent);
  text-decoration: none;
}

.header-search-control input {
  width: 100%;
  height: 42px;
  padding: 9px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: var(--surface);
  color: var(--ink);
  outline: none;
}

.header-search-control input::placeholder {
  color: #8b8580;
  opacity: 1;
}

.header-search-control input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 12%, transparent);
}

.page-shell {
  padding: 0 40px 80px;
}

.consumer-intro {
  padding: 38px 0 22px;
}

.consumer-intro h1 {
  margin: 0;
  font-size: clamp(34px, 3.1vw, 42px);
  font-weight: 790;
  line-height: 1.18;
  letter-spacing: -0.045em;
}

.consumer-intro > p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.consumer-trust-line {
  display: flex;
  align-items: center;
  margin-top: 20px;
  color: var(--muted);
  font-size: 13px;
  gap: 0;
}

.consumer-trust-line > * {
  position: relative;
  padding: 0 18px;
}

.consumer-trust-line > *:first-child {
  padding-left: 0;
}

.consumer-trust-line > * + *::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 13px;
  transform: translateY(-50%);
  background: var(--line-strong);
  content: "";
}

.consumer-trust-line strong {
  color: var(--ink);
  font-weight: 750;
}

.consumer-trust-line a {
  text-decoration: none;
}

.consumer-trust-line a:hover {
  color: var(--accent);
}

.editorial-spotlight {
  display: grid;
  grid-template-columns: minmax(270px, 0.75fr) minmax(390px, 1.05fr) minmax(350px, 1fr);
  align-items: stretch;
  min-height: 360px;
  border-bottom: 1px solid var(--line);
  gap: 28px;
}

.spotlight-copy {
  display: flex;
  align-items: flex-start;
  padding: 34px 8px 30px 6px;
  flex-direction: column;
}

.spotlight-rank-line {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  gap: 18px;
}

.spotlight-rank-line > span {
  color: var(--muted);
  font-size: 13px;
}

.spotlight-rank {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 58px;
  font-weight: 400;
  line-height: 0.9;
}

.spotlight-brand {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.spotlight-title {
  max-width: 340px;
  margin: 0;
  overflow-wrap: anywhere;
  font-size: clamp(28px, 2.6vw, 36px);
  font-weight: 780;
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.spotlight-description {
  max-width: 320px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.editorial-product-button {
  min-height: 48px;
  padding: 11px 18px;
  border: 1px solid var(--accent);
  border-radius: 3px;
  margin-top: auto;
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  font-weight: 720;
}

.editorial-product-button:hover,
.editorial-product-button:focus-visible {
  background: var(--accent);
  color: #ffffff;
}

.spotlight-media {
  min-width: 0;
  padding-bottom: 10px;
}

.product-image-spotlight {
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: 0;
  background: #f3efeb;
}

.product-image-spotlight img {
  object-fit: contain;
}

.spotlight-mentions {
  min-width: 0;
  padding: 0 0 14px 24px;
  border-left: 1px solid var(--line);
}

.spotlight-mentions > h2 {
  margin: -3px 0 2px;
  font-size: 17px;
  font-weight: 760;
}

.spotlight-mention-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.spotlight-mention-list li {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  align-items: center;
  min-height: 100px;
  border-bottom: 1px solid var(--line);
  gap: 14px;
}

.mention-preview {
  display: grid;
  width: 88px;
  height: 58px;
  overflow: hidden;
  place-items: center;
  border-radius: 3px;
  background: var(--surface-muted);
}

.mention-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mention-preview-fallback {
  color: var(--muted);
  font-size: 11px;
}

.spotlight-mention-copy {
  min-width: 0;
}

.spotlight-mention-topline {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  min-width: 0;
  gap: 10px;
}

.spotlight-mention-topline strong {
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.spotlight-mention-topline span,
.spotlight-mention-copy > p {
  color: var(--muted);
  font-size: 11px;
}

.spotlight-mention-copy > p {
  display: -webkit-box;
  margin: 3px 0 5px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.spotlight-disclosure {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.spotlight-disclosure[data-kind="own"] {
  color: var(--own);
}

.spotlight-disclosure[data-kind="paid"] {
  color: var(--paid);
}

.spotlight-mentions > .editorial-product-button {
  min-height: 38px;
  padding: 6px 0;
  border: 0;
  margin-top: 5px;
  font-size: 12px;
}

.spotlight-mentions > .editorial-product-button:hover,
.spotlight-mentions > .editorial-product-button:focus-visible {
  background: transparent;
  color: var(--ink);
  text-decoration: underline;
}

.editorial-ranking {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-strong);
}

.editorial-ranking-row {
  margin: 0;
  border-bottom: 1px solid var(--line);
}

.editorial-ranking-select {
  display: grid;
  grid-template-columns: 44px 214px minmax(220px, 1fr) minmax(360px, 0.95fr) 70px;
  align-items: center;
  width: 100%;
  min-height: 112px;
  padding: 8px 8px 8px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  gap: 20px;
  text-align: left;
}

.editorial-ranking-select:hover {
  background: color-mix(in srgb, var(--accent-soft) 42%, transparent);
}

.editorial-row-rank {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  text-align: center;
}

.product-image-editorial-row {
  width: 214px;
  height: 96px;
  border: 0;
  border-radius: 0;
  background: #f2eeea;
}

.product-image-editorial-row img {
  object-fit: contain;
}

.editorial-ranking-identity {
  min-width: 0;
}

.editorial-row-brand {
  color: var(--muted);
  font-size: 11px;
}

.editorial-ranking-identity h3 {
  margin: 3px 0 0;
  overflow-wrap: anywhere;
  font-size: 18px;
  font-weight: 760;
  line-height: 1.4;
}

.editorial-creator-names {
  margin: 6px 0 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.editorial-row-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(72px, 1fr));
  margin: 0;
}

.editorial-metric {
  min-width: 0;
  padding: 0 14px;
  border-left: 1px solid var(--line);
}

.editorial-metric dt {
  color: var(--muted);
  font-size: 11px;
}

.editorial-metric dd {
  margin: 2px 0 0;
  font-size: 22px;
  font-weight: 680;
  font-variant-numeric: tabular-nums;
}

.editorial-metric[data-kind="own"] dd {
  color: var(--own);
}

.editorial-metric[data-kind="paid"] dd {
  color: var(--paid);
}

.editorial-row-action {
  color: var(--accent);
  font-size: 11px;
  font-weight: 750;
  text-align: right;
}

.ranking-cta {
  display: grid;
  width: min(100%, 248px);
  min-height: 58px;
  place-items: center;
  margin: 20px auto 0;
  border-radius: 3px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 760;
  text-decoration: none;
}

.ranking-cta:hover,
.ranking-cta:focus-visible {
  background: #74172f;
}

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 68px 0 16px;
  gap: 18px;
}

.disclosure-filter {
  grid-template-columns: auto minmax(0, 1fr);
}

.filter-buttons {
  flex-wrap: wrap;
}

.filter-result {
  flex: 0 0 auto;
  margin: 0;
}

.data-layout {
  border-color: var(--line-strong);
  background: var(--surface);
}

.ranking-table tbody tr[data-selected="true"] {
  background: var(--accent-soft);
  box-shadow: inset 3px 0 0 var(--accent);
}

.ranking-table tbody tr:hover {
  background: color-mix(in srgb, var(--accent-soft) 50%, var(--surface));
}

.section-label,
.detail-rank {
  color: var(--accent);
}

.creator-timeline,
.reader-notes {
  margin-top: 72px;
}

.site-footer {
  border-top-color: var(--line);
  background: var(--canvas);
}

@media (max-width: 1120px) {
  .header-inner {
    padding-right: 28px;
    padding-left: 28px;
  }

  .page-shell {
    padding-right: 28px;
    padding-left: 28px;
  }

  .editorial-spotlight {
    grid-template-columns: minmax(250px, 0.8fr) minmax(390px, 1.2fr);
  }

  .spotlight-mentions {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-column: 1 / -1;
    align-items: center;
    padding: 18px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
    gap: 18px;
  }

  .spotlight-mentions > h2 {
    margin: 0;
  }

  .spotlight-mention-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .spotlight-mention-list li {
    padding: 0 12px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .spotlight-mentions > .editorial-product-button {
    margin: 0;
  }

  .editorial-ranking-select {
    grid-template-columns: 40px 170px minmax(180px, 1fr) minmax(320px, 0.9fr) 56px;
    gap: 14px;
  }

  .product-image-editorial-row {
    width: 170px;
  }
}

@media (max-width: 820px) {
  .header-inner {
    grid-template-columns: auto minmax(0, 1fr);
    min-height: 62px;
    gap: 18px;
  }

  .wordmark strong {
    display: none;
  }

  .header-nav {
    position: absolute;
    top: 62px;
    right: 0;
    left: 0;
    height: 44px;
    border-bottom: 1px solid var(--line);
    background: var(--canvas);
    gap: 38px;
  }

  .header-search-control {
    min-width: 0;
  }

  .page-shell {
    padding-top: 44px;
  }

  .editorial-spotlight {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .spotlight-copy {
    min-height: 290px;
    padding-right: 0;
    padding-left: 0;
  }

  .spotlight-media {
    padding: 0;
  }

  .product-image-spotlight {
    height: min(92vw, 440px);
  }

  .spotlight-mentions {
    display: block;
    padding: 26px 0;
  }

  .spotlight-mention-list {
    display: block;
    margin-top: 8px;
  }

  .spotlight-mention-list li {
    padding: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .spotlight-mentions > .editorial-product-button {
    margin-top: 8px;
  }

  .editorial-ranking-select {
    grid-template-columns: 34px 130px minmax(0, 1fr);
    min-height: 0;
    padding: 12px 0;
    gap: 12px;
  }

  .product-image-editorial-row {
    width: 130px;
    height: 104px;
  }

  .editorial-row-metrics {
    grid-column: 2 / -1;
    width: 100%;
    padding: 9px 0 3px;
  }

  .editorial-row-action {
    display: none;
  }

  .filter-bar {
    align-items: stretch;
    padding-top: 54px;
    flex-direction: column;
  }

  .disclosure-filter {
    display: block;
  }

  .disclosure-filter legend {
    margin-bottom: 8px;
  }

  .filter-result {
    order: -1;
  }
}

@media (max-width: 540px) {
  .header-inner,
  .page-shell,
  .site-footer {
    padding-right: 16px;
    padding-left: 16px;
  }

  .wordmark {
    font-size: 19px;
  }

  .header-search-control input {
    height: 38px;
    font-size: 12px;
  }

  .consumer-intro {
    padding-top: 30px;
  }

  .consumer-intro h1 {
    font-size: 32px;
  }

  .consumer-intro > p {
    font-size: 14px;
  }

  .consumer-trust-line {
    align-items: flex-start;
    flex-wrap: wrap;
    line-height: 2;
  }

  .consumer-trust-line > * {
    padding-right: 12px;
    padding-left: 12px;
  }

  .spotlight-copy {
    min-height: 300px;
  }

  .spotlight-title {
    font-size: 29px;
  }

  .editorial-ranking-select {
    grid-template-columns: 28px 106px minmax(0, 1fr);
    gap: 10px;
  }

  .product-image-editorial-row {
    width: 106px;
    height: 86px;
  }

  .editorial-ranking-identity h3 {
    font-size: 15px;
  }

  .editorial-creator-names {
    white-space: normal;
  }

  .editorial-row-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 0;
  }

  .editorial-metric:nth-child(odd) {
    border-left: 0;
  }

  .editorial-metric dd {
    font-size: 18px;
  }

  .ranking-cta {
    width: 100%;
  }
}

.detail-header {
  grid-template-columns: 150px minmax(210px, 1fr) minmax(280px, auto);
  align-items: center;
  padding: 24px 0;
  gap: 22px;
}

.product-image-detail {
  width: 150px;
  height: 170px;
  border: 0;
  border-radius: 0;
  background: var(--surface-muted);
}

.detail-title {
  font-size: 25px;
  letter-spacing: -0.035em;
}

.product-facts {
  grid-template-columns: repeat(2, minmax(105px, 1fr));
  border-left: 0;
}

.product-facts div {
  padding: 10px 14px;
  border-right: 0;
  border-left: 1px solid var(--line);
}

.product-facts dd {
  font-size: 19px;
}

.product-facts div:nth-child(3) dd {
  color: var(--own);
}

.product-facts div:nth-child(4) dd {
  color: var(--paid);
}

.detail-secondary-signals {
  grid-column: 2 / -1;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 11px;
}

@media (max-width: 620px) {
  .detail-header {
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 16px;
  }

  .product-image-detail {
    width: 110px;
    height: 132px;
  }

  .product-facts,
  .detail-secondary-signals {
    grid-column: 1 / -1;
  }

  .product-facts div {
    padding-left: 10px;
  }
}
