

:root {
  --canvas: #ffffff;
  --off:    #faf8f6;
  --ink:    #17171a;
  --gray:   #6e6e73;
  --faint:  #8a8a8f;
  --hair:   #e6e1dd;
  --hair-2: #efeae6;

  --red:      #9e1b1b;
  --red-deep: #7c1414;
  --tint:     #fbecea;
  --tint-2:   #f6ede9;

  --good: #2f7a52;
  --none: #c7c2bd;

  --wrap: 1240px;
  --text: 720px;

  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-pill: 999px;

  --shadow: 0 1px 2px rgba(23,23,26,.04), 0 8px 30px rgba(23,23,26,.06);
  --shadow-lg: 0 2px 6px rgba(23,23,26,.05), 0 24px 60px rgba(23,23,26,.10);

  --ease: cubic-bezier(.2,.7,.2,1);

  --step: clamp(72px, 9vw, 132px);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; font-size: 112.5%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--canvas);
  font-size: 1.2rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -0.02em; line-height: 1.06; }
p { margin: 0; }

.h-hero  { font-size: clamp(2.6rem, 6.4vw, 5rem); letter-spacing: -0.035em; }
.h-1     { font-size: clamp(1.55rem, 3.2vw, 2.25rem); letter-spacing: -0.025em; line-height: 1.1; }
.h-3     { font-size: 1.22rem; letter-spacing: -0.015em; }

.lead {
  font-size: clamp(1.12rem, 1.8vw, 1.34rem);
  line-height: 1.45;
  color: var(--ink);
  font-weight: 400;
}
.body  { color: var(--gray); font-size: 1.06rem; line-height: 1.6; }
.body strong, .lead strong { color: var(--ink); font-weight: 600; }
.small { font-size: .82rem; color: var(--faint); line-height: 1.5; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section { padding-block: var(--step); }
.section.off { background: var(--off); }

.unit { max-width: var(--text); }
.unit .lead { margin-top: 22px; }
.unit.center { margin-inline: auto; text-align: center; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px;
  border-radius: var(--r-pill);
  font-weight: 600; font-size: 1rem;
  border: 1px solid transparent;
  transition: transform .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease);
  will-change: transform;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-deep); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(158,27,27,.22); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--hair); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-1px); }
.btn-lg { padding: 17px 32px; font-size: 1.06rem; }
.btn .arrow { transition: transform .18s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }
.link-more { color: var(--red); font-weight: 600; display: inline-flex; align-items: center; gap: 7px; }
.link-more:hover { color: var(--red-deep); }
.link-more .arrow { transition: transform .18s var(--ease); }
.link-more:hover .arrow { transform: translateX(3px); }

.site-head {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--hair-2);
}
.site-head .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 60px; }
.brand { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; letter-spacing: -0.02em; font-size: 1.12rem; }
.brand img { display: block; flex: none; }

.site-head .brand { white-space: nowrap; }

