/* Gritcode — site styles. Dark, native-feeling, no frameworks. */
:root {
  --bg: #0a0b0d;
  --bg2: #0e0f12;
  --surface: #141519;
  --surface2: #1b1c21;
  --surface3: #25262c;
  --line: rgba(255, 255, 255, .08);
  --line2: rgba(255, 255, 255, .14);
  --text: #f4f4f6;
  --muted: #a3a3ad;
  --dim: #74747e;
  --blue: #0a84ff;
  --blue2: #4aa3ff;
  --green: #6ecf6e;
  --green-dim: rgba(110, 207, 110, .12);
  --pink: #ff5f87;
  --pink2: #ff8aa8;
  --pink-dim: rgba(255, 95, 135, .12);
  --r: 14px;
  --r2: 22px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.6 var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video, svg { max-width: 100%; }
img, video { height: auto; display: block; }
a { color: var(--blue2); text-decoration: none; }
a:hover { text-decoration: underline; }
::selection { background: rgba(10, 132, 255, .35); }
[hidden] { display: none !important; }

.wrap { max-width: 1160px; margin: 0 auto; padding-inline: 24px; }
@media (max-width: 600px) { .wrap { padding-inline: 18px; } }

h1, h2, h3 { font-family: var(--display); line-height: 1.08; letter-spacing: -.025em; margin: 0; }
h1 { font-size: clamp(40px, 6.6vw, 78px); font-weight: 750; }
h2 { font-size: clamp(30px, 4.2vw, 50px); font-weight: 700; }
h3 { font-size: 19px; letter-spacing: -.01em; line-height: 1.3; font-weight: 650; }
.h3-lg { font-size: clamp(26px, 3vw, 36px); letter-spacing: -.02em; line-height: 1.12; font-weight: 700; }
p { margin: 0; }
.lead { font-size: clamp(17px, 1.6vw, 20px); color: var(--muted); line-height: 1.55; }
.lead strong, .muted strong { color: var(--text); font-weight: 600; }
.muted { color: var(--muted); }
.dim { color: var(--dim); }
.eyebrow {
  display: block;
  font: 600 13px/1 var(--font);
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
}
.eyebrow.pink { color: var(--pink2); }
.grad {
  background: linear-gradient(92deg, #fff 10%, #b9f1b9 55%, var(--green) 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
code, kbd, pre { font-family: var(--mono); font-size: .88em; }
:not(pre) > code { background: var(--surface2); border: 1px solid var(--line); padding: .1em .4em; border-radius: 6px; }
kbd { background: var(--surface3); border: 1px solid var(--line2); border-bottom-width: 2px; padding: .05em .45em; border-radius: 6px; font-size: .82em; }
pre {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: 18px 20px; overflow-x: auto; line-height: 1.6; color: #d4d4da; margin: 12px 0 0;
}
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -999px; top: 8px; z-index: 100; background: var(--blue); color: #fff; padding: 8px 14px; border-radius: 8px; }
.skip:focus { left: 8px; }
:focus-visible { outline: 2px solid var(--blue2); outline-offset: 3px; border-radius: 6px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 46px; padding: 0 22px; border-radius: 999px;
  font: 600 15px/1 var(--font); letter-spacing: -.005em;
  border: 1px solid transparent; white-space: nowrap; cursor: pointer;
  transition: background .15s, border-color .15s, color .15s, transform .15s;
  text-decoration: none !important;
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn:active { transform: scale(.98); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 8px 24px -8px rgba(10, 132, 255, .6); }
.btn-primary:hover { background: #2b95ff; }
.btn-ghost { background: rgba(255, 255, 255, .05); color: var(--text); border-color: var(--line2); }
.btn-ghost:hover { background: rgba(255, 255, 255, .09); border-color: rgba(255, 255, 255, .22); }
.btn-sponsor { background: var(--pink-dim); color: var(--pink2); border-color: rgba(255, 95, 135, .35); }
.btn-sponsor:hover { background: rgba(255, 95, 135, .2); color: #ffb0c3; }
.btn-sponsor svg { color: var(--pink); }
.btn-patreon { background: #fff; color: #111; }
.btn-patreon:hover { background: #e9e9ee; }
.btn-sm { height: 34px; padding: 0 14px; font-size: 14px; }
.btn-lg { height: 54px; padding: 0 28px; font-size: 16px; }
.btn small { font-weight: 500; opacity: .7; font-size: 13px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 11, 13, .72);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav-in { height: 62px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--text); font: 700 18px/1 var(--display); letter-spacing: -.02em; }
.brand:hover { text-decoration: none; }
.brand img { width: 28px; height: 28px; border-radius: 7px; }
.links { display: flex; gap: 22px; }
.links a { color: var(--muted); font-size: 14.5px; font-weight: 500; }
.links a:hover, .links a[aria-current="page"] { color: var(--text); text-decoration: none; }
.nav-cta { margin-left: auto; display: flex; gap: 8px; }
@media (max-width: 820px) { .links { display: none; } }
@media (max-width: 380px) { .nav-cta .btn-primary { display: none; } }

/* ---------- Hero ---------- */
.hero { position: relative; padding-block: clamp(64px, 9vw, 104px) 24px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: -20% -10% auto; height: 900px; z-index: -1; pointer-events: none;
  background:
    radial-gradient(45% 45% at 78% 8%, rgba(10, 132, 255, .20), transparent 70%),
    radial-gradient(40% 40% at 12% 12%, rgba(110, 207, 110, .16), transparent 70%);
}
.badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px 6px 8px; border-radius: 999px;
  background: rgba(255, 255, 255, .04); border: 1px solid var(--line2);
  color: var(--muted); font-size: 13.5px; margin-bottom: 28px;
}
.badge b { background: var(--green-dim); color: var(--green); font-weight: 600; padding: 3px 9px; border-radius: 999px; font-size: 12px; }
.badge:hover { text-decoration: none; color: var(--text); border-color: rgba(255, 255, 255, .24); }
.hero h1 { max-width: 15ch; }
.hero .lead { max-width: 660px; margin-top: 26px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 22px; color: var(--dim); font-size: 14px; }
.hero-meta span { display: inline-flex; align-items: center; gap: 7px; }
.hero-meta a { color: var(--pink2); }
.hero-shot { margin-top: clamp(48px, 7vw, 72px); }

/* ---------- Media frames ---------- */
.shot {
  position: relative; border-radius: 18px; overflow: hidden; background: #0c0d10;
  border: 1px solid var(--line2);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .9), 0 0 0 1px rgba(0, 0, 0, .5);
  aspect-ratio: 16 / 9;
}
.shot.r43 { aspect-ratio: 4 / 3; }
.shot video, .shot img { width: 100%; height: 100%; object-fit: cover; }
/* Firefox only: a no-op filter keeps it from handing videos to the macOS
   video overlay, which renders these screen recordings washed out.
   Safari renders them correctly, so it keeps its efficient path. */
@supports (-moz-appearance: none) {
  .shot video { filter: saturate(1.001); }
}
figure { margin: 0; }
figcaption { color: var(--dim); font-size: 14px; margin-top: 14px; text-align: center; }
.hero-shot figcaption { max-width: 720px; margin-inline: auto; }

/* ---------- Sections ---------- */
.section { padding-block: clamp(76px, 10vw, 132px); border-top: 1px solid var(--line); }
.section.tight { padding-block: clamp(56px, 7vw, 88px); }
.section-head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head .lead { margin-top: 18px; }
.center { text-align: center; margin-inline: auto; }

/* Size comparison */
.sizes { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 72px); align-items: center; }
.sizes .lead { margin-top: 18px; }
.bars { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r2); padding: 26px 28px 20px; }
.bar-row { display: grid; grid-template-columns: 118px 1fr 74px; gap: 14px; align-items: center; padding: 11px 0; font-size: 15px; }
.bar-row .n { color: var(--muted); }
.bar-row .v { text-align: right; font-family: var(--mono); font-size: 13.5px; color: var(--muted); }
.bar-row.me .n { color: var(--text); font-weight: 600; }
.bar-row.me .v { color: var(--green); font-weight: 600; }
.bar { height: 12px; border-radius: 99px; background: var(--surface3); overflow: hidden; }
.bar i { display: block; height: 100%; width: var(--w); border-radius: inherit; background: linear-gradient(90deg, #4d4d57, #6f6f79); }
.bar-row.me .bar { overflow: visible; }
.bar-row.me .bar i { background: var(--green); min-width: 7px; box-shadow: 0 0 14px rgba(110, 207, 110, .7); }
.bars figcaption { text-align: left; margin-top: 12px; font-size: 13px; }
.bars-label { font: 600 12px/1 var(--mono); letter-spacing: .06em; text-transform: uppercase; color: var(--dim); margin: 4px 0 2px; }
.bars-label ~ .bars-label { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: clamp(40px, 5vw, 64px);
  background: var(--line); border: 1px solid var(--line); border-radius: var(--r2); overflow: hidden;
}
.stat { background: var(--bg2); padding: 26px 24px; }
.stat b { display: block; font: 700 clamp(28px, 3vw, 36px)/1.1 var(--display); letter-spacing: -.025em; }
.stat span { color: var(--muted); font-size: 14px; }
@media (max-width: 900px) {
  .sizes { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 440px) { .bar-row { grid-template-columns: 84px 1fr 64px; gap: 10px; font-size: 14px; } }

/* Feature rows */
.feature { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.feature.flip { grid-template-columns: 7fr 5fr; }
.feature.flip .feature-text { order: 2; }
.feature + .feature { margin-top: clamp(80px, 10vw, 128px); }
.feature-text > p { color: var(--muted); margin-top: 18px; font-size: 17px; }
.checks { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 11px; }
.checks li { position: relative; padding-left: 30px; font-size: 15.5px; }
.checks li::before {
  content: ""; position: absolute; left: 0; top: .2em; width: 19px; height: 19px; border-radius: 50%;
  background: var(--green-dim) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236ecf6e' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 11px no-repeat;
}
@media (max-width: 900px) {
  .feature, .feature.flip { grid-template-columns: 1fr; }
  .feature.flip .feature-text { order: 0; }
}

/* Cards */
.grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.grid.g3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 960px) { .grid.g3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .grid.g3 { grid-template-columns: 1fr; } }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r2); padding: 28px; }
.card h3 { margin-top: 18px; }
.card p { color: var(--muted); margin-top: 8px; font-size: 15px; }
.card.hl { border-color: rgba(110, 207, 110, .35); background: linear-gradient(180deg, rgba(110, 207, 110, .07), transparent 60%), var(--surface); }
.icon { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--surface3); color: var(--green); }
.icon svg { width: 21px; height: 21px; }
.tag { display: inline-block; font: 600 12px/1 var(--mono); color: var(--green); background: var(--green-dim); padding: 6px 9px; border-radius: 8px; }
.tag.blue { color: var(--blue2); background: rgba(10, 132, 255, .13); }
.more { margin-top: 28px; }

/* Harness diagram */
.harness { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(32px, 6vw, 72px); align-items: center; }
.harness .prose-sm p { color: var(--muted); font-size: 17px; margin-top: 16px; }
.diagram { display: grid; gap: 10px; }
.layer { border: 1px solid var(--line2); border-radius: 16px; padding: 18px 20px; background: var(--surface); }
.layer .k { font: 600 12px/1 var(--mono); letter-spacing: .06em; text-transform: uppercase; color: var(--dim); }
.layer .t { font-weight: 650; margin-top: 8px; font-size: 16.5px; }
.layer .chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.layer .chips span { font-size: 13px; color: var(--muted); background: var(--surface3); border-radius: 8px; padding: 4px 9px; }
.layer.core { border-color: rgba(110, 207, 110, .45); background: linear-gradient(180deg, rgba(110, 207, 110, .09), rgba(110, 207, 110, .02)), var(--surface); box-shadow: 0 0 0 4px rgba(110, 207, 110, .05); }
.layer.core .k { color: var(--green); }
.layer.core .chips span { color: #cfeccf; background: rgba(110, 207, 110, .12); }
.link-arrow { text-align: center; color: var(--dim); font-family: var(--mono); font-size: 13px; line-height: 1; }
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 900px) { .harness { grid-template-columns: 1fr; } }
@media (max-width: 460px) { .duo { grid-template-columns: 1fr; } }

/* Sponsor */
.sponsor {
  position: relative; overflow: hidden; border-radius: 30px; padding: clamp(32px, 6vw, 64px);
  border: 1px solid rgba(255, 95, 135, .25);
  background:
    radial-gradient(60% 80% at 100% 0%, rgba(255, 95, 135, .16), transparent 60%),
    radial-gradient(50% 70% at 0% 100%, rgba(10, 132, 255, .10), transparent 60%),
    var(--bg2);
}
.sponsor-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.sponsor .lead { margin-top: 18px; }
.sp-cards { display: grid; gap: 14px; }
.sp-card {
  background: rgba(20, 21, 25, .85); border: 1px solid var(--line2); border-radius: 20px; padding: 24px;
  display: grid; grid-template-columns: 48px 1fr; gap: 6px 16px; align-items: start;
}
.sp-card .logo { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: var(--surface3); grid-row: span 3; }
.sp-card .logo svg { width: 24px; height: 24px; }
.sp-card h3 { font-size: 18px; }
.sp-card p { color: var(--muted); font-size: 15px; }
.sp-card .btn { justify-self: start; margin-top: 10px; }
.funds { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; }
.funds li { display: grid; grid-template-columns: 28px 1fr; gap: 12px; color: var(--muted); font-size: 15.5px; }
.funds li b { color: var(--text); font-weight: 600; }
.funds .ic { width: 28px; height: 28px; border-radius: 8px; background: var(--pink-dim); color: var(--pink2); display: grid; place-items: center; }
.funds .ic svg { width: 15px; height: 15px; }
.small-help { margin-top: 26px; font-size: 14.5px; color: var(--dim); }
.small-help a { color: var(--muted); text-decoration: underline; text-decoration-color: var(--line2); text-underline-offset: 3px; }
@media (max-width: 900px) { .sponsor-grid { grid-template-columns: 1fr; } }

/* Download */
.dl { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.dl-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r2); padding: 30px; display: flex; flex-direction: column; gap: 6px; }
.dl-card .os { display: flex; align-items: center; gap: 12px; }
.dl-card .os svg { width: 30px; height: 30px; color: var(--text); }
.dl-card h3 { font-size: 22px; }
.dl-card p { color: var(--muted); font-size: 15px; }
.dl-card .btn { margin-top: 18px; align-self: flex-start; }
.dl-note { margin-top: 18px; color: var(--dim); font-size: 14px; }
@media (max-width: 720px) { .dl { grid-template-columns: 1fr; } }

details.src { margin-top: 28px; border: 1px solid var(--line); border-radius: var(--r2); background: var(--bg2); }
details.src summary { cursor: pointer; padding: 20px 24px; font-weight: 600; list-style: none; display: flex; justify-content: space-between; align-items: center; }
details.src summary::-webkit-details-marker { display: none; }
details.src summary::after { content: "+"; font: 400 22px/1 var(--font); color: var(--dim); }
details.src[open] summary::after { content: "–"; }
details.src .body { padding: 0 24px 24px; }
details.src h4 { margin: 18px 0 0; font-size: 13px; color: var(--dim); text-transform: uppercase; letter-spacing: .08em; }

/* FAQ */
.faq { max-width: 820px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 22px 40px 22px 0; position: relative;
  font: 600 17.5px/1.4 var(--display); letter-spacing: -.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 18px; font: 300 26px/1 var(--font); color: var(--dim); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); padding: 0 0 22px; margin-top: -6px; max-width: 70ch; }

/* Compare table */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r2); background: var(--surface); }
table { width: 100%; border-collapse: collapse; min-width: 680px; font-size: 15px; }
th, td { padding: 15px 18px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
thead th { font: 600 13px/1.3 var(--font); color: var(--dim); text-transform: uppercase; letter-spacing: .06em; background: var(--bg2); }
tbody th { color: var(--muted); font-weight: 500; width: 24%; }
tr:last-child td, tr:last-child th { border-bottom: 0; }
td.me, th.me { background: rgba(110, 207, 110, .06); color: var(--text); }
thead th.me { color: var(--green); }
.yes { color: var(--green); font-weight: 600; }
.no { color: var(--dim); }
.table-note { color: var(--dim); font-size: 13.5px; margin-top: 14px; }

/* Sub pages */
.page-hero { position: relative; padding-block: clamp(56px, 8vw, 96px) clamp(24px, 4vw, 40px); overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; inset: -40% -10% auto; height: 700px; z-index: -1; pointer-events: none;
  background: radial-gradient(40% 50% at 80% 10%, rgba(10, 132, 255, .15), transparent 70%), radial-gradient(35% 45% at 10% 20%, rgba(110, 207, 110, .12), transparent 70%);
}
.page-hero.pink::before { background: radial-gradient(45% 55% at 75% 10%, rgba(255, 95, 135, .18), transparent 70%), radial-gradient(35% 45% at 10% 20%, rgba(10, 132, 255, .10), transparent 70%); }
.page-hero h1 { font-size: clamp(38px, 5.6vw, 64px); max-width: 18ch; }
.page-hero .lead { margin-top: 22px; max-width: 700px; }
.crumbs { font-size: 13.5px; color: var(--dim); margin-bottom: 22px; }
.crumbs a { color: var(--muted); }
.prose { max-width: 780px; }
.prose h2 { font-size: clamp(26px, 3vw, 34px); margin-top: 64px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 32px; font-size: 20px; }
.prose p, .prose li { color: var(--muted); font-size: 17px; }
.prose p { margin-top: 16px; }
.prose ul, .prose ol { padding-left: 22px; margin: 16px 0 0; display: grid; gap: 8px; }
.prose strong { color: var(--text); font-weight: 600; }
.steps { counter-reset: s; list-style: none; padding: 0 !important; display: grid; gap: 14px !important; }
.steps li { min-width: 0; counter-increment: s; position: relative; padding: 20px 22px 20px 64px; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; }
.steps li::before { content: counter(s); position: absolute; left: 20px; top: 18px; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: rgba(10, 132, 255, .15); color: var(--blue2); font-weight: 700; font-size: 14px; }
.cta-band { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r2); padding: 32px; }
.cta-band h2 { font-size: clamp(24px, 2.6vw, 30px); }
.cta-band p { color: var(--muted); margin-top: 8px; }
.cta-band .cta-row { margin-top: 0; }

