/* foneg marketing site. Light by default; dark via the header toggle
   (html[data-theme="dark"]), remembered in localStorage. */
:root {
  --bg: #ffffff;
  --bg-soft: #f7f7fb;
  --bg-sunk: #f1f1f7;
  --card: #ffffff;
  --text: #0e0e18;
  --text-2: #3b3b4f;
  --muted: #6b6b80;
  --border: #e7e7ef;
  --border-strong: #d6d6e2;
  --brand: #5b4cf0;
  --brand-2: #7c6cff;
  --brand-ink: #ffffff;
  --brand-soft: #efedff;
  --brand-line: #d9d4ff;
  --ok: #0c9b69;
  --ok-soft: #e4f7ef;
  --bad: #d64545;
  --bad-soft: #fdecec;
  --radius: 16px;
  --shadow-sm: 0 1px 2px rgba(14, 14, 24, 0.05);
  --shadow: 0 1px 2px rgba(14, 14, 24, 0.04), 0 12px 32px -8px rgba(14, 14, 24, 0.10);
  --shadow-lg: 0 2px 4px rgba(14, 14, 24, 0.04), 0 40px 80px -20px rgba(40, 30, 120, 0.28);
  --glow: radial-gradient(60% 60% at 50% 0%, rgba(91, 76, 240, 0.16), transparent 70%);
  --dots: rgba(14, 14, 24, 0.07);
  color-scheme: light;
}
html[data-theme="dark"] {
  --bg: #0b0b12;
  --bg-soft: #10101a;
  --bg-sunk: #0d0d15;
  --card: #14141f;
  --text: #f2f2f8;
  --text-2: #c9c9d8;
  --muted: #9a9ab0;
  --border: #242434;
  --border-strong: #33334a;
  --brand: #8a7dff;
  --brand-2: #a79dff;
  --brand-ink: #0b0b12;
  --brand-soft: #1d1a3d;
  --brand-line: #3a3478;
  --ok: #3fd39c;
  --ok-soft: #0f2a21;
  --bad: #ff7b7b;
  --bad-soft: #2d1515;
  --shadow-sm: none;
  --shadow: 0 0 0 1px rgba(255, 255, 255, 0.02);
  --shadow-lg: 0 40px 100px -30px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.04);
  --glow: radial-gradient(60% 60% at 50% 0%, rgba(138, 125, 255, 0.20), transparent 70%);
  --dots: rgba(255, 255, 255, 0.06);
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.6 Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; }
svg { display: block; }
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.ic { width: 18px; height: 18px; flex: none; }

/* ------------------------------------------------------------- header */
.top { position: sticky; top: 0; z-index: 20; background: color-mix(in srgb, var(--bg) 82%, transparent); backdrop-filter: saturate(1.4) blur(12px); -webkit-backdrop-filter: saturate(1.4) blur(12px); border-bottom: 1px solid var(--border); }
.top .wrap { height: 64px; display: flex; align-items: center; gap: 28px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; text-decoration: none; letter-spacing: -0.02em; }
.mark { width: 30px; height: 30px; border-radius: 9px; background: linear-gradient(135deg, var(--brand), var(--brand-2)); display: grid; place-items: center; box-shadow: 0 4px 12px -4px rgba(91, 76, 240, 0.6); }
.mark svg { width: 15px; height: 15px; color: #fff; }
.links { display: flex; gap: 24px; font-size: 15px; }
.links a { text-decoration: none; color: var(--muted); }
.links a:hover { color: var(--text); }
.actions { display: flex; gap: 8px; margin-left: auto; align-items: center; }
.actions .signin { text-decoration: none; color: var(--text-2); font-size: 15px; padding: 0 8px; }
.theme { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--border); background: var(--card); color: var(--text-2); display: grid; place-items: center; cursor: pointer; }
.theme:hover { background: var(--bg-soft); }
.theme .sun { display: none; }
html[data-theme="dark"] .theme .sun { display: block; }
html[data-theme="dark"] .theme .moon { display: none; }
@media (max-width: 760px) { .links { display: none; } }
@media (max-width: 420px) { .actions .signin { display: none; } }

