:root {
  --bg: #f7f1e6;
  --bg-2: #ede6d8;
  --panel: #fffdf8;
  --ink: #1e1812;
  --ink-2: #4f4538;
  --ink-3: #837562;
  --rule: rgba(30, 24, 18, .12);
  --rule-strong: rgba(30, 24, 18, .24);
  --orange: #c95e2c;
  --orange-dark: #9f4319;
  --orange-tint: #f1d2bd;
  --green: #2f6b4a;
  --green-tint: #c9ddca;
  --plum: #6e4f8e;
  --plum-tint: #ded2eb;
  --butter: #e8b854;
  --butter-tint: #f4e1ab;
  --serif: "Songti SC", "STSong", Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12px 12px, rgba(120, 90, 40, .05) 1px, transparent 1px),
    linear-gradient(180deg, var(--bg), #fbf7ee 42%, var(--bg));
  background-size: 8px 8px, auto;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0;
  overflow-x: hidden;
}

body,
button,
input,
textarea,
select {
  font-family: var(--sans);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  background: rgba(247, 241, 230, .9);
  backdrop-filter: blur(16px);
}

.nav-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  color: var(--bg);
  background: var(--ink);
  box-shadow: 3px 3px 0 var(--orange);
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  line-height: 1;
}

.brand-text {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
}

.nav-menu-toggle {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  color: var(--ink);
  background: var(--panel);
  box-shadow: 2px 2px 0 rgba(201, 94, 44, .22);
  cursor: pointer;
  transition: background .16s ease, transform .16s ease, box-shadow .16s ease;
}

.nav-menu-toggle span {
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .16s ease, opacity .16s ease;
}

.nav-menu-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 3px 3px 0 rgba(201, 94, 44, .28);
}

.site-nav.nav-open .nav-menu-toggle {
  color: var(--bg);
  background: var(--ink);
}

.site-nav.nav-open .nav-menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-nav.nav-open .nav-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-nav.nav-open .nav-menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: grid;
  min-width: min(280px, calc(100vw - 32px));
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--rule);
  border-radius: 14px;
  background: rgba(255, 253, 248, .98);
  box-shadow: 0 24px 54px -30px rgba(30, 24, 18, .45);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .16s ease, transform .16s ease;
}

.site-nav.nav-open .nav-links {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-links a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: flex-start;
  padding: 0 15px;
  border-radius: 10px;
  color: var(--ink-2);
  font-size: 13px;
  white-space: nowrap;
  transition: background .16s ease, color .16s ease, transform .16s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--bg);
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 58px 0 78px;
}

.hero::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -180px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(47, 107, 74, .16);
  pointer-events: none;
}

.hero-stamp {
  position: absolute;
  top: 28px;
  right: max(24px, calc((100vw - 1180px) / 2));
  z-index: 4;
  padding: 8px 14px;
  border: 1px dashed var(--rule-strong);
  border-radius: 999px;
  color: var(--ink-3);
  background: var(--panel);
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  transform: rotate(3deg);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .94fr);
  gap: 54px;
  align-items: center;
}

.hero-copy-wrap {
  max-width: 620px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--orange-dark);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
}

.hero-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--orange);
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: 76px;
  font-weight: 900;
  line-height: 1.12;
  text-wrap: balance;
}

.hero h1 span {
  display: inline;
  padding: 0;
  border-radius: 0;
  color: var(--orange-dark);
  background: transparent;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
  transform: none;
}

.hero-sub {
  max-width: 34em;
  margin: 26px 0 0;
  color: var(--ink-2);
  font-size: 16px;
}

.hero-trust {
  margin: 16px 0 0;
  color: var(--ink-3);
  font-size: 13px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  transition: background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--bg);
  background: var(--ink);
  box-shadow: 3px 3px 0 var(--orange);
}

.btn-primary:hover {
  box-shadow: 4px 4px 0 var(--orange);
}

.btn-secondary {
  border-color: var(--rule-strong);
  color: var(--ink);
  background: var(--panel);
}

.btn-secondary:hover,
.btn-ghost:hover {
  color: var(--bg);
  border-color: var(--ink);
  background: var(--ink);
}

.btn-ghost {
  color: var(--ink-2);
  background: transparent;
}

.btn-icon,
.feat-launch span {
  display: inline-flex;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--bg);
  background: var(--orange);
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1;
}

.collage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 30px);
  align-items: center;
  justify-items: center;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--rule);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, .96), rgba(237, 230, 216, .78)),
    radial-gradient(circle at 18% 22%, rgba(201, 94, 44, .10), transparent 28%),
    radial-gradient(circle at 82% 74%, rgba(47, 107, 74, .14), transparent 34%);
  box-shadow: 0 28px 58px -38px rgba(30, 24, 18, .45);
}

.collage::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(30, 24, 18, .12);
  border-radius: 8px;
  pointer-events: none;
}

