@font-face {
  font-family: "Fraunces";
  src: url("/fonts/fraunces.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2212, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Jakarta";
  src: url("/fonts/jakarta.woff2") format("woff2-variations");
  font-weight: 200 800;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2212, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Jakarta";
  src: url("/fonts/jakarta-ext.woff2") format("woff2-variations");
  font-weight: 200 800;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1E00-1E9F, U+2020, U+20A0-20AB, U+2113, U+2C60-2C7F;
}

:root {
  --ink: #12231a;
  --ink-2: #4c5e52;
  --ink-3: #6f8175;
  --paper: #fff;
  --mist: #f3f6f1;
  --sage: #e8eee4;
  --line: #d9e2d4;
  --line-soft: #e7ece4;
  --brand: #3ca725;
  --brand-dark: #2a7a19;
  --brand-tint: #eaf6e4;
  --award: #b57a10;
  --award-tint: #fbf1da;

  --grad-brand: linear-gradient(135deg, #4fc22f 0%, #3ca725 48%, #24761a 100%);
  --grad-brand-hover: linear-gradient(135deg, #59d136 0%, #3faf27 48%, #2a8a1d 100%);
  --grad-ink: linear-gradient(135deg, #1d3a28 0%, #12231a 55%, #0a1912 100%);
  --grad-text: linear-gradient(118deg, #4fc22f 0%, #3ca725 40%, #1f6a15 100%);
  --grad-award: linear-gradient(135deg, #f0c05a 0%, #d79a1e 55%, #a76c09 100%);
  --grad-wash: linear-gradient(168deg, #ffffff 0%, #f6faf3 55%, #eef5ea 100%);

  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-ui: "Jakarta", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

  --wrap: 1160px;
  --read: 68ch;
  --r-s: 8px;
  --r-m: 14px;
  --r-l: 22px;
  --shadow: 0 1px 2px rgba(18, 35, 26, .05), 0 8px 24px -14px rgba(18, 35, 26, .22);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--mist);
  background-image: radial-gradient(120% 60% at 85% -10%, rgba(60, 167, 37, .13) 0%, rgba(60, 167, 37, 0) 62%);
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

a { color: var(--brand-dark); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }

:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; border-radius: 3px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -.015em;
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2rem, 1.35rem + 2.6vw, 3.2rem); font-variation-settings: "opsz" 96; letter-spacing: -.025em; }
h2 { font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.05rem); font-variation-settings: "opsz" 48; }
h3 { font-size: clamp(1.2rem, 1.1rem + .4vw, 1.4rem); font-variation-settings: "opsz" 30; }
p { margin: 0 0 1.1em; }

.wrap { width: min(100% - 2.2rem, var(--wrap)); margin-inline: auto; }
.wrap-read { width: min(100% - 2.2rem, 800px); margin-inline: auto; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: #fff; padding: .8rem 1.2rem; border-radius: 0 0 var(--r-s) 0;
}
.skip:focus { left: 0; }

.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; }

/* ---------- header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.header-in { display: flex; align-items: center; gap: 1.5rem; height: 68px; }

.logo { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--ink); flex: none; }
.logo svg { width: 32px; height: 32px; border-radius: 8px; }
.logo-word { font-family: var(--font-display); font-size: 1.31rem; font-weight: 600; letter-spacing: -.03em; font-variation-settings: "opsz" 40; }
.logo-word i { font-style: normal; color: var(--ink-3); font-weight: 400; }

.nav { margin-left: auto; display: flex; gap: 1.6rem; align-items: center; }
.nav a { color: var(--ink-2); text-decoration: none; font-size: .95rem; font-weight: 500; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); }
.nav a[aria-current="page"] { text-decoration: underline; text-decoration-color: var(--brand); text-decoration-thickness: 2px; text-underline-offset: 6px; }

.nav-toggle { display: none; }

@media (max-width: 860px) {
  .header-in { height: 60px; }
  .nav-toggle {
    display: inline-flex; align-items: center; gap: .45rem; margin-left: auto;
    background: var(--sage); border: 0; border-radius: 999px; padding: .5rem .95rem;
    font: inherit; font-size: .9rem; font-weight: 600; color: var(--ink); cursor: pointer;
  }
  .nav {
    position: absolute; inset: 100% 0 auto; margin: 0; display: none;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line); padding: .4rem 0 .8rem;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav a { padding: .8rem 1.1rem; font-size: 1.02rem; }
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font: inherit; font-weight: 700; font-size: 1rem; letter-spacing: -.01em;
  padding: .82rem 1.5rem; border-radius: 999px; border: 1px solid transparent;
  text-decoration: none; cursor: pointer; transition: background-color .15s, color .15s, border-color .15s;
}
.btn-buy, .btn-dark { position: relative; overflow: hidden; isolation: isolate; }
.btn-buy > *, .btn-dark > * { position: relative; z-index: 2; }

.btn-buy { background-image: var(--grad-brand); color: #fff; box-shadow: 0 2px 10px -4px rgba(36, 118, 26, .55); }
.btn-buy:hover { background-image: var(--grad-brand-hover); color: #fff; box-shadow: 0 6px 18px -6px rgba(36, 118, 26, .6); }
.btn-buy:focus-visible, .cookiebar button:focus-visible { outline-color: var(--ink); outline-offset: 3px; }

.btn-dark { background-image: var(--grad-ink); color: #fff; }
.btn-dark:hover { background-image: linear-gradient(135deg, #27503a 0%, #16301f 55%, #0a1912 100%); color: #fff; }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--sage); color: var(--ink); border-color: var(--brand); }

.btn-buy::after, .btn-dark::after, .cookiebar button::after {
  content: ""; position: absolute; inset: -40% -60%; z-index: 1; pointer-events: none;
  background: linear-gradient(104deg, rgba(255, 255, 255, 0) 38%, rgba(255, 255, 255, .48) 48%, rgba(255, 255, 255, .12) 54%, rgba(255, 255, 255, 0) 62%);
  transform: translateX(-70%);
  animation: sheen 5s cubic-bezier(.45, 0, .2, 1) infinite;
}
.btn-dark::after { animation-delay: 1.1s; opacity: .55; }
.cookiebar button::after { animation-delay: 2.2s; }
@keyframes sheen {
  0%, 62% { transform: translateX(-70%); }
  92%, 100% { transform: translateX(70%); }
}
.btn-sm { padding: .55rem 1.1rem; font-size: .9rem; }

/* ---------- hero ---------- */

.hero { padding: clamp(2.4rem, 6vw, 4.6rem) 0 clamp(1.6rem, 4vw, 2.6rem); }
.hero-grid { display: grid; gap: 2.2rem; align-items: center; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: minmax(0, 1.25fr) 320px; gap: 4rem; } }
.hero h1 { max-width: 17ch; margin-bottom: .6rem; }
.hero-lead { font-size: 1.14rem; color: var(--ink-2); max-width: 56ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.7rem; }

/* winner of the newest test — the site in miniature */
.verdict {
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--r-l);
  padding: 1.15rem 1.3rem 1.4rem; max-width: 420px;
  background-image: linear-gradient(166deg, #ffffff 0%, #f7fcf4 48%, #ecf7e6 100%);
  box-shadow: 0 2px 4px rgba(18, 35, 26, .04), 0 26px 50px -30px rgba(18, 35, 26, .45);
}
.verdict-test { display: block; font-size: .85rem; font-weight: 600; color: var(--brand-dark); text-decoration: none; padding-bottom: .9rem; border-bottom: 1px solid var(--line-soft); }
.verdict-test:hover { text-decoration: underline; color: var(--brand-dark); }
.verdict-main { display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: center; gap: .9rem; padding: 1.1rem 0 1rem; }
.verdict-rank {
  font-family: var(--font-display); font-variation-settings: "opsz" 144;
  font-size: 4.4rem; line-height: .8; font-weight: 500; letter-spacing: -.06em; color: var(--brand);
  background-image: var(--grad-text); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.verdict-main img { max-height: 168px; width: auto; margin-inline: auto; object-fit: contain; }
.verdict h2 { font-family: var(--font-ui); font-size: 1.1rem; font-weight: 700; letter-spacing: -.01em; line-height: 1.3; margin: 0 0 .35rem; }
.verdict p { font-size: .9rem; color: var(--ink-2); line-height: 1.5; margin: 0 0 1.1rem; }
.verdict .btn { width: 100%; }

/* ---------- sections ---------- */

.section { padding: clamp(2.2rem, 5vw, 3.6rem) 0; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 1.6rem; flex-wrap: wrap; }
.section-head h2 { margin: 0; }
.section-head a { font-size: .95rem; font-weight: 600; }

/* ---------- category grid ---------- */

.cats { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: .9rem; }
.cat {
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--r-m);
  padding: 1.3rem 1.35rem 1.15rem; text-decoration: none; color: var(--ink);
  display: flex; flex-direction: column; min-height: 100%;
  background-image: var(--grad-wash);
  transition: border-color .18s, box-shadow .18s, background-image .18s;
}
.cat:hover {
  border-color: rgba(60, 167, 37, .5); color: var(--ink);
  background-image: linear-gradient(168deg, #ffffff 0%, #f2fbee 60%, #e6f6de 100%);
  box-shadow: 0 12px 28px -20px rgba(18, 35, 26, .5);
}
.cat h3 { margin: 0 0 .35rem; font-size: 1.22rem; }
.cat p { margin: 0 0 1rem; font-size: .93rem; color: var(--ink-2); line-height: 1.55; }
.cat b { margin-top: auto; font-size: .82rem; font-weight: 600; color: var(--brand-dark); }

/* ---------- test cards ---------- */

.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1.1rem; }
.card {
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--r-m);
  overflow: hidden; display: flex; flex-direction: column; text-decoration: none; color: var(--ink);
  background-image: var(--grad-wash);
  transition: border-color .18s, box-shadow .18s;
}
.card:hover { border-color: rgba(60, 167, 37, .5); color: var(--ink); box-shadow: 0 14px 30px -22px rgba(18, 35, 26, .55); }
.card-img { background: var(--sage); aspect-ratio: 16 / 10; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 1.05rem 1.15rem 1.2rem; display: flex; flex-direction: column; flex: 1; }
.card-cat { font-size: .78rem; font-weight: 700; color: var(--brand-dark); margin-bottom: .45rem; }
.card h3 { font-size: 1.16rem; margin: 0 0 .5rem; line-height: 1.2; }
.card p { font-size: .92rem; color: var(--ink-2); margin: 0 0 .9rem; line-height: 1.55; }
.card-meta { margin-top: auto; font-size: .82rem; color: var(--ink-3); }

/* ---------- article ---------- */

.article { padding-bottom: 3rem; }

.crumbs { font-size: .86rem; color: var(--ink-3); padding: 1.1rem 0 .4rem; }
.crumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .4rem; }
.crumbs li::after { content: "/"; margin-left: .4rem; color: var(--line); }
.crumbs li:last-child::after { content: none; }
.crumbs a { color: var(--ink-3); text-decoration: none; }
.crumbs a:hover { color: var(--ink); text-decoration: underline; }

