@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  --paper: #f5f7ff;
  --white: #ffffff;
  --ink: #17213a;
  --muted: #626b82;
  --line: #dbe0ee;
  --violet: #5b55e7;
  --violet-dark: #423bc9;
  --violet-soft: #e8e8ff;
  --coral: #ff7058;
  --mint: #a8eddb;
  --sky: #cfe6ff;
  --gold: #ffd77a;
  --success: #117a5c;
  --shadow: 0 24px 60px rgba(28, 35, 72, 0.12);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  color: var(--ink);
  background:
    radial-gradient(circle at 96% 3%, rgba(168, 237, 219, .5), transparent 22rem),
    var(--paper);
  font-family: "DM Sans", sans-serif;
  font-size: 17px;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .35;
  pointer-events: none;
  background-image: radial-gradient(#aeb5ca 0.55px, transparent 0.55px);
  background-size: 18px 18px;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
main, section, .container, .header-inner, .footer-grid, .cta-panel > * { min-width: 0; }
h1, h2, h3, p, a, button { overflow-wrap: break-word; }

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
}

.skip-link:focus { transform: none; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: 92px 0; }
.section--tight { padding: 60px 0; }
.section--white { background: rgba(255,255,255,.68); border-block: 1px solid var(--line); }
.section--ink { color: white; background: var(--ink); }
.section--violet { color: white; background: var(--violet); }

.eyebrow {
  margin: 0 0 8px;
  color: var(--violet-dark);
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1.25;
  text-transform: uppercase;
}

.section--ink .eyebrow,
.section--violet .eyebrow { color: var(--mint); }

h1, h2, h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -.045em;
  line-height: 1.04;
}

h1 { max-width: 850px; font-size: clamp(3.2rem, 7.8vw, 7.4rem); }
h2 { font-size: clamp(2.25rem, 4.7vw, 4.7rem); }
h3 { font-size: 1.45rem; }
p { margin: 0 0 1em; }