.dog {
  position: relative;
  z-index: 1;
  width: min(100%, 124px);
  aspect-ratio: 1;
  overflow: hidden;
  border: 4px solid var(--panel);
  border-radius: 50%;
  background: var(--bg-2);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .75) inset,
    0 16px 28px -18px rgba(30, 24, 18, .55);
}

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

.ticker {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--bg-2);
}

.ticker-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.ticker-cell {
  display: grid;
  min-height: 86px;
  align-items: center;
  align-content: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 12px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: rgba(255, 253, 248, .58);
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

.ticker-cell:last-child {
  border-right: 1px solid var(--rule);
}

.ticker-cell span {
  color: var(--orange);
  font-family: var(--sans);
  font-size: clamp(22px, 3.2vw, 31px);
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.section {
  position: relative;
  z-index: 2;
  padding: 86px 0;
}

.section.alt {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--bg-2);
}

.section-head {
  max-width: 760px;
  margin-bottom: 50px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--green);
  background: var(--green-tint);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
}

.kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.section h1,
.section h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.24;
  text-wrap: balance;
}

.section h2 em,
.featured h3 em,
.quote-text em {
  color: var(--orange-dark);
  font-style: normal;
  font-weight: 800;
}

.section-sub {
  max-width: 38em;
  margin: 18px 0 0;
  color: var(--ink-2);
  font-size: 16px;
}

.featured {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, .65fr);
  gap: 36px;
  align-items: center;
  overflow: hidden;
  padding: 46px;
  border-radius: 8px;
  color: var(--bg);
  background:
    radial-gradient(circle at 82% 22%, rgba(232, 184, 84, .16), transparent 28%),
    var(--ink);
  box-shadow: 0 30px 60px -38px rgba(30, 24, 18, .55);
}

.featured-copy {
  position: relative;
  z-index: 2;
}

.feat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 11px;
  border-radius: 999px;
  color: var(--green);
  background: var(--green-tint);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
}

.feat-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.featured h3 {
  margin: 18px 0 14px;
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1.15;
}

.featured p {
  max-width: 34em;
  margin: 0;
  color: rgba(247, 241, 230, .82);
}

.feat-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.feat-meta span {
  padding: 7px 10px;
  border: 1px solid rgba(247, 241, 230, .18);
  border-radius: 6px;
  color: var(--butter-tint);
  background: rgba(247, 241, 230, .08);
  font-family: var(--mono);
  font-size: 12px;
}

.feat-meta strong {
  color: var(--bg);
}

.inline-link {
  color: var(--butter-tint);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.featured-cta {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 22px;
}

.featured-image {
  width: 190px;
  height: 190px;
  overflow: hidden;
  border: 4px solid var(--butter);
  border-radius: 50%;
  box-shadow: 0 18px 32px -18px #000;
  transform: rotate(-3deg);
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feat-launch {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 26px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--bg);
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease;
}

.feat-launch:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px -18px #000;
}

.tests-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.test-card {
  grid-column: span 2;
  display: flex;
  min-height: 248px;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  padding: 22px 24px 24px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: var(--panel);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.test-card:hover {
  transform: translateY(-3px);
  border-color: var(--rule-strong);
  box-shadow: 0 18px 30px -22px rgba(30, 24, 18, .38);
}

.test-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 5px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
}

.tag-green,
.tag-mint {
  color: var(--green);
  background: var(--green-tint);
}

.tag-dark {
  color: var(--butter-tint);
  background: var(--ink);
}

.tag-violet {
  color: var(--plum);
  background: var(--plum-tint);
}

.tag-orange {
  color: var(--orange-dark);
  background: var(--orange-tint);
}

.tag-butter {
  color: #76530f;
  background: var(--butter-tint);
}

.tag-field {
  color: #174d32;
  background: #dff3e7;
}

.tag-sky {
  color: #1f4d7a;
  background: #dfeefb;
}

.breed-avatar {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  overflow: hidden;
  border: 2px solid var(--panel);
  border-radius: 50%;
  background: var(--bg-2);
  box-shadow: 0 0 0 1px var(--rule), 0 8px 14px -10px rgba(30, 24, 18, .45);
}

.breed-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.test-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.3;
}

.test-card p {
  margin: 0;
  color: var(--ink-2);
  font-size: 14px;
}

.test-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--rule);
}

