:root {
  color-scheme: light;
  --paper: #f6f6f8;
  --paper-2: #ececf1;
  --ink: #29283a;
  --muted: #686879;
  --line: #dcdce4;
  --acid: #ff6b18;
  --acid-soft: #ffb185;
  --primary: #5639b9;
  --danger: #b42318;
  --max: 1240px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

button, input { font: inherit; }
a { color: inherit; }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  background: rgba(241, 240, 235, .91);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav-shell,
main,
footer {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.nav-shell {
  height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-aperture {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: var(--acid);
  background: var(--ink);
  border-radius: 50%;
}

.brand-aperture svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}

.brand-copy {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -.055em;
}

.brand-copy span {
  margin-left: 2px;
  font-weight: 430;
}

nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

nav a {
  position: relative;
  color: #3e4240;
  font-size: 13px;
  font-weight: 610;
  text-decoration: none;
}

nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

nav a:hover::after { transform: scaleX(1); }

.integration-status {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  color: #5a5f5c;
  background: rgba(255,255,255,.45);
  border: 1px solid var(--line);
  border-radius: 99px;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: #8c918e;
  border-radius: 50%;
}

.integration-status.ready .status-dot {
  background: #51a500;
  box-shadow: 0 0 0 3px rgba(81,165,0,.12);
}

.integration-status.warning .status-dot { background: #e49b11; }

.hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.07fr .93fr;
  gap: 20px;
  padding: 24px 0;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 58px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.eyebrow,
.section-kicker {
  color: #565b58;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  background: var(--ink);
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 680px;
  margin-bottom: 26px;
  font-size: clamp(48px, 5.3vw, 76px);
  font-weight: 820;
  line-height: .96;
  letter-spacing: -.068em;
}

h1 em {
  position: relative;
  z-index: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.055em;
}

h1 em::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -4px;
  bottom: .02em;
  left: -4px;
  height: .24em;
  background: var(--acid);
  transform: rotate(-.8deg);
}

.hero-copy > p {
  max-width: 600px;
  margin-bottom: 37px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.search-form { max-width: 680px; }

.search-form > label {
  display: block;
  margin-bottom: 9px;
  font-size: 12px;
  font-weight: 760;
}

.search-control {
  height: 66px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 6px 6px 6px 19px;
  background: #fff;
  border: 2px solid var(--primary);
  border-radius: 9px;
  box-shadow: 0 3px 14px rgba(51, 43, 86, .09);
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.search-control:focus-within {
  box-shadow: 0 0 0 4px rgba(86, 57, 185, .13);
  transform: none;
}

.search-icon {
  display: grid;
  color: #555b57;
}

.search-icon svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.search-control input {
  min-width: 0;
  padding: 10px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 17px;
  font-weight: 620;
  letter-spacing: .04em;
}

.search-control input::placeholder {
  color: #969a96;
  font-weight: 450;
}

.search-control button {
  height: 52px;
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 0 21px;
  color: #fff;
  background: var(--acid);
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.search-control button:hover { background: var(--acid-soft); }
.search-control button:disabled { cursor: wait; filter: grayscale(.55); }

.search-control button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.search-meta {
  min-height: 32px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding-top: 9px;
  color: #777c78;
  font-size: 11px;
}

.search-error {
  color: var(--danger);
  font-weight: 650;
  text-align: right;
}

.search-examples {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #747975;
  font-size: 11px;
}

.search-examples button {
  padding: 5px 9px;
  color: #454946;
  background: transparent;
  border: 1px solid #b8b9b3;
  border-radius: 99px;
  cursor: pointer;
  font-size: 10px;
}

.search-examples button:hover {
  color: var(--ink);
  background: #fff;
  border-color: var(--ink);
}

.product-stage {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #e9e7f2;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.stage-grid {
  position: absolute;
  inset: 0;
  opacity: .48;
  background-image:
    linear-gradient(rgba(18,20,20,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18,20,20,.08) 1px, transparent 1px);
  background-size: 42px 42px;
}

.stage-label {
  position: absolute;
  top: 30px;
  left: 30px;
  padding: 7px 10px;
  color: var(--acid);
  background: var(--ink);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  letter-spacing: .1em;
}

.camera-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(88%, 560px);
  filter: drop-shadow(0 32px 22px rgba(0,0,0,.26));
  transform: translate(-50%, -50%) rotate(-4deg);
}

.camera-shape svg { display: block; width: 100%; }

.match-card,
.price-card {
  position: absolute;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--ink);
  box-shadow: 5px 5px 0 rgba(18,20,20,.9);
  backdrop-filter: blur(8px);
}

.match-card {
  right: 6%;
  bottom: 18%;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 15px;
}

.match-check {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: var(--acid);
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-weight: 900;
}

.match-card small,
.price-card small {
  display: block;
  color: #717672;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  letter-spacing: .1em;
}

.match-card strong {
  display: block;
  margin-top: 3px;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
}

.price-card {
  top: 20%;
  left: 7%;
  width: 165px;
  padding: 15px;
}

.price-lines {
  display: flex;
  align-items: end;
  gap: 5px;
  height: 46px;
  margin: 10px 0;
}

.price-lines i {
  flex: 1;
  height: 42%;
  background: #8b918d;
}

.price-lines i:nth-child(2) { height: 72%; }
.price-lines i:nth-child(3) { height: 100%; background: var(--acid); border: 1px solid var(--ink); }

.price-card > span {
  color: #555b57;
  font-size: 10px;
}

.stage-index {
  position: absolute;
  right: 24px;
  bottom: 22px;
  color: #555a57;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: .09em;
}

.category-strip,
.results,
.review-hub,
.process,
.source-banner {
  border: 0;
}

.category-strip { padding: 64px 0 82px; }

.strip-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 34px;
}

h2 {
  margin: 8px 0 0;
  font-size: clamp(34px, 4.3vw, 57px);
  line-height: 1.02;
  letter-spacing: -.058em;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.category-grid .category-card {
  position: relative;
  min-height: 280px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 20px 22px 23px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: background 180ms ease, transform 180ms ease;
  color: var(--ink);
  text-decoration: none;
}

.category-grid .category-card:hover {
  z-index: 1;
  background: #fff;
  border-color: var(--primary);
  box-shadow: 0 10px 28px rgba(48, 42, 79, .1);
  transform: translateY(-3px);
}

.category-number {
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
}

.category-icon {
  align-self: center;
  justify-self: center;
  width: 105px;
}

.category-icon svg {
  width: 100%;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.7;
}

.category-grid h3 {
  margin-bottom: 5px;
  font-size: 22px;
  letter-spacing: -.04em;
}

.category-grid p {
  margin-bottom: 0;
  color: #686d69;
  font-size: 12px;
}

.category-arrow {
  position: absolute;
  right: 22px;
  bottom: 23px;
  font-size: 20px;
}

.results {
  padding: 64px 42px 78px;
  background: #ececf2;
  border-radius: 14px;
}

.results-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 35px;
}

.updated-at {
  color: var(--muted);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
}

.result-list { display: grid; gap: 9px; }

.offer-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 22px;
  min-height: 108px;
  padding: 15px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: box-shadow 150ms ease, transform 150ms ease;
}

.catalog-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.catalog-card .offer-image {
  width: 96px;
  height: 96px;
}

.score-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 10px;
  padding: 4px 8px;
  color: #6152a8;
  background: #eee9ff;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.catalog-card h3 {
  margin: 7px 0;
  font-size: 20px;
}

