:root {
  --ink: #111329;
  --ink-soft: #292d47;
  --ultra: #3346ff;
  --ultra-dark: #2331c7;
  --ultra-pale: #e9ebff;
  --lime: #caff4a;
  --lime-soft: #edffc0;
  --coral: #ff705c;
  --coral-soft: #ffe5df;
  --paper: #f8f8f4;
  --paper-warm: #f0f1e9;
  --cream: #fff;
  --line: #d6d8e2;
  --muted: #5d6174;
  --shadow: 7px 7px 0 var(--ink);
  --radius: 1.5rem;
  --shell: 76rem;
  /* Aliases retained for generated markup and future content themes. */
  --green-950: var(--ink);
  --green-900: var(--ultra);
  --green-800: var(--ultra-dark);
  --green-600: var(--ultra);
  --mint: var(--lime);
  --mint-light: var(--lime-soft);
  --orange: var(--coral);
  --orange-dark: #c73e2d;
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Avenir Next", "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: .09em; text-underline-offset: .22em; }
button, input { font: inherit; }
button { color: inherit; }
p, h1, h2, h3 { overflow-wrap: anywhere; }

:focus-visible {
  outline: .2rem solid var(--coral);
  outline-offset: .22rem;
  box-shadow: 0 0 0 .15rem white;
}

[hidden] { display: none !important; }

.shell {
  width: min(calc(100% - 3rem), var(--shell));
  margin-inline: auto;
}

.shell.narrow { max-width: 51rem; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: .75rem;
  left: .75rem;
  padding: .7rem 1rem;
  border: 2px solid white;
  border-radius: .6rem;
  color: white;
  background: var(--ink);
  font-weight: 800;
  transform: translateY(-170%);
}

.skip-link:focus { transform: translateY(0); }

.disclosure-strip {
  min-height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .35rem 1rem;
  color: white;
  background: var(--ink);
  font-size: .75rem;
  font-weight: 650;
  letter-spacing: .03em;
  text-align: center;
}

.disclosure-strip span {
  display: inline-block;
  margin-right: .55rem;
  padding: .08rem .5rem;
  border-radius: 99rem;
  color: var(--ink);
  background: var(--lime);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgb(248 248 244 / 92%);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .72rem;
  color: var(--ink);
  text-decoration: none;
}

.brand img { flex: 0 0 auto; width: 2.75rem; height: 2.75rem; transition: transform .2s ease; }
.brand:hover img { transform: rotate(-4deg) scale(1.04); }
.brand span { display: grid; line-height: 1.1; }
.brand strong { font-size: 1.12rem; font-weight: 900; letter-spacing: -.04em; }
.brand small { margin-top: .32rem; color: var(--muted); font-size: .75rem; font-weight: 700; letter-spacing: .04em; }

.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(.7rem, 1.8vw, 1.8rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  display: block;
  padding: .45rem .05rem;
  font-size: .78rem;
  font-weight: 800;
  text-decoration: none;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: .12rem;
  left: 0;
  height: .2rem;
  border-radius: 99rem;
  background: var(--ultra);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}

.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); }

.menu-toggle {
  display: none;
  min-height: 2.75rem;
  padding: .5rem .9rem;
  border: 1.5px solid var(--ink);
  border-radius: .7rem;
  background: var(--lime);
  font-size: .75rem;
  font-weight: 900;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 8rem) 0 1.5rem;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.hero::before {
  content: "";
  position: absolute;
  width: 20rem;
  height: 20rem;
  top: -14rem;
  left: 43%;
  border-radius: 50%;
  background: var(--coral);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(24rem, .82fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.eyebrow, .kicker {
  display: block;
  margin: 0 0 .8rem;
  color: var(--ultra-dark);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero-copy > .eyebrow { display: flex; align-items: center; gap: .55rem; }
.hero-copy > .eyebrow span { width: .6rem; height: .6rem; border: 1px solid var(--ink); border-radius: 50%; background: var(--lime); }

.hero h1, .page-hero h1, .article-header h1, .product-hero h1, .not-found h1 {
  margin: 0;
  font-family: inherit;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.065em;
}

.hero h1 { max-width: 13ch; font-size: clamp(2.9rem, 5.7vw, 5.5rem); }
.hero h1 em {
  position: relative;
  z-index: 0;
  color: inherit;
  font-style: normal;
  text-decoration: none;
  white-space: nowrap;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -.08em;
  bottom: .03em;
  left: -.05em;
  height: .25em;
  background: var(--lime);
  transform: rotate(-1.5deg);
}

.hero-lead {
  max-width: 38rem;
  margin: 1.65rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(.98rem, 1.35vw, 1.12rem);
  font-weight: 550;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2rem;
}

.button {
  min-height: 3.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: .72rem 1.15rem;
  border: 1.5px solid var(--ink);
  border-radius: .78rem;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: -.01em;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease;
}

.button:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--ink); }
.button > span { transition: transform .16s ease; }
.button:hover > span { transform: translateX(.22rem); }
.button-primary { color: white; background: var(--ultra); }
.button-primary:hover { background: var(--ultra-dark); }
.button-secondary { color: var(--ink); background: var(--lime); }
.button-ghost { color: var(--ink); background: white; }
.button-ghost:hover { background: var(--lime-soft); }

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem 1.2rem;
  margin: 1.35rem 0 0;
  padding: 0;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 750;
  list-style: none;
}

.hero-note li::before { content: "✓"; margin-right: .35rem; color: var(--ultra); font-weight: 900; }

.hero-visual {
  position: relative;
  overflow: hidden;
  padding: .85rem;
  border: 2px solid var(--ink);
  border-radius: 1.55rem;
  background: white;
  box-shadow: 9px 9px 0 var(--ink);
}

.hero-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .45rem .35rem 1rem;
  border-bottom: 1px solid var(--line);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.hero-panel-head > span { display: flex; align-items: center; gap: .45rem; }
.hero-panel-head i { width: .62rem; height: .62rem; display: block; border: 1px solid var(--ink); border-radius: 50%; background: var(--lime); }
.hero-panel-head small { padding: .18rem .45rem; border-radius: 99rem; color: white; background: var(--ultra); font-size: .75rem; letter-spacing: .08em; }
.hero-panel-label { margin: 1.15rem .3rem .75rem; font-size: .75rem; font-weight: 900; }
.tool-choice-list { display: grid; gap: .55rem; }

.tool-choice {
  min-height: 5.25rem;
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr) 2.4rem;
  gap: .65rem;
  align-items: center;
  padding: .75rem;
  border: 1.5px solid var(--ink);
  border-radius: .85rem;
  background: var(--paper);
  text-decoration: none;
  transition: transform .16s ease, background-color .16s ease, box-shadow .16s ease;
}

.tool-choice:nth-child(2) { background: var(--lime-soft); }
.tool-choice:nth-child(3) { background: var(--coral-soft); }
.tool-choice:hover { z-index: 1; background: var(--lime); transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--ink); }
.tool-choice-index { align-self: start; padding-top: .2rem; color: var(--ultra-dark); font-size: .75rem; font-weight: 900; }
.tool-choice strong { display: block; font-size: .92rem; font-weight: 900; line-height: 1.35; letter-spacing: -.025em; }
.tool-choice small { display: block; overflow: hidden; margin-top: .25rem; color: var(--muted); font-size: .75rem; font-weight: 650; line-height: 1.4; text-overflow: ellipsis; white-space: nowrap; }
.tool-choice-arrow { width: 2.25rem; height: 2.25rem; display: grid; place-items: center; border: 1.5px solid var(--ink); border-radius: .55rem; color: white; background: var(--ultra); font-size: 1rem; font-weight: 900; transition: transform .16s ease; }
.tool-choice:hover .tool-choice-arrow { transform: rotate(5deg) scale(1.05); }
.hero-panel-foot { display: flex; justify-content: space-between; gap: 1rem; margin: .85rem .3rem .1rem; color: var(--muted); font-size: .75rem; font-weight: 900; letter-spacing: .12em; }

.orbit, .visual-card { display: none; }

.trust-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
  margin-top: clamp(4rem, 8vw, 7rem);
}

.trust-row div {
  min-height: 7.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 1.25rem 1.35rem;
  border: 1.5px solid var(--ink);
  border-radius: 1rem;
  background: white;
}

.trust-row div:nth-child(2) { background: var(--lime); }
.trust-row div:nth-child(3) { background: var(--coral-soft); }
.trust-row span { margin-bottom: .35rem; color: var(--ultra-dark); font-size: .75rem; font-weight: 900; letter-spacing: .1em; }
.trust-row strong { color: var(--ink); font-size: 1rem; font-weight: 900; letter-spacing: -.025em; }
.trust-row small { margin-top: .2rem; color: var(--muted); font-size: .75rem; font-weight: 650; }

.section { padding: clamp(4.8rem, 8vw, 8rem) 0; }
.section-warm { background: var(--paper-warm); }
.section-ink { color: white; background: var(--ink); }

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.section-heading h2, .editorial-grid h2 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3.3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.055em;
}

.section-heading > p { max-width: 34rem; margin: 0; color: var(--muted); font-size: .88rem; }

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.category-card {
  position: relative;
  min-height: 18rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.75rem;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  color: var(--ink);
  background: white;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}

.category-card:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow); }
.category-card::after { content: "↗"; position: absolute; right: 1.35rem; bottom: .85rem; color: currentColor; font-size: 4rem; font-weight: 300; line-height: 1; opacity: .2; transition: transform .18s ease, opacity .18s ease; }
.category-card:hover::after { opacity: .38; transform: translate(.25rem, -.25rem); }
.category-design { background: var(--coral); }
.category-productivity { background: var(--lime); }
.category-security { color: white; background: var(--ultra); }
.category-card-top { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; color: currentColor; font-size: .75rem; font-weight: 900; letter-spacing: .08em; }
.category-number { font-size: .75rem; letter-spacing: .12em; }
.category-card h3 { max-width: 10ch; margin: auto 0 .6rem; font-size: clamp(1.5rem, 2.3vw, 2.05rem); font-weight: 900; line-height: 1.12; letter-spacing: -.05em; }
.category-card p { max-width: 23rem; margin: 0 0 1.05rem; color: currentColor; font-size: .75rem; font-weight: 700; }
.category-card .text-link { position: relative; z-index: 1; color: currentColor; text-decoration-color: currentColor; }
.category-card .text-link::after { color: currentColor; }

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

.article-card, .product-card {
  position: relative;
  padding: 1.65rem;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  background: white;
  box-shadow: none;
  transition: transform .18s ease, box-shadow .18s ease;
}

.article-card:hover, .product-card:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--ink); }
.article-card { min-height: 20rem; display: flex; flex-direction: column; }
.article-card::before { content: ""; position: absolute; top: -.05rem; right: 2rem; left: 2rem; height: .38rem; border-radius: 0 0 .35rem .35rem; background: var(--ultra); }
.article-card:nth-child(2n)::before { background: var(--lime); }
.article-card:nth-child(3n)::before { background: var(--coral); }
.article-card h3, .product-card h3 { margin: 1.1rem 0 .8rem; font-size: 1.25rem; font-weight: 900; line-height: 1.4; letter-spacing: -.035em; }
.article-card h3 a, .product-card h3 a { text-decoration: none; }
.article-card h3 a:hover, .product-card h3 a:hover { color: var(--ultra-dark); }
.article-card > p, .product-card > p { margin: 0 0 1rem; color: var(--muted); font-size: .82rem; }
.article-card > .text-link { margin-top: auto; }

.article-meta, .product-card-top { display: flex; align-items: center; justify-content: space-between; gap: .7rem; }
.article-meta time { color: var(--muted); font-size: .75rem; font-weight: 650; }

.review-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.review-card { overflow: hidden; display: flex; flex-direction: column; border: 1.5px solid var(--ink); border-radius: var(--radius); background: white; transition: transform .18s ease, box-shadow .18s ease; }
.review-card:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--ink); }
.review-cover { display: block; aspect-ratio: 16 / 10; overflow: hidden; border-bottom: 1.5px solid var(--ink); background: var(--ultra-pale); }
.review-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.review-card:hover .review-cover img { transform: scale(1.025); }
.review-card-body { flex: 1; display: flex; flex-direction: column; padding: 1.35rem; }
.review-card h3 { margin: 1rem 0 .7rem; font-size: 1.12rem; font-weight: 900; line-height: 1.42; letter-spacing: -.03em; }
.review-card h3 a { text-decoration: none; }
.review-card h3 a:hover { color: var(--ultra-dark); }
.review-card-body > p { display: -webkit-box; overflow: hidden; margin: 0 0 1rem; color: var(--muted); font-size: .78rem; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.review-card-body > .text-link { margin-top: auto; }

.pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 1.7rem;
  padding: .2rem .62rem;
  border: 1px solid var(--ink);
  border-radius: 99rem;
  color: var(--ink);
  background: var(--lime-soft);
  font-size: .75rem;
  font-weight: 900;
  line-height: 1.3;
  text-decoration: none;
}

.ad-state { color: var(--muted); font-size: .75rem; font-weight: 800; }
.text-link { color: var(--ultra-dark); font-size: .75rem; font-weight: 900; text-decoration-color: var(--ultra); }
.text-link::after { content: " →"; color: var(--coral); }

.compact-definition { margin: .8rem 0 1rem; }
.compact-definition div { padding: .8rem 0; border-top: 1px solid var(--line); }
.compact-definition dt { color: var(--ultra-dark); font-size: .75rem; font-weight: 900; }
.compact-definition dd { margin: .25rem 0 0; font-size: .75rem; line-height: 1.65; }
.product-card { display: flex; flex-direction: column; border-top-width: .42rem; border-top-color: var(--ultra); }
.product-card:nth-child(3n+2) { border-top-color: var(--coral); }
.product-card:nth-child(3n) { border-top-color: #9bc819; }
.product-card .caution { padding: .7rem .78rem; border: 1px solid #f4b7aa; border-radius: .65rem; color: #6e2b22; background: var(--coral-soft); font-size: .75rem; }
.card-actions { display: grid; gap: .85rem; margin-top: auto; }
.product-card .button { width: 100%; }
.section-cta { margin: 2.25rem 0 0; text-align: center; }

.editorial-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.section-ink .kicker { color: var(--lime); }
.editorial-lead { max-width: 31rem; margin: 1.5rem 0 0; color: #b8bdd3; font-size: .86rem; }
.principles { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; margin: 0; padding: 0; list-style: none; }
.principles li { min-height: 12rem; display: grid; grid-template-columns: 2.5rem 1fr; gap: .8rem; padding: 1.3rem; border: 1px solid rgb(255 255 255 / 35%); border-radius: 1rem; background: #191d39; }
.principles li:first-child { grid-column: 1 / -1; min-height: auto; background: var(--ultra); }
.principles li > span { color: var(--lime); font-size: .75rem; font-weight: 900; letter-spacing: .1em; }
.principles h3 { margin: 0 0 .4rem; font-size: 1.08rem; font-weight: 900; letter-spacing: -.025em; }
.principles p { margin: 0; color: #c7cadb; font-size: .78rem; }
.principles li:first-child p { color: #eef0ff; }

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
  border-bottom: 1px solid var(--line);
  background: var(--ultra-pale);
}

.page-hero::after {
  content: "";
  position: absolute;
  width: 13rem;
  height: 13rem;
  right: max(2rem, calc((100% - var(--shell)) / 2));
  bottom: -7.5rem;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--lime);
}

.page-hero .shell { position: relative; z-index: 1; }
.page-hero h1 { max-width: 13ch; font-size: clamp(2.7rem, 6vw, 5.3rem); }
.page-hero .kicker { margin-top: 2rem; }
.page-hero p { max-width: 44rem; margin: 1.35rem 0 0; color: var(--ink-soft); }
.category-page-hero { background: var(--lime-soft); }
.category-page-hero::after { background: var(--coral); }

.breadcrumbs { padding-top: 1.25rem; }
.page-hero .breadcrumbs, .article-shell > .breadcrumbs, .product-shell > .breadcrumbs { padding-top: 0; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .35rem .55rem; margin: 0; padding: 0; list-style: none; color: var(--muted); font-size: .75rem; font-weight: 650; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: .55rem; color: #9799a7; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }

.filter-panel {
  display: grid;
  grid-template-columns: auto minmax(15rem, 32rem) 1fr;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1rem 1.15rem;
  border: 1.5px solid var(--ink);
  border-radius: 1rem;
  background: var(--lime-soft);
}

.filter-panel label { font-size: .75rem; font-weight: 900; }
.search-box { position: relative; }
.search-box svg { position: absolute; top: 50%; left: .9rem; width: 1rem; height: 1rem; fill: none; stroke: var(--ink); stroke-width: 2; transform: translateY(-50%); }
.search-box input { width: 100%; min-height: 2.9rem; padding: .55rem .8rem .55rem 2.5rem; border: 1.5px solid var(--ink); border-radius: .65rem; color: var(--ink); background: white; }
.filter-status { margin: 0; color: var(--ink-soft); font-size: .75rem; font-weight: 700; text-align: right; }
.empty-state { padding: 2rem; border: 1.5px dashed var(--ink); border-radius: 1rem; text-align: center; }

.table-scroll { overflow-x: auto; border: 1.5px solid var(--ink); border-radius: var(--radius); background: white; box-shadow: 5px 5px 0 var(--ink); }
.comparison-table { width: 100%; min-width: 48rem; border-collapse: collapse; font-size: .76rem; }
.comparison-table caption { padding: 1.05rem; font-size: .83rem; font-weight: 900; text-align: left; }
.comparison-table th, .comparison-table td { padding: .9rem 1rem; border-top: 1px solid var(--line); text-align: left; }
.comparison-table thead th { color: var(--ink); background: var(--lime); font-size: .75rem; font-weight: 900; letter-spacing: .03em; }
.comparison-table tbody th { font-size: .82rem; font-weight: 900; }
.comparison-table tbody tr:nth-child(even) { background: #f6f6fa; }

.article-shell, .product-shell { padding-top: 1.5rem; padding-bottom: clamp(4rem, 8vw, 7rem); }
.article-layout { max-width: 56rem; margin: 2.5rem auto 0; }
.article-header { position: relative; overflow: hidden; padding: clamp(2rem, 5vw, 4.5rem); border: 2px solid var(--ink); border-radius: 1.8rem; color: white; background: var(--ultra); box-shadow: 8px 8px 0 var(--ink); }
.article-header::after { content: "+"; position: absolute; right: 1.5rem; bottom: -2.2rem; color: var(--lime); font-size: 10rem; font-weight: 200; line-height: 1; }
.article-header > * { position: relative; z-index: 1; }
.article-header .pill { background: var(--lime); }
.article-header .eyebrow { margin-top: 1.5rem; color: var(--lime); }
.article-header h1 { max-width: 15ch; font-size: clamp(2.25rem, 5vw, 4.25rem); }
.article-lead { max-width: 42rem; margin: 1.5rem 0 0; color: #eef0ff; font-size: 1rem; }
.date-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; color: #d5d8ff; font-size: .75rem; font-weight: 700; }

.article-body { max-width: 44rem; margin: 4rem auto 0; }
.answer-summary { margin-bottom: 1.25rem; padding: 1.25rem 1.35rem; border: 1.5px solid var(--ink); border-radius: .9rem; background: var(--lime-soft); }
.answer-summary strong { font-size: .9rem; font-weight: 900; }
.answer-summary ul { display: grid; gap: .55rem; margin: .8rem 0 0; padding-left: 1.2rem; color: var(--ink-soft); font-size: .82rem; }
.article-notice { margin-bottom: 3rem; padding: 1.1rem 1.2rem; border: 1.5px solid var(--ink); border-left: .5rem solid var(--coral); border-radius: .7rem; color: var(--ink); background: var(--coral-soft); }
.article-notice strong { font-size: .75rem; font-weight: 900; }
.article-notice p { margin: .3rem 0 0; font-size: .75rem; }
.article-section { position: relative; padding: 0 0 4rem 3.5rem; }
.article-section::before { content: ""; position: absolute; top: 2.1rem; bottom: .7rem; left: .88rem; width: 2px; background: var(--line); }
.section-index { position: absolute; top: .2rem; left: 0; width: 1.8rem; height: 1.8rem; display: grid; place-items: center; border: 1.5px solid var(--ink); border-radius: .45rem; color: white; background: var(--ultra); font-size: .75rem; font-weight: 900; }
.article-section h2 { margin: 0 0 1.35rem; font-size: clamp(1.5rem, 3vw, 2.15rem); font-weight: 900; line-height: 1.32; letter-spacing: -.04em; }
.article-section p { margin: 0 0 1.25rem; color: var(--ink-soft); }

.check-list { display: grid; gap: .65rem; margin: 1.5rem 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: .75rem .9rem .75rem 2.75rem; border: 1.5px solid var(--ink); border-radius: .75rem; background: white; font-size: .82rem; }
.check-list li::before { content: "✓"; position: absolute; top: .7rem; left: .85rem; width: 1.25rem; height: 1.25rem; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: .35rem; color: var(--ink); background: var(--lime); font-size: .75rem; font-weight: 900; }
.check-list.large li { padding-block: 1rem; padding-left: 3rem; }
.check-list.large li::before { top: 1rem; }

.related-section, .related-guide-section, .faq-section, .source-section { margin-top: clamp(3.5rem, 7vw, 6rem); }
.related-section .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.related-guide-section, .faq-section, .source-section { max-width: 56rem; margin-inline: auto; }
.faq-section h2, .source-section h2, .caution-section h2 { margin: 0 0 1.3rem; font-size: 1.65rem; font-weight: 900; letter-spacing: -.035em; }
.faq-list { display: grid; gap: .7rem; }
.faq-list details { border: 1.5px solid var(--ink); border-radius: .8rem; background: white; }
.faq-list summary { cursor: pointer; padding: 1.05rem 1.2rem; font-size: .86rem; font-weight: 900; }
.faq-list details[open] { box-shadow: 4px 4px 0 var(--ink); }
.faq-list details p { margin: 0; padding: 0 1.2rem 1.2rem; color: var(--muted); font-size: .82rem; }
.source-section { max-width: 56rem; margin-inline: auto; padding: 1.5rem; border: 1.5px solid var(--ink); border-radius: 1rem; background: var(--lime-soft); }
.source-section p, .source-section li { color: var(--ink-soft); font-size: .78rem; }

.review-page-hero { background: var(--coral-soft); }
.review-page-hero::after { background: var(--ultra); }
.archive-note { max-width: 56rem; margin: 0 auto 2.5rem; padding: 1.1rem 1.25rem; border: 1.5px solid var(--ink); border-left: .5rem solid var(--coral); border-radius: .8rem; background: var(--coral-soft); }
.archive-note strong { font-size: .8rem; font-weight: 900; }
.archive-note p { margin: .35rem 0 0; color: var(--ink-soft); font-size: .78rem; }
.legacy-shell { padding-top: 1.5rem; padding-bottom: clamp(4rem, 8vw, 7rem); }
.legacy-article { margin-top: 2.5rem; }
.legacy-header { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(19rem, .95fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; padding: clamp(1.5rem, 4vw, 3.5rem); border: 2px solid var(--ink); border-radius: 1.8rem; color: white; background: var(--ink); box-shadow: 8px 8px 0 var(--ultra); }
.legacy-header .eyebrow { margin-top: 1.4rem; color: var(--lime); }
.legacy-header h1 { margin: 0; font-size: clamp(2.2rem, 4.6vw, 4rem); font-weight: 900; line-height: 1.12; letter-spacing: -.055em; }
.legacy-header .pill { background: var(--lime); }
.legacy-description { margin: 1.35rem 0 0; color: #d7daeb; font-size: .88rem; }
.legacy-cover { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border: 1.5px solid white; border-radius: 1.1rem; background: var(--paper-warm); }
.legacy-reading { max-width: 50rem; margin: clamp(3rem, 7vw, 6rem) auto 0; }
.legacy-reading .archive-note { margin-bottom: 3.5rem; }
.legacy-body { color: var(--ink-soft); font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif; font-size: 1.02rem; line-height: 2; }
.legacy-body h2, .legacy-body h3, .legacy-body h4 { color: var(--ink); font-family: Inter, "Avenir Next", "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", system-ui, sans-serif; font-weight: 900; line-height: 1.35; letter-spacing: -.035em; }
.legacy-body h2 { margin: 4rem 0 1.5rem; padding: .75rem 0 .75rem 1rem; border-left: .5rem solid var(--ultra); font-size: clamp(1.55rem, 3vw, 2.2rem); }
.legacy-body h3 { margin: 3rem 0 1.1rem; font-size: 1.4rem; }
.legacy-body h4 { margin: 2.3rem 0 1rem; font-size: 1.1rem; }
.legacy-body p { margin: 0 0 1.45rem; }
.legacy-body ul, .legacy-body ol { margin: 1.5rem 0; padding-left: 1.5rem; }
.legacy-body li + li { margin-top: .55rem; }
.legacy-body figure { margin: 2.5rem 0; }
.legacy-body figure figure { margin: 1rem 0; }
.legacy-body img { width: auto; max-height: 46rem; margin-inline: auto; border: 1px solid var(--line); border-radius: .8rem; background: white; }
.legacy-body figcaption { margin-top: .55rem; color: var(--muted); font-size: .75rem; text-align: center; }
.legacy-body blockquote { margin: 2rem 0; padding: 1rem 1.2rem; border-left: .4rem solid var(--coral); background: var(--coral-soft); }
.legacy-body blockquote > :first-child { margin-top: 0; }
.legacy-body blockquote > :last-child { margin-bottom: 0; }
.legacy-body a { color: var(--ultra-dark); overflow-wrap: anywhere; }
.legacy-body a[rel~="sponsored"] { display: inline-block; margin: .25rem 0; padding: .45rem .65rem; border: 1px solid var(--ink); border-radius: .55rem; color: var(--ink); background: var(--lime-soft); font-family: Inter, "Avenir Next", "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", system-ui, sans-serif; font-size: .78rem; font-weight: 800; line-height: 1.55; text-decoration-color: var(--ultra); }
.legacy-body a[rel~="sponsored"]::after { content: " PR"; margin-left: .35rem; color: var(--ultra-dark); font-size: .65rem; font-weight: 900; }
.legacy-body table { width: 100%; display: block; overflow-x: auto; margin: 2rem 0; border: 1px solid var(--ink); border-collapse: collapse; background: white; font-family: Inter, "Avenir Next", "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", system-ui, sans-serif; font-size: .78rem; }
.legacy-body th, .legacy-body td { min-width: 8rem; padding: .7rem .8rem; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.legacy-body th { color: var(--ink); background: var(--lime-soft); font-weight: 900; }
.legacy-body pre { overflow-x: auto; padding: 1rem; border-radius: .7rem; color: white; background: var(--ink); font-size: .8rem; line-height: 1.6; }

.product-hero { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; margin-top: 2.5rem; padding: clamp(2rem, 5vw, 4.5rem); border: 2px solid var(--ink); border-radius: 1.8rem; background: var(--lime); box-shadow: 8px 8px 0 var(--ink); }
.product-hero .eyebrow { margin-top: 1.5rem; color: var(--ultra-dark); }
.product-hero h1 { max-width: 12ch; font-size: clamp(2.8rem, 6vw, 5rem); }
.product-summary { max-width: 38rem; margin: 1.1rem 0 0; color: var(--ink-soft); }
.product-meta { display: flex; flex-wrap: wrap; gap: .75rem 2rem; margin: 1.5rem 0; }
.product-meta div { display: grid; }
.product-meta dt { color: var(--ink-soft); font-size: .75rem; font-weight: 900; }
.product-meta dd { margin: .1rem 0 0; font-size: .76rem; font-weight: 750; }
.primary-link { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem; }
.link-label { color: var(--ink-soft); font-size: .75rem; font-weight: 700; }
.fit-card { padding: 1.8rem; border: 1.5px solid var(--ink); border-radius: 1.15rem; background: white; box-shadow: 5px 5px 0 var(--ink); }
.fit-card span { display: block; color: var(--ultra-dark); font-size: .75rem; font-weight: 900; }
.fit-card strong { display: block; margin: .8rem 0; font-size: 1.2rem; font-weight: 900; line-height: 1.5; letter-spacing: -.025em; }
.fit-card p { margin: 0; color: var(--muted); font-size: .75rem; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 22rem; gap: clamp(2rem, 6vw, 6rem); max-width: 64rem; margin: 5.5rem auto 0; }
.product-detail-grid h2 { margin: 0; font-size: 1.8rem; font-weight: 900; letter-spacing: -.035em; }
.status-card { padding: 1.5rem; border: 1.5px solid var(--ink); border-radius: var(--radius); background: var(--ultra-pale); }
.status-card h2 { font-size: 1.05rem; }
.status-card dl { margin: 1rem 0 0; }
.status-card dl div { display: flex; justify-content: space-between; gap: 1rem; padding: .72rem 0; border-top: 1px solid #bfc3dd; font-size: .75rem; }
.status-card dt { color: var(--muted); }
.status-card dd { margin: 0; font-weight: 800; text-align: right; }
.caution-section { max-width: 64rem; margin: 4rem auto 0; padding: 1.5rem; border: 1.5px solid var(--ink); border-left: .5rem solid var(--coral); border-radius: .8rem; background: var(--coral-soft); }
.caution-section li { font-size: .82rem; }

.prose-section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.prose-section h2 { margin: 3.3rem 0 1rem; font-size: 1.7rem; font-weight: 900; line-height: 1.3; letter-spacing: -.035em; }
.prose-section h2:first-child { margin-top: 0; }
.prose-section p { color: var(--ink-soft); }

.not-found { min-height: 62vh; display: grid; align-items: center; padding: 5rem 0; text-align: center; }
.not-found .kicker { color: var(--coral); font-size: 1rem; }
.not-found h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
.not-found .hero-actions { justify-content: center; }

.site-footer { border-top: .6rem solid var(--lime); color: #e4e6f2; background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: .8fr 1.5fr .55fr; gap: clamp(2rem, 6vw, 6rem); padding-top: 4.5rem; padding-bottom: 3.5rem; }
.footer-brand { color: white; font-size: 1.3rem; font-weight: 900; letter-spacing: -.04em; text-decoration: none; }
.site-footer h2 { margin: 0 0 .8rem; color: var(--lime); font-size: .75rem; font-weight: 900; letter-spacing: .06em; }
.site-footer p, .site-footer li { color: #aeb2c8; font-size: .75rem; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li + li { margin-top: .5rem; }
.site-footer a:hover { color: var(--lime); }
.footer-bottom { padding: 1rem 0 1.5rem; border-top: 1px solid rgb(255 255 255 / 16%); color: #858aa4; font-size: .75rem; }

@keyframes rise-in {
  from { opacity: 0; translate: 0 1rem; }
  to { opacity: 1; translate: 0 0; }
}

@keyframes underline-in {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0); }
}

@keyframes menu-in {
  from { opacity: 0; translate: 0 -.5rem; }
  to { opacity: 1; translate: 0 0; }
}

@keyframes reveal-in {
  from { opacity: 0; translate: 0 1.25rem; }
  to { opacity: 1; translate: 0 0; }
}

.home .hero-copy > .eyebrow,
.home .hero-copy > h1,
.home .hero-lead,
.home .hero-actions,
.home .hero-note,
.home .hero-visual,
.page-hero .breadcrumbs,
.page-hero .kicker,
.page-hero h1,
.page-hero p,
.article-header,
.product-hero,
.legacy-header {
  animation: rise-in .55s cubic-bezier(.2, .75, .25, 1) both;
}

.home .hero-copy > .eyebrow, .page-hero .breadcrumbs { animation-delay: .04s; }
.home .hero-copy > h1, .page-hero .kicker { animation-delay: .1s; }
.home .hero-lead, .page-hero h1 { animation-delay: .17s; }
.home .hero-actions, .page-hero p { animation-delay: .24s; }
.home .hero-note { animation-delay: .31s; }
.home .hero-visual { animation-delay: .16s; }
.home .hero h1 em::after { animation: underline-in .5s .42s cubic-bezier(.2, .75, .25, 1) both; }
.home .tool-choice { animation: rise-in .42s cubic-bezier(.2, .75, .25, 1) both; }
.home .tool-choice:nth-child(1) { animation-delay: .38s; }
.home .tool-choice:nth-child(2) { animation-delay: .45s; }
.home .tool-choice:nth-child(3) { animation-delay: .52s; }
.article-header, .product-hero, .legacy-header { animation-delay: .08s; }

.reveal-ready .reveal-item { opacity: 0; translate: 0 1.25rem; }
.reveal-ready .reveal-item.is-visible {
  animation: reveal-in .52s cubic-bezier(.2, .75, .25, 1) both;
  animation-delay: var(--reveal-delay, 0ms);
}
.reveal-delay-0 { --reveal-delay: 0ms; }
.reveal-delay-1 { --reveal-delay: 70ms; }
.reveal-delay-2 { --reveal-delay: 140ms; }

@media (max-width: 960px) {
  .hero-grid, .editorial-grid, .product-hero, .legacy-header { grid-template-columns: 1fr; }
  .hero h1 { max-width: 14ch; }
  .hero-visual { max-width: 40rem; width: 100%; margin-inline: auto; }
  .category-grid, .article-grid, .product-grid, .review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .category-grid .category-card:last-child { grid-column: 1 / -1; min-height: 13rem; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid nav { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .shell { width: min(calc(100% - 1.5rem), var(--shell)); }
  .disclosure-strip { display: block; padding-block: .48rem; line-height: 1.55; }
  .header-inner { min-height: 4.6rem; flex-wrap: wrap; gap: 0; padding-block: .65rem; }
  .brand small { display: none; }
  .js .menu-toggle { display: block; }
  .site-nav { flex: 0 0 100%; }
  .js .site-nav[data-open="false"] { display: none; }
  .js .site-nav[data-open="true"] { animation: menu-in .18s ease-out both; }
  .site-nav ul { display: grid; gap: 0; padding-top: .7rem; }
  .site-nav li { border-top: 1px solid var(--line); }
  .site-nav a { min-height: 2.8rem; display: flex; align-items: center; padding: .65rem .2rem; }
  .hero { padding-top: 3.5rem; }
  .hero h1 { font-size: 2.65rem; }
  .hero h1 em { white-space: normal; }
  .hero-grid { gap: 2.5rem; }
  .hero-visual { padding: .7rem; border-radius: 1.2rem; box-shadow: 5px 5px 0 var(--ink); }
  .tool-choice { min-height: 4.8rem; }
  .tool-choice small { white-space: normal; }
  .trust-row { grid-template-columns: 1fr; margin-top: 3.5rem; }
  .trust-row div { min-height: 5.5rem; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: .85rem; }
  .category-grid, .article-grid, .product-grid, .review-grid, .related-section .product-grid { grid-template-columns: 1fr; }
  .category-grid .category-card:last-child { grid-column: auto; }
  .category-card { min-height: 14rem; }
  .principles { grid-template-columns: 1fr; }
  .principles li:first-child { grid-column: auto; }
  .filter-panel { grid-template-columns: 1fr; }
  .filter-status { text-align: left; }
  .article-header, .product-hero, .legacy-header { padding: 1.5rem; border-radius: 1.2rem; box-shadow: 5px 5px 0 var(--ink); }
  .article-header::after { right: -.3rem; font-size: 7rem; }
  .article-section { padding-left: 2.6rem; }
  .product-detail-grid { margin-top: 4rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid nav { grid-column: auto; }
}

@media (max-width: 410px) {
  .hero-actions, .primary-link { display: grid; }
  .hero-actions .button, .primary-link .button { width: 100%; }
  .tool-choice { grid-template-columns: 1.6rem minmax(0, 1fr) 2.2rem; padding-inline: .6rem; }
  .tool-choice-arrow { width: 2rem; height: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-delay: 0ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal-ready .reveal-item { opacity: 1 !important; translate: none !important; animation: none !important; }
  .button:hover, .tool-choice:hover, .category-card:hover, .article-card:hover, .product-card:hover, .review-card:hover { transform: none; }
  .brand:hover img, .tool-choice:hover .tool-choice-arrow, .category-card:hover::after { transform: none; }
}

@media (prefers-contrast: more) {
  :root { --line: #777b8f; --muted: #3f4357; }
  .article-card, .product-card, .review-card, .category-card, .filter-panel, .table-scroll { border-width: 2px; }
}

@media print {
  @page { margin: 16mm; }
  .disclosure-strip, .site-header, .site-footer, .hero-actions, .menu-toggle, .hero-visual, .page-hero::after { display: none !important; }
  body { color: black; background: white; font-size: 10pt; }
  .shell { width: 100%; }
  .hero, .page-hero, .section, .prose-section { padding: 1rem 0; background: white; }
  .article-header, .product-hero, .legacy-header, .article-card, .product-card, .review-card, .category-card, .status-card, .source-section { color: black; border: 1px solid #777; background: white; box-shadow: none; break-inside: avoid; }
  .article-header::after, .article-card::before, .category-card::after { display: none; }
  .article-lead, .date-row, .article-section p { color: black; }
  a { color: black; }
  .comparison-table { min-width: 0; }
}