.test-meta {
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.test-arrow {
  display: inline-grid;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--bg-2);
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.test-card:hover .test-arrow {
  color: var(--bg);
  background: var(--orange);
  transform: translateX(3px);
}

.test-card.muted {
  background: var(--bg-2);
}

.test-card.is-en {
  background: linear-gradient(145deg, #f1eaf6, var(--panel) 72%);
}

.test-card.is-soccer-cn {
  background:
    linear-gradient(145deg, rgba(223, 243, 231, .95), var(--panel) 68%),
    linear-gradient(90deg, transparent 49%, rgba(23, 77, 50, .14) 49%, rgba(23, 77, 50, .14) 51%, transparent 51%);
}

.test-card.is-soccer-en {
  background:
    linear-gradient(145deg, rgba(223, 238, 251, .94), var(--panel) 72%),
    linear-gradient(90deg, transparent 49%, rgba(31, 77, 122, .12) 49%, rgba(31, 77, 122, .12) 51%, transparent 51%);
}

.test-card.is-parent-en {
  background: linear-gradient(145deg, #fff1df, var(--panel) 70%);
}

.test-card.is-pro-en {
  color: var(--bg);
  background: linear-gradient(145deg, #2c221a, var(--ink));
}

.test-card.is-pro-en p {
  color: rgba(247, 241, 230, .72);
}

.test-card.is-pro-en .test-meta {
  color: rgba(247, 241, 230, .62);
}

.test-card.is-pro-en .test-card-foot {
  border-top-color: rgba(247, 241, 230, .18);
}

.test-card.is-pro-en .test-arrow {
  color: var(--bg);
  background: rgba(247, 241, 230, .12);
}

.quote-strip {
  padding: 54px 0;
  color: var(--bg);
  background: var(--ink);
}

.quote-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.quote-image {
  flex: 0 0 auto;
  width: 118px;
  height: 118px;
  overflow: hidden;
  border: 3px solid var(--butter);
  border-radius: 50%;
  background: var(--bg-2);
  transform: rotate(-4deg);
}

.quote-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
}

.quote-text {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.45;
}

.quote-text em {
  color: var(--butter);
}

.quote-attrib {
  margin: 12px 0 0;
  color: rgba(247, 241, 230, .62);
  font-family: var(--mono);
  font-size: 12px;
}

.method-hint {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--ink-3);
  font-family: Georgia, serif;
  font-size: 16px;
  font-style: italic;
}

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

.method-item {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 30px 26px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: var(--panel);
}

.method-num {
  display: block;
  margin-bottom: 14px;
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 50px;
  font-style: italic;
  line-height: 1;
}

.method-num::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin-top: 8px;
  background: var(--orange);
}

.method-thumb {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  overflow: hidden;
  border: 2px solid var(--panel);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--rule);
}

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

.method-item h2,
.method-item h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 21px;
}

.method-item p {
  margin: 0;
  color: var(--ink-2);
  font-size: 14px;
}

.site-footer {
  padding: 48px 0 28px;
  border-top: 1px solid var(--rule);
  background: var(--bg-2);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.35fr) repeat(3, minmax(132px, 1fr));
  gap: 36px;
  align-items: start;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 800;
}

.footer-brand-block p {
  max-width: 24em;
  margin: 8px 0 0;
  color: var(--ink-3);
  font-family: var(--sans);
  font-size: 15px;
  font-style: normal;
}

.footer-col {
  display: grid;
  gap: 7px;
}

.footer-col h2 {
  margin: 0 0 6px;
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.footer-col a {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  color: var(--ink-2);
  font-size: 14px;
  transition: color .16s ease;
}

.footer-col a:hover {
  color: var(--orange-dark);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  color: var(--ink-3);
  font-size: 13px;
}

@media (max-width: 1020px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero-copy-wrap {
    max-width: 740px;
  }

  .collage {
    max-width: 560px;
    margin: 0 auto;
  }

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

  .test-card {
    grid-column: span 1;
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(132px, 1fr));
    gap: 28px 22px;
  }

  .footer-brand-block {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1180px, calc(100% - 32px));
  }

  .site-nav {
    padding: 12px 0;
  }

  .nav-inner {
    align-items: center;
    flex-direction: row;
    gap: 12px;
  }

  .nav-links {
    left: 0;
    right: 0;
    width: 100%;
  }

  .hero {
    padding: 42px 0 64px;
  }

  .hero-stamp {
    position: static;
    display: inline-flex;
    margin-left: 16px;
    transform: none;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-sub,
  .section-sub {
    font-size: 15px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .collage {
    gap: 14px;
    padding: 22px;
  }

  .dog {
    border-width: 3px;
  }

  .ticker-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

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

  .ticker-cell {
    min-height: 76px;
    border: 1px solid var(--rule);
  }

  .ticker-cell:last-child {
    border-bottom: 1px solid var(--rule);
  }

  .section {
    padding: 72px 0;
  }

  .section h2 {
    font-size: 32px;
  }

  .featured {
    grid-template-columns: 1fr;
    padding: 30px 24px;
  }

  .featured h3 {
    font-size: 29px;
  }

  .featured-image {
    width: 150px;
    height: 150px;
  }

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

  .quote-inner {
    flex-direction: column;
    text-align: center;
  }

  .quote-text {
    font-size: 21px;
  }

  .footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
    gap: 24px 16px;
  }

  .footer-brand-block { grid-column: 1 / -1; }

  .footer-brand-block p { max-width: none; }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .hero h1 {
    font-size: 39px;
  }

  .collage {
    gap: 12px;
    padding: 18px;
  }

  .test-card {
    min-height: 224px;
  }
}
