:root {
  --ink: #0d0d0d;
  --text: #151515;
  --paper: #f7f4ed;
  --white: #ffffff;
  --yellow: #f9c61c;
  --yellow-deep: #e6af00;
  --line: #ded9cf;
  --muted: #66645f;
  --green: #24a56f;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button, input, summary { font: inherit; }
button, summary { color: inherit; }
button, a, summary { touch-action: manipulation; }
img { max-width: 100%; height: auto; }
:focus-visible { outline: 3px solid var(--ink); outline-offset: 4px; box-shadow: 0 0 0 6px var(--yellow); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 16px;
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  transform: translateY(-180%);
  transition: transform .15s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: min(1320px, calc(100% - 48px));
  height: 90px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  background: rgba(247, 244, 237, .96);
  border-bottom: 2px solid var(--ink);
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; width: fit-content; }
.brand img { display: block; width: 154px; height: auto; }
.site-header nav { display: flex; justify-content: center; gap: 34px; font-size: 13px; font-weight: 800; }
.site-header nav a { padding: 11px 0; border-bottom: 3px solid transparent; }
.site-header nav a:hover, .site-header nav a:focus-visible { border-color: var(--yellow); }
.header-cta, .button-primary {
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
}
.header-cta { padding: 15px 20px; font-size: 13px; }
.mobile-menu { display: none; position: relative; }
.mobile-menu summary { cursor: pointer; list-style: none; padding: 13px 15px; border: 2px solid var(--ink); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu div { position: absolute; top: 54px; right: 0; width: 230px; display: grid; background: var(--white); border: 2px solid var(--ink); box-shadow: 7px 7px 0 var(--yellow); }
.mobile-menu div a { padding: 15px; border-bottom: 1px solid var(--line); font-size: 13px; font-weight: 800; }
.mobile-menu div a:last-child { border-bottom: 0; }

.breadcrumbs {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 22px;
}
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; color: var(--muted); font-size: 11px; font-weight: 800; }
.breadcrumbs li + li::before { content: "/"; margin-right: 8px; color: #8d8981; }
.breadcrumbs a { text-decoration: underline; text-underline-offset: 3px; }
.breadcrumbs [aria-current="page"] { color: var(--ink); }

.hero {
  width: min(1320px, calc(100% - 48px));
  min-height: 650px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: clamp(52px, 7vw, 110px);
  align-items: center;
  padding: 52px 0 76px;
}
.eyebrow, .section-index {
  margin: 0 0 22px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 10px; height: 10px; background: var(--yellow); border-radius: 50%; box-shadow: 0 0 0 5px rgba(249,198,28,.22); }
.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(49px, 5.2vw, 82px);
  line-height: .98;
  letter-spacing: -.057em;
  font-weight: 900;
}
.hero-lead { max-width: 680px; margin: 30px 0 0; color: #45433f; font-size: 19px; line-height: 1.62; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 25px;
  border: 2px solid var(--ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  transition: transform .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 5px 5px 0 var(--yellow-deep); }
.button-secondary { background: transparent; }
.hero-note { margin: 20px 0 0; color: var(--muted); font-size: 13px; }

.hero-panel { position: relative; background: var(--white); border: 2px solid var(--ink); box-shadow: 18px 18px 0 var(--yellow); }
.hero-panel::before { content: ""; position: absolute; width: 92px; height: 92px; border: 1px solid var(--line); border-radius: 50%; top: -46px; right: -34px; z-index: -1; }
.panel-head { display: flex; justify-content: space-between; gap: 20px; padding: 18px 22px; border-bottom: 1px solid var(--line); font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.live-dot { display: flex; align-items: center; gap: 6px; }
.live-dot::before { content: ""; width: 7px; height: 7px; background: var(--green); border-radius: 50%; }
.panel-question { padding: 33px 32px 30px; }
.panel-question > p { margin: 0 0 18px; font-size: 23px; font-weight: 900; }
.panel-option { display: flex; align-items: center; gap: 14px; margin-top: 10px; padding: 16px; border: 1px solid var(--line); font-weight: 800; font-size: 14px; transition: background .18s ease, border-color .18s ease, box-shadow .18s ease; }
.panel-option span { color: var(--muted); font-size: 11px; }
.panel-option b { margin-left: auto; font-size: 16px; }
.panel-option:hover, .panel-option:focus-visible { background: var(--yellow); border-color: var(--ink); box-shadow: 4px 4px 0 var(--ink); }
.panel-option:hover span, .panel-option:focus-visible span { color: var(--ink); }
.panel-stats { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--ink); color: var(--white); }
.panel-stats div { padding: 21px 18px; border-right: 1px solid #3e3e3e; }
.panel-stats div:last-child { border-right: 0; }
.panel-stats strong, .panel-stats span { display: block; }
.panel-stats strong { font-size: 23px; }
.panel-stats span { margin-top: 4px; color: #bdbdbd; font-size: 10px; text-transform: uppercase; letter-spacing: .09em; }

.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--yellow); border-block: 2px solid var(--ink); }
.trust-strip span { display: flex; justify-content: center; gap: 10px; padding: 18px 12px; border-right: 1px solid rgba(13,13,13,.25); font-size: 13px; font-weight: 800; }
.trust-strip span:last-child { border: 0; }

.facts-strip {
  width: min(1320px, calc(100% - 48px));
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--white);
  border: 1px solid var(--line);
}
.facts-strip > div { min-width: 0; padding: 18px 20px; border-right: 1px solid var(--line); }
.facts-strip > div:last-child { border-right: 0; }
.facts-strip dt { margin: 0 0 7px; color: #77736b; font-size: 9px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.facts-strip dd { margin: 0; font-size: 13px; line-height: 1.35; font-weight: 900; }

.spotlight-section, .finder-section, .catalog-section, .decision-guide-section, .how-section, .about-section, .faq-section {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}
.spotlight-section {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  min-height: 520px;
  margin-top: 52px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  border: 2px solid var(--ink);
  box-shadow: 14px 14px 0 var(--yellow);
}
.spotlight-visual { position: relative; min-height: 520px; overflow: hidden; background: #1b1b1b; }
.spotlight-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 58%, rgba(13,13,13,.72)); pointer-events: none; }
.spotlight-visual img { position: absolute; inset: 0; width: 100%; height: 100%; display: block; object-fit: cover; object-position: 50% 28%; }
.spotlight-visual > span { position: absolute; left: 24px; bottom: 24px; z-index: 2; padding: 10px 12px; background: var(--yellow); color: var(--ink); font-size: 10px; font-weight: 900; letter-spacing: .1em; }
.spotlight-copy { align-self: center; padding: clamp(42px, 6vw, 78px); }
.spotlight-copy .section-index { color: var(--yellow); }
.spotlight-copy h2 { max-width: 720px; margin: 0; font-size: clamp(36px, 4vw, 60px); line-height: 1; letter-spacing: -.045em; }
.spotlight-copy > p:not(.section-index) { max-width: 720px; margin: 28px 0 0; color: #d0d0d0; font-size: 16px; line-height: 1.7; }
.spotlight-meta { display: flex; flex-wrap: wrap; gap: 9px; margin: 28px 0 0; padding: 0; list-style: none; }
.spotlight-meta li { padding: 9px 11px; border: 1px solid #555; color: #efefef; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }
.spotlight-copy .button { margin-top: 30px; background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.spotlight-copy .button:hover { box-shadow: 5px 5px 0 var(--white); }
.finder-section { padding: 106px 0 46px; }
.catalog-section { padding: 72px 0 116px; }
.section-heading { display: grid; grid-template-columns: 1.5fr .65fr; gap: 70px; align-items: end; margin-bottom: 48px; }
.section-index { color: #5f5c56; }
.section-heading h2, .definition-section h2, .about-section h2, .faq-section h2, .book-section h2 {
  margin: 0;
  font-size: clamp(38px, 4.2vw, 62px);
  line-height: 1;
  letter-spacing: -.045em;
  font-weight: 900;
}
.section-heading h2 { max-width: 820px; }
.section-heading > p { margin: 0; color: var(--muted); line-height: 1.65; }

.finder-heading { margin-bottom: 42px; }
.finder-shell { display: grid; grid-template-columns: 1.08fr .92fr; gap: 20px; align-items: start; }
.finder-fieldset { min-width: 0; margin: 0; padding: 24px; background: var(--white); border: 2px solid var(--ink); }
.finder-fieldset legend { max-width: 560px; padding: 0 9px; font-size: 14px; line-height: 1.45; font-weight: 900; }
.finder-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 18px; }
.finder-choice:last-child:nth-child(odd) { grid-column: 1 / -1; }
.finder-choice { position: relative; min-width: 0; min-height: 118px; display: grid; grid-template-columns: 20px 28px minmax(0, 1fr); gap: 12px; align-items: start; padding: 19px 17px; background: var(--paper); border: 1px solid var(--line); cursor: pointer; scroll-margin-top: 120px; transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease; }
.finder-choice:hover { border-color: var(--ink); transform: translateY(-2px); }
.finder-choice.selected { background: var(--yellow); border: 2px solid var(--ink); box-shadow: 5px 5px 0 var(--ink); }
.finder-choice input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--ink); cursor: pointer; }
.finder-choice-number { padding-top: 3px; color: #5f5c56; font-size: 10px; font-weight: 900; letter-spacing: .1em; }
.finder-choice-copy { min-width: 0; display: grid; gap: 8px; overflow-wrap: anywhere; hyphens: auto; }
.finder-choice-copy strong { font-size: 14px; line-height: 1.28; }
.finder-choice-copy small { color: var(--muted); font-size: 11px; line-height: 1.45; }
.finder-choice.selected .finder-choice-number, .finder-choice.selected .finder-choice-copy small { color: #3b3219; }
.finder-selected { position: absolute; right: 9px; bottom: 8px; padding: 5px 7px; background: var(--ink); color: var(--white); font-size: 8px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.finder-note { margin: 24px 0 0; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; line-height: 1.55; }
.finder-result { position: sticky; top: 112px; min-width: 0; min-height: 430px; display: flex; align-self: start; background: var(--ink); color: var(--white); border: 2px solid var(--ink); box-shadow: 12px 12px 0 var(--yellow); overflow: hidden; scroll-margin-top: 112px; }
.finder-placeholder { min-height: 430px; display: flex; flex-direction: column; justify-content: center; padding: clamp(34px, 5vw, 62px); }
.finder-placeholder > span { color: var(--yellow); font-size: clamp(55px, 7vw, 92px); line-height: .9; font-weight: 900; letter-spacing: -.06em; }
.finder-placeholder h3 { max-width: 470px; margin: 24px 0 16px; font-size: clamp(28px, 3vw, 42px); line-height: 1; letter-spacing: -.04em; }
.finder-placeholder p { max-width: 510px; margin: 0; color: #bdbdbd; font-size: 14px; line-height: 1.7; }
.finder-result.has-result { display: grid; grid-template-rows: auto 1fr auto; background: var(--white); color: var(--ink); }
.finder-scenario-result:not([hidden]) { display: contents; }
.finder-result-main { padding: 36px 38px 32px; background: var(--ink); color: var(--white); }
.finder-kicker, .finder-result-category { margin: 0; font-size: 9px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.finder-kicker { display: inline-flex; padding: 7px 9px; background: var(--yellow); color: var(--ink); }
.finder-result-category { margin-top: 30px; color: var(--yellow); }
.finder-result-main h3 { max-width: 570px; margin: 11px 0 18px; font-size: clamp(30px, 3.2vw, 47px); line-height: 1; letter-spacing: -.04em; overflow-wrap: anywhere; hyphens: auto; }
.finder-result-main > p:not(.finder-kicker):not(.finder-result-category) { max-width: 590px; margin: 0; color: #c8c8c8; font-size: 14px; line-height: 1.68; }
.finder-result-cta { display: flex; justify-content: space-between; align-items: center; gap: 18px; margin-top: 28px; padding-top: 24px; border-top: 1px solid #444; }
.finder-result-cta > span { color: #a7a7a7; font-size: 11px; }
.finder-result-main .button-primary { min-height: 50px; background: var(--yellow); border-color: var(--yellow); color: var(--ink); }
.finder-alternatives { align-content: start; padding: 27px 38px 31px; }
.finder-alternatives > p { margin: 0 0 8px; color: #77736b; font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.finder-alternatives > a { display: flex; justify-content: space-between; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.finder-alternatives > a:last-child { border-bottom: 0; }
.finder-alternatives > a > span { display: grid; gap: 5px; }
.finder-alternatives strong { font-size: 13px; line-height: 1.35; }
.finder-alternatives small { color: var(--muted); font-size: 11px; line-height: 1.45; }
.finder-alternatives b { flex: 0 0 auto; transition: transform .18s ease; }
.finder-alternatives a:hover b { transform: translate(3px, -3px); }
.finder-reselect { display: none; width: 100%; min-height: 50px; align-items: center; justify-content: center; padding: 12px 18px; background: var(--yellow); color: var(--ink); border: 0; border-top: 2px solid var(--ink); cursor: pointer; font-size: 12px; font-weight: 900; }
.noscript-note { margin: 22px 0 0; padding: 16px 18px; background: #fff4c7; border: 1px solid var(--ink); font-size: 13px; line-height: 1.55; }

.catalog-controls { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 360px); gap: 20px; align-items: end; padding: 24px; background: var(--white); border: 2px solid var(--ink); }
.category-tabs { min-width: 0; display: flex; flex-wrap: nowrap; gap: 6px; }
.category-tabs button { min-width: 0; display: inline-flex; gap: 7px; align-items: center; min-height: 45px; padding: 0 12px; background: var(--paper); border: 1px solid var(--line); cursor: pointer; font-size: 11px; font-weight: 800; line-height: 1.25; text-align: left; }
.category-tabs button span { display: inline-flex; align-items: center; justify-content: center; min-width: 22px; height: 22px; padding: 0 5px; background: var(--white); border: 1px solid var(--line); font-size: 10px; }
.category-tabs button.active { background: var(--ink); border-color: var(--ink); color: var(--white); box-shadow: 4px 4px 0 var(--yellow); }
.category-tabs button.active span { color: var(--ink); }
.catalog-search label { display: block; margin-bottom: 8px; color: var(--muted); font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.search-field { min-height: 48px; display: grid; grid-template-columns: 28px 1fr auto; align-items: center; gap: 6px; padding: 0 12px; border: 1px solid var(--ink); }
.search-field:focus-within { outline: 3px solid var(--ink); outline-offset: 3px; box-shadow: 0 0 0 6px var(--yellow); }
.search-field > span { font-size: 24px; line-height: 1; transform: rotate(-16deg); }
.search-field input { min-width: 0; height: 46px; padding: 0; background: transparent; border: 0; outline: 0; font-size: 13px; }
.search-field button { padding: 6px; background: transparent; border: 0; cursor: pointer; font-size: 11px; font-weight: 800; text-decoration: underline; }
.result-line { min-height: 62px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.result-line p { margin: 0; color: var(--muted); font-size: 12px; }
.result-line strong { color: var(--ink); }
.result-line button { padding: 6px 0; background: transparent; border: 0; cursor: pointer; font-size: 11px; font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }

.test-grid { min-width: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.test-card { min-width: 0; min-height: 430px; display: flex; flex-direction: column; padding: 28px; background: var(--white); border: 1px solid var(--line); cursor: pointer; transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.test-card:hover { transform: translateY(-4px); border-color: var(--ink); }
.test-card:focus-visible { border-color: var(--ink); box-shadow: 7px 7px 0 var(--yellow); }
.test-card-featured { background: var(--ink); color: var(--white); border-color: var(--ink); }
.test-card-yellow { background: var(--yellow); border: 2px solid var(--ink); }
.card-top { display: flex; justify-content: space-between; align-items: center; min-height: 28px; }
.card-marker { color: #5f5c56; font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.test-card-featured .card-marker { color: #c9c9c9; }
.test-card-yellow .card-marker { color: var(--ink); }
.featured-label { padding: 7px 10px; background: var(--yellow); color: var(--ink); font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.test-card-yellow .featured-label { background: var(--ink); color: var(--white); }
.card-category { margin: 37px 0 12px; color: #5f5c56; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .11em; }
.test-card-featured .card-category { color: var(--yellow); }
.test-card-yellow .card-category { color: var(--ink); }
.test-card h3 { margin: 0; font-size: 26px; line-height: 1.08; letter-spacing: -.03em; overflow-wrap: anywhere; hyphens: auto; }
.card-question { margin: 19px 0 0; font-size: 14px; line-height: 1.45; font-weight: 900; }
.card-description { margin: 12px 0 28px; color: #605d57; font-size: 13px; line-height: 1.62; }
.card-description strong { color: var(--ink); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
.test-card-featured .card-description { color: #c9c9c9; }
.test-card-featured .card-description strong { color: var(--white); }
.test-card-yellow .card-description { color: #332c14; }
.card-footer { min-width: 0; margin-top: auto; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px 18px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 11px; }
.test-card-featured .card-footer { border-color: #444; }
.test-card-yellow .card-footer { border-color: rgba(13,13,13,.28); }
.card-footer > span { color: #5f5c56; }
.test-card-featured .card-footer > span { color: #a7a7a7; }
.test-card-yellow .card-footer > span { color: #3a321b; }
.card-cta { flex: 0 0 auto; font-weight: 900; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 5px; }
.card-cta > span { display: inline-block; transition: transform .18s ease; }
.test-card:hover .card-cta > span { transform: translate(3px, -3px); }
.test-card-featured .card-cta { color: var(--yellow); }
.empty-state { padding: 74px 24px; text-align: center; background: var(--white); border: 2px dashed var(--line); }
.empty-state > span { display: block; color: var(--yellow-deep); font-size: 74px; line-height: 1; font-weight: 900; }
.empty-state h3 { margin: 10px 0; font-size: 28px; }
.empty-state p { margin: 0 0 25px; color: var(--muted); }

.decision-guide-section { padding: 108px 0 118px; border-top: 1px solid var(--line); }
.decision-guide-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.decision-guide-card { min-width: 0; padding: 30px; background: var(--white); border: 1px solid var(--line); }
.decision-guide-card:nth-child(1), .decision-guide-card:nth-child(9) { background: var(--yellow); border: 2px solid var(--ink); }
.decision-guide-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
.decision-guide-topline { display: flex; justify-content: space-between; gap: 20px; color: #77736b; font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.decision-guide-card:nth-child(1) .decision-guide-topline, .decision-guide-card:nth-child(9) .decision-guide-topline { color: #473b13; }
.decision-guide-card h3 { max-width: 560px; margin: 42px 0 20px; font-size: clamp(25px, 2.5vw, 36px); line-height: 1.05; letter-spacing: -.035em; overflow-wrap: anywhere; hyphens: auto; }
.decision-guide-card > p { margin: 12px 0 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.decision-guide-card:nth-child(1) > p, .decision-guide-card:nth-child(9) > p { color: #3c3214; }
.decision-guide-answer { color: var(--ink) !important; }
.decision-guide-answer strong { display: block; margin-bottom: 5px; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.decision-guide-footer { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line); }
.decision-guide-card:nth-child(1) .decision-guide-footer, .decision-guide-card:nth-child(9) .decision-guide-footer { border-color: rgba(13,13,13,.25); }
.decision-guide-footer > span { color: #77736b; font-size: 10px; }
.decision-guide-card:nth-child(1) .decision-guide-footer > span, .decision-guide-card:nth-child(9) .decision-guide-footer > span { color: #473b13; }
.decision-guide-footer > a { flex: 0 0 auto; font-size: 12px; font-weight: 900; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 5px; }
.decision-guide-card details { margin-top: 20px; border-top: 1px solid var(--line); }
.decision-guide-card:nth-child(1) details, .decision-guide-card:nth-child(9) details { border-color: rgba(13,13,13,.25); }
.decision-guide-card summary { min-height: 48px; display: flex; align-items: center; cursor: pointer; list-style: none; font-size: 11px; font-weight: 900; }
.decision-guide-card summary::-webkit-details-marker { display: none; }
.decision-guide-card summary::after { content: "+"; margin-left: auto; font-size: 18px; font-weight: 400; }
.decision-guide-card details[open] summary::after { content: "−"; }
.decision-guide-card details > div { display: grid; padding-bottom: 7px; }
.decision-guide-card details a { display: grid; gap: 5px; padding: 14px 0; border-top: 1px solid var(--line); }
.decision-guide-card details strong { font-size: 12px; line-height: 1.4; }
.decision-guide-card details small { color: var(--muted); font-size: 11px; line-height: 1.5; }
.decision-guide-card:nth-child(1) details small, .decision-guide-card:nth-child(9) details small { color: #473b13; }

.definition-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center; padding: 100px max(24px, calc((100vw - 1320px) / 2)); background: var(--ink); color: var(--white); }
.definition-section .section-index { color: var(--yellow); }
.definition-answer { padding: 34px 0 34px 40px; border-left: 8px solid var(--yellow); }
.definition-answer p { margin: 0; font-size: clamp(19px, 2vw, 28px); line-height: 1.43; font-weight: 800; }
.definition-answer p + p { margin-top: 22px; color: #bdbdbd; font-size: 16px; font-weight: 400; line-height: 1.65; }

.how-section { padding: 112px 0 120px; }
.compact-heading { grid-template-columns: 1.25fr .75fr; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 2px solid var(--ink); }
.steps-grid article { min-height: 280px; padding: 28px; background: var(--white); border-right: 1px solid var(--line); }
.steps-grid article:last-child { border-right: 0; background: var(--yellow); }
.steps-grid article > span { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: var(--ink); color: var(--white); font-size: 11px; font-weight: 900; }
.steps-grid h3 { margin: 76px 0 14px; font-size: 20px; line-height: 1.15; }
.steps-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.steps-grid article:last-child p { color: #3b3219; }

.method-callout { width: min(1320px, calc(100% - 48px)); margin: 0 auto 116px; display: grid; grid-template-columns: 210px 1fr; background: var(--yellow); border: 2px solid var(--ink); box-shadow: 12px 12px 0 var(--ink); }
.callout-label { display: flex; align-items: center; justify-content: center; padding: 28px; border-right: 2px solid var(--ink); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-align: center; }
.callout-copy { padding: 46px 52px; }
.callout-copy h2 { max-width: 850px; margin: 0 0 24px; font-size: clamp(30px, 3vw, 47px); line-height: 1.03; letter-spacing: -.035em; }
.callout-copy > p { max-width: 930px; margin: 12px 0 0; font-size: 15px; line-height: 1.7; }
.crisis-support { max-width: 930px; margin-top: 24px; padding: 20px 22px; background: var(--ink); color: var(--white); border: 2px solid var(--ink); }
.crisis-support h3 { margin: 0 0 10px; color: var(--yellow); font-size: 18px; line-height: 1.25; }
.crisis-support p { margin: 0; font-size: 15px; line-height: 1.7; }
.crisis-support a { color: var(--yellow); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }
.crisis-support a:hover { color: var(--white); }
.method-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.method-meta span { padding: 9px 11px; background: var(--ink); color: var(--white); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }

.about-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; padding: 105px 0 115px; border-top: 1px solid var(--line); }
.about-copy { max-width: 720px; }
.lead-quote { margin: 0; font-size: clamp(21px, 2.4vw, 32px); line-height: 1.4; font-weight: 800; }
.about-copy > p:not(.lead-quote) { margin: 25px 0 0; color: var(--muted); font-size: 15px; line-height: 1.75; }
.author-links { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 30px; }
.author-links a { font-size: 13px; font-weight: 900; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 6px; }

.book-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(55px, 8vw, 120px); align-items: center; padding: 100px max(24px, calc((100vw - 1320px) / 2)); background: var(--yellow); border-block: 2px solid var(--ink); }
.book-visual { position: relative; min-height: 500px; display: flex; align-items: center; justify-content: center; padding: 28px; isolation: isolate; }
.book-visual::before { content: ""; position: absolute; inset: 18px 4% 18px 2%; z-index: -2; background: var(--white); border: 2px solid var(--ink); box-shadow: 14px 14px 0 var(--ink); }
.book-visual::after { content: ""; position: absolute; top: 0; right: 0; z-index: -1; width: 108px; height: 108px; background: repeating-linear-gradient(135deg, var(--ink) 0 12px, transparent 12px 24px); }
.book-product-image { display: block; width: min(500px, 96%); height: auto; transform: rotate(-1.5deg); filter: drop-shadow(0 22px 20px rgba(13,13,13,.22)); }
.book-author-image { width: min(650px, 100%); transform: none; border: 2px solid var(--ink); filter: none; }
.book-visual-label { position: absolute; right: 3%; bottom: 10px; z-index: 2; padding: 9px 12px; background: var(--ink); color: var(--white); font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.book-copy { max-width: 720px; }
.book-copy .section-index { color: var(--ink); }
.book-copy > p:not(.section-index) { max-width: 650px; margin: 28px 0 0; font-size: 17px; line-height: 1.7; }
.book-copy .button:hover { box-shadow: 5px 5px 0 var(--white); }

.faq-section { display: grid; grid-template-columns: .78fr 1.22fr; gap: 100px; padding: 116px 0 125px; }
.faq-intro { position: sticky; top: 125px; align-self: start; }
.faq-list { border-top: 2px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 82px; display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 18px; cursor: pointer; list-style: none; font-size: 17px; font-weight: 900; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary > span { color: #5f5c56; font-size: 10px; letter-spacing: .1em; }
.faq-list summary b { font-size: 22px; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary b { transform: rotate(45deg); }
.faq-list details p { margin: -4px 55px 28px; color: var(--muted); font-size: 14px; line-height: 1.7; }

.site-footer { padding: 76px max(24px, calc((100vw - 1320px) / 2)) 24px; background: var(--ink); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr 1fr; gap: 80px; padding-bottom: 60px; }
.footer-brand img { width: 205px; height: auto; filter: invert(1); }
.footer-brand p { max-width: 410px; margin: 28px 0 0; color: #a9a9a9; font-size: 14px; line-height: 1.65; }
.footer-grid h2 { margin: 0 0 22px; color: var(--yellow); font-size: 11px; text-transform: uppercase; letter-spacing: .13em; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; }
.footer-grid a, .footer-grid p { margin: 0 0 10px; color: #c9c9c9; font-size: 13px; line-height: 1.45; }
.footer-grid a:hover { color: var(--yellow); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid #383838; color: #888; font-size: 11px; }
.footer-bottom a { color: var(--white); font-weight: 800; }

#azonnali-segitseg { scroll-margin-top: 120px; }

@supports (content-visibility: auto) {
  .test-card { content-visibility: auto; contain-intrinsic-size: none auto 430px; }
  .decision-guide-card { content-visibility: auto; contain-intrinsic-size: none auto 390px; }
}

@media (max-width: 1280px) {
  .catalog-controls { grid-template-columns: 1fr; }
  .category-tabs { flex-wrap: wrap; }
}

@media (max-width: 1100px) {
  .facts-strip { grid-template-columns: repeat(3, 1fr); }
  .facts-strip > div:nth-child(3) { border-right: 0; }
  .facts-strip > div:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .test-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid article:nth-child(2) { border-right: 0; }
  .steps-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .about-section, .faq-section { gap: 60px; }
}

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto auto; gap: 12px; background: var(--paper); backdrop-filter: none; }
  .site-header nav { display: none; }
  .mobile-menu { display: block; }
  .hero { grid-template-columns: 1fr; padding-top: 58px; }
  .hero-copy { max-width: 760px; }
  .hero-panel { max-width: 650px; }
  .spotlight-section, .section-heading, .definition-section, .about-section, .faq-section, .book-section { grid-template-columns: 1fr; }
  .spotlight-visual { min-height: 560px; }
  .spotlight-visual::after { background: linear-gradient(0deg, rgba(13,13,13,.7), transparent 46%); }
  .finder-shell { grid-template-columns: 1fr; }
  .finder-result { position: static; top: auto; }
  .finder-reselect:not([hidden]) { display: flex; }
  .decision-guide-grid { grid-template-columns: 1fr; }
  .section-heading { gap: 24px; }
  .section-heading > p { max-width: 650px; }
  .definition-section, .book-section { gap: 45px; }
  .definition-answer { max-width: 760px; }
  .method-callout { grid-template-columns: 1fr; }
  .callout-label { justify-content: flex-start; border-right: 0; border-bottom: 2px solid var(--ink); }
  .about-copy { max-width: 790px; }
  .book-visual { min-height: 460px; }
  .book-product-image { width: min(470px, 88%); }
  .faq-intro { position: static; }
  .footer-grid { grid-template-columns: 1.1fr .8fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-strip span:nth-child(2) { border-right: 0; }
  .trust-strip span:nth-child(-n+2) { border-bottom: 1px solid rgba(13,13,13,.25); }
}

@media (max-width: 660px) {
  html { scroll-padding-top: 90px; }
  .site-header, .breadcrumbs, .hero, .facts-strip, .spotlight-section, .finder-section, .catalog-section, .decision-guide-section, .how-section, .about-section, .faq-section, .method-callout { width: min(100% - 30px, 1320px); }
  .site-header { height: 78px; grid-template-columns: 1fr auto auto; gap: 8px; }
  .brand img { width: 105px; }
  .header-cta { min-height: 42px; display: inline-flex; align-items: center; padding: 0 10px; font-size: 11px; }
  .mobile-menu summary { padding: 12px 11px; font-size: 11px; }
  .mobile-menu div { top: 50px; }
  .breadcrumbs { padding-top: 16px; }
  .hero { min-height: 0; padding: 38px 0 62px; gap: 52px; }
  .hero h1 { font-size: clamp(43px, 13.4vw, 60px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-panel { box-shadow: 9px 9px 0 var(--yellow); }
  .panel-question { padding: 26px 20px; }
  .panel-stats div { padding-inline: 12px; }
  .panel-stats strong { font-size: 19px; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip span { border-right: 0; border-bottom: 1px solid rgba(13,13,13,.25); }
  .facts-strip { grid-template-columns: 1fr 1fr; margin-top: 24px; }
  .facts-strip > div, .facts-strip > div:nth-child(3) { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .facts-strip > div:nth-child(even) { border-right: 0; }
  .facts-strip > div:last-child { grid-column: 1 / -1; border-right: 0; border-bottom: 0; }
  .spotlight-section { min-height: 0; margin-top: 34px; box-shadow: 8px 8px 0 var(--yellow); }
  .spotlight-visual { min-height: 390px; }
  .spotlight-visual > span { left: 16px; bottom: 16px; }
  .spotlight-copy { padding: 38px 24px 42px; }
  .spotlight-copy h2 { font-size: clamp(36px, 11vw, 48px); overflow-wrap: anywhere; }
  .spotlight-copy > p:not(.section-index) { font-size: 15px; }
  .spotlight-copy .button { width: 100%; }
  .finder-section { padding: 80px 0 34px; }
  .finder-heading { margin-bottom: 32px; }
  .finder-fieldset { padding: 15px; }
  .finder-options { grid-template-columns: 1fr; }
  .finder-choice { min-height: 102px; padding: 17px 14px; }
  .finder-placeholder { min-height: 330px; padding: 34px 28px; }
  .finder-result { box-shadow: 7px 7px 0 var(--yellow); }
  .finder-result-main { padding: 31px 25px 27px; }
  .finder-result-cta { align-items: stretch; flex-direction: column; }
  .finder-result-cta .button { width: 100%; }
  .finder-alternatives { padding: 24px 25px 27px; }
  .catalog-section { padding: 58px 0 86px; }
  .catalog-controls { padding: 15px; }
  .category-tabs { display: grid; grid-template-columns: 1fr 1fr; }
  .category-tabs button:first-child { grid-column: 1 / -1; }
  .category-tabs button { justify-content: space-between; padding-inline: 11px; }
  .search-field { grid-template-columns: 24px 1fr; }
  .search-field button { grid-column: 1 / -1; padding: 0 0 10px; text-align: right; }
  .test-grid { grid-template-columns: 1fr; }
  .test-card { min-height: 390px; padding: 25px; }
  .decision-guide-section { padding: 82px 0 90px; }
  .decision-guide-card { padding: 25px; }
  .decision-guide-card h3 { margin-top: 34px; }
  .decision-guide-footer { align-items: flex-start; flex-direction: column; }
  .definition-section, .book-section, .site-footer { padding-inline: 15px; }
  .definition-section { padding-block: 78px; }
  .definition-answer { padding: 24px 0 24px 22px; border-left-width: 5px; }
  .how-section { padding: 84px 0 88px; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid article, .steps-grid article:nth-child(2) { min-height: 230px; border-right: 0; border-bottom: 1px solid var(--line); }
  .steps-grid article:last-child { border-bottom: 0; }
  .steps-grid h3 { margin-top: 48px; }
  .method-callout { margin-bottom: 82px; box-shadow: 7px 7px 0 var(--ink); }
  .callout-copy { padding: 32px 24px; }
  .crisis-support { padding: 18px; }
  .about-section { padding: 80px 0 88px; gap: 40px; }
  .book-section { padding-block: 76px; }
  .book-visual { min-height: 390px; padding: 18px 12px; }
  .book-visual::before { inset: 12px 4% 12px 0; box-shadow: 8px 8px 0 var(--ink); }
  .book-visual::after { width: 76px; height: 76px; }
  .book-product-image { width: min(390px, 96%); }
  .book-visual-label { right: 1%; bottom: 5px; }
  .faq-section { padding: 88px 0 94px; gap: 44px; }
  .faq-list summary { min-height: 76px; grid-template-columns: 30px 1fr auto; gap: 10px; font-size: 15px; }
  .faq-list details p { margin: -2px 40px 26px; }
  .site-footer { padding-top: 60px; }
  .footer-grid { grid-template-columns: 1fr; gap: 44px; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
