:root {
  --bg: #08101f;
  --bg-soft: #0e182b;
  --surface: #111e34;
  --surface-2: #16243d;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f4f7fb;
  --muted: #aab7cb;
  --accent: #6de4c7;
  --accent-strong: #27c7a4;
  --accent-soft: rgba(109, 228, 199, 0.12);
  --warning: #ffce73;
  --danger: #ff8f9a;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
button, input, select { font: inherit; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { color: inherit; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; top: 12px; left: 12px; transform: translateY(-150%); background: white; color: #000; padding: 10px 14px; border-radius: 8px; z-index: 99; }
.skip-link:focus { transform: translateY(0); }
.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; }

.site-header { position: sticky; top: 0; z-index: 30; background: rgba(8, 16, 31, 0.84); backdrop-filter: blur(18px); border-bottom: 1px solid var(--line); }
.nav-wrap { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; letter-spacing: -0.03em; }
.brand-mark { width: 36px; height: 36px; border-radius: 11px; display: grid; place-items: center; color: #06120f; background: linear-gradient(135deg, #b9ffe8, var(--accent)); font-size: 12px; box-shadow: 0 10px 28px rgba(39, 199, 164, .25); }
.main-nav { display: flex; gap: 28px; color: var(--muted); font-size: 14px; font-weight: 600; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--text); }
.menu-button { display: none; border: 1px solid var(--line); background: var(--surface); border-radius: 10px; padding: 8px 12px; }

.hero { position: relative; overflow: hidden; padding: 96px 0 76px; border-bottom: 1px solid var(--line); }
.hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(to bottom, black, transparent); pointer-events: none; }
.hero-glow { position: absolute; width: 480px; height: 480px; border-radius: 50%; filter: blur(90px); opacity: .18; pointer-events: none; }
.hero-glow-one { background: var(--accent); top: -280px; right: 3%; }
.hero-glow-two { background: #6b7cff; bottom: -330px; left: -150px; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.15fr .75fr; gap: 72px; align-items: center; }
.eyebrow { color: var(--accent); text-transform: uppercase; letter-spacing: .17em; font-size: 12px; font-weight: 800; margin-bottom: 14px; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(44px, 6vw, 76px); line-height: 1.02; letter-spacing: -.055em; margin-bottom: 24px; max-width: 820px; }
h2 { font-size: clamp(30px, 4vw, 46px); line-height: 1.1; letter-spacing: -.045em; margin-bottom: 18px; }
h3 { line-height: 1.25; letter-spacing: -.025em; }
.hero-lede { color: var(--muted); font-size: 19px; max-width: 660px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 32px 0 18px; }
.button { display: inline-flex; align-items: center; justify-content: center; border: 0; border-radius: 13px; padding: 13px 18px; font-weight: 800; cursor: pointer; transition: transform .18s ease, background .18s ease, border-color .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--accent); color: #06120f; }
.button-primary:hover { background: #8ef0d7; }
.button-secondary { background: rgba(255,255,255,.06); border: 1px solid var(--line); }
.button-secondary:hover { background: rgba(255,255,255,.1); }
.button-full { width: 100%; margin-top: 10px; }
.affiliate-note { color: #7f8da3; font-size: 12px; }

.hero-panel { background: linear-gradient(180deg, rgba(22,36,61,.95), rgba(13,24,43,.95)); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); }
.panel-topline { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 12px; margin-bottom: 18px; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px rgba(109, 228, 199, .12); }
.hero-panel h2 { font-size: 28px; }
.hero-panel form { display: grid; gap: 10px; }
.hero-panel label { margin-top: 6px; font-size: 12px; color: var(--muted); font-weight: 700; }
select, input { width: 100%; color: var(--text); background: #0b1527; border: 1px solid var(--line); border-radius: 12px; padding: 13px 14px; outline: none; }
select:focus, input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.form-result { min-height: 24px; margin: 14px 0 0; color: var(--accent); font-size: 13px; }

.trust-strip { border-bottom: 1px solid var(--line); background: #0a1425; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-grid div { padding: 23px 30px; display: grid; gap: 3px; border-right: 1px solid var(--line); }
.trust-grid div:last-child { border-right: 0; }
.trust-grid strong { font-size: 14px; }
.trust-grid span { color: var(--muted); font-size: 12px; }

.section { padding: 92px 0; }
.section-muted { background: #0a1425; border-block: 1px solid var(--line); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 36px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { color: var(--muted); max-width: 470px; margin-bottom: 5px; }

.category-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.category-card { min-height: 150px; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; gap: 5px; text-align: left; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 18px; cursor: pointer; transition: transform .18s ease, border-color .18s ease, background .18s ease; }
.category-card:hover, .category-card.active { transform: translateY(-4px); border-color: rgba(109,228,199,.7); background: linear-gradient(180deg, rgba(109,228,199,.08), var(--surface)); }
.category-icon { margin-bottom: auto; min-width: 42px; height: 42px; display: grid; place-items: center; padding-inline: 8px; border-radius: 12px; color: var(--accent); background: var(--accent-soft); font-size: 12px; font-weight: 800; }
.category-card > span:nth-child(2) { font-weight: 800; }
.category-card small { color: var(--muted); }

.recommendation-heading { align-items: center; }
.filter-wrap { display: grid; grid-template-columns: minmax(220px, 1fr) 190px; gap: 10px; }
.results-line { display: flex; justify-content: space-between; align-items: center; color: var(--muted); font-size: 13px; margin-bottom: 18px; }
.text-button { border: 0; background: transparent; color: var(--accent); cursor: pointer; font-weight: 700; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product-card { position: relative; overflow: hidden; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); display: flex; flex-direction: column; min-height: 100%; transition: transform .2s ease, border-color .2s ease; }
.product-card:hover { transform: translateY(-5px); border-color: rgba(109,228,199,.42); }
.product-visual { height: 160px; display: grid; place-items: center; background: radial-gradient(circle at 50% 0%, rgba(109,228,199,.18), transparent 55%), linear-gradient(135deg, #172842, #0d182a); border-bottom: 1px solid var(--line); }
.product-visual-inner { width: 84px; height: 84px; display: grid; place-items: center; border-radius: 24px; border: 1px solid rgba(255,255,255,.12); background: rgba(0,0,0,.18); box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 20px 40px rgba(0,0,0,.25); font-weight: 800; color: var(--accent); letter-spacing: -.03em; }
.product-badge { position: absolute; top: 14px; left: 14px; padding: 6px 9px; border-radius: 999px; background: rgba(8,16,31,.78); border: 1px solid var(--line); backdrop-filter: blur(8px); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.product-content { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.product-type { color: var(--accent); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 7px; }
.product-card h3 { font-size: 20px; margin-bottom: 9px; }
.product-summary { color: var(--muted); font-size: 13px; margin-bottom: 16px; }
.product-meta { display: flex; justify-content: space-between; gap: 12px; padding: 13px 0; border-block: 1px solid var(--line); margin-bottom: 15px; }
.product-meta div { display: grid; gap: 2px; }
.product-meta span { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.product-meta strong { font-size: 13px; }
.product-pros { list-style: none; padding: 0; margin: 0 0 18px; display: grid; gap: 7px; color: #d9e2ef; font-size: 12px; }
.product-pros li::before { content: "✓"; color: var(--accent); margin-right: 8px; font-weight: 800; }
.product-footer { margin-top: auto; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.price-band { display: grid; }
.price-band span { color: var(--muted); font-size: 10px; }
.price-band strong { font-size: 15px; }
.product-link { white-space: nowrap; padding: 10px 13px; border-radius: 11px; background: var(--accent); color: #06120f; font-size: 12px; font-weight: 800; }
.product-link:hover { background: #8ef0d7; }
.empty-state { text-align: center; border: 1px dashed var(--line); border-radius: var(--radius-md); padding: 54px 20px; color: var(--muted); }
.empty-state h3 { color: var(--text); }

.comparison-section { background: linear-gradient(135deg, #101d34, #091323); }
.comparison-grid { display: grid; grid-template-columns: 1fr .78fr; gap: 70px; align-items: center; }
.comparison-grid p { color: var(--muted); font-size: 17px; }
.inline-link { color: var(--accent); font-weight: 800; }
.verdict-card { background: rgba(8,16,31,.65); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); }
.verdict-label { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; }
.verdict-score { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); padding: 12px 0 18px; margin-bottom: 18px; }
.verdict-score span { font-size: 26px; font-weight: 800; }
.verdict-score strong { color: var(--accent); font-size: 24px; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; color: #dce4ef; }
.check-list li::before { content: "✓"; display: inline-grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; margin-right: 10px; background: var(--accent-soft); color: var(--accent); font-size: 11px; font-weight: 800; }

.guide-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 18px; }
.guide-card { min-height: 310px; display: flex; flex-direction: column; padding: 26px; border-radius: var(--radius-md); background: var(--surface); border: 1px solid var(--line); }
.guide-card-featured { background: linear-gradient(145deg, rgba(109,228,199,.15), var(--surface)); }
.guide-tag { color: var(--accent); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; margin-bottom: auto; }
.guide-card h3 { font-size: 24px; margin: 34px 0 13px; }
.guide-card p { color: var(--muted); font-size: 13px; }
.guide-card a { margin-top: auto; color: var(--accent); font-weight: 800; font-size: 13px; }

.newsletter-section { padding-top: 20px; }
.newsletter-card { display: grid; grid-template-columns: 1fr .8fr; gap: 50px; align-items: center; padding: 44px; border: 1px solid rgba(109,228,199,.28); border-radius: var(--radius-lg); background: linear-gradient(135deg, rgba(109,228,199,.1), rgba(107,124,255,.08)); }
.newsletter-card h2 { font-size: 34px; margin-bottom: 10px; }
.newsletter-card p { color: var(--muted); margin-bottom: 0; }
.newsletter-form { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.newsletter-form span { grid-column: 1 / -1; color: var(--warning); font-size: 12px; min-height: 18px; }

.site-footer { margin-top: 80px; border-top: 1px solid var(--line); background: #060c17; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .6fr .6fr; gap: 60px; padding: 58px 0; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-grid p { max-width: 470px; color: var(--muted); font-size: 13px; margin-top: 10px; }
.footer-grid h2 { font-size: 13px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 10px; }
.footer-grid a:not(.brand) { color: var(--muted); font-size: 13px; }
.footer-grid a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 20px 0; border-top: 1px solid var(--line); color: #738096; font-size: 11px; }

.legal-page { padding: 84px 0 110px; }
.legal-wrap { width: min(calc(100% - 40px), 820px); margin: 0 auto; }
.legal-wrap h1 { font-size: clamp(42px, 6vw, 64px); }
.legal-wrap h2 { margin-top: 42px; font-size: 26px; }
.legal-wrap p, .legal-wrap li { color: var(--muted); }
.legal-wrap a { color: var(--accent); }
.notice-box { margin: 28px 0; padding: 22px; border-radius: var(--radius-md); border: 1px solid rgba(109,228,199,.3); background: var(--accent-soft); }
.notice-box p:last-child { margin-bottom: 0; }

@media (max-width: 980px) {
  .hero-grid, .comparison-grid, .newsletter-card { grid-template-columns: 1fr; }
  .hero-grid { gap: 42px; }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid, .guide-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-card-featured { grid-column: span 2; }
  .newsletter-form { max-width: 620px; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .menu-button { display: inline-flex; }
  .main-nav { position: absolute; top: 68px; left: 14px; right: 14px; display: none; flex-direction: column; gap: 0; padding: 10px; background: #0d182a; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px; }
  .hero { padding-top: 66px; }
  h1 { font-size: 46px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid div { border-right: 0; border-bottom: 1px solid var(--line); padding-inline: 0; }
  .trust-grid div:last-child { border-bottom: 0; }
  .section { padding: 70px 0; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 15px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid, .guide-grid { grid-template-columns: 1fr; }
  .guide-card-featured { grid-column: auto; }
  .filter-wrap { grid-template-columns: 1fr; width: 100%; margin-top: 24px; }
  .recommendation-heading { display: block; }
  .newsletter-card { padding: 28px; }
  .newsletter-form { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px; }
  .footer-grid > div:first-child { grid-column: span 2; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 460px) {
  h1 { font-size: 40px; }
  .hero-actions { display: grid; }
  .category-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 126px; }
  .product-footer { align-items: flex-end; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
}