.article-head { padding-bottom: 1.6rem; }
.article-head h1 { margin-bottom: .6rem; }
.article-lead { font-size: 1.15rem; color: var(--ink-2); max-width: 62ch; margin-bottom: 1.5rem; }

.byline { display: flex; align-items: center; gap: .8rem; padding: .85rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.byline img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; flex: none; }
.byline-txt { font-size: .9rem; line-height: 1.45; }
.byline-txt a { font-weight: 600; color: var(--ink); text-decoration: none; }
.byline-txt a:hover { text-decoration: underline; }
.byline-txt span { display: block; color: var(--ink-3); }

.hero-img { margin: 1.8rem 0 0; border-radius: var(--r-l); overflow: hidden; background: var(--sage); }
.hero-img img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }

.disclosure {
  display: flex; gap: .6rem; align-items: flex-start;
  font-size: .85rem; color: var(--ink-3); line-height: 1.5;
  margin: 1.2rem 0 0; padding: .75rem .95rem;
  background: var(--sage); border-radius: var(--r-s);
}
.disclosure svg { flex: none; width: 17px; height: 17px; margin-top: .12rem; color: var(--ink-3); }

/* ---------- layout with sidebar TOC ---------- */

.article-body { display: grid; gap: 1.8rem; padding-top: 2.2rem; }
@media (min-width: 1040px) {
  .article-body { grid-template-columns: minmax(0, 1fr) 236px; gap: 3.4rem; align-items: start; }
  .article-col { grid-column: 1; grid-row: 1; }
  .toc { grid-column: 2; grid-row: 1; position: sticky; top: 92px; background: none; border: 0; padding: 0; }
}