/* Guides & comparison pages */
.note {
  margin-top: 22px; padding: 16px 20px; border-radius: 14px;
  background: rgba(10, 132, 255, .08); border: 1px solid rgba(10, 132, 255, .25);
  color: var(--muted); font-size: 15.5px;
}
.note strong { color: var(--text); }
.updated { color: var(--dim); font-size: 14px; margin-top: 16px; }
.link-card { display: block; color: inherit; transition: border-color .15s, transform .15s; }
.link-card:hover { text-decoration: none; border-color: rgba(255, 255, 255, .22); transform: translateY(-2px); }
.link-card .go { display: inline-block; margin-top: 16px; color: var(--blue2); font-weight: 600; font-size: 14.5px; }
.prose .table-wrap { margin-top: 22px; }
.prose table { min-width: 560px; font-size: 14.5px; }
.prose td, .prose th { color: var(--muted); }
.prose td.me { color: var(--text); }
.prose .grid { margin-top: 22px; }
.prose .diagram { margin-top: 26px; }
.table-wrap.wide table { min-width: 860px; }
.verdicts { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 720px) { .verdicts { grid-template-columns: 1fr; } }
.further { margin-top: 18px; }
.ico-inline { display: inline-block; width: 1.15em; height: 1.15em; vertical-align: -0.22em; margin: 0 .12em; }

