:root {
  --bg:#0b0e13;
  --panel:#131820;
  --panel-raised:#171d27;
  --text:#f4f7fb;
  --muted:#aeb8c5;
  --line:#2a3442;
  --line-strong:#3a4657;
  --accent:#9db2ff;
  --accent-strong:#c8d2ff;
  --accent-soft:rgba(157,178,255,.10);
  --shadow:0 14px 36px rgba(0,0,0,.18);
}

html { scroll-behavior:smooth; }
body {
  background:
    radial-gradient(circle at 18% -10%, rgba(108,132,220,.12), transparent 30rem),
    var(--bg);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

::selection { background:rgba(157,178,255,.24); color:var(--text); }

a { text-underline-offset:3px; text-decoration-thickness:1px; }
a:hover { color:var(--accent-strong); }
a:focus-visible,
button:focus-visible {
  outline:3px solid rgba(157,178,255,.55);
  outline-offset:3px;
  border-radius:6px;
}

nav {
  min-height:72px;
  align-items:center;
}
nav > a:first-child,
.brand {
  font-weight:800;
  letter-spacing:-.025em;
  text-decoration:none;
}
.navlinks { align-items:center; }
.navlinks a {
  min-height:40px;
  display:inline-flex;
  align-items:center;
  text-decoration:none;
  color:var(--muted);
  font-weight:650;
  transition:color .16s ease;
}
.navlinks a:hover { color:var(--text); }

.eyebrow {
  display:inline-flex;
  align-items:center;
  gap:8px;
  width:max-content;
  max-width:100%;
  padding:7px 10px;
  margin:0 0 18px;
  border:1px solid rgba(157,178,255,.24);
  border-radius:999px;
  background:var(--accent-soft);
  color:var(--accent-strong);
  font-size:12px;
  line-height:1.2;
  font-weight:750;
  letter-spacing:.07em;
  text-transform:uppercase;
}
.eyebrow::before {
  content:"";
  width:6px;
  height:6px;
  flex:0 0 6px;
  border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 0 4px rgba(157,178,255,.10);
}

h1,h2,h3 { text-wrap:balance; }
h1 { color:#fff; }
h2 { line-height:1.12; }
p,li { text-wrap:pretty; }
.lead,.dek { color:var(--muted); }

a.cta,
a.button {
  min-height:46px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--accent);
  color:#0a0d12 !important;
  border:1px solid transparent;
  border-radius:9px;
  box-shadow:0 10px 26px rgba(71,92,163,.20);
  transition:transform .16s ease, background .16s ease, box-shadow .16s ease;
}
a.cta:hover,
a.button:hover {
  background:var(--accent-strong);
  transform:translateY(-1px);
  box-shadow:0 13px 30px rgba(71,92,163,.25);
}
.secondary {
  min-height:44px;
  display:inline-flex;
  align-items:center;
  color:var(--text);
  text-decoration:none;
  border-bottom:1px solid transparent;
  transition:color .16s ease, border-color .16s ease;
}
.secondary:hover { border-color:var(--line-strong); }

.action-row {
  display:flex;
  align-items:center;
  gap:10px 18px;
  flex-wrap:wrap;
}
.trust-row {
  display:flex;
  align-items:center;
  gap:10px 18px;
  flex-wrap:wrap;
  margin-top:22px;
  color:var(--muted);
  font-size:13px;
}
.trust-row span {
  display:inline-flex;
  align-items:center;
  gap:7px;
}
.trust-row span::before {
  content:"";
  width:5px;
  height:5px;
  flex:0 0 5px;
  border-radius:50%;
  background:#7fc8a5;
}

.card,
.panel,
.sample-panel,
.finding,
.layer,
.fiction,
.cta:not(a) {
  border-color:var(--line);
  background:linear-gradient(180deg, rgba(255,255,255,.018), rgba(255,255,255,0)), var(--panel);
  box-shadow:0 1px 0 rgba(255,255,255,.025) inset;
}
.cta:not(a) {
  display:block;
  color:inherit;
}
.card,
.article-card {
  transition:transform .16s ease, border-color .16s ease, background .16s ease, box-shadow .16s ease;
}
a.card:hover,
a.article-card:hover {
  transform:translateY(-2px);
  border-color:var(--line-strong);
  background:var(--panel-raised);
  box-shadow:var(--shadow);
}

.label,
.meta { letter-spacing:.025em; }
.label { color:var(--accent-strong); }
.price { color:#fff; }

.strip { gap:10px; }
.strip div {
  border:1px solid var(--line);
  background:rgba(255,255,255,.018);
  border-radius:10px;
  padding:15px;
}
.strip strong { color:var(--text); }

.sample-panel {
  border-color:rgba(157,178,255,.28);
  background:linear-gradient(180deg, rgba(157,178,255,.08), rgba(157,178,255,.025));
}

.callout {
  border-left-color:var(--accent) !important;
  color:var(--text);
  background:linear-gradient(90deg, rgba(157,178,255,.08), transparent 72%);
  border-radius:0 8px 8px 0;
  padding-right:14px !important;
}
.layer { border-radius:10px; }
.finding {
  border-left:2px solid rgba(157,178,255,.72) !important;
  box-shadow:var(--shadow);
}
.fiction {
  border-color:rgba(157,178,255,.25);
  background:rgba(157,178,255,.07);
}

code {
  background:#0f141c;
  border:1px solid rgba(255,255,255,.055);
  border-radius:5px;
  padding:2px 5px;
  overflow-wrap:anywhere;
}

table {
  border:1px solid var(--line);
  border-radius:10px;
  overflow:hidden;
  background:rgba(255,255,255,.012);
}
th {
  background:rgba(255,255,255,.025);
  font-size:12px;
  letter-spacing:.03em;
  text-transform:uppercase;
}
th,td { padding:13px 11px; }
tr:last-child td { border-bottom:0; }

footer a { color:var(--text); }

.home-page header { padding-top:88px; }
.home-page header h1 { max-width:880px; }
.home-page .lead { max-width:780px; }
.home-page section { scroll-margin-top:24px; }
.home-page #scan {
  position:relative;
}
.home-page #scan::before {
  content:"";
  position:absolute;
  left:-18px;
  top:64px;
  bottom:64px;
  width:2px;
  border-radius:2px;
  background:linear-gradient(var(--accent), transparent 75%);
  opacity:.55;
}