.toc { font-size: .92rem; background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--r-m); padding: 1rem 1.15rem; }
.toc h2 { font-family: var(--font-ui); font-size: .82rem; font-weight: 700; letter-spacing: .02em; color: var(--ink-3); margin: 0 0 .7rem; }
.toc ol { list-style: none; margin: 0; padding: 0; border-left: 2px solid var(--line); }
.toc li { margin: 0; }
.toc a { display: block; padding: .38rem 0 .38rem .9rem; margin-left: -2px; border-left: 2px solid transparent; color: var(--ink-2); text-decoration: none; line-height: 1.4; }
.toc a:hover { color: var(--ink); border-left-color: var(--brand); }

/* ---------- prose ---------- */

.prose { max-width: var(--read); }
.prose > h2 { margin-top: 2.4rem; }
.prose > h3 { margin-top: 1.8rem; }
.prose ul, .prose ol { padding-left: 1.2rem; margin: 0 0 1.2rem; }
.prose li { margin-bottom: .45rem; }
.prose li::marker { color: var(--brand); }
.prose strong { font-weight: 700; }

/* ---------- quick picks ---------- */

.picks { display: grid; gap: .8rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); margin: 0 0 2.6rem; }
.pick {
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--r-m);
  padding: 1.1rem 1.15rem 1.2rem; display: flex; flex-direction: column;
  background-image: var(--grad-wash);
}
.picks .pick:first-child { border-color: rgba(60, 167, 37, .4); background-image: linear-gradient(166deg, #ffffff 0%, #f4fbf0 55%, #e8f6e1 100%); }
.pick-badge { font-size: .78rem; font-weight: 700; color: var(--award); margin-bottom: .55rem; }
.picks .pick:first-child .pick-badge { color: var(--brand-dark); }
.pick-img {
  background-image: linear-gradient(160deg, #ffffff 0%, #f5f9f2 70%, #ebf3e6 100%);
  border: 1px solid var(--line-soft); border-radius: var(--r-s);
  aspect-ratio: 4 / 3; padding: .8rem; margin-bottom: .9rem;
  display: grid; place-items: center;
}
.pick-img img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.pick h3 { font-size: 1.04rem; margin: 0 0 .3rem; font-family: var(--font-ui); font-weight: 700; letter-spacing: -.01em; line-height: 1.3; }
.pick p { font-size: .88rem; color: var(--ink-2); margin: 0 0 1rem; line-height: 1.5; }
.pick .btn { margin-top: auto; width: 100%; }

/* ---------- comparison table ---------- */

.cmp-wrap { margin: 0 0 2.8rem; border: 1px solid var(--line-soft); border-radius: var(--r-m); background: var(--paper); overflow: hidden; }
table.cmp { width: 100%; border-collapse: collapse; font-size: .95rem; }
table.cmp th, table.cmp td { text-align: left; padding: .85rem 1rem; border-bottom: 1px solid var(--line-soft); vertical-align: middle; }
table.cmp thead th { font-size: .78rem; font-weight: 700; color: var(--ink-3); background-image: linear-gradient(180deg, #f7faf5 0%, #eef4ea 100%); border-bottom: 1px solid var(--line); }
table.cmp tbody tr:last-child td { border-bottom: 0; }
table.cmp .c-rank {
  width: 46px; font-family: var(--font-display); font-variation-settings: "opsz" 40; font-size: 1.35rem; font-weight: 600; color: var(--brand);
  background-image: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
table.cmp .c-model a { color: var(--ink); text-decoration: none; font-weight: 700; }
table.cmp .c-model a:hover { text-decoration: underline; }
table.cmp .c-model span { display: block; font-size: .84rem; color: var(--ink-3); font-weight: 400; }
table.cmp .c-score { font-family: var(--font-display); font-variation-settings: "opsz" 36; font-size: 1.18rem; font-weight: 600; white-space: nowrap; }
table.cmp .c-buy { text-align: right; width: 1%; white-space: nowrap; }
table.cmp tbody tr.is-winner { background-image: linear-gradient(95deg, rgba(79, 194, 47, .2) 0%, rgba(60, 167, 37, .07) 55%, rgba(60, 167, 37, 0) 100%); }

@media (max-width: 720px) {
  table.cmp thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  table.cmp, table.cmp tbody, table.cmp tr, table.cmp td { display: block; width: 100%; }
  table.cmp tr { border-bottom: 1px solid var(--line-soft); padding: .95rem 1rem; display: grid; grid-template-columns: 42px 1fr auto; gap: .2rem .4rem; align-items: center; }
  table.cmp tr:last-child { border-bottom: 0; }
  table.cmp td { border: 0; padding: 0; }
  table.cmp .c-rank { grid-row: 1 / 3; font-size: 1.6rem; }
  table.cmp .c-score { grid-column: 3; grid-row: 1; font-size: 1.05rem; }
  table.cmp .c-buy { grid-column: 2 / 4; grid-row: 2; text-align: left; margin-top: .55rem; }
}

/* ---------- product blocks ---------- */

.product { border-top: 1px solid var(--line); padding: 2.4rem 0 2.2rem; }
.product:first-of-type { border-top: 0; padding-top: .6rem; }

.product-head { display: grid; grid-template-columns: auto 1fr; gap: 0 1.1rem; align-items: start; margin-bottom: 1.4rem; }
.rank {
  font-family: var(--font-display); font-variation-settings: "opsz" 144;
  font-size: 3.4rem; line-height: .82; font-weight: 500; letter-spacing: -.05em;
  color: var(--brand); grid-row: span 2;
  background-image: var(--grad-text); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.product-head h2 { margin: 0; font-size: clamp(1.35rem, 1.1rem + .9vw, 1.75rem); }
.badge {
  display: inline-block; font-size: .76rem; font-weight: 700; letter-spacing: .01em;
  padding: .24rem .6rem; border-radius: 999px; margin-bottom: .45rem;
  background-image: linear-gradient(135deg, #fdf6e4 0%, #f7e8c4 100%); color: var(--award); border: 1px solid rgba(181, 122, 16, .22);
}
.badge-best { background-image: var(--grad-brand); color: #fff; box-shadow: 0 2px 8px -3px rgba(36, 118, 26, .6); }

.product-main { display: grid; gap: 1.5rem; align-items: start; }
@media (min-width: 720px) { .product-main { grid-template-columns: 300px minmax(0, 1fr); gap: 2.2rem; } }

.product-figure {
  background-image: linear-gradient(160deg, #ffffff 0%, #f6faf3 70%, #ebf4e6 100%);
  border: 1px solid var(--line-soft); border-radius: var(--r-m);
  padding: 1.4rem; display: grid; place-items: center;
  aspect-ratio: 4 / 3; max-height: 340px;
}
.product-figure img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
@media (min-width: 720px) {
  .product-figure { aspect-ratio: 1; max-height: none; position: sticky; top: 92px; }
}

.scorebar { display: flex; align-items: baseline; gap: .55rem; margin-bottom: 1rem; }
.scorebar b {
  font-family: var(--font-display); font-variation-settings: "opsz" 72; font-size: 2.4rem; font-weight: 600; line-height: 1; letter-spacing: -.03em;
  background-image: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.scorebar span { font-size: .88rem; color: var(--ink-3); }

.subscores { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: .55rem 1.4rem; margin: 0 0 1.4rem; }
.subscore { font-size: .87rem; }
.subscore-label { display: flex; justify-content: space-between; color: var(--ink-2); margin-bottom: .25rem; }
.subscore-label b { color: var(--ink); font-weight: 700; }
.subscore .bar { display: block; height: 4px; border-radius: 2px; background: var(--sage); overflow: hidden; }
.subscore .bar span { display: block; height: 100%; background-image: var(--grad-brand); border-radius: 2px; }

.proscons { display: grid; gap: 1.1rem 2rem; margin: 1.5rem 0; }
@media (min-width: 620px) { .proscons { grid-template-columns: 1fr 1fr; } }
.proscons h4 { font-family: var(--font-ui); font-size: .84rem; font-weight: 700; color: var(--ink-3); margin: 0 0 .55rem; }
.proscons ul { list-style: none; margin: 0; padding: 0; font-size: .95rem; }
.proscons li { position: relative; padding-left: 1.5rem; margin-bottom: .45rem; line-height: 1.5; }
.proscons li::before { position: absolute; left: 0; top: -.05rem; font-weight: 700; }
.pros li::before { content: "+"; color: var(--brand); font-size: 1.15rem; }
.cons li::before { content: "−"; color: #b4553a; font-size: 1.15rem; }

.specs { width: 100%; border-collapse: collapse; font-size: .92rem; margin: 1.4rem 0; }
.specs th, .specs td { text-align: left; padding: .55rem .2rem; border-bottom: 1px solid var(--line-soft); }
.specs th { font-weight: 500; color: var(--ink-3); width: 45%; }
.specs td { font-weight: 600; }

.buybar { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem 1rem; margin-top: 1.5rem; }
.buybar small { font-size: .8rem; color: var(--ink-3); }

/* ---------- faq ---------- */

.faq { margin-top: 1.2rem; display: grid; gap: .7rem; }
.faq details {
  background-image: var(--grad-wash);
  border: 1px solid var(--line-soft); border-radius: var(--r-m); overflow: hidden;
  transition: border-color .2s, box-shadow .2s, background-image .2s;
}
.faq details:hover { border-color: rgba(60, 167, 37, .38); }
.faq details[open] {
  border-color: rgba(60, 167, 37, .5);
  background-image: linear-gradient(168deg, #eef8e9 0%, #f8fdf6 44%, #ffffff 100%);
  box-shadow: 0 16px 34px -26px rgba(18, 35, 26, .55);
}
.faq summary {
  cursor: pointer; list-style: none; position: relative;
  padding: 1.1rem 3.7rem 1.1rem 1.25rem;
  font-weight: 700; font-size: 1.03rem; line-height: 1.45;
  transition: padding-bottom .2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq details[open] summary { padding-bottom: .75rem; }
.faq summary::after {
  content: "+";
  position: absolute; right: 1.05rem; top: 50%; translate: 0 -50%;
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  background-image: var(--grad-brand); color: #fff;
  font-family: var(--font-ui); font-size: 1.3rem; font-weight: 400; line-height: 1;
  box-shadow: 0 3px 10px -4px rgba(36, 118, 26, .75);
  transition: rotate .28s cubic-bezier(.4, 0, .2, 1), box-shadow .2s;
}
.faq summary:hover::after { box-shadow: 0 5px 14px -4px rgba(36, 118, 26, .85); }
.faq details[open] summary::after { rotate: 135deg; }
.faq .faq-a { padding: 0 1.3rem 1.35rem; color: var(--ink-2); max-width: var(--read); }
.faq .faq-a p:last-child { margin-bottom: 0; }

/* ---------- author box ---------- */

.authorbox {
  display: grid; gap: 1.2rem; align-items: start; margin-top: 3rem;
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--r-m); padding: 1.6rem;
}
@media (min-width: 620px) { .authorbox { grid-template-columns: 92px 1fr; gap: 1.6rem; } }
.authorbox img { width: 92px; height: 92px; border-radius: 50%; object-fit: cover; }
.authorbox h2 { font-family: var(--font-ui); font-size: .82rem; font-weight: 700; color: var(--ink-3); margin: 0 0 .35rem; }
.authorbox h3 { font-size: 1.25rem; margin: 0 0 .2rem; }
.authorbox .role { font-size: .9rem; color: var(--ink-3); margin: 0 0 .7rem; }
.authorbox p { font-size: .94rem; color: var(--ink-2); margin: 0; line-height: 1.6; }

/* ---------- author page ---------- */

.author-hero { display: grid; gap: 1.8rem; padding: 2.4rem 0 1rem; }
@media (min-width: 760px) { .author-hero { grid-template-columns: 280px 1fr; gap: 2.8rem; align-items: start; } }
.author-hero img { border-radius: var(--r-l); width: 100%; object-fit: cover; aspect-ratio: 3 / 4; }

/* ---------- static pages ---------- */

.page { padding: 1rem 0 3rem; }
.page .prose { max-width: var(--read); }

/* ---------- footer ---------- */

.site-footer { background: var(--ink); background-image: linear-gradient(168deg, #1b3a27 0%, #12231a 45%, #0a1912 100%); color: #cbd8cf; margin-top: 3rem; padding: 2.8rem 0 2rem; font-size: .93rem; }
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 2.6rem; } }
.site-footer .logo { color: #fff; margin-bottom: .8rem; }
.site-footer .logo-word i { color: #7d9184; }
.site-footer p { color: #9fb2a5; max-width: 42ch; line-height: 1.6; }
.site-footer h2 { font-family: var(--font-ui); font-size: .82rem; font-weight: 700; color: #7d9184; margin: 0 0 .8rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .5rem; }
.site-footer a { color: #cbd8cf; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-base { margin-top: 2.4rem; padding-top: 1.4rem; border-top: 1px solid #26372d; display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between; color: #7d9184; font-size: .86rem; }

/* ---------- cookie bar ---------- */

.cookiebar {
  position: fixed; z-index: 60; left: 1rem; right: 1rem; bottom: 1rem;
  max-width: 470px; margin-inline: auto;
  background: var(--paper); color: var(--ink-2);
  border: 1px solid var(--line); border-radius: var(--r-m);
  box-shadow: 0 12px 32px -12px rgba(18, 35, 26, .3);
  padding: .85rem 1rem; font-size: .84rem; line-height: 1.5;
  display: none; align-items: center; gap: .9rem;
}
.cookiebar.show { display: flex; }
.cookiebar p { margin: 0; }
.cookiebar a { color: var(--ink-2); }
.cookiebar button {
  flex: none; font: inherit; font-weight: 700; font-size: .86rem; color: #fff;
  background-image: var(--grad-brand); border: 0; border-radius: 999px; padding: .5rem 1.15rem; cursor: pointer;
  position: relative; overflow: hidden; isolation: isolate;
}
.cookiebar button:hover { background-image: var(--grad-brand-hover); }
@media (max-width: 520px) { .cookiebar { flex-direction: column; align-items: stretch; text-align: left; } .cookiebar button { width: 100%; } }

/* ---------- 404 ---------- */

.nf { padding: clamp(3rem, 9vw, 6rem) 0; max-width: 52ch; }
.nf .code {
  font-family: var(--font-display); font-variation-settings: "opsz" 144; font-size: clamp(4rem, 14vw, 7rem);
  line-height: .9; font-weight: 500; color: var(--brand); letter-spacing: -.05em; margin-bottom: .6rem;
  background-image: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