.lede {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.section--ink .lede,
.section--violet .lede { color: rgba(255,255,255,.76); }
.text-link { color: var(--violet-dark); font-weight: 700; text-underline-offset: 4px; }
.text-link:hover { text-decoration-thickness: 2px; }
.muted { color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(219, 224, 238, .86);
  background: rgba(245, 247, 255, .86);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand { flex: 0 0 202px; }
.brand img { width: 202px; }
.desktop-nav { display: flex; align-items: center; gap: 28px; }
.desktop-nav a, .mobile-nav a { text-decoration: none; font-size: 15px; font-weight: 700; }
.desktop-nav a:hover, .desktop-nav a[aria-current="page"] { color: var(--violet-dark); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: white;
  color: var(--ink);
}

.mobile-nav {
  display: grid;
  gap: 4px;
  padding: 0 20px 20px;
}

.mobile-nav a { padding: 11px 12px; border-radius: 10px; }
.mobile-nav a:hover { background: var(--violet-soft); }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 19px;
  border: 1px solid transparent;
  border-radius: 14px;
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover { transform: translateY(-2px); }
.button--primary { color: white; background: var(--violet); box-shadow: 0 12px 24px rgba(91,85,231,.22); }
.button--primary:hover { background: var(--violet-dark); }
.button--dark { color: white; background: var(--ink); }
.button--dark:hover { box-shadow: 0 10px 22px rgba(23,33,58,.18); }
.button--light { color: var(--ink); background: white; }
.button--ghost { border-color: var(--line); background: transparent; color: var(--ink); }
.button:disabled { cursor: not-allowed; transform: none; }

.hero { padding: 68px 0 34px; overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); gap: 56px; align-items: center; }
.hero h1 em { color: var(--violet); font-style: normal; }
.hero__copy .lede { margin: 28px 0; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__trust { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 28px; color: var(--muted); font-size: 14px; }
.hero__trust span::before { content: "✓"; margin-right: 7px; color: var(--success); font-weight: 800; }

.signal-board {
  position: relative;
  min-height: 525px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 38px 38px 96px 38px;
  color: white;
  background: var(--violet);
  box-shadow: var(--shadow);
  transform: rotate(1.4deg);
}

.signal-board::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(255,255,255,.35);
  border-radius: 28px 28px 82px 28px;
  pointer-events: none;
}

.signal-board__label { color: var(--mint); font-family: "Space Grotesk"; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.signal-board__title { margin-top: 9px; font-family: "Space Grotesk"; font-size: 2.2rem; font-weight: 700; letter-spacing: -.05em; }

.route {
  position: relative;
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.route::before {
  content: "";
  position: absolute;
  top: 23px;
  bottom: 23px;
  left: 20px;
  width: 2px;
  background: rgba(255,255,255,.28);
}

.route__step {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 13px;
  align-items: center;
  padding: 10px 12px 10px 0;
  border-radius: 13px;
  background: rgba(255,255,255,.07);
}

.route__node {
  z-index: 1;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 5px solid var(--violet);
  border-radius: 50%;
  color: var(--ink);
  background: var(--mint);
  font-family: "Space Grotesk";
  font-size: 12px;
  font-weight: 800;
}

.route__step strong { display: block; font-family: "Space Grotesk"; }
.route__step small { color: rgba(255,255,255,.66); }
.route__step > span:last-child { color: var(--gold); font-size: 13px; font-weight: 700; }
.signal-board__stamp { position: relative; width: 84px; height: 84px; display: grid; place-items: center; margin: 20px 4px 0 auto; border: 2px solid var(--gold); border-radius: 50%; color: var(--gold); font-family: "Space Grotesk"; font-size: 11px; font-weight: 700; letter-spacing: .12em; line-height: 1.25; text-align: center; text-transform: uppercase; transform: rotate(-12deg); }

.disclosure-strip { padding: 15px 0; border-block: 1px solid var(--line); background: rgba(255,255,255,.82); font-size: 14px; }
.disclosure-strip .container { display: flex; align-items: center; justify-content: center; gap: 9px; text-align: center; }
.disclosure-strip strong { color: var(--violet-dark); }

.section-heading { display: flex; justify-content: space-between; gap: 30px; align-items: end; margin-bottom: 38px; }
.section-heading > div { max-width: 760px; }
.section-heading .lede { margin-top: 18px; }

.tool-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.tool-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.92);
  box-shadow: 0 3px 0 rgba(23,33,58,.025);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.tool-card:hover { transform: translateY(-4px); border-color: #b9bdf0; box-shadow: 0 18px 40px rgba(31,39,79,.1); }
.tool-card__top { display: grid; grid-template-columns: 48px minmax(0,1fr) auto; gap: 13px; align-items: center; }
.tool-card__top .eyebrow { margin-bottom: 4px; }
.tool-card__top h3 { font-size: 1.42rem; }
.tool-mark { width: 48px; height: 48px; display: inline-grid; flex: 0 0 auto; place-items: center; border-radius: 15px 15px 7px 15px; color: white; background: var(--violet); font-family: "Space Grotesk"; font-size: 14px; font-weight: 800; letter-spacing: -.03em; }
.price-tag { align-self: start; padding: 5px 8px; border-radius: 8px; color: var(--ink); background: var(--gold); font-size: 11px; font-weight: 800; }
.tool-card__tagline { min-height: 54px; margin: 22px 0 14px; font-size: 18px; font-weight: 600; line-height: 1.45; }
.tool-card__fit { min-height: 70px; color: var(--muted); font-size: 14px; }
.tool-card__facts { display: grid; grid-template-columns: 1.2fr .8fr; gap: 8px; margin: 8px 0 15px; }
.tool-card__facts span { min-width: 0; padding: 10px; border-radius: 11px; background: var(--paper); font-size: 12px; font-weight: 700; line-height: 1.35; }
.tool-card__facts small { display: block; margin-bottom: 5px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.tool-card__verdict { min-height: 76px; padding: 12px 14px; border-left: 3px solid var(--coral); border-radius: 0 10px 10px 0; background: #fff4f0; font-size: 13px; line-height: 1.45; }
.tool-card__verdict span { display: block; margin-bottom: 3px; color: #a03927; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.tool-card__actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 20px; }
.tool-card__actions .button { min-height: 44px; padding: 8px 14px; }
.tool-card__detail-link { display: inline-block; margin-top: 12px; font-size: 12px; }
.compare-toggle { min-height: 44px; padding: 7px 12px; border: 1px solid var(--line); border-radius: 12px; color: var(--ink); background: white; font-size: 13px; font-weight: 700; cursor: pointer; }
.compare-toggle.is-selected { border-color: var(--violet); color: var(--violet-dark); background: var(--violet-soft); }
.micro-disclosure { margin: 11px 0 0; color: var(--muted); font-size: 10px; line-height: 1.35; }
.tool-card--compact .tool-card__tagline { min-height: 78px; }
.tool-card--compact .tool-card__actions { border-top: 1px solid var(--line); }

.journey-grid { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--line); border-radius: 28px; overflow: hidden; background: white; }
.journey-step { min-height: 240px; padding: 24px 20px; border-right: 1px solid var(--line); }
.journey-step:last-child { border: 0; }
.journey-step__num { display: block; margin-bottom: 44px; color: var(--violet); font-family: "Space Grotesk"; font-size: 1.4rem; font-weight: 700; }
.journey-step h3 { margin-bottom: 10px; font-size: 1.25rem; }
.journey-step p { color: var(--muted); font-size: 14px; }
.journey-step:nth-child(2) { background: #fbf2ef; }
.journey-step:nth-child(4) { background: #eefaf6; }

.guide-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; gap: 18px; }
.guide-card { min-height: 310px; display: flex; flex-direction: column; justify-content: space-between; padding: 28px; border-radius: var(--radius); text-decoration: none; background: white; border: 1px solid var(--line); transition: transform .2s ease; }
.guide-card:hover { transform: translateY(-4px); }
.guide-card:first-child { color: white; background: var(--ink); border-color: var(--ink); }
.guide-card:nth-child(2) { background: var(--mint); }
.guide-card:nth-child(3) { background: var(--gold); }
.guide-card__meta { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.guide-card h3 { max-width: 350px; font-size: clamp(1.6rem, 3vw, 2.7rem); }
.guide-card:not(:first-child) h3 { font-size: 1.8rem; }
.guide-card__arrow { font-size: 2rem; }

.principles { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; align-items: start; }
.principles-list { display: grid; gap: 2px; }
.principle { display: grid; grid-template-columns: 46px 1fr; gap: 16px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.principle:first-child { border-top: 1px solid rgba(255,255,255,.16); }
.principle span { color: var(--mint); font-family: "Space Grotesk"; font-weight: 700; }
.principle h3 { margin-bottom: 5px; font-size: 1.15rem; letter-spacing: -.02em; }
.principle p { margin: 0; color: rgba(255,255,255,.66); font-size: 14px; }

.cta-panel { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 30px; align-items: center; max-width: 100%; padding: 38px; overflow: hidden; border-radius: 28px; color: white; background: var(--violet); box-shadow: var(--shadow); }
.cta-panel h2 { max-width: 760px; font-size: clamp(2rem, 4vw, 4rem); }
.cta-panel p { max-width: 760px; margin: 12px 0 0; color: rgba(255,255,255,.75); }
.cta-panel .button { max-width: 100%; white-space: normal; text-align: center; }

.page-hero { padding: 72px 0 58px; }
.page-hero h1 { max-width: 940px; font-size: clamp(3rem, 7vw, 6.5rem); }
.page-hero .lede { margin-top: 24px; }

.catalog-toolbar { position: sticky; top: 76px; z-index: 30; padding: 14px 0; border-block: 1px solid var(--line); background: rgba(245,247,255,.94); backdrop-filter: blur(18px); }
.toolbar-row { display: grid; grid-template-columns: minmax(230px, 1fr) 180px; gap: 12px 14px; align-items: center; }
.search-field { position: relative; }
.search-field::before { content: "⌕"; position: absolute; left: 15px; top: 10px; color: var(--muted); font-size: 22px; }
.search-field input, .sort-select { width: 100%; min-height: 48px; border: 1px solid var(--line); border-radius: 13px; color: var(--ink); background: white; }
.search-field input { padding: 10px 14px 10px 44px; }
.sort-select { padding: 10px 36px 10px 13px; }
.filter-row { grid-column: 1 / -1; grid-row: 2; display: flex; flex-wrap: wrap; justify-content: center; gap: 7px; overflow: visible; padding: 3px; }
.filter-chip { flex: 0 0 auto; min-height: 44px; padding: 7px 14px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: white; font-size: 12px; font-weight: 700; cursor: pointer; }
.filter-chip.is-active { border-color: var(--ink); color: var(--paper); background: var(--ink); }
.results-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; color: var(--muted); font-size: 14px; }
.empty-state { grid-column: 1 / -1; display: grid; gap: 6px; padding: 50px; border: 1px dashed var(--line); border-radius: var(--radius); text-align: center; }

.compare-bar { position: fixed; left: 50%; bottom: 18px; z-index: 60; width: min(calc(100% - 30px), 720px); transform: translateX(-50%); padding: 12px 14px 12px 18px; border: 1px solid rgba(255,255,255,.22); border-radius: 18px; color: white; background: rgba(23,33,58,.96); box-shadow: var(--shadow); }
.compare-bar__inner { display: flex; align-items: center; gap: 14px; }
.compare-bar__copy { min-width: 0; flex: 1; }
.compare-bar__copy strong { display: block; }
.compare-bar__copy span { display: block; overflow: hidden; color: rgba(255,255,255,.7); font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.compare-bar .button { min-height: 44px; padding: 7px 15px; }
.compare-bar__clear { min-width: 44px; min-height: 44px; padding: 7px 10px; border: 0; border-radius: 10px; color: white; background: transparent; cursor: pointer; }
.compare-bar__clear:hover { background: rgba(255,255,255,.1); }

.compare-dialog { width: min(calc(100% - 24px), 1000px); max-height: 88vh; padding: 0; border: 0; border-radius: 24px; color: var(--ink); background: white; box-shadow: 0 30px 100px rgba(0,0,0,.3); }
.compare-dialog::backdrop { background: rgba(18,25,44,.72); backdrop-filter: blur(7px); }
.dialog-header { position: sticky; top: 0; z-index: 1; display: flex; align-items: center; justify-content: space-between; padding: 22px 25px; border-bottom: 1px solid var(--line); background: white; }
.dialog-header button { width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: white; cursor: pointer; }
.dialog-body { padding: 24px; overflow: auto; }
.comparison-table { display: grid; grid-template-columns: 170px repeat(var(--columns), minmax(170px, 1fr)); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.comparison-table > div { padding: 15px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 14px; }
.comparison-table__label { color: var(--muted); background: var(--paper); font-weight: 700; }
.comparison-table__head { display: flex; align-items: center; gap: 10px; font-family: "Space Grotesk"; font-size: 17px !important; }
.comparison-table__head .tool-mark { width: 38px; height: 38px; border-radius: 11px; }

.content-layout { display: grid; grid-template-columns: minmax(0, .68fr) minmax(260px, .32fr); gap: 70px; align-items: start; }
.prose { max-width: 760px; }
.prose h2 { margin: 1.25em 0 .45em; font-size: clamp(1.9rem, 4vw, 3.2rem); }
.prose h3 { margin: 1.4em 0 .5em; font-size: 1.35rem; letter-spacing: -.025em; }
.prose p, .prose li { color: #4f5870; }
.prose strong { color: var(--ink); }
.prose a { color: var(--violet-dark); font-weight: 700; }
.prose ul, .prose ol { padding-left: 22px; }
.prose li + li { margin-top: 8px; }
.prose blockquote { margin: 28px 0; padding: 20px 24px; border-left: 4px solid var(--coral); border-radius: 0 16px 16px 0; background: white; font-family: "Space Grotesk"; font-size: 1.25rem; }
.side-card { position: sticky; top: 110px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.side-card h3 { margin-bottom: 14px; }
.side-card ul { margin: 0; padding: 0; list-style: none; }
.side-card li { padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.side-card li:last-child { border: 0; }
.legal-note { padding: 18px 20px; border-radius: 15px; color: #694210; background: #fff4d4; font-size: 14px; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.about-card { min-height: 290px; padding: 30px; border: 1px solid var(--line); border-radius: 26px; background: white; }
.about-card:nth-child(2) { background: var(--mint); }
.about-card:nth-child(3) { background: var(--violet-soft); }
.about-card:nth-child(4) { color: white; background: var(--ink); }
.about-card h2 { margin-bottom: 18px; font-size: 2rem; }

.site-footer { padding: 64px 0 28px; color: white; background: #10182d; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; gap: 50px; }
.footer-brand img { width: 200px; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 410px; margin-top: 20px; color: rgba(255,255,255,.62); }
.footer-links { display: grid; align-content: start; gap: 9px; }
.footer-links strong { margin-bottom: 7px; color: var(--mint); font-family: "Space Grotesk"; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.footer-links a { color: rgba(255,255,255,.76); text-decoration: none; font-size: 14px; }
.footer-links a:hover { color: white; text-decoration: underline; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 52px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.52); font-size: 12px; }
.site-footer::after {
  content: "crafted by neptox.com";
  width: min(calc(100% - 40px), var(--max));
  display: block;
  margin: 28px auto 0;
  color: #f7f2ff;
  font: 700 clamp(.85rem, 1.4vw, 1rem)/1.2 "Space Grotesk", sans-serif;
  letter-spacing: .1em;
  text-align: center;
  text-transform: lowercase;
  text-shadow: 0 0 10px rgba(139,92,246,.95), 0 0 26px rgba(255,77,141,.7), 0 0 48px rgba(94,242,194,.35);
}

.cookie-notice { position: fixed; right: 18px; bottom: 18px; z-index: 80; width: min(calc(100% - 36px), 390px); padding: 18px; border: 1px solid var(--line); border-radius: 17px; background: white; box-shadow: var(--shadow); }
.cookie-notice strong { display: block; margin-bottom: 5px; font-family: "Space Grotesk"; }
.cookie-notice p { margin: 0 0 13px; color: var(--muted); font-size: 13px; }
.cookie-notice__actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; }
.cookie-notice .button { min-height: 44px; }
.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; }

/* Neptox Obsidian theme: dark, high-contrast and intentionally restrained. */
:root {
  --paper: #07080d;
  --white: #11131c;
  --ink: #f4f1ff;
  --muted: #a9a5bb;
  --line: #292b39;
  --violet: #8b5cf6;
  --violet-dark: #b39aff;
  --violet-soft: #211938;
  --coral: #ff4d8d;
  --mint: #5ef2c2;
  --sky: #182238;
  --gold: #ffe08a;
  --success: #5ef2c2;
  --shadow: 0 28px 90px rgba(0, 0, 0, .45);
}

html, body { background: var(--paper); }
body {
  background:
    radial-gradient(circle at 78% -8%, rgba(139, 92, 246, .22), transparent 31rem),
    radial-gradient(circle at 8% 22%, rgba(255, 77, 141, .08), transparent 24rem),
    #07080d;
}
body::before { opacity: .18; background-image: radial-gradient(#77738e .55px, transparent .55px); }
.site-header { border-color: rgba(255,255,255,.08); background: rgba(7,8,13,.82); }
.brand img { filter: brightness(0) invert(1); }
.menu-toggle, .search-field input, .sort-select, .filter-chip, .compare-toggle { color: var(--ink); background: #12141d; }
.button--primary { color: #fff; background: linear-gradient(135deg, #6d3ee9, #a91657); box-shadow: 0 14px 34px rgba(109,62,233,.3); }
.button--primary:hover { background: linear-gradient(135deg, #5f32d2, #941049); }
.desktop-nav a.button--primary:hover,
.desktop-nav a.button--primary[aria-current="page"] { color: #fff; }
.button--dark { color: #08090e; background: var(--mint); }
.button--dark:hover { box-shadow: 0 10px 26px rgba(94,242,194,.2); }
.button--light { color: #08090e; background: #fff; }
.button--light:hover { background: #eeeaf8; }
.button--ghost { color: #f4f1ff; border-color: #56596d; background: rgba(255,255,255,.02); }
.button--ghost:hover { border-color: #8e92aa; background: rgba(255,255,255,.06); }
.button:disabled { color: #3e3b49; border-color: #d6d2df; background: #dedbe5; opacity: 1; box-shadow: none; }
.filter-chip.is-active { color: #08090e; border-color: #f4f1ff; background: #f4f1ff; }
.compare-toggle.is-selected { color: #f4f1ff; border-color: #b39aff; background: #35264f; }
.hero { min-height: 760px; display: grid; align-items: center; overflow: hidden; }
.hero::after { content: "SELECT / VERIFY / CONVERT"; position: absolute; right: -9rem; top: 24rem; color: rgba(255,255,255,.025); font: 800 7rem/1 "Space Grotesk"; letter-spacing: -.07em; transform: rotate(90deg); pointer-events: none; }
.hero h1 em { color: transparent; background: linear-gradient(90deg, var(--mint), #b8a1ff, var(--coral)); background-clip: text; -webkit-background-clip: text; }
.signal-board { border: 1px solid #35334a; background: linear-gradient(155deg, #171526, #0b0c13 68%); box-shadow: 0 40px 100px rgba(0,0,0,.45), inset 0 1px rgba(255,255,255,.07); }
.route__node { color: #08090e; border-color: #171526; }
.disclosure-strip { border-color: #252733; background: rgba(13,14,21,.9); }
.section--white { border-color: var(--line); background: rgba(255,255,255,.018); }
.section--ink { background: #0d0f17; }
.tool-card, .journey-grid, .journey-step, .guide-card, .about-card, .side-card, .cookie-notice { color: var(--ink); background: linear-gradient(160deg, #141621, #0e1018); }
.tool-card { border-color: #292b39; box-shadow: inset 0 1px rgba(255,255,255,.035); }
.tool-card:hover { border-color: #62518f; box-shadow: 0 24px 60px rgba(0,0,0,.38), 0 0 0 1px rgba(139,92,246,.16); }
.tool-mark { color: #08090e; background: linear-gradient(145deg, var(--mint), #9dffe0); box-shadow: 0 9px 24px rgba(94,242,194,.12); }
.price-tag { color: #17120a; }
.tool-card__facts span { background: #090a10; }
.tool-card__verdict { color: #ded9ef; background: #1c1220; }
.tool-card__verdict span { color: #ff86b1; }
.conversion-note { margin: 13px 0 0; color: #bdb6cf; font-size: 11px; line-height: 1.45; }
.conversion-note strong { color: var(--mint); }
.journey-step { border-color: var(--line); }
.journey-step:nth-child(2), .journey-step:nth-child(4) { background: #11131c; }
.guide-card:first-child { background: linear-gradient(145deg, #211938, #101119); border-color: #4c3d6f; }
.guide-card:nth-child(2) { color: #08090e; background: var(--mint); }
.guide-card:nth-child(3) { color: #08090e; background: linear-gradient(145deg, var(--gold), var(--coral)); }
.cta-panel { background: linear-gradient(135deg, #6d3ee9, #b22d68); }
.catalog-toolbar { border-color: var(--line); background: rgba(7,8,13,.92); }
.compare-dialog, .dialog-header { color: var(--ink); background: #10121a; }
.dialog-header button { color: var(--ink); background: #171923; }
.comparison-table__label { background: #0b0c12; }
.prose p, .prose li { color: #bbb6ca; }
.prose blockquote { background: #12141d; }
.legal-note { color: #f9dda2; background: #251d0c; border: 1px solid #4d3d19; }
.signup-table { overflow-x: auto; margin: 24px 0 36px; border: 1px solid var(--line); border-radius: 18px; }
.signup-table table { width: 100%; min-width: 860px; border-collapse: collapse; font-size: 14px; }
.signup-table th, .signup-table td { padding: 15px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.signup-table th { color: var(--mint); background: #0b0c12; font: 700 11px/1.2 "Space Grotesk"; letter-spacing: .08em; text-transform: uppercase; }
.signup-table tr:last-child td { border-bottom: 0; }
.signup-table a { color: #c3b1ff; }
code { padding: .15em .4em; border: 1px solid #343646; border-radius: 6px; color: var(--mint); background: #090a10; }
.site-footer { background: #05060a; }
.cookie-notice { border-color: #363849; }
.lead-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; align-items: start; }
.lead-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: 30px; border: 1px solid #302d42; border-radius: 26px; background: linear-gradient(160deg, #151723, #0c0d14); box-shadow: var(--shadow); }
.lead-form label { display: grid; gap: 7px; color: #d9d5e5; font-size: 13px; font-weight: 700; }
.lead-form input, .lead-form select, .lead-form textarea { width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid #393b4b; border-radius: 12px; color: var(--ink); background: #090a10; }
.lead-form textarea { resize: vertical; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color: var(--violet); outline: 2px solid rgba(139,92,246,.22); }
.form-wide { grid-column: 1 / -1; }
.form-trap { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; }
.check-field { display: grid !important; grid-template-columns: 22px 1fr; align-items: start; font-weight: 500 !important; }
.check-field input { width: 19px; min-height: 19px; margin-top: 2px; }
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.offer-card { min-height: 250px; padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: linear-gradient(155deg, #151722, #0d0e15); }
.offer-card > span { color: var(--mint); font: 700 12px/1 "Space Grotesk"; letter-spacing: .12em; }
.offer-card h3 { margin: 50px 0 12px; font-size: 1.8rem; }
.offer-card strong { display: block; margin-bottom: 10px; color: var(--gold); font-size: 1.2rem; }
.offer-card p { color: var(--muted); }
.success-page { min-height: 100vh; display: grid; place-items: center; padding: 24px; }
.success-card { width: min(100%, 720px); padding: clamp(30px, 6vw, 70px); border: 1px solid #35334a; border-radius: 30px; text-align: center; background: linear-gradient(155deg, #171526, #0b0c13); box-shadow: var(--shadow); }
.success-card .lede { margin: 22px auto 30px; }
.success-mark { width: 70px; height: 70px; display: grid; place-items: center; margin: 0 auto 25px; border-radius: 50%; color: #07100d; background: var(--mint); font-size: 2rem; font-weight: 800; }

.landing-hero { padding: clamp(58px, 8vw, 110px) 0 64px; }
.landing-hero__grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); gap: clamp(34px, 6vw, 80px); align-items: center; }
.landing-hero h1 { font-size: clamp(3rem, 6.5vw, 6.5rem); }
.landing-hero .lede { margin: 26px 0; }
.landing-score { min-width: 0; padding: 28px; border: 1px solid #353849; border-radius: 26px; background: linear-gradient(150deg, #171925, #0c0d13); box-shadow: var(--shadow); }
.landing-score .tool-mark { width: 64px; height: 64px; margin-bottom: 28px; font-size: 18px; }
.landing-score dl { display: grid; gap: 0; margin: 0; }
.landing-score dl > div { padding: 16px 0; border-top: 1px solid var(--line); }
.landing-score dt { color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.landing-score dd { margin: 5px 0 0; font-weight: 700; }
.detail-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 340px); gap: clamp(36px, 6vw, 80px); align-items: start; }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0; }
.pros-cons > div { padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: #10121a; }
.pros-cons h3 { margin-top: 0; }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.service-card { min-width: 0; min-height: 410px; display: flex; flex-direction: column; padding: 28px; border: 1px solid #302f40; border-radius: 24px; background: linear-gradient(155deg, #171925, #0d0e15); box-shadow: inset 0 1px rgba(255,255,255,.04); }
.service-card .tool-mark { margin-bottom: 38px; }
.service-card h2 { font-size: clamp(2rem, 3vw, 3rem); }
.service-card > p:not(.eyebrow) { color: var(--muted); }
.service-card__bottom { display: grid; gap: 16px; margin-top: auto; padding-top: 26px; }
.service-card__bottom > strong { color: var(--gold); font: 700 2rem/1 "Space Grotesk"; }
.service-note { margin-top: 28px; }
.service-price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 12px; margin-top: 28px; }
.service-price strong { color: var(--gold); font: 700 clamp(2.5rem, 6vw, 5rem)/1 "Space Grotesk"; }
.service-price span { max-width: 340px; color: var(--muted); font-size: 13px; }
.checkout-form { display: grid; gap: 16px; margin: 24px 0 16px; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: #10121a; }
.checkout-status { margin: 0; color: var(--muted); font-size: 13px; }
.checkout-status.is-ready { color: var(--mint); }

@media (max-width: 980px) {
  .hero__grid, .principles, .content-layout, .lead-layout, .landing-hero__grid, .detail-grid { grid-template-columns: 1fr; }
  .signal-board { min-height: 470px; transform: none; }
  .tool-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .journey-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-step { border-bottom: 1px solid var(--line); }
  .journey-step:nth-child(even) { border-right: 0; }
  .journey-step:last-child { grid-column: 1 / -1; }
  .guide-grid { grid-template-columns: 1fr 1fr; }
  .guide-card:first-child { grid-column: 1 / -1; }
  .toolbar-row { grid-template-columns: 1fr 180px; }
  .side-card { position: static; }
  .cta-panel { grid-template-columns: minmax(0, 1fr); }
  .cta-panel .button { justify-self: start; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 68px 0; }
  .desktop-nav { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .brand, .brand img { width: 178px; flex-basis: 178px; }
  .hero { padding-top: 48px; }
  .hero::after { display: none; }
  h1 { font-size: clamp(2.55rem, 13vw, 4.6rem); }
  .hero__grid { gap: 38px; }
  .hero__trust { display: grid; gap: 7px; }
  .signal-board { min-height: 455px; padding: 24px 20px; border-radius: 28px 28px 72px 28px; }
  .signal-board__stamp { display: none; }
  .route__step { grid-template-columns: 42px 1fr; }
  .route__step > span:last-child { display: none; }
  .section-heading { display: block; }
  .section-heading .button { margin-top: 20px; }
  .tool-grid, .guide-grid, .about-grid, .offer-grid, .lead-form, .service-grid, .pros-cons { grid-template-columns: 1fr; }
  .form-wide { grid-column: auto; }
  .guide-card:first-child { grid-column: auto; }
  .journey-grid { grid-template-columns: 1fr; }
  .journey-step, .journey-step:nth-child(even) { border-right: 0; }
  .journey-step:last-child { grid-column: auto; }
  .cta-panel { grid-template-columns: 1fr; padding: 28px; }
  .toolbar-row { grid-template-columns: 1fr; }
  .filter-row { grid-column: auto; grid-row: auto; justify-content: flex-start; }
  .catalog-toolbar { top: 75px; }
  .compare-bar__inner { flex-wrap: wrap; }
  .compare-bar__copy { flex-basis: calc(100% - 50px); }
  .comparison-table { min-width: 730px; }
  .dialog-body { overflow-x: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { display: grid; }
  .tool-card__actions { flex-wrap: wrap; align-items: stretch; }
  .tool-card__actions .button, .tool-card__actions .compare-toggle { flex: 1 1 140px; }
  .cta-panel .button { width: 100%; justify-self: stretch; }
  .site-footer::after { width: calc(100% - 28px); }
}

@media (max-width: 480px) {
  .page-hero { padding: 52px 0 42px; }
  .page-hero h1 { font-size: clamp(2.45rem, 14vw, 3.7rem); }
  .signal-board { min-height: 430px; }
  .lead-form, .offer-card, .about-card, .tool-card { padding: 21px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-brand { grid-column: auto; }
  .compare-bar { bottom: 8px; width: calc(100% - 16px); padding: 10px; }
  .compare-bar__copy { flex-basis: 100%; }
  .compare-bar__clear, .compare-bar .button { flex: 1; }
}

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