/* Static content pages (/learn, comparisons). No JS, no animation, no heavy
   images — fast and readable. Brand: dark + KTON blue. */
:root {
  --bg: #0a0a14;
  --fg: #ffffff;
  --text: #e7e7ef;
  --muted: rgba(255, 255, 255, 0.64);
  --faint: rgba(255, 255, 255, 0.40);
  --accent: #414eff;
  --accent2: #14affd;
  --border: rgba(255, 255, 255, 0.12);
  --card: #101018;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.7; font-size: 17px;
}
a { color: var(--accent2); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: 780px; margin: 0 auto; padding: 0 24px; }

header.site { border-bottom: 1px solid var(--border); position: sticky; top: 0;
  background: rgba(10, 10, 20, 0.85); backdrop-filter: blur(8px); z-index: 10; }
header.site .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; }
header.site .brand { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 600; letter-spacing: -0.3px; }
header.site img { height: 26px; width: auto; }
.btn { display: inline-block; background: var(--accent); color: #fff !important;
  padding: 10px 22px; border-radius: 999px; font-weight: 600; text-decoration: none !important; }

main { padding: 44px 0 56px; }
nav.bread { font-size: 14px; color: var(--faint); margin: 0 0 22px; }
nav.bread a { color: var(--muted); }
h1 { font-size: 40px; line-height: 1.2; letter-spacing: -0.5px; margin: 0 0 10px; color: #fff; }
.lede { color: var(--muted); font-size: 19px; margin: 0 0 10px; }
.meta { color: var(--faint); font-size: 14px; margin: 0 0 36px; }
h2 { font-size: 27px; line-height: 1.25; letter-spacing: -0.3px; margin: 46px 0 12px; color: #fff; }
h3 { font-size: 20px; margin: 28px 0 8px; color: #fff; }
p, li { color: var(--text); }
ul, ol { padding-left: 22px; }
li { margin: 7px 0; }
strong { color: #fff; }
.muted { color: var(--muted); }
.card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 18px 24px; margin: 24px 0; }
.cta { background: linear-gradient(105deg, #1a1f4d 0%, #0a0a14 70%); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px; margin: 52px 0; text-align: center; }
.cta h2 { margin: 0 0 8px; }
.cta p { color: var(--muted); margin: 0 0 20px; }
.related a { display: block; padding: 12px 2px; border-bottom: 1px solid var(--border); color: var(--text); }
.related a:hover { color: #fff; text-decoration: none; }

footer.site { border-top: 1px solid var(--border); color: var(--muted); font-size: 14px; padding: 32px 0 48px; }
footer.site .links { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-bottom: 12px; }
footer.site a { color: var(--muted); }
table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 15px; }
caption { text-align: left; color: var(--faint); font-size: 13px; margin-bottom: 8px; }
th, td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--border); vertical-align: top; }
thead th { color: #fff; font-weight: 600; }
th[scope="row"] { color: var(--muted); font-weight: 600; }
@media (max-width: 600px) {
  h1 { font-size: 32px; }
  h2 { font-size: 23px; }
  body { font-size: 16px; }
  th, td { padding: 9px 8px; font-size: 14px; }
}