.nav { display: flex; align-items: center; gap: 24px; }
.nav a {
  color: var(--gray); font-size: .93rem; font-weight: 500; white-space: nowrap;
  padding: 3px 0; border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.nav a:hover { color: var(--ink); }
.nav a.active { color: var(--ink); border-bottom-color: var(--red); }
.nav .btn, .nav .btn:hover { padding: 9px 18px; font-size: .9rem; border-bottom-color: transparent; color: #fff; }

.nav-toggle { display: none; }

@media (max-width: 960px) {
  .nav { display: none; }
  .nav.open {
    display: flex; position: absolute; top: 60px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0; background: #fff;
    border-bottom: 1px solid var(--hair); padding: 8px 24px 18px;
  }
  .nav.open a { padding: 13px 0; border-bottom: 1px solid var(--hair-2); }
  .nav.open a.active { border-bottom-color: var(--hair-2); color: var(--red); }
  .nav.open .btn { margin-top: 14px; justify-content: center; }
  .nav-toggle { display: inline-flex; background: none; border: 0; padding: 6px; color: var(--ink); }
}

@media (max-width: 420px) {
  .site-head .wrap { gap: 10px; }
  .site-head .brand { font-size: .92rem; gap: 6px; }
  .site-head .brand img { width: 19px; height: 19px; }
  .nav-toggle { padding: 6px 0; }
}

@media (max-width: 340px) {
  .site-head .brand { font-size: .8rem; }
}

.hero { padding-top: clamp(56px, 8vw, 104px); padding-bottom: var(--step); overflow: hidden; }
.hero .h-hero { margin-top: 6px; }
.hero .lead { margin-top: 26px; }
.hero-cta { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-note { margin-top: 18px; color: var(--faint); font-size: .86rem; }

.card { background: #fff; border: 1px solid var(--hair); border-radius: var(--r-lg); box-shadow: var(--shadow); }

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

.why-not { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; margin-top: 28px; }
.why-not .wn {
  flex: 0 1 calc(33.333% - 12px); min-width: 250px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 34px 26px 30px; background: #fff; border: 1px solid var(--hair); border-radius: var(--r-lg);
}
.why-not .wn-i { width: 34px; height: 34px; color: var(--red); flex: none; }
.why-not .wn-i svg { width: 100%; height: 100%; }

.why-not .wn-k { margin-top: 18px; font-weight: 600; font-size: 1.04rem; letter-spacing: -0.01em; text-wrap: balance; }
.why-not .wn-b { margin-top: 10px; color: var(--gray); font-size: .95rem; line-height: 1.6; text-wrap: pretty; }

.rank-lead { display: grid; grid-template-columns: 1.1fr 1fr; gap: 34px; align-items: center; }
.rank-card {
  position: relative; background: #fff; border: 1px solid var(--hair);
  border-radius: var(--r-lg); box-shadow: var(--shadow); overflow: hidden;
}
.rank-card.feature { border-color: rgba(158,27,27,.32); box-shadow: 0 2px 8px rgba(158,27,27,.08), 0 26px 60px rgba(158,27,27,.10); }

.rank-card .rc-media { background: #fff; padding: 30px; display: flex; align-items: center; justify-content: center; }

.rank-card .rc-media img { width: auto; height: auto; max-height: 260px; object-fit: contain; }
.rank-card .rc-body { padding: 30px 30px 34px; }

.rank-card { display: flex; flex-direction: column; }
.rank-card .rc-body { display: flex; flex-direction: column; flex: 1; }

.rank-card .rc-body .badge { align-self: flex-start; }

.rc-cta { margin-top: auto; padding-top: 22px; display: flex; flex-direction: column; align-items: stretch; gap: 12px; }
.rc-cta .btn { display: flex; width: 100%; justify-content: center; }
.rc-cta .offer { margin: 0; justify-content: center; }
.badge { display: inline-flex; align-items: center; gap: 7px; font-size: .74rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 6px 12px; border-radius: var(--r-pill); }
.badge-red { background: var(--red); color: #fff; }
.badge-soft { background: var(--tint); color: var(--red); }

.rank-rows { display: flex; flex-direction: column; gap: 14px; margin-top: 40px; }
.rrow {
  display: grid; grid-template-columns: 44px 150px 1fr auto; gap: 20px; align-items: center;
  background: #fff; border: 1px solid var(--hair); border-radius: var(--r);
  padding: 18px 22px; transition: border-color .2s, box-shadow .2s, transform .2s;
}
.rrow:hover { border-color: var(--hair-2); box-shadow: var(--shadow); }
.rrow.feature { border-color: rgba(158,27,27,.3); background: linear-gradient(90deg, var(--tint) 0%, #fff 40%); }
.rrow .rr-rank { font-size: 1.5rem; font-weight: 600; color: var(--faint); font-variant-numeric: tabular-nums; letter-spacing: -0.03em; }
.rrow.feature .rr-rank { color: var(--red); }
.rrow .rr-name .b { font-weight: 600; font-size: 1.06rem; }
.rrow .rr-name .m { color: var(--gray); font-size: .9rem; margin-top: 2px; }
.rrow .rr-verdict { color: var(--gray); font-size: .96rem; }
.rrow .rr-cta { text-align: right; }

.cov { display: inline-flex; gap: 5px; margin-top: 7px; }
.cov i { width: 9px; height: 9px; border-radius: 50%; background: var(--none); display: inline-block; }
.cov i.on { background: var(--good); }
.cov i.half { background: linear-gradient(90deg, var(--good) 50%, var(--none) 50%); }

.matrix-scroll { overflow-x: auto; margin-top: 40px; border: 1px solid var(--hair); border-radius: var(--r-lg); }

table.matrix { width: 100%; border-collapse: collapse; min-width: 620px; font-size: .95rem; }
.matrix th, .matrix td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--hair-2); }
.matrix thead th { font-size: .76rem; text-transform: uppercase; letter-spacing: .07em; color: var(--faint); font-weight: 600; background: var(--off); }
.matrix tbody tr:last-child td { border-bottom: 0; }
.matrix tbody tr.feature { background: var(--tint); }
.matrix .m-brand { font-weight: 600; }
.matrix .m-brand small { display: block; color: var(--gray); font-weight: 400; font-size: .82rem; margin-top: 2px; }

.matrix .mk { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.matrix .mk svg { width: 17px; height: 17px; flex: none; }
.matrix .yes { color: var(--good); font-weight: 600; }
.matrix .no  { color: var(--none); }
.matrix .part { color: var(--gray); }
.matrix td .num { font-variant-numeric: tabular-nums; }

.matrix .uw { white-space: nowrap; }
.matrix .of { color: var(--faint); font-weight: 400; }

.study-list { list-style: none; margin: 0; padding: 0; }
.study { display: grid; grid-template-columns: 96px 1fr auto; gap: 16px; align-items: start; padding: 15px 0; border-bottom: 1px solid var(--hair-2); }
.study:last-child { border-bottom: 0; }
.st-out { font-size: .68rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; padding: 4px 0; border-radius: var(--r-pill); text-align: center; align-self: start; white-space: nowrap; width: 96px; }
.st-out.good { background: #e7f3ec; color: var(--good); }
.st-out.part { background: #f5efe1; color: #856616; }
.st-out.null { background: #f3eeee; color: #96635f; }
.st-title { font-weight: 500; font-size: .98rem; line-height: 1.36; }
.st-title a { color: var(--ink); border-bottom: 1px solid var(--hair); transition: color .15s, border-color .15s; }
.st-title a:hover { color: var(--red); border-color: var(--red); }
.st-meta { margin-top: 6px; display: flex; gap: 14px; flex-wrap: wrap; color: var(--faint); font-size: .82rem; }
.st-meta .st-pmid { font-variant-numeric: tabular-nums; }
.st-wl { display: flex; gap: 5px; flex-wrap: wrap; justify-content: flex-end; max-width: 160px; }
.st-wl i { font-style: normal; font-size: .7rem; font-weight: 600; color: var(--gray); background: var(--off); border: 1px solid var(--hair); border-radius: var(--r-pill); padding: 2px 8px; font-variant-numeric: tabular-nums; }
.st-wl i.deep { color: var(--red); background: var(--tint); border-color: transparent; }

.reviews { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; }
details.rev {
  background: #fff; border: 1px solid var(--hair); border-radius: var(--r); overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
}
details.rev[open] { box-shadow: var(--shadow); border-color: var(--hair-2); }
details.rev summary {
  list-style: none; cursor: pointer; padding: 22px 24px;
  display: grid; grid-template-columns: 34px 1fr auto auto; gap: 18px; align-items: center;
}
details.rev summary::-webkit-details-marker { display: none; }
.rev .s-rank { font-weight: 600; color: var(--faint); font-variant-numeric: tabular-nums; }
.rev.feature .s-rank { color: var(--red); }
.rev .s-name { display: flex; flex-direction: column; justify-content: center; }
.rev .s-name .b { font-weight: 600; font-size: 1.06rem; }
.rev .s-name .m { color: var(--gray); font-size: .88rem; margin-top: 2px; }
.rev .s-verdict { color: var(--gray); font-size: .92rem; max-width: 40ch; }
.rev .s-chev { width: 20px; height: 20px; color: var(--faint); transition: transform .25s var(--ease); }
details.rev[open] .s-chev { transform: rotate(180deg); }
.rev-body { padding: 0 24px 26px; }

.rev-body .rb-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; column-gap: 30px; row-gap: 0;
  border-top: 1px solid var(--hair-2); margin-top: 2px; padding-top: 24px;
}
.rev-body .rb-main { grid-column: 1; grid-row: 1 / 3; }
.rev-body .rb-shot { grid-column: 2; grid-row: 1; }
.rev-body .rb-side { grid-column: 2; grid-row: 2; }
.rev-body p { color: var(--gray); }

.rev-body .rb-shot { display: flex; align-items: center; justify-content: center; padding: 4px 0 26px; }

.rev-body .rb-shot img { width: auto; height: auto; max-width: 100%; max-height: 240px; object-fit: contain; }
.rev-body .rb-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.rev-body .rb-list li { display: flex; gap: 10px; font-size: .95rem; }
.rev-body .rb-list li svg { flex: none; width: 18px; height: 18px; margin-top: 2px; color: var(--good); }
.rev-body .rb-watch { margin-top: 18px; padding: 14px 16px; background: var(--off); border-radius: var(--r-sm); font-size: .92rem; color: var(--gray); }
.rev-body .rb-watch b { color: var(--ink); }
.rev-body .rb-spec { margin-top: 18px; display: flex; gap: 26px; flex-wrap: wrap; }
.rev-body .rb-spec .k { font-size: .74rem; text-transform: uppercase; letter-spacing: .06em; color: var(--faint); }
.rev-body .rb-spec .v { font-weight: 600; margin-top: 3px; font-size: .96rem; }
.rev-body .rb-cta { margin-top: 22px; }

.offer {
  border: 1px dashed rgba(158,27,27,.4); background: var(--tint);
  border-radius: var(--r); padding: 8px 14px; display: inline-flex; align-items: center; gap: 10px;
  font-size: .92rem; color: var(--red-deep); font-weight: 500;
}
.offer code { font-weight: 700; letter-spacing: .04em; background: #fff; border-radius: 6px; padding: 2px 8px; color: var(--red); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.step {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 34px 26px 30px; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--hair);
}
.step .s-i { width: 34px; height: 34px; color: var(--red); flex: none; }
.step .s-i svg { width: 100%; height: 100%; }
.step h3 { margin: 18px 0 10px; font-size: 1.04rem; letter-spacing: -0.01em; text-wrap: balance; }
.step p { color: var(--gray); font-size: .95rem; line-height: 1.6; text-wrap: pretty; }

.footnotes { padding-block: 56px; background: var(--off); border-top: 1px solid var(--hair); }
.footnotes ol { margin: 0; padding-left: 20px; color: var(--faint); font-size: .8rem; line-height: 1.7; }
.footnotes ol li { margin-bottom: 8px; }
.footnotes .fn-head { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gray); font-weight: 600; margin-bottom: 16px; }

.float-cta {
  position: fixed; left: 50%; bottom: 26px; transform: translateX(-50%) translateY(20px);
  z-index: 70; opacity: 0; pointer-events: none;
  background: rgba(23,23,26,.92); color: #fff; backdrop-filter: blur(12px);
  border-radius: var(--r-pill); padding: 10px 12px 10px 22px;
  display: flex; align-items: center; gap: 16px; box-shadow: var(--shadow-lg);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.float-cta.show { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.float-cta .fc-label { font-size: .92rem; font-weight: 500; }
.float-cta .fc-label b { font-weight: 600; }
.float-cta .btn-primary { padding: 10px 20px; font-size: .92rem; }
@media (max-width: 560px) { .float-cta .fc-label { display: none; } }

.site-foot { background: #fff; border-top: 1px solid var(--hair); padding-block: 56px; }
.site-foot .f-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; }
.site-foot .brand { font-size: 1.1rem; margin-bottom: 12px; }
.site-foot .f-deck { color: var(--gray); font-size: .92rem; max-width: 34ch; }
.site-foot .f-col h4 { font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; color: var(--faint); margin-bottom: 14px; font-weight: 600; }
.site-foot .f-col a { display: block; color: var(--gray); font-size: .94rem; margin-bottom: 10px; transition: color .15s; }
.site-foot .f-col a:hover { color: var(--ink); }

.site-foot .f-legal { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--hair); color: var(--faint); font-size: .8rem; line-height: 1.6; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

.prose { max-width: var(--text); }

.faq .faq-a .prose { max-width: none; }
.prose p, .faq .faq-a p, .site-foot .f-legal { overflow-wrap: break-word; }
.prose h3 { font-size: 1.1rem; margin: 28px 0 10px; }
.prose p { color: var(--gray); margin-bottom: 16px; line-height: 1.65; }
.prose a { color: var(--red); font-weight: 500; }
.prose a:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .why-not { gap: 14px; }
  .why-not .wn { flex-basis: calc(50% - 7px); }
  .rank-lead { grid-template-columns: 1fr; }

  .rev-body .rb-grid { grid-template-columns: 1fr; row-gap: 18px; }
  .rev-body .rb-main, .rev-body .rb-shot, .rev-body .rb-side { grid-column: auto; grid-row: auto; }
  .rev-body .rb-shot { padding: 0; }
  .rev-body .rb-shot img { max-height: 190px; }
  .glimpse-grid, .steps { grid-template-columns: 1fr 1fr; }
  .site-foot .f-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  body { font-size: 17px; }
  .glimpse-grid, .steps, .site-foot .f-grid { grid-template-columns: 1fr; }
  .why-not .wn { flex-basis: 100%; }

  .matrix-scroll { overflow-x: visible; border: 0; border-radius: 0; }
  table.matrix, .matrix tbody, .matrix tr, .matrix td { display: block; width: auto; min-width: 0; }
  .matrix thead { display: none; }
  .matrix tbody tr {
    background: #fff; border: 1px solid var(--hair); border-radius: var(--r);
    margin-bottom: 12px; padding: 6px 0; overflow: hidden;
  }
  .matrix tbody tr:last-child { margin-bottom: 0; }
  .matrix tbody tr.feature { background: var(--tint); border-color: rgba(158,27,27,.3); }
  .matrix td {
    display: flex; align-items: center; justify-content: space-between; gap: 18px;
    padding: 9px 16px; border-bottom: 0; text-align: right;
  }
  .matrix td::before {
    content: attr(data-label);
    font-size: .72rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase;
    color: var(--faint); text-align: left; flex: none;
  }
  .matrix td.m-brand {
    display: block; text-align: left; font-size: 1.02rem;
    border-bottom: 1px solid var(--hair-2); padding: 10px 16px 12px; margin-bottom: 4px;
  }
  .matrix td.m-brand::before { content: none; }
  .rrow { grid-template-columns: 34px 1fr; row-gap: 6px; }
  .rrow .rr-verdict { grid-column: 1 / -1; }
  .rrow .rr-cta { grid-column: 1 / -1; text-align: left; display: flex; align-items: center; justify-content: space-between; }
  details.rev summary { grid-template-columns: 28px 1fr auto; }
  .rev .s-verdict { display: none; }
  .study { grid-template-columns: 1fr; gap: 8px; }
  .st-out { justify-self: start; width: auto; padding: 4px 12px; }
  .st-wl { justify-content: flex-start; max-width: none; }
}

.finder-hero .lead { font-size: clamp(1.12rem, 1.8vw, 1.34rem); line-height: 1.42; font-weight: 400; }
.finder-hero .lead b { color: var(--ink); font-weight: 600; }

.finder {
  margin-top: clamp(34px, 4vw, 52px); text-align: left;
  background: var(--off); border: 1px solid var(--hair-2); border-radius: 28px;
  padding: clamp(22px, 3vw, 40px);
}
.finder-cols { display: grid; grid-template-columns: minmax(230px, 320px) 1fr; gap: clamp(26px, 3.5vw, 52px); align-items: start; }

.cond-list { display: flex; flex-direction: column; gap: 20px; }
.cond-group { display: flex; flex-direction: column; gap: 6px; }
.cg-label { font-size: .72rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--faint); margin: 0 18px 4px; }
.cond-pill {
  display: flex; align-items: center; gap: 11px; width: 100%; text-align: left;
  background: transparent; border: 1px solid transparent; border-radius: var(--r-pill);
  padding: 11px 18px; font-weight: 500; font-size: .98rem; color: var(--ink);
  transition: background .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.cond-pill:hover { background: #fff; border-color: var(--hair); }
.cond-pill[aria-selected="true"] { background: #fff; border-color: var(--hair); box-shadow: var(--shadow); font-weight: 600; }
.cp-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--none); flex: none; transition: background .18s; }
.cond-pill[aria-selected="true"] .cp-dot { background: var(--red); }

.rail-skip { font-size: .85rem; color: var(--faint); line-height: 1.5; }
.rail-skip a {
  color: var(--gray); font-weight: 500;
  text-decoration: underline; text-decoration-color: rgba(23,23,26,.25); text-underline-offset: 3px;
  transition: color .15s ease, text-decoration-color .15s ease;
}
.rail-skip a:hover { color: var(--ink); text-decoration-color: currentColor; }
@media (min-width: 901px) {
  .finder-cols { grid-template-rows: auto 1fr; row-gap: 20px; }
  .cond-view { grid-column: 2; grid-row: 1 / -1; }
  .rail-skip { grid-column: 1; grid-row: 2; align-self: start; margin: 0 18px; }
}

.cond-panel { display: none; }
.cond-panel[data-active="true"] { display: block; animation: fade .4s var(--ease); }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .cond-panel[data-active="true"] { animation: none; } }
.cd-cat { font-size: .72rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--faint); }
.cd-name { margin-top: 6px; font-size: clamp(1.4rem, 2.4vw, 1.8rem); letter-spacing: -0.02em; line-height: 1.1; }
.cd-tally { margin-top: 10px; color: var(--gray); font-size: 1rem; }
.cd-tally b { color: var(--red); font-weight: 600; }

.cd-thin { margin-top: 8px; padding-left: 11px; border-left: 2px solid var(--hair); color: var(--faint); font-size: .84rem; line-height: 1.5; max-width: 64ch; }

.wl-map { margin-top: 24px; background: #fff; border: 1px solid var(--hair-2); border-radius: var(--r); padding: 20px 22px; }
.wl-h {
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--faint); margin-bottom: 6px; line-height: 1.6; text-wrap: balance;
}

.wl-def { margin-bottom: 16px; font-size: .86rem; color: var(--gray); line-height: 1.55; max-width: 64ch; }
.wl-def b { font-weight: 600; color: var(--ink); }

.wl-zones { display: flex; flex-wrap: wrap; gap: 18px 36px; }
.wl-zone { display: flex; flex-direction: column; gap: 10px; }
.wl-bands { display: flex; gap: 6px; }
.wl-nm {
  font-size: .78rem; font-weight: 500; font-variant-numeric: tabular-nums;
  padding: 5px 11px; border-radius: var(--r-pill);
  color: var(--none); background: transparent; border: 1px solid var(--hair-2);
}
.wl-nm.on { font-weight: 600; color: #fff; background: var(--red); border-color: var(--red); }
.wl-zl { font-size: .8rem; font-weight: 600; color: var(--faint); }
.wl-zone.on .wl-zl { color: var(--ink); }
.wl-zl .wl-zd { display: block; font-weight: 400; font-size: .74rem; color: var(--faint); margin-top: 1px; }
.wl-note { margin-top: 16px; font-size: .8rem; color: var(--faint); line-height: 1.5; max-width: 70ch; }

.cd-match { margin-top: 24px; }
.cdm-h { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); }
.cdm-sub { margin-top: 6px; color: var(--gray); font-size: .9rem; max-width: 74ch; }

.cdm-sub b { color: var(--red); font-weight: 600; }
.match-card {
  margin-top: 12px; display: grid; grid-template-columns: auto 1fr; gap: 26px; align-items: center;
  background: #fff; border: 1px solid var(--hair-2); border-radius: var(--r); padding: 22px;
}
.match-card .mc-media img { width: 120px; height: 120px; object-fit: contain; }
.mc-rank { font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--faint); }
.mc-name { margin-top: 4px; font-weight: 600; font-size: 1.14rem; letter-spacing: -0.01em; }
.mc-name .m, .ma-name .m { color: var(--gray); font-weight: 400; font-size: .9rem; margin-left: 8px; }
.mc-zones { margin-top: 14px; display: flex; gap: 26px; flex-wrap: wrap; }
.mc-zones .m-k { font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--faint); }
.mc-zones .m-v { font-weight: 600; margin-top: 3px; font-size: .95rem; font-variant-numeric: tabular-nums; }

.mc-cta { margin-top: 18px; display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.mc-cta .offer { margin: 0; }
.mc-cta .mc-offer-note { flex-basis: 100%; margin: 0; max-width: 62ch; }
.mc-alt {
  margin-top: 10px; display: grid; grid-template-columns: 28px 1fr auto; gap: 14px; align-items: center;
  background: #fff; border: 1px solid var(--hair-2); border-radius: var(--r); padding: 13px 20px;
}
.mc-alt .ma-rank { color: var(--faint); font-weight: 600; font-variant-numeric: tabular-nums; }
.mc-alt .ma-name b { font-weight: 600; }
.mc-alt .link-more { font-size: .92rem; }
.mc-foot { margin-top: 14px; font-size: .9rem; color: var(--gray); }
.mc-foot a { font-weight: 500; text-decoration: underline; text-decoration-color: rgba(23,23,26,.25); text-underline-offset: 3px; transition: color .15s ease, text-decoration-color .15s ease; }
.mc-foot a:hover { color: var(--ink); text-decoration-color: currentColor; }
.cd-match .small { margin-top: 8px; max-width: 70ch; }

.cd-studies { margin-top: 24px; }
.cds-h { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); margin-bottom: 10px; }
.study-frame { position: relative; background: #fff; border: 1px solid var(--hair-2); border-radius: var(--r); }
.study-frame::before, .study-frame::after { content: ""; position: absolute; left: 1px; right: 14px; height: 16px; pointer-events: none; z-index: 1; }
.study-frame::before { top: 1px; border-radius: var(--r) var(--r) 0 0; background: linear-gradient(#fff, rgba(255,255,255,0)); }
.study-frame::after { bottom: 1px; border-radius: 0 0 var(--r) var(--r); background: linear-gradient(rgba(255,255,255,0), #fff); }
.study-scroll { max-height: 380px; overflow-y: auto; overscroll-behavior: contain; padding: 6px 20px; }

.faq { margin-top: 34px; display: flex; flex-direction: column; gap: 12px; }
.faq .faq-item { background: #fff; border: 1px solid var(--hair); border-radius: var(--r); overflow: hidden; transition: box-shadow .2s, border-color .2s; }
.faq .faq-item[open] { box-shadow: var(--shadow); border-color: var(--hair-2); }
.faq .faq-item summary { list-style: none; cursor: pointer; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 18px; font-weight: 600; font-size: 1.05rem; }
.faq .faq-item summary::-webkit-details-marker { display: none; }
.faq .faq-item .f-chev { width: 20px; height: 20px; flex: none; color: var(--faint); transition: transform .25s var(--ease); }
.faq .faq-item[open] .f-chev { transform: rotate(180deg); }

.faq .faq-a { padding: 0 24px 22px; }

.faq .faq-a > p { color: var(--gray); padding-top: 16px; border-top: 1px solid var(--hair-2); }

@media (max-width: 900px) {
  .finder-cols { grid-template-columns: 1fr; gap: 20px; }
  .cond-list { flex-direction: row; gap: 8px; overflow-x: auto; margin: 0 -6px; padding: 4px 6px 10px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .cond-list::-webkit-scrollbar { display: none; }
  .cond-group { display: contents; }
  .cg-label { display: none; }
  .cond-pill { width: auto; flex: none; white-space: nowrap; background: #fff; border-color: var(--hair); padding: 9px 16px; }
  .cond-pill[aria-selected="true"] { border-color: rgba(158,27,27,.35); }
}
@media (max-width: 680px) {
  .study-scroll { max-height: 340px; padding: 4px 14px; }
  .match-card { grid-template-columns: 1fr; gap: 16px; padding: 18px; }

  .match-card .mc-media img { margin-inline: auto; }
  .mc-alt { grid-template-columns: 22px 1fr; padding: 12px 16px; }
  .mc-alt .link-more { grid-column: 2; justify-self: start; }
  .ma-name .m { display: block; margin: 2px 0 6px; }

  .mc-cta { flex-direction: column; align-items: stretch; }
  .mc-cta .offer { width: 100%; justify-content: center; }
  .mc-cta .mc-offer-note { flex-basis: auto; }

  .mc-cta .btn, .rank-card .btn-primary, .rb-cta .btn { display: flex; width: 100%; justify-content: center; }

  .rb-cta { display: flex; flex-direction: column; align-items: stretch; gap: 12px; }
  .rb-cta .offer { margin-left: 0 !important; justify-content: center; }
}

.finder-hero {
  text-align: center;
  background: radial-gradient(125% 92% at 50% -14%, #f7f4f1 0%, #efe9e4 66%, #ebe5e0 100%);

  padding-block: clamp(72px, 9vw, 132px);
}

.finder-band { background: #fff; text-align: center; padding-block: clamp(52px, 7vw, 94px); }

.finder-hero .h-hero { margin: 0 auto; max-width: 1060px; font-size: clamp(1.8rem, 4.1vw, 2.8rem); line-height: 1.08; letter-spacing: -0.03em; text-wrap: balance; }
.finder-hero .h-hero em { font-style: italic; }
.finder-hero .lead { margin: 26px auto 0; max-width: 70ch; color: var(--gray); text-wrap: pretty; }

.finder-hero .hero-cta { margin-top: 32px; justify-content: center; }
.finder-hero .hero-cta a.cta-primary {
  display: inline-block; background: var(--red); color: #fff;
  font-weight: 600; font-size: 1.02rem; letter-spacing: -0.005em;
  padding: 14px 32px; border-radius: var(--r-pill); text-decoration: none;
  box-shadow: 0 1px 2px rgba(23,23,26,.08), 0 10px 26px rgba(158,27,27,.22);
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.finder-hero .hero-cta a.cta-primary:hover { background: var(--red-deep); transform: translateY(-1px); }
.finder-hero .hero-cta a.cta-primary:active { transform: translateY(0); }

.finder-hero .hero-cta a.cta-secondary {
  display: inline-block; background: transparent; color: var(--gray);
  font-weight: 500; font-size: 1.02rem; letter-spacing: -0.005em;
  padding: 13px 31px; border: 1px solid rgba(23,23,26,.16);
  border-radius: var(--r-pill); text-decoration: none;
  transition: color .15s ease, border-color .15s ease;
}
.finder-hero .hero-cta a.cta-secondary:hover { color: var(--ink); border-color: rgba(23,23,26,.38); }

.how-steps { background: var(--off); padding-block: clamp(48px, 6vw, 86px); text-align: center; }
.how-steps .unit { max-width: none; margin: 0 auto; }
.how-steps .h-1 { max-width: 22ch; margin: 0 auto; }
.how-steps .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: clamp(36px, 4.2vw, 56px); }
.how-steps .step {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 36px 28px; border-radius: var(--r-lg); background: #fff;
  border: 1px solid var(--hair); color: inherit;
  transition: transform .16s var(--ease), box-shadow .16s var(--ease), border-color .16s var(--ease);
}
.how-steps a.step:hover {
  transform: translateY(-3px); border-color: var(--hair-2);
  box-shadow: 0 1px 2px rgba(23,23,26,.04), 0 18px 40px rgba(23,23,26,.09);
}
.how-steps a.step:active { transform: translateY(-1px); }
.how-steps .step-n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--ink); color: #fff; font-weight: 600; font-size: 1.08rem;
}
.how-steps .step-h { margin: 18px 0 8px; font-size: 1.22rem; font-weight: 600; letter-spacing: -0.015em; }
.how-steps .step-b { margin: 0; color: var(--gray); font-size: 1.06rem; line-height: 1.55; max-width: 32ch; }
.how-steps .steps-foot {
  margin: clamp(34px, 4vw, 52px) auto 0; max-width: 58ch;
  color: var(--ink); font-weight: 500; font-size: 1.1rem;
}
@media (max-width: 760px) {
  .how-steps .steps { grid-template-columns: 1fr; gap: 18px; max-width: 460px; margin-left: auto; margin-right: auto; }
}