.catalog-title {
  display: block;
  margin: 7px 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
}

.catalog-title:hover { color: var(--primary); }

.catalog-card p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.catalog-actions {
  min-width: 190px;
  display: flex;
  gap: 7px;
}

.catalog-actions a,
.catalog-actions button {
  padding: 11px 13px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.catalog-detail-link { color: #fff; background: var(--primary); }
.catalog-actions button { color: var(--primary); background: #fff; border: 1px solid var(--primary); }

.compare-tray {
  position: fixed;
  z-index: 30;
  right: 22px;
  bottom: 22px;
  padding: 14px 18px;
  color: #fff;
  background: var(--primary);
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(40,30,90,.25);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.offer-card:hover {
  border-color: var(--primary);
  box-shadow: 0 7px 20px rgba(48,42,79,.09);
  transform: translateY(-1px);
}

.offer-image {
  position: relative;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #686d69;
  background: #e3e3de;
}

.offer-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #fff;
}

.offer-image svg {
  width: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.offer-merchant {
  margin-bottom: 5px;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.offer-title {
  overflow: hidden;
  margin: 0;
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.offer-meta {
  margin-top: 6px;
  color: var(--muted);
  font-size: 10px;
}

.offer-price {
  min-width: 145px;
  text-align: right;
}

.offer-price strong {
  display: block;
  font-size: 23px;
  letter-spacing: -.045em;
}

.offer-price span { color: var(--muted); font-size: 10px; }

.offer-link {
  padding: 12px 16px;
  color: #fff;
  background: var(--acid);
  border: 0;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.offer-link:hover { background: #df5000; color: #fff; }

.notice {
  padding: 28px;
  background: #f7f6f2;
  border: 1px solid #a9aaa4;
  line-height: 1.6;
}

.notice strong {
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
}

.loading-card {
  position: relative;
  height: 108px;
  overflow: hidden;
  background: #deded8;
  border: 1px solid #b6b6b0;
}

.loading-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 25%, rgba(255,255,255,.55) 50%, transparent 75%);
  animation: shimmer 1.25s infinite;
}

@keyframes shimmer {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

.review-hub {
  padding: 92px 0;
}

.review-heading {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 38px;
}

.review-heading > p {
  max-width: 500px;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.review-grid {
  display: grid;
  grid-template-columns: 1.45fr .55fr;
  gap: 16px;
}

.review-feature {
  min-width: 0;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.review-visual {
  position: relative;
  min-height: 440px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(255,255,255,.2), transparent 35%),
    var(--primary);
}

.review-visual > span {
  position: absolute;
  top: 22px;
  left: 22px;
  color: rgba(255,255,255,.7);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: .1em;
}

.review-visual svg {
  width: 84%;
  fill: #28233e;
  stroke: #9e90e1;
  stroke-width: 2;
  filter: drop-shadow(0 25px 20px rgba(23,17,48,.35));
  transform: rotate(-4deg);
}

.review-visual > strong {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 11px;
  color: #fff;
  background: var(--acid);
  border-radius: 4px;
  font-size: 9px;
  letter-spacing: .08em;
}

.review-feature-copy {
  align-self: center;
  padding: 42px;
}

.review-type {
  color: var(--primary);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.review-feature-copy h3 {
  margin: 13px 0 27px;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.14;
  letter-spacing: -.045em;
}

.review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 34px;
}

.review-tags span {
  padding: 6px 9px;
  color: #5f5e6d;
  background: #f1f1f4;
  border-radius: 99px;
  font-size: 10px;
}

.review-feature-copy a {
  color: var(--primary);
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}

.review-feature-copy a span { margin-left: 8px; }

.review-side {
  display: grid;
  gap: 10px;
}

.review-side article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 15px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 11px;
}

.review-index {
  color: #9b9aa7;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
}

.review-side h3 {
  margin: 7px 0;
  font-size: 16px;
  line-height: 1.3;
}

.review-side p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.methodology {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  margin-top: 16px;
  padding: 38px 42px;
  color: #fff;
  background: var(--ink);
  border-radius: 12px;
}

.methodology h3 {
  max-width: 400px;
  margin: 9px 0 0;
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: -.035em;
}

.methodology .section-kicker { color: #b4a8ee; }

.score-bars {
  display: grid;
  gap: 10px;
}

.score-bars > div {
  display: grid;
  grid-template-columns: 115px 1fr 36px;
  align-items: center;
  gap: 12px;
  font-size: 10px;
}

.score-bars i {
  height: 5px;
  border-radius: 99px;
}
.score-bars .score-90 { background: linear-gradient(90deg, var(--acid) 90%, #565568 90%); }
.score-bars .score-75 { background: linear-gradient(90deg, var(--acid) 75%, #565568 75%); }
.score-bars .score-60 { background: linear-gradient(90deg, var(--acid) 60%, #565568 60%); }
.score-bars .score-45 { background: linear-gradient(90deg, var(--acid) 45%, #565568 45%); }
.score-bars .score-30 { background: linear-gradient(90deg, var(--acid) 30%, #565568 30%); }

.score-bars strong {
  color: #cbc9d5;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  text-align: right;
}

.process {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 105px 54px;
  background: var(--ink);
  color: #f1f0eb;
}

.process .section-kicker { color: var(--acid); }

.process-heading p {
  max-width: 510px;
  margin-top: 24px;
  color: #a9afab;
  font-size: 14px;
  line-height: 1.7;
}

.process-list { border-top: 1px solid #555a57; }

.process-list article {
  display: grid;
  grid-template-columns: 47px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid #555a57;
}

.process-list > article > span {
  color: var(--acid);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
}

.process-list h3 {
  margin-bottom: 7px;
  font-size: 18px;
}

.process-list p {
  margin-bottom: 0;
  color: #9ba19d;
  font-size: 12px;
  line-height: 1.55;
}

.source-banner {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 60px;
  padding: 66px 54px;
  background: var(--acid);
}

.source-banner p {
  max-width: 480px;
  margin-bottom: 0;
  color: #41453f;
  font-size: 13px;
  line-height: 1.7;
}

.source-seal {
  width: 78px;
  height: 78px;
  display: grid;
  place-content: center;
  text-align: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.source-seal span {
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
}

.source-seal strong { font-size: 25px; line-height: 1; }

footer {
  min-height: 140px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.footer-brand { justify-self: start; }

footer > p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-style: italic;
}

footer > div {
  justify-self: end;
  display: grid;
  gap: 4px;
  color: #737873;
  font-size: 9px;
  text-align: right;
}

@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { border-right: 0; }
  .product-stage { min-height: 540px; border-top: 1px solid var(--line); }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .category-grid .category-card:last-child { grid-column: 1 / -1; }
  .review-grid { grid-template-columns: 1fr; }
  .review-side { grid-template-columns: repeat(3, 1fr); }
  .process { gap: 50px; }
}

@media (max-width: 760px) {
  .nav-shell,
  main,
  footer {
    width: min(calc(100% - 24px), var(--max));
  }

  .nav-shell {
    height: 67px;
    grid-template-columns: 1fr auto;
  }

  nav { display: none; }
  .integration-status span:last-child { display: none; }
  .integration-status { padding: 8px; }

  .hero-copy { padding: 66px 20px 62px; }
  h1 { font-size: clamp(45px, 14vw, 64px); }
  .hero-copy > p { font-size: 14px; }

  .search-control {
    height: auto;
    grid-template-columns: auto 1fr;
    padding: 8px 10px 8px 16px;
  }

  .search-control button {
    grid-column: 1 / -1;
    justify-content: center;
    width: 100%;
  }

  .search-meta { display: block; }
  .search-error { display: block; margin-top: 5px; text-align: left; }
  .search-examples > span { width: 100%; }

  .product-stage { min-height: 430px; }
  .camera-shape { width: 94%; }
  .price-card { top: 15%; left: 5%; transform: scale(.86); transform-origin: left top; }
  .match-card { right: 5%; bottom: 16%; transform: scale(.88); transform-origin: right bottom; }

  .category-strip,
  .results,
  .review-hub {
    padding: 70px 20px;
  }

  .category-grid { grid-template-columns: 1fr; }
  .category-grid .category-card:last-child { grid-column: auto; }
  .category-grid .category-card { min-height: 240px; }

  .results-heading { display: block; }
  .updated-at { display: block; margin-top: 12px; }

  .offer-card { grid-template-columns: 62px minmax(0, 1fr); gap: 14px; }
  .offer-image { width: 62px; height: 62px; }
  .offer-price { text-align: left; }
  .offer-link { text-align: center; }

  .catalog-card { grid-template-columns: 68px minmax(0, 1fr); gap: 15px; }
  .catalog-card .offer-image { width: 68px; height: 68px; }
  .catalog-actions { grid-column: 1 / -1; min-width: 0; }

  .review-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .review-feature { grid-template-columns: 1fr; }
  .review-visual { min-height: 320px; }
  .review-feature-copy { padding: 30px 24px; }
  .review-side { grid-template-columns: 1fr; }

  .methodology {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 31px 24px;
  }

  .score-bars > div { grid-template-columns: 88px 1fr 32px; }

  .process {
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 78px 20px;
  }

  .source-banner {
    grid-template-columns: 1fr auto;
    gap: 28px;
    padding: 56px 20px;
  }

  .source-banner p { grid-column: 1 / -1; grid-row: 2; }
  .source-seal { grid-column: 2; grid-row: 1; }

  footer {
    min-height: 180px;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 34px 0;
  }

  footer > p { display: none; }
  footer > div { justify-self: start; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
  }
}