/* Footer */
.footer { border-top: 1px solid var(--line); padding-block: 56px 40px; background: var(--bg2); }
.foot-grid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 32px; }
.foot-grid h4 { margin: 0 0 14px; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--dim); }
.foot-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.foot-grid a { color: var(--muted); font-size: 14.5px; }
.foot-grid a:hover { color: var(--text); }
.foot-brand p { color: var(--muted); font-size: 14.5px; margin-top: 14px; max-width: 34ch; }
.foot-brand .cta-row { margin-top: 20px; }
.fine { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--dim); font-size: 13px; display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; }
.fine a { color: var(--muted); }
@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr 1fr; } .foot-brand { grid-column: 1 / -1; } }

/* Toast */
.toast {
  position: fixed; left: 50%; bottom: 20px; transform: translateX(-50%); z-index: 60;
  width: min(560px, calc(100% - 32px));
  background: rgba(27, 28, 33, .92); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 95, 135, .35); border-radius: 18px; padding: 18px 20px;
  box-shadow: 0 20px 60px -10px rgba(0, 0, 0, .8);
  animation: rise .35s cubic-bezier(.2, .8, .2, 1);
}
.toast p { font-size: 15px; color: var(--muted); padding-right: 24px; }
.toast p b { color: var(--text); }
.toast .cta-row { margin-top: 14px; gap: 8px; }
.toast .x { position: absolute; top: 10px; right: 12px; background: none; border: 0; color: var(--dim); font-size: 22px; line-height: 1; cursor: pointer; padding: 4px; }
.toast .x:hover { color: var(--text); }
@keyframes rise { from { opacity: 0; transform: translate(-50%, 16px); } }

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