:root {
  --bg: #fbf8f2;
  --paper: #ffffff;
  --ink: #193249;
  --muted: #61707d;
  --primary: #0c526b;
  --primary-dark: #073c50;
  --cta: #e8481d;
  --cta-dark: #cb3813;
  --teal: #138a87;
  --mint: #dff5ef;
  --line: #e5dfd5;
  --soft: #f4efe6;
  --hero: #f8f1e4;
  --shadow: 0 18px 50px rgba(25, 50, 73, 0.1);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; background: var(--bg); color: var(--ink); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; -webkit-font-smoothing: antialiased; }
a { color: inherit; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }
.container { width: min(1180px, calc(100% - 36px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header { position: sticky; top: 0; z-index: 60; border-bottom: 1px solid rgba(229,223,213,.9); background: rgba(255,255,255,.95); backdrop-filter: blur(12px); }
.header-inner { min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 850; text-decoration: none; letter-spacing: -.03em; }
.brand-mark { display: grid; place-items: center; width: 37px; height: 37px; border-radius: 13px; background: var(--primary); color: white; font-size: 19px; box-shadow: 0 8px 20px rgba(12,82,107,.18); }
.brand-mark.light { background: white; color: var(--primary); }
.site-header nav { display: none; align-items: center; gap: 24px; }
.site-header nav a, .search-link { color: var(--muted); font-size: 14px; font-weight: 750; text-decoration: none; }
.site-header nav a:hover, .search-link:hover { color: var(--primary); }
.search-link { display: inline-flex; min-width: 42px; min-height: 42px; align-items: center; justify-content: center; gap: 6px; border: 1px solid var(--line); border-radius: 14px; background: white; color: var(--primary); font-size: 20px; box-shadow: 0 5px 16px rgba(25,50,73,.06); }
.search-link span { display: none; }

.home-hero, .guide-hero, .page-hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 88% 10%, rgba(232,72,29,.12), transparent 28%), radial-gradient(circle at 8% 88%, rgba(19,138,135,.1), transparent 30%), var(--hero); }
.home-hero { padding: 58px 0; }
.hero-grid, .guide-hero-grid { display: grid; gap: 34px; align-items: center; }
.eyebrow, .section-kicker, .panel-kicker { display: inline-flex; color: var(--cta); font-size: 12px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 780px; margin-bottom: 20px; font-size: clamp(38px, 8vw, 66px); line-height: 1.04; letter-spacing: -.055em; }
h2 { margin-bottom: 16px; font-size: clamp(27px, 4vw, 38px); line-height: 1.12; letter-spacing: -.035em; }
.home-hero h1, .page-hero h1 { margin-top: 18px; }
.home-hero p, .page-hero p, .guide-hero p, .lead, .content-split p { max-width: 710px; color: var(--muted); font-size: 17px; line-height: 1.75; }
.hero-search { display: flex; gap: 10px; max-width: 650px; margin-top: 28px; padding: 8px; border: 1px solid var(--line); border-radius: 18px; background: white; box-shadow: var(--shadow); }
.hero-search input { min-width: 0; flex: 1; border: 0; outline: 0; padding: 10px 12px; color: var(--ink); background: transparent; }
.hero-search button { border: 0; border-radius: 12px; padding: 0 20px; background: var(--primary); color: white; font-weight: 850; cursor: pointer; }
.hero-search button:hover { background: var(--primary-dark); }
.hero-search.narrow { max-width: 560px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 20px; }
.hero-trust span { border-radius: 999px; background: rgba(255,255,255,.72); padding: 8px 11px; color: var(--primary); font-size: 12px; font-weight: 800; }
.hero-panel { border: 1px solid rgba(255,255,255,.9); border-radius: 28px; background: rgba(255,255,255,.88); padding: 25px; box-shadow: var(--shadow); }
.hero-panel ol { list-style: none; margin: 18px 0 0; padding: 0; }
.hero-panel li { display: flex; align-items: center; gap: 14px; padding: 15px 0; border-top: 1px solid var(--line); }
.hero-panel li b { display: grid; place-items: center; flex: 0 0 38px; height: 38px; border-radius: 13px; background: var(--primary); color: white; }
.hero-panel li span { display: grid; gap: 3px; }
.hero-panel li small { color: var(--muted); }

.section { padding: 60px 0; }
.section.soft { border-block: 1px solid var(--line); background: var(--soft); }
.section-kicker + h2 { margin-top: 9px; }
.card-grid { display: grid; gap: 15px; margin-top: 27px; }
.guide-card { display: flex; min-height: 172px; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); background: white; padding: 20px; text-decoration: none; box-shadow: 0 7px 25px rgba(25,50,73,.055); transition: transform .2s, box-shadow .2s, border-color .2s; }
.guide-card:hover { transform: translateY(-4px); border-color: rgba(12,82,107,.28); box-shadow: 0 18px 38px rgba(25,50,73,.1); }
.guide-card small { color: var(--muted); font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.guide-card strong { margin-top: 25px; font-size: 20px; line-height: 1.25; letter-spacing: -.025em; }
.guide-card span { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 20px; color: var(--primary); font-size: 14px; font-weight: 800; }
.guide-card span b { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: rgba(12,82,107,.08); }
.category-grid { display: grid; gap: 13px; margin-top: 26px; }
.category-card { display: flex; min-height: 132px; flex-direction: column; border: 1px solid var(--line); border-radius: 19px; background: white; padding: 18px; text-decoration: none; transition: .2s; }
.category-card:hover { transform: translateY(-2px); border-color: rgba(12,82,107,.3); }
.category-card strong { font-size: 16px; }
.category-card span { margin-top: 8px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.category-card b { margin-top: auto; align-self: flex-end; color: var(--primary); }
.content-split { display: grid; gap: 30px; align-items: center; }
.content-split img { border: 8px solid white; border-radius: 28px; box-shadow: var(--shadow); }
.check-list { display: grid; gap: 11px; list-style: none; padding: 0; }
.check-list li { position: relative; padding-left: 30px; color: var(--ink); font-weight: 700; line-height: 1.55; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; display: grid; width: 21px; height: 21px; place-items: center; border-radius: 50%; background: var(--mint); color: var(--teal); font-size: 12px; font-weight: 900; }

.page-hero { padding: 32px 0 52px; }
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; margin-bottom: 34px; color: var(--muted); font-size: 12px; font-weight: 700; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs b { color: var(--ink); }
.page-hero h1 { max-width: 850px; }

.guide-hero { padding: 24px 0 45px; }
.guide-hero-grid { gap: 30px; }
.brand-row { display: flex; align-items: center; gap: 12px; color: var(--primary); }
.initials { display: grid; place-items: center; width: 49px; height: 49px; border-radius: 16px; background: var(--primary); color: white; font-size: 13px; font-weight: 900; box-shadow: 0 10px 25px rgba(12,82,107,.18); }
.guide-hero h1 { margin: 22px 0 18px; }
.status-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 22px; color: var(--muted); font-size: 12px; font-weight: 750; }
.status-row span { border-radius: 999px; background: rgba(255,255,255,.74); padding: 9px 12px; box-shadow: 0 5px 15px rgba(25,50,73,.05); }

.affiliate-card { border: 1px solid rgba(255,255,255,.9); border-radius: 28px; background: white; padding: 22px; box-shadow: 0 24px 65px rgba(25,50,73,.14); }
.affiliate-card.compact { margin: 44px 0; border-color: rgba(232,72,29,.18); background: #fff5f0; box-shadow: none; }
.ad-label { color: var(--cta); font-size: 11px; font-weight: 950; letter-spacing: .11em; text-transform: uppercase; }
.affiliate-card h2 { margin: 13px 0 8px; font-size: 25px; }
.affiliate-card > p { color: var(--muted); font-size: 14px; line-height: 1.65; }
.cta-button { display: flex; min-height: 56px; width: 100%; align-items: center; justify-content: center; gap: 10px; margin-top: 18px; border: 0; border-radius: 16px; background: var(--cta); color: white; padding: 13px 20px; font-weight: 900; text-align: center; text-decoration: none; box-shadow: 0 12px 27px rgba(232,72,29,.28); transition: transform .2s, background .2s; }
.cta-button:hover { transform: translateY(-2px); background: var(--cta-dark); }
.cta-button.inline { width: auto; display: inline-flex; }
.cta-disclosure { margin: 12px 0 0; font-size: 12px !important; line-height: 1.65 !important; }
.benefits { display: grid; gap: 9px; margin: 18px 0 0; padding: 18px 0 0; border-top: 1px solid var(--line); list-style: none; color: var(--ink); font-size: 12px; font-weight: 750; }
.benefits li { color: var(--ink); }
.small-link { display: inline-flex; margin-top: 15px; color: var(--primary); font-size: 12px; font-weight: 800; text-underline-offset: 3px; }

.trust-strip { border-bottom: 1px solid var(--line); background: white; }
.trust-strip .container { display: grid; gap: 15px; padding-block: 18px; }
.trust-strip .container > div { display: flex; align-items: center; gap: 12px; }
.trust-strip b { display: grid; place-items: center; width: 41px; height: 41px; border-radius: 13px; background: rgba(12,82,107,.08); color: var(--primary); }
.trust-strip span { display: grid; gap: 2px; }
.trust-strip small { color: var(--muted); }
.article-layout { display: grid; gap: 38px; padding-block: 48px 72px; }
.toc { display: none; }
.toc strong { font-size: 13px; }
.toc ul { display: grid; gap: 12px; list-style: none; margin: 16px 0 0; padding: 0; }
.toc a { color: var(--muted); font-size: 13px; line-height: 1.4; text-decoration: none; }
.toc a:hover { color: var(--primary); }
.guide-content { min-width: 0; }
.info-note { margin-bottom: 30px; border: 1px solid #efc9ba; border-radius: 18px; background: #fff5f0; padding: 16px 18px; color: #7a4939; font-size: 13px; line-height: 1.7; }
.core-box { border-radius: 26px; background: var(--primary); padding: 24px; color: white; }
.core-box > span { color: #b9e8e5; font-size: 12px; font-weight: 850; }
.core-box h2 { margin: 9px 0 12px; font-size: 27px; }
.core-box > p { color: rgba(255,255,255,.78); line-height: 1.7; }
.facts { display: grid; gap: 10px; margin-top: 22px; }
.facts div { display: grid; gap: 7px; border-radius: 16px; background: white; padding: 16px; color: var(--ink); }
.facts small { color: var(--muted); font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.route { padding-top: 48px; scroll-margin-top: 82px; }
.route-label { display: flex; align-items: center; gap: 10px; }
.route-label span { border-radius: 999px; background: var(--mint); padding: 7px 10px; color: #176f6d; font-size: 12px; font-weight: 850; }
.route-label small { color: var(--muted); font-weight: 750; }
.route h2 { margin: 12px 0; font-size: 29px; }
.route > p, .text-section p, .self-box p, .faq details p, .info-content p { color: var(--muted); font-size: 15px; line-height: 1.85; }
.route ol { display: grid; gap: 11px; list-style: none; margin: 22px 0 0; padding: 0; }
.route li { display: flex; align-items: flex-start; gap: 14px; border: 1px solid var(--line); border-radius: 17px; background: white; padding: 16px; font-size: 14px; font-weight: 700; line-height: 1.6; }
.route li b { display: grid; flex: 0 0 32px; height: 32px; place-items: center; border-radius: 11px; background: var(--primary); color: white; }
.route li span { padding-top: 4px; }
.text-section { padding-top: 48px; scroll-margin-top: 82px; }
.text-section h2 { font-size: 29px; }
.text-section p + p { margin-top: 14px; }
.callout { margin-top: 20px; border-left: 4px solid var(--cta); background: #fff5f0; padding: 16px 18px; font-size: 14px; font-weight: 750; line-height: 1.65; }
.self-box { margin-top: 48px; border: 1px solid var(--line); border-radius: 24px; background: white; padding: 22px; }
.self-box > span, .faq > span { color: var(--primary); font-size: 13px; font-weight: 850; }
.self-box h2, .faq h2 { margin: 7px 0 10px; font-size: 29px; }
.source-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.source-links a { border: 1px solid var(--line); border-radius: 12px; background: var(--soft); padding: 11px 13px; color: var(--primary); font-size: 12px; font-weight: 800; text-decoration: none; }
.faq { padding-top: 52px; scroll-margin-top: 82px; }
.faq details { border: 1px solid var(--line); border-bottom: 0; background: white; }
.faq details:first-of-type { border-radius: 20px 20px 0 0; }
.faq details:last-of-type { border-bottom: 1px solid var(--line); border-radius: 0 0 20px 20px; }
.faq summary { display: flex; cursor: pointer; align-items: center; justify-content: space-between; gap: 20px; padding: 19px; font-size: 14px; font-weight: 850; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary b { font-size: 24px; transition: transform .2s; }
.faq details[open] summary b { transform: rotate(90deg); }
.faq details p { padding: 0 19px 19px; }
.final-cta { margin-top: 48px; border-radius: 27px; background: var(--primary); padding: 24px; color: white; }
.final-cta h2 { margin: 10px 0; }
.final-cta p { color: rgba(255,255,255,.72); line-height: 1.7; }
.final-cta .cta-button { max-width: 390px; }
.final-cta small { display: block; max-width: 700px; margin-top: 12px; color: rgba(255,255,255,.68); line-height: 1.55; }
.related { padding-top: 50px; }
.related h2 { font-size: 27px; }
.mobile-cta { position: fixed; inset: auto 0 0; z-index: 70; border-top: 1px solid var(--line); background: rgba(255,255,255,.97); padding: 6px 12px 10px; box-shadow: 0 -10px 30px rgba(25,50,73,.11); backdrop-filter: blur(10px); }
.mobile-cta small { display: block; margin-bottom: 4px; color: var(--cta); font-size: 9px; font-weight: 950; letter-spacing: .1em; text-align: center; text-transform: uppercase; }
.mobile-cta a { display: flex; min-height: 48px; align-items: center; justify-content: center; border-radius: 13px; background: var(--cta); color: white; font-size: 14px; font-weight: 900; text-decoration: none; box-shadow: 0 8px 20px rgba(232,72,29,.25); }
body:has(.mobile-cta) { padding-bottom: 76px; }

.info-content { max-width: 850px; padding-block: 38px 70px; }
.info-content section { padding: 20px 0; }
.info-content h2 { font-size: 27px; }
.empty { grid-column: 1/-1; border: 1px dashed var(--line); border-radius: 20px; padding: 30px; color: var(--muted); text-align: center; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.secondary-button { display: inline-flex; min-height: 54px; align-items: center; border: 1px solid var(--line); border-radius: 15px; background: white; padding: 12px 18px; color: var(--primary); font-weight: 850; text-decoration: none; }
.report-login { max-width: 760px; }
.report-form { display: grid; gap: 10px; max-width: 520px; margin-top: 24px; border: 1px solid var(--line); border-radius: 20px; background: white; padding: 20px; box-shadow: var(--shadow); }
.report-form label { font-size: 13px; font-weight: 850; }
.report-form input { min-height: 50px; border: 1px solid var(--line); border-radius: 13px; padding: 10px 13px; outline: 0; }
.report-form input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(12,82,107,.1); }
.report-form button { min-height: 50px; border: 0; border-radius: 13px; background: var(--primary); color: white; font-weight: 850; cursor: pointer; }
.report-error { max-width: 520px; margin-top: 18px; border: 1px solid #efc9ba; border-radius: 13px; background: #fff5f0; padding: 12px 14px; color: #8c3e26; font-size: 13px; font-weight: 750; }
.report-stats { display: grid; gap: 12px; max-width: 820px; margin-top: 26px; }
.report-stats div { display: grid; gap: 6px; border: 1px solid var(--line); border-radius: 18px; background: white; padding: 18px; }
.report-stats small { color: var(--muted); font-weight: 750; }
.report-stats strong { font-size: 27px; }
.table-wrap { overflow-x: auto; margin-top: 24px; border: 1px solid var(--line); border-radius: 18px; background: white; }
.report-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.report-table th, .report-table td { padding: 12px 14px; border-bottom: 1px solid var(--line); text-align: right; white-space: nowrap; }
.report-table th { background: var(--soft); color: var(--muted); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
.report-table th:first-child, .report-table td:first-child { min-width: 320px; text-align: left; }
.report-table a { color: var(--primary); font-weight: 750; }
.report-note { margin-top: 18px; color: var(--muted); font-size: 13px; line-height: 1.7; }

.site-footer { background: var(--primary-dark); color: white; }
.site-footer .container { padding-block: 48px 26px; }
.footer-grid { display: grid; gap: 34px; padding-bottom: 35px; border-bottom: 1px solid rgba(255,255,255,.15); }
.footer-brand { color: white; }
.site-footer p { max-width: 470px; margin-top: 16px; color: rgba(255,255,255,.7); font-size: 13px; line-height: 1.75; }
.footer-pill { display: inline-flex; margin-top: 8px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: rgba(255,255,255,.07); padding: 8px 11px; color: rgba(255,255,255,.83); font-size: 11px; font-weight: 750; }
.site-footer h3 { margin-bottom: 14px; font-size: 14px; }
.footer-links { columns: 2; list-style: none; margin: 0; padding: 0; }
.footer-links li { break-inside: avoid; margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,.68); font-size: 13px; text-decoration: none; }
.footer-links a:hover { color: white; }
.footer-ad { padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.footer-ad strong { color: #ffad94; font-size: 11px; letter-spacing: .11em; text-transform: uppercase; }
.footer-ad p { max-width: 850px; margin: 8px 0; }
.footer-ad a { color: white; font-size: 12px; font-weight: 800; text-underline-offset: 3px; }
.footer-bottom { display: flex; flex-direction: column; gap: 8px; padding-top: 23px; color: rgba(255,255,255,.52); font-size: 11px; line-height: 1.6; }

@media (min-width: 620px) {
  .container { width: min(1180px, calc(100% - 56px)); }
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .facts { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .trust-strip .container { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.2fr 1fr; }
  .report-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 900px) {
  .site-header nav { display: flex; }
  .search-link span { display: inline; font-size: 13px; }
  .search-link { padding: 0 14px; }
  .hero-grid { grid-template-columns: minmax(0,1.08fr) minmax(340px,.72fr); }
  .guide-hero-grid { grid-template-columns: minmax(0,1.08fr) 420px; }
  .home-hero { padding: 78px 0; }
  .page-hero { padding: 38px 0 68px; }
  .section { padding: 78px 0; }
  .card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .category-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .content-split { grid-template-columns: 1fr .92fr; }
  .article-layout { grid-template-columns: 235px minmax(0,760px); justify-content: center; align-items: start; }
  .toc { position: sticky; top: 95px; display: block; border: 1px solid var(--line); border-radius: 19px; background: white; padding: 18px; }
  .mobile-cta { display: none; }
  body:has(.mobile-cta) { padding-bottom: 0; }
  .footer-grid { grid-template-columns: 1.35fr .9fr .9fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 1180px) {
  .card-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

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