:root {
  --bg: #ebf0f6;
  --surface: #f7f9fc;
  --paper: #ffffff;
  --paper-soft: #fbfcfe;
  --ink: #111827;
  --muted: #667085;
  --line: #d9e0ea;
  --line-strong: #c7d0dc;
  --accent: #f59b23;
  --accent-dark: #d97d0b;
  --accent-soft: rgba(245, 155, 35, 0.16);
  --navy: #1c2a41;
  --navy-deep: #162236;
  --glow: 0 0 0 1px rgba(255, 255, 255, 0.2), 0 22px 70px rgba(16, 24, 40, 0.08);
  --shadow: 0 22px 80px rgba(16, 24, 40, 0.1);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 0% 0%, rgba(245, 155, 35, 0.12), transparent 22%),
    radial-gradient(circle at 100% 20%, rgba(28, 42, 65, 0.08), transparent 18%),
    linear-gradient(180deg, #eef3f8 0%, var(--bg) 100%);
  line-height: 1.6;
}

a {
  color: inherit;
}

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

button,
input,
summary {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(207, 216, 227, 0.7);
}

.site-header-light {
  backdrop-filter: blur(8px);
  background: rgba(248, 250, 252, 0.8);
  box-shadow: 0 12px 40px rgba(16, 24, 40, 0.05);
}

.nav-shell,
.nav,
.hero-actions,
.meta-row,
.author-row,
.review-head,
.section-heading-row,
.newsletter,
.newsletter-form {
  display: flex;
  align-items: center;
}

.hero-grid,
.split,
.footer-grid,
.card-grid,
.content-grid,
.review-grid,
.category-grid,
.testimonial-grid,
.trust-grid {
  display: grid;
}

.nav-shell {
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 0;
}

.nav-compact {
  min-height: 56px;
}

.brand,
h1,
h2,
h3 {
  font-family: "Avenir Next", "Segoe UI", sans-serif;
}

.brand {
  text-decoration: none;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.brand-icon {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), #ffbd5c);
  color: #0f172a;
  font-size: 0.8rem;
  font-weight: 800;
}

.brand-accent {
  color: var(--accent);
}

.nav {
  gap: 1.35rem;
  flex-wrap: wrap;
}

.nav a,
.site-footer a,
.section-link,
.category-card {
  text-decoration: none;
}

.nav a {
  color: #4b5565;
  font-size: 0.93rem;
  font-weight: 600;
}

.nav a:hover,
.section-link:hover,
.site-footer a:hover,
.toc a:hover,
.card h3 a:hover,
.review-card h3 a:hover {
  color: var(--accent);
}

.nav-main {
  flex: 1;
  justify-content: center;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.nav-toggle {
  display: none;
  width: 2.9rem;
  height: 2.9rem;
  padding: 0;
  border: 1px solid rgba(207, 216, 227, 0.9);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
  cursor: pointer;
}

.nav-toggle span {
  width: 1.1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.search-link {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #667085;
}

.search-link svg {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.hero,
.section {
  padding: 4.75rem 0;
}

.hero-home {
  position: relative;
  padding: 5.3rem 0 4.8rem;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(15, 24, 40, 0.84), rgba(17, 28, 48, 0.66)),
    radial-gradient(circle at 70% 20%, rgba(245, 155, 35, 0.2), transparent 20%),
    linear-gradient(180deg, #314661 0%, #18263b 100%);
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.06);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.04), transparent 50%),
    radial-gradient(circle at 70% 35%, rgba(255, 255, 255, 0.08), transparent 22%),
    radial-gradient(circle at 60% 70%, rgba(255, 255, 255, 0.05), transparent 25%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 18%, transparent 18%, transparent 22%, rgba(255, 255, 255, 0.04) 22%, rgba(255, 255, 255, 0.04) 24%, transparent 24%),
    linear-gradient(90deg, transparent 72%, rgba(255, 255, 255, 0.04) 72%, rgba(255, 255, 255, 0.04) 84%, transparent 84%),
    radial-gradient(circle at 55% 48%, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 100%);
  background-size: auto, auto, auto, auto, auto, 10px 10px;
  opacity: 0.8;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.65;
}

.hero-orb-a {
  right: 12%;
  top: 18%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(245, 155, 35, 0.32), rgba(245, 155, 35, 0));
}

.hero-orb-b {
  right: 28%;
  bottom: 6%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.14), rgba(96, 165, 250, 0));
}

.hero-home-inner {
  position: relative;
  z-index: 1;
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(280px, 360px);
  align-items: center;
  gap: 2rem;
}

.hero-copy {
  color: #f8fafc;
}

.hero-title-line {
  display: block;
}

.hero-eyebrow,
.eyebrow,
.tag,
.panel-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--accent);
}

h1 {
  margin: 0.35rem 0 1rem;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 800;
}

h1 span {
  color: var(--accent);
}

h2 {
  margin: 0.3rem 0 0.85rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

h3 {
  margin: 0.2rem 0 0.55rem;
  font-size: 1.18rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.lead,
.article-intro,
.section-note {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 64ch;
}

.hero-lead {
  color: rgba(248, 250, 252, 0.8);
  max-width: 58ch;
}

.hero-side {
  display: grid;
  gap: 1rem;
}

.hero-stat-card {
  position: relative;
  overflow: hidden;
  padding: 1.15rem 1.15rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  box-shadow: 0 18px 50px rgba(6, 14, 26, 0.22);
  backdrop-filter: blur(12px);
}

.hero-stat-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -45% auto;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(245, 155, 35, 0.24), rgba(245, 155, 35, 0));
}

.hero-stat-card strong,
.hero-stat-card span {
  display: block;
}

.hero-stat-card strong {
  font-size: 2rem;
  color: #fff;
  line-height: 1;
}

.hero-stat-card span {
  color: rgba(248, 250, 252, 0.72);
}

.hero-stat-card small {
  display: block;
  margin-top: 0.35rem;
  color: rgba(248, 250, 252, 0.58);
}

.hero-stat-card-accent {
  background:
    linear-gradient(180deg, rgba(245, 155, 35, 0.22), rgba(255, 255, 255, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
}

.hero-actions {
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.8rem 1.15rem;
  border: 0;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 14px 35px rgba(245, 155, 35, 0.22);
}

.button:hover {
  background: var(--accent-dark);
}

.button-secondary,
.button-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading-row {
  justify-content: space-between;
  gap: 1rem;
}

.section-link {
  color: var(--accent);
  font-weight: 700;
}

.section-surface {
  background: var(--surface);
}

.section-muted {
  background: #eef2f6;
  border-top: 1px solid rgba(199, 208, 220, 0.55);
  border-bottom: 1px solid rgba(199, 208, 220, 0.55);
}

.hero-panel,
.card,
.info-card,
.article-shell,
.toc,
.disclosure,
.review-card,
.category-card,
.testimonial-card,
.faq-list,
.newsletter {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--glow);
}

.hero-panel,
.card,
.info-card,
.article-shell,
.toc,
.disclosure {
  padding: 1.5rem;
}

.check-list,
.article-list {
  padding-left: 1.15rem;
  margin: 0;
}

.trust-strip {
  position: relative;
  margin-top: -1.3rem;
  z-index: 2;
}

.trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  padding: 0;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(217, 224, 234, 0.8);
  border-radius: 22px;
  box-shadow: var(--glow);
  backdrop-filter: blur(10px);
}

.trust-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1.2rem 1.1rem;
}

.trust-item h2 {
  margin: 0;
  font-size: 1rem;
}

.trust-item p {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.trust-icon {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  border: 1px solid rgba(245, 155, 35, 0.35);
  background: rgba(245, 155, 35, 0.08);
  font-size: 0.8rem;
  font-weight: 800;
}

.review-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.review-card {
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover,
.category-card:hover,
.testimonial-card:hover,
.article-section:hover,
.sidebar-card:hover {
  border-color: rgba(245, 155, 35, 0.28);
  box-shadow: 0 24px 70px rgba(16, 24, 40, 0.12);
}

.review-image {
  height: 182px;
  border-bottom: 1px solid var(--line);
  background-color: #dbe4ef;
  background-size: cover;
  background-position: center;
}

.review-image-shapeoko {
  background-image:
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.18), transparent 20%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.08)),
    linear-gradient(145deg, #f5efe7 0%, #c98957 52%, #f3ddca 100%);
}

.review-image-onefinity {
  background-image:
    linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.08)),
    linear-gradient(145deg, #9e643a 0%, #deb78a 35%, #8c5a2f 100%);
}

.review-image-tormach {
  background-image:
    linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.08)),
    linear-gradient(145deg, #d6dbe1 0%, #8a949f 45%, #f6f8fb 100%);
}

.review-image-haas {
  background-image:
    linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.08)),
    linear-gradient(145deg, #525d6c 0%, #bcc7d3 46%, #2b3647 100%);
}

.review-body {
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(251, 252, 254, 0.95));
}