/* ------------------------------------------------------------ buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 46px; padding: 0 20px; border-radius: 12px; font-weight: 600; text-decoration: none; border: 1px solid transparent; font-size: 15px; white-space: nowrap; transition: transform .15s ease, filter .15s ease, background .15s ease; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brand); color: var(--brand-ink); box-shadow: 0 6px 20px -8px rgba(91, 76, 240, 0.7); }
.btn-primary:hover { filter: brightness(1.08); }
.btn-ghost { border-color: var(--border-strong); background: var(--card); color: var(--text); }
.btn-ghost:hover { background: var(--bg-soft); }
.btn-sm { height: 38px; padding: 0 14px; border-radius: 10px; font-size: 14px; }
.btn .ic { width: 16px; height: 16px; }

/* --------------------------------------------------------------- hero */
.hero { position: relative; padding: 72px 0 0; text-align: center; isolation: isolate; }
.hero::before { content: ""; position: absolute; inset: 0 0 auto; height: 720px; background: var(--glow); z-index: -1; }
.hero::after { content: ""; position: absolute; inset: 0 0 auto; height: 620px; z-index: -2; background-image: radial-gradient(var(--dots) 1px, transparent 1px); background-size: 22px 22px; -webkit-mask-image: linear-gradient(to bottom, #000 20%, transparent 90%); mask-image: linear-gradient(to bottom, #000 20%, transparent 90%); }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 5px 12px 5px 6px; border-radius: 999px; background: var(--card); border: 1px solid var(--border); color: var(--text-2); font-size: 13px; font-weight: 500; box-shadow: var(--shadow-sm); }
.pill b { display: inline-flex; align-items: center; gap: 5px; background: var(--ok-soft); color: var(--ok); border-radius: 999px; padding: 2px 8px; font-weight: 600; }
.pill b svg { width: 12px; height: 12px; }
h1 { font-size: clamp(38px, 6.4vw, 72px); line-height: 1.02; letter-spacing: -0.045em; margin: 22px auto 0; max-width: 15ch; font-weight: 800; }
h1 .grad { background: linear-gradient(120deg, var(--brand), var(--brand-2) 60%, #c06cff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { font-size: clamp(17px, 2.1vw, 20px); color: var(--muted); max-width: 40rem; margin: 22px auto 0; }
.cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }
.fine { color: var(--muted); font-size: 14px; margin-top: 14px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.fine span { display: inline-flex; align-items: center; gap: 6px; }
.fine svg { width: 15px; height: 15px; color: var(--ok); }

/* product shot */
.stage { position: relative; margin: 56px auto 0; max-width: 1040px; padding: 0 0 8px; }
.shot { text-align: left; background: var(--card); border: 1px solid var(--border); border-radius: 18px; box-shadow: var(--shadow-lg); overflow: hidden; }
.shot-bar { height: 42px; display: flex; align-items: center; gap: 7px; padding: 0 14px; border-bottom: 1px solid var(--border); background: var(--bg-soft); }
.shot-bar i { width: 11px; height: 11px; border-radius: 50%; background: var(--border-strong); }
.shot-url { margin: 0 auto; font-size: 12px; color: var(--muted); background: var(--card); border: 1px solid var(--border); border-radius: 7px; padding: 3px 14px; display: flex; align-items: center; gap: 6px; }
.shot-url svg { width: 11px; height: 11px; }
.shot-body { display: grid; grid-template-columns: 210px 1fr; min-height: 420px; }
.shot-side { border-right: 1px solid var(--border); padding: 14px 10px; background: var(--bg-soft); font-size: 13px; }
.shot-side .row { display: flex; align-items: center; gap: 9px; padding: 7px 10px; border-radius: 8px; color: var(--text-2); }
.shot-side .row svg { width: 15px; height: 15px; color: var(--muted); }
.shot-side .row.on { background: var(--brand-soft); color: var(--brand); font-weight: 600; }
.shot-side .row.on svg { color: var(--brand); }
.shot-side .label { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); padding: 12px 10px 6px; }
.shot-side .n { margin-left: auto; font-size: 11px; color: var(--muted); }
.shot-main { padding: 18px; }
.shot-head { display: flex; align-items: center; gap: 10px; }
.shot-search { flex: 1; display: flex; align-items: center; gap: 8px; height: 38px; border-radius: 10px; border: 1px solid var(--border); padding: 0 12px; color: var(--muted); font-size: 13px; background: var(--card); }
.shot-search svg { width: 15px; height: 15px; }
.kbd { margin-left: auto; font-size: 11px; border: 1px solid var(--border); border-radius: 5px; padding: 0 6px; }
.avatar { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, #ffb86b, #ff6ba8); }
.shot-title { font-weight: 700; font-size: 15px; margin: 18px 0 10px; display: flex; justify-content: space-between; }
.shot-title span { color: var(--muted); font-weight: 500; font-size: 12px; }
.shot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.tile { border: 1px solid var(--border); border-radius: 12px; padding: 12px; background: var(--card); display: flex; gap: 10px; align-items: center; min-width: 0; }
.tile .ti { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; flex: none; }
.tile .ti svg { width: 17px; height: 17px; }
.tile b { display: block; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tile small { display: block; font-size: 11.5px; color: var(--muted); }
.tile > div { min-width: 0; }
.t-red { background: #ffe9e9; color: #e0433f; }
.t-green { background: #e2f8ee; color: #0c9b69; }
.t-violet { background: #eeeaff; color: #6a55f5; }
.t-blue { background: #e6f1ff; color: #2f76e8; }
.t-amber { background: #fff3dd; color: #d88a00; }
.t-pink { background: #ffe8f3; color: #db3d8a; }
html[data-theme="dark"] .t-red { background: #3a1818; color: #ff8a86; }
html[data-theme="dark"] .t-green { background: #0f2c20; color: #4fe0a6; }
html[data-theme="dark"] .t-violet { background: #231d4d; color: #a99cff; }
html[data-theme="dark"] .t-blue { background: #102440; color: #79aefc; }
html[data-theme="dark"] .t-amber { background: #33260a; color: #ffc15a; }
html[data-theme="dark"] .t-pink { background: #3a1427; color: #ff8fc2; }

.float { position: absolute; right: -28px; bottom: -34px; width: 320px; text-align: left; background: var(--card); border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow-lg); padding: 16px; }
.float .fh { display: flex; align-items: center; gap: 10px; }
.float .fh b { font-size: 14px; }
.float .file { margin-top: 12px; display: flex; align-items: center; gap: 10px; padding: 10px; border-radius: 10px; background: var(--bg-soft); font-size: 13px; }
.float .file svg { width: 18px; height: 18px; color: #e0433f; }
.float .file small { color: var(--muted); display: block; }
.float .file .sz { margin-left: auto; text-align: right; white-space: nowrap; }
.float .file .sz b { color: var(--ok); }
.bar { height: 6px; border-radius: 99px; background: var(--bg-sunk); margin-top: 12px; overflow: hidden; }
.bar i { display: block; height: 100%; width: 100%; background: linear-gradient(90deg, var(--brand), var(--brand-2)); border-radius: 99px; }
.float .local { margin-top: 12px; display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--ok); font-weight: 600; }
.float .local svg { width: 15px; height: 15px; }
@media (max-width: 1100px) { .float { right: 12px; } }
@media (max-width: 860px) {
  .shot-body { grid-template-columns: 1fr; }
  .shot-side { display: none; }
  .shot-grid { grid-template-columns: repeat(2, 1fr); }
  .float { position: relative; right: auto; bottom: auto; width: auto; margin: -40px 16px 0; }
}
@media (max-width: 480px) { .shot-grid { grid-template-columns: 1fr; } .shot-grid .tile:nth-child(n+5) { display: none; } }

/* facts strip */
.facts { margin: 88px auto 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 36px; color: var(--muted); font-size: 14px; }
.facts span { display: inline-flex; align-items: center; gap: 8px; }
.facts svg { width: 17px; height: 17px; color: var(--text-2); }

/* ------------------------------------------------------------ sections */
section { padding: 96px 0; }
section.soft { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.eyebrow { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--brand); }
h2 { font-size: clamp(30px, 4.2vw, 46px); letter-spacing: -0.035em; line-height: 1.08; margin: 10px 0 0; font-weight: 800; }
.head { text-align: center; max-width: 44rem; margin: 0 auto 48px; }
.head p { color: var(--muted); margin: 14px 0 0; font-size: 18px; }

/* comparison */
.compare { max-width: 880px; margin: 0 auto; border: 1px solid var(--border); border-radius: 18px; overflow: hidden; background: var(--card); box-shadow: var(--shadow); }
.compare table { width: 100%; border-collapse: collapse; font-size: 15px; }
.compare th, .compare td { padding: 15px 20px; text-align: left; border-bottom: 1px solid var(--border); vertical-align: middle; }
.compare tr:last-child td { border-bottom: 0; }
.compare thead th { font-size: 14px; color: var(--muted); font-weight: 600; background: var(--bg-soft); }
.compare thead th.us { color: var(--brand); }
.compare td.us { background: color-mix(in srgb, var(--brand-soft) 55%, transparent); font-weight: 600; }
.compare td:first-child { color: var(--text-2); }
.yes, .no { display: inline-flex; align-items: center; gap: 8px; }
.yes svg, .no svg { width: 18px; height: 18px; padding: 3px; border-radius: 50%; }
.yes svg { background: var(--ok-soft); color: var(--ok); }
.no svg { background: var(--bad-soft); color: var(--bad); }
.compare .dim { color: var(--muted); }
@media (max-width: 640px) { .compare th, .compare td { padding: 12px; font-size: 14px; } .compare .hide-sm { display: none; } }

/* bento */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.cell { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 26px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden; min-width: 0; }
.cell h3 { margin: 16px 0 6px; font-size: 20px; letter-spacing: -0.02em; }
.cell p { margin: 0; color: var(--muted); font-size: 15px; }
.c-4 { grid-column: span 4; } .c-2 { grid-column: span 2; } .c-3 { grid-column: span 3; }
@media (max-width: 900px) { .bento { grid-template-columns: 1fr 1fr; } .c-4, .c-2, .c-3 { grid-column: span 2; } }
.chip-ic { width: 42px; height: 42px; border-radius: 12px; background: var(--brand-soft); color: var(--brand); display: grid; place-items: center; }
.chip-ic svg { width: 21px; height: 21px; }

.flow { margin-top: 26px; display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 10px; }
.node { border: 1px solid var(--border); border-radius: 14px; padding: 14px; text-align: center; background: var(--bg-soft); font-size: 13px; color: var(--text-2); }
.node svg { width: 22px; height: 22px; margin: 0 auto 6px; color: var(--text-2); }
.node.ok { border-color: color-mix(in srgb, var(--ok) 40%, transparent); background: var(--ok-soft); color: var(--ok); font-weight: 600; }
.node.ok svg { color: var(--ok); }
.node.off { opacity: .55; text-decoration: line-through; }
.link-ok { height: 2px; width: 34px; background: var(--ok); border-radius: 2px; }
.link-off { width: 34px; display: grid; place-items: center; color: var(--bad); }
.link-off svg { width: 18px; height: 18px; }
@media (max-width: 520px) { .flow { grid-template-columns: 1fr; } .link-ok { width: 2px; height: 18px; margin: 0 auto; } .link-off { margin: 0 auto; } }

.big-num { font-size: 64px; font-weight: 800; letter-spacing: -0.05em; line-height: 1; margin-top: 18px; background: linear-gradient(120deg, var(--brand), var(--brand-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.faces { display: flex; margin-top: 22px; }
.faces i { width: 38px; height: 38px; border-radius: 50%; border: 3px solid var(--card); margin-left: -10px; display: grid; place-items: center; font-style: normal; font-size: 13px; font-weight: 700; color: #fff; }
.faces i:first-child { margin-left: 0; }
.req { margin-top: 20px; border: 1px solid var(--border); border-radius: 12px; padding: 12px; background: var(--bg-soft); font-size: 13px; }
.req .ln { height: 9px; border-radius: 5px; background: var(--border); margin-top: 8px; }
.req .ln.s { width: 60%; }
.req .st { margin-top: 10px; display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--ok); font-size: 12px; }
.req .st svg { width: 13px; height: 13px; }

/* categories */
.cats { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 12px; }
.cat { display: flex; align-items: center; gap: 14px; padding: 16px; border-radius: 14px; border: 1px solid var(--border); background: var(--card); text-decoration: none; transition: border-color .15s ease, transform .15s ease; min-width: 0; }
.cat:hover { border-color: var(--brand-line); transform: translateY(-1px); }
.cat .chip-ic { width: 40px; height: 40px; flex: none; }
.cat b { display: block; font-size: 15px; }
.cat small { display: block; color: var(--muted); font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cat > div { min-width: 0; flex: 1; }
.cat .count { font-size: 13px; font-weight: 700; color: var(--brand); background: var(--brand-soft); border-radius: 99px; padding: 2px 9px; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; counter-reset: s; }
.step { padding: 26px; border-radius: 20px; border: 1px solid var(--border); background: var(--card); }
.step::before { counter-increment: s; content: counter(s); display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; background: var(--text); color: var(--bg); font-weight: 800; }
.step h3 { margin: 16px 0 6px; font-size: 18px; }
.step p { margin: 0; color: var(--muted); font-size: 15px; }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }

/* pricing */
.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 860px; margin: 0 auto; }
@media (max-width: 700px) { .plans { grid-template-columns: 1fr; } }
.plan { display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--border); border-radius: 22px; padding: 30px; box-shadow: var(--shadow-sm); position: relative; }
.plan.featured { border: 1.5px solid var(--brand); box-shadow: 0 30px 60px -30px rgba(91, 76, 240, 0.45); }
.plan .tag { position: absolute; top: -12px; right: 24px; font-size: 12px; font-weight: 700; color: var(--brand-ink); background: var(--brand); border-radius: 999px; padding: 4px 12px; }
.plan h3 { margin: 0; font-size: 18px; }
.plan > p { margin: 4px 0 0; color: var(--muted); font-size: 15px; }
.price { font-size: 52px; font-weight: 800; letter-spacing: -0.04em; margin-top: 16px; line-height: 1; }
.price small { font-size: 16px; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.plan ul { list-style: none; padding: 0; margin: 24px 0 28px; flex: 1; border-top: 1px solid var(--border); padding-top: 20px; }
.plan li { padding: 6px 0; display: flex; gap: 10px; font-size: 15px; color: var(--text-2); }
.plan li svg { width: 18px; height: 18px; color: var(--ok); margin-top: 3px; }
.plan .btn { width: 100%; }
.note { text-align: center; color: var(--muted); font-size: 14px; margin-top: 22px; }

/* faq */
.faq { max-width: 820px; margin: 0 auto; }
details { border-bottom: 1px solid var(--border); padding: 20px 4px; }
summary { cursor: pointer; font-weight: 600; font-size: 17px; list-style: none; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--muted); font-size: 24px; line-height: 1; font-weight: 400; transition: transform .2s ease; }
details[open] summary::after { transform: rotate(45deg); }
details p { color: var(--muted); margin: 10px 0 0; }

/* final */
.final-card { position: relative; overflow: hidden; text-align: center; border-radius: 28px; padding: 72px 24px; background: linear-gradient(135deg, #2b1f8f, #5b4cf0 55%, #8f6bff); color: #fff; }
.final-card::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.14) 1px, transparent 1px); background-size: 22px 22px; -webkit-mask-image: radial-gradient(circle at 50% 0%, #000, transparent 70%); mask-image: radial-gradient(circle at 50% 0%, #000, transparent 70%); }
.final-card > * { position: relative; z-index: 1; }
.final-card h2 { color: #fff; }
.final-card p { color: rgba(255, 255, 255, 0.8); font-size: 18px; margin: 14px auto 0; max-width: 34rem; }
.final-card .btn-primary { background: #fff; color: #2b1f8f; box-shadow: none; }
.final-card .btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.4); }
.final-card .btn-ghost:hover { background: rgba(255, 255, 255, 0.1); }

/* tools index */
.search { width: 100%; max-width: 560px; height: 52px; border-radius: 14px; border: 1px solid var(--border-strong); background: var(--card); color: var(--text); padding: 0 18px; font: inherit; display: block; margin: 0 auto 36px; box-shadow: var(--shadow-sm); }
.search:focus { outline: 2px solid var(--brand); outline-offset: 1px; }
.tool-cat { margin-top: 40px; scroll-margin-top: 90px; }
.tool-cat h2 { font-size: 24px; display: flex; align-items: center; gap: 12px; }
.tool-cat h2 .chip-ic { width: 36px; height: 36px; }
.tool-cat h2 span.n { color: var(--muted); font-size: 15px; font-weight: 500; }
.tool-cat > p { color: var(--muted); margin: 6px 0 0; }
.tool-list { list-style: none; padding: 0; margin: 16px 0 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 8px; }
.tool-list li { background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 10px 12px; font-size: 15px; display: flex; align-items: center; gap: 10px; min-width: 0; }
.tool-list li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--brand); flex: none; }
.lock { color: var(--muted); font-size: 15px; text-align: center; }

/* prose */
.page-head { text-align: center; padding: 72px 0 8px; }
.page-head h1 { font-size: clamp(36px, 5vw, 56px); margin: 10px auto 0; max-width: none; }
.page-head p { color: var(--muted); font-size: 18px; margin: 14px auto 0; max-width: 40rem; }
.prose { max-width: 760px; margin: 0 auto; padding: 64px 20px 96px; }
.prose h1 { margin: 0; max-width: none; font-size: clamp(34px, 5vw, 48px); }
.prose h2 { font-size: 22px; margin-top: 40px; letter-spacing: -0.02em; }
.prose p, .prose li { color: var(--text-2); }
.prose strong { color: var(--text); }
.prose .updated { color: var(--muted); font-size: 14px; }

/* footer */
footer { border-top: 1px solid var(--border); padding: 56px 0 40px; color: var(--muted); font-size: 14px; background: var(--bg-soft); }
.foot { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.foot h4 { color: var(--text); font-size: 14px; margin: 0 0 12px; }
.foot a { display: block; text-decoration: none; padding: 4px 0; }
.foot a:hover { color: var(--text); }
.foot p { margin: 12px 0 0; max-width: 22rem; }
.legal { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
@media (max-width: 760px) { .foot { grid-template-columns: 1fr 1fr; } .foot > div:first-child { grid-column: span 2; } }

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

/* fixes after the first visual check */
h1 { max-width: 18ch; }
h1 .grad { display: block; }
.yes svg, .no svg { flex: none; }
@media (max-width: 640px) {
  .compare table { font-size: 13px; table-layout: fixed; }
  .compare th:first-child, .compare td:first-child { width: 34%; }
  .compare th, .compare td { padding: 11px 10px; font-size: 13px; }
  .yes svg, .no svg { display: none; }
  .no { color: var(--bad); }
  .yes { color: var(--ok); }
}