.articles-page header { padding-top:66px; }
.articles-page .card { min-height:220px; }
.articles-page .card .meta { margin-top:auto; }
.articles-page .card { display:flex; flex-direction:column; }

.article-page article,
.sample-page main { max-width:820px; margin:0 auto; }
.article-page article > p,
.article-page article > ul,
.article-page article > ol,
.sample-page main > p,
.sample-page main > ul,
.sample-page main > ol { max-width:76ch; }
.article-page .sources a { overflow-wrap:anywhere; }

.checkout-page main,
.policy-page main,
.intake-page main { max-width:820px; margin:0 auto; }
.checkout-page .panel { box-shadow:var(--shadow); }
.checkout-page .price { margin-top:6px; }

@media (max-width:760px) {
  body { background:var(--bg); }
  .wrap { width:min(100% - 30px, 980px); }
  nav { min-height:auto; padding:18px 0; align-items:flex-start; }
  .navlinks { gap:6px 14px; }
  .navlinks a { min-height:36px; }
  .home-page header { padding-top:58px; padding-bottom:56px; }
  .home-page #scan::before { display:none; }
  .action-row { align-items:stretch; }
  .action-row a.cta { width:100%; }
  .trust-row { gap:8px 14px; }
  .strip div { padding:14px; }
  table { font-size:13px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *,*::before,*::after { transition:none !important; }
  a.cta:hover,a.button:hover,a.card:hover,a.article-card:hover { transform:none; }
}