.review-head {
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.review-head strong {
  font-size: 0.96rem;
  white-space: nowrap;
}

.review-rating {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.review-rating span {
  color: var(--muted);
  margin-left: 0.35rem;
  letter-spacing: normal;
}

.review-card p,
.category-card p,
.testimonial-card p {
  color: var(--muted);
  font-size: 0.93rem;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.85rem 0;
}

.chip {
  display: inline-flex;
  padding: 0.2rem 0.48rem;
  border-radius: 999px;
  background: #f3f6fa;
  border: 1px solid var(--line);
  color: #475467;
  font-size: 0.78rem;
  font-weight: 700;
}

.spec-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.spec-row span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.spec-row strong {
  font-size: 0.86rem;
}

.category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.category-card {
  display: block;
  padding: 1.35rem;
  color: inherit;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.category-card span {
  display: inline-flex;
  margin-top: 0.4rem;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 700;
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-card {
  padding: 1.2rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-meta {
  padding-top: 0.95rem;
  border-top: 1px solid var(--line);
}

.testimonial-meta strong,
.testimonial-meta span {
  display: block;
}

.testimonial-meta span {
  color: var(--muted);
  font-size: 0.84rem;
}

.faq-wrap {
  max-width: 900px;
}

.faq-list {
  overflow: hidden;
}

.faq-item + .faq-item {
  border-top: 1px solid var(--line);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.2rem;
  font-weight: 700;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  color: var(--muted);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 1.2rem 1rem;
  color: var(--muted);
}

.site-footer {
  padding: 3rem 0;
  border-top: 1px solid rgba(95, 102, 95, 0.15);
}

.site-footer-dark {
  color: rgba(248, 250, 252, 0.84);
  background: linear-gradient(180deg, #1d2a40, #162235);
  border-top: 0;
}

.newsletter {
  padding: 1.4rem 1.5rem;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.newsletter-title {
  margin: 0 0 0.3rem;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

.newsletter p {
  margin: 0;
  color: rgba(248, 250, 252, 0.72);
}

.newsletter,
.newsletter-form {
  justify-content: space-between;
  gap: 1rem;
}

.newsletter-form {
  min-width: min(100%, 420px);
}

.newsletter-form input {
  flex: 1;
  min-height: 2.85rem;
  padding: 0 0.95rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 23, 42, 0.22);
  color: #fff;
}

.footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}

.footer-grid-rich {
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
}

.footer-title {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
}

.site-footer a {
  display: block;
  margin: 0.45rem 0;
  color: rgba(248, 250, 252, 0.72);
}

.brand-footer {
  color: #fff;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(248, 250, 252, 0.55);
  font-size: 0.84rem;
}

.page-hero {
  padding: 4.5rem 0 2rem;
}

.meta-row,
.author-row {
  gap: 0.85rem;
  color: var(--muted);
  flex-wrap: wrap;
}

.content-grid {
  grid-template-columns: minmax(0, 2fr) minmax(280px, 0.9fr);
  gap: 1.5rem;
  align-items: start;
  padding-bottom: 4rem;
}

.article-shell h2 {
  margin-top: 2.25rem;
}

.article-shell h3 {
  margin-top: 1.5rem;
}

.article-shell p,
.article-shell li {
  max-width: 70ch;
}

.toc {
  position: sticky;
  top: 5.8rem;
}

.toc h2 {
  font-size: 1.1rem;
  margin-top: 0;
}

.toc a {
  display: block;
  text-decoration: none;
  color: var(--muted);
  margin: 0.5rem 0;
}

.rating-box {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(245, 155, 35, 0.1);
  color: #9b5b00;
  font-weight: 700;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.kpi {
  padding: 1rem;
  border-radius: 18px;
  background: #f7f9fc;
  border: 1px solid var(--line);
}

.kpi strong {
  display: block;
  font-size: 1.2rem;
}

.table-wrap {
  overflow-x: auto;
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  background: #f7f9fc;
}

.split {
  grid-template-columns: 1.2fr 0.9fr;
  gap: 2rem;
}

.info-stack {
  display: grid;
  gap: 1rem;
}

.article-page {
  padding: 2rem 0 0;
}

.article-top {
  padding-bottom: 3.5rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 280px;
  gap: 1.25rem;
  align-items: start;
  max-width: 1060px;
}

.article-main {
  min-width: 0;
}

.article-intro-card,
.article-section,
.sidebar-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--glow);
}

.article-intro-card,
.article-section,
.sidebar-card {
  padding: 1.25rem;
}

.article-intro-card {
  margin-bottom: 1rem;
  background:
    radial-gradient(circle at top right, rgba(245, 155, 35, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff, #fbfcfe);
}

.article-title {
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1;
  margin-bottom: 0.65rem;
}

.article-deck {
  color: var(--muted);
  max-width: 64ch;
  margin: 0 0 1rem;
}

.article-meta,
.cta-row,
.inline-rating {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.article-meta {
  color: var(--muted);
  margin-bottom: 1rem;
}

.inline-rating {
  justify-content: space-between;
  padding: 0.9rem 1rem;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 1rem;
}

.cta-row {
  margin-top: 1rem;
}

.button-outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--line-strong);
  box-shadow: none;
}

.button-outline:hover {
  background: #f8fafc;
}

.article-section + .article-section {
  margin-top: 1rem;
}

.section-minihead {
  margin-bottom: 1rem;
}

.section-minihead h2 {
  font-size: 1.55rem;
  margin: 0.15rem 0 0;
}

.spec-table {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.spec-table-head,
.spec-table-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 1rem;
  padding: 0.9rem 1rem;
}

.spec-table-head {
  background: var(--navy);
  color: #fff;
  font-size: 0.83rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.spec-table-row {
  font-size: 0.95rem;
  border-top: 1px solid var(--line);
}

.score-list {
  display: grid;
  gap: 0.9rem;
}

.score-row {
  display: grid;
  grid-template-columns: 1.6fr minmax(140px, 1fr) 52px;
  gap: 1rem;
  align-items: center;
}

.score-label strong,
.score-label span {
  display: block;
}

.score-label span {
  color: var(--muted);
  font-size: 0.88rem;
}

.score-bar {
  height: 10px;
  border-radius: 999px;
  background: #e7edf4;
  overflow: hidden;
}

.score-bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #ffc163);
  border-radius: 999px;
}

.score-value {
  text-align: right;
  color: var(--navy);
}

.callout-grid,
.pros-cons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.callout,
.pros-card,
.cons-card {
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.callout-good,
.pros-card {
  background: #f4faf7;
}

.callout-warn,
.cons-card {
  background: #fff8f2;
}

.article-sidebar {
  display: grid;
  gap: 1rem;
}

.sticky-card {
  position: sticky;
  top: 5.3rem;
}

.sticky-card + .sticky-card {
  top: 18rem;
}

.sidebar-card h2 {
  margin: 0 0 0.8rem;
  font-size: 1.05rem;
}

.sidebar-card a {
  display: block;
  margin: 0.45rem 0;
  text-decoration: none;
  color: var(--muted);
}

.sidebar-stats {
  display: grid;
  gap: 0.8rem;
}

.sidebar-stats span,
.sidebar-stats strong {
  display: block;
}

.sidebar-stats span {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.text-link {
  color: var(--accent);
  font-weight: 700;
}

.faq-list-article {
  box-shadow: none;
}

@media (max-width: 1120px) {
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-grid,
  .footer-grid-rich {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-home-inner {
    grid-template-columns: 1fr;
  }

  .hero-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-layout {
    grid-template-columns: minmax(0, 1fr) 260px;
  }
}

@media (max-width: 960px) {
  .content-grid,
  .split,
  .footer-grid,
  .trust-grid,
  .hero-grid,
  .kpi-grid {
    grid-template-columns: 1fr;
  }

  .nav-shell,
  .section-heading-row,
  .newsletter,
  .newsletter-form {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-shell {
    align-items: stretch;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-panel {
    width: 100%;
    display: none;
    flex: 0 0 100%;
    padding: 0.9rem;
    border: 1px solid rgba(207, 216, 227, 0.9);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 45px rgba(16, 24, 40, 0.08);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }

  .nav-open .nav-panel {
    display: flex;
  }

  .nav-main {
    width: 100%;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }

  .nav-main a {
    width: 100%;
    padding: 0.7rem 0.2rem;
    border-bottom: 1px solid rgba(217, 224, 234, 0.7);
  }

  .nav-main a:last-child {
    border-bottom: 0;
  }

  .search-link {
    width: 100%;
    min-height: 2.75rem;
    justify-content: flex-start;
    padding: 0 0.2rem;
  }

  .toc {
    position: static;
  }

  .hero,
  .section {
    padding: 3.5rem 0;
  }

  .newsletter-form,
  .newsletter-form input,
  .newsletter-form .button {
    width: 100%;
  }

  .hero-home {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .trust-strip {
    margin-top: 0;
  }

  .trust-grid,
  .hero-side {
    grid-template-columns: 1fr;
  }

  .article-layout,
  .callout-grid,
  .pros-cons,
  .score-row,
  .spec-table-head,
  .spec-table-row {
    grid-template-columns: 1fr;
  }

  .sticky-card,
  .sticky-card + .sticky-card {
    position: static;
  }
}

@media (max-width: 640px) {
  h1 {
    line-height: 1.02;
  }

  .container {
    width: min(100% - 1.25rem, 1120px);
  }

  .nav {
    gap: 0.8rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .button-ghost {
    width: 100%;
  }

  .review-grid,
  .category-grid,
  .testimonial-grid,
  .footer-grid-rich {
    grid-template-columns: 1fr;
  }
}
