:root {
  --paper: #f2efe7;
  --paper-strong: #faf8f2;
  --surface: #fffef9;
  --surface-solid: #fffef9;
  --ink: #17201b;
  --muted: #59625d;
  --subtle: #626b66;
  --line: #d2d5cc;
  --line-strong: #b9c0b9;
  --theme: #214f40;
  --theme-deep: #13382e;
  --theme-bright: #6b9c83;
  --theme-soft: #dde9e2;
  --signal: #b5533e;
  --signal-soft: #f3dfd8;
  --danger: #a24d42;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-low: 0 1px 2px rgba(22, 39, 31, 0.04), 0 12px 32px rgba(22, 39, 31, 0.05);
  --shadow-high: 0 30px 90px rgba(22, 39, 31, 0.13);
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic UI", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  font-synthesis: none;
}

body[data-topic="gadget"] {
  --theme: #315e8a;
  --theme-deep: #1f4264;
  --theme-bright: #7ca9c9;
  --theme-soft: #e0eaf2;
}

body[data-topic="beauty"] {
  --theme: #915367;
  --theme-deep: #643546;
  --theme-bright: #c58a98;
  --theme-soft: #f0e2e6;
}

body[data-topic="life"] {
  --theme: #4f6b3c;
  --theme-deep: #344c28;
  --theme-bright: #88a56c;
  --theme-soft: #e4ebdc;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.78;
  letter-spacing: 0.015em;
  isolation: isolate;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background-color 500ms ease;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  color: var(--ink);
  font-weight: 700;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.025em;
  line-break: strict;
  text-wrap: balance;
  word-break: auto-phrase;
}

p,
li,
dd,
td,
th {
  line-break: strict;
  overflow-wrap: anywhere;
}

button:focus-visible,
input:focus-visible,
a:focus-visible,
[tabindex="-1"]:focus-visible {
  outline: 3px solid #b5533e;
  outline-offset: 3px;
  box-shadow: 0 0 0 5px var(--paper-strong);
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 12px;
  padding: 9px 14px;
  color: #fff;
  background: var(--theme-deep);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-atmosphere {
  position: fixed;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.atmosphere-orb {
  position: absolute;
  width: min(58vw, 780px);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.52;
  transition: background 600ms ease;
}

.atmosphere-orb-one {
  top: -34vw;
  right: -18vw;
  background: radial-gradient(circle, color-mix(in srgb, var(--theme-bright) 18%, transparent), transparent 69%);
}

.atmosphere-orb-two {
  bottom: -38vw;
  left: -23vw;
  background: radial-gradient(circle, color-mix(in srgb, var(--signal) 15%, transparent), transparent 70%);
}

.atmosphere-grid {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(color-mix(in srgb, var(--theme) 10%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--theme) 10%, transparent) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, #000 0, rgba(0, 0, 0, 0.45) 35%, transparent 78%);
}

.reading-progress {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.reading-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--signal), var(--theme-bright), var(--theme));
  box-shadow: 0 0 14px color-mix(in srgb, var(--theme) 35%, transparent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 80ms linear, background 500ms ease;
}

.site-header {
  position: sticky;
  z-index: 70;
  top: 0;
  display: grid;
  grid-template-columns: auto minmax(420px, 1fr) minmax(210px, 300px) auto;
  gap: 18px;
  align-items: center;
  min-height: 72px;
  padding: 10px max(18px, calc((100vw - 1200px) / 2));
  background: rgba(250, 248, 242, 0.9);
  border-bottom: 1px solid color-mix(in srgb, var(--line-strong) 72%, transparent);
  backdrop-filter: blur(18px) saturate(120%);
  transition: min-height 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  min-height: 62px;
  background: rgba(250, 248, 242, 0.97);
  box-shadow: 0 16px 45px rgba(22, 39, 31, 0.08);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.12;
  white-space: nowrap;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.09em;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 32px;
  height: 32px;
  overflow: hidden;
  place-items: center;
  color: var(--theme-deep);
  background: transparent;
  border-bottom: 2px solid var(--signal);
  border-radius: 0;
  box-shadow: none;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.04em;
  transition: background-color 500ms ease, box-shadow 500ms ease;
}

.brand-mark::after {
  display: none;
}

.site-nav {
  display: flex;
  gap: 1px;
  justify-content: center;
  min-width: 0;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 10px;
  border-radius: var(--radius-sm);
  color: #48514c;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 180ms ease, background-color 180ms ease;
}

.site-nav a::after {
  position: absolute;
  content: "";
  right: 10px;
  bottom: 7px;
  left: 10px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 240ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--theme-deep);
  background: color-mix(in srgb, var(--theme-soft) 72%, transparent);
}

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

.search-box input {
  width: 100%;
  min-height: 44px;
  padding: 0 13px;
  color: var(--ink);
  background: rgba(255, 254, 249, 0.88);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  font-size: 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.search-box input::placeholder {
  color: #6d7671;
}

.search-box input:focus {
  background: #fff;
  border-color: var(--theme);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--theme) 10%, transparent), 0 12px 30px rgba(22, 39, 31, 0.07);
}

.motion-toggle {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.motion-toggle:hover {
  color: var(--theme-deep);
  background: var(--surface-solid);
  border-color: var(--theme-bright);
}

.motion-dot {
  width: 7px;
  height: 7px;
  background: #57a46e;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(87, 164, 110, 0.12);
  animation: status-pulse 1.8s ease-in-out 3;
}

.motion-toggle[aria-pressed="true"] .motion-dot {
  background: #929995;
  box-shadow: none;
  animation: none;
}

main {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 38px 20px 76px;
}

.front-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 18px;
  perspective: 1200px;
}

.lead-panel,
.featured-card,
.article-card,
.side-rail section,
.article-view,
.static-view {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-low);
}

.lead-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 252px;
  gap: 34px;
  overflow: hidden;
  min-height: 440px;
  align-items: center;
  padding: 48px;
  background: var(--surface-solid);
  border-radius: 5px;
  border-color: color-mix(in srgb, var(--theme) 24%, var(--line));
  box-shadow: 0 20px 60px rgba(22, 39, 31, 0.07);
  transition: border-color 500ms ease, background 500ms ease;
}

.lead-panel::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--theme-deep), var(--signal), transparent 78%);
  transition: background 500ms ease;
}

.lead-panel::after {
  position: absolute;
  content: "FR / INDEX 001";
  right: 22px;
  bottom: 14px;
  color: color-mix(in srgb, var(--theme) 35%, transparent);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
}

.lead-copy {
  position: relative;
  z-index: 2;
}

.section-label {
  margin: 0;
  color: var(--theme-deep);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.11em;
  transition: color 500ms ease;
}

.lead-panel h1 {
  max-width: 620px;
  margin: 13px 0 18px;
  font-size: clamp(30px, 3.25vw, 39px);
  line-height: 1.44;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
  font-weight: 600;
}

.lead-copy > p:last-of-type {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.88;
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.primary-link,
.ghost-link,
.topic-chip {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.primary-link {
  color: #fff;
  background: var(--theme-deep);
  border-color: var(--theme-deep);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--theme) 22%, transparent);
}

.primary-link:hover {
  background: color-mix(in srgb, var(--theme-deep) 88%, #000);
  transform: translateY(-2px);
}

.ghost-link {
  background: rgba(255, 254, 249, 0.72);
}

.ghost-link:hover {
  color: var(--theme-deep);
  background: var(--theme-soft);
  border-color: var(--theme-bright);
  transform: translateY(-2px);
}

.signal-orbit {
  --orbit-x: 0px;
  --orbit-y: 0px;
  position: relative;
  z-index: 2;
  display: block;
  width: 244px;
  height: 244px;
  margin: auto;
  transform: translate3d(var(--orbit-x), var(--orbit-y), 0);
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.dial-ring,
.dial-scan,
.dial-core,
.dial-topic {
  position: absolute;
}

.dial-ring {
  inset: 0;
  border: 1px solid color-mix(in srgb, var(--theme) 30%, transparent);
  border-radius: 50%;
  pointer-events: none;
}

.dial-ring::before,
.dial-ring::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.dial-ring::before {
  top: 8px;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--signal);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--signal) 15%, transparent), 0 0 18px color-mix(in srgb, var(--signal) 45%, transparent);
}

.dial-ring::after {
  right: 23px;
  bottom: 30px;
  width: 5px;
  height: 5px;
  background: var(--theme);
}

.dial-ring-outer {
  animation: dial-settle 850ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.dial-ring-inner {
  inset: 38px;
  border-style: dashed;
  animation: dial-settle-reverse 900ms 80ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.dial-scan {
  inset: 18px;
  overflow: hidden;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0 68%, color-mix(in srgb, var(--theme) 14%, transparent) 88%, transparent 100%);
  pointer-events: none;
  animation: dial-scan-once 1100ms 180ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.dial-core {
  top: 50%;
  left: 50%;
  display: grid;
  width: 100px;
  height: 100px;
  place-content: center;
  color: var(--theme-deep);
  background: var(--surface-solid);
  border: 3px double var(--theme);
  border-radius: 50%;
  box-shadow: none;
  text-align: center;
  transform: translate(-50%, -50%);
  transition: background 500ms ease, box-shadow 500ms ease;
}

.dial-core small,
.dial-core strong,
.dial-core em {
  display: block;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-style: normal;
  line-height: 1.1;
}

.dial-core small {
  color: var(--subtle);
  font-size: 7px;
  letter-spacing: 0.2em;
}

.dial-core strong {
  margin-top: 5px;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.dial-core em {
  margin-top: 6px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.07em;
}

.dial-topic {
  z-index: 4;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  color: var(--theme-deep);
  background: rgba(255, 254, 249, 0.9);
  border: 1px solid color-mix(in srgb, var(--theme) 28%, var(--line));
  border-radius: 3px;
  box-shadow: 4px 4px 0 color-mix(in srgb, var(--theme) 10%, transparent);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  backdrop-filter: blur(9px);
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.dial-topic span {
  color: var(--subtle);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
}

.dial-topic:hover,
.dial-topic:focus-visible {
  color: #fff;
  background: var(--theme-deep);
  border-color: var(--theme-deep);
  box-shadow: 0 12px 30px color-mix(in srgb, var(--theme) 22%, transparent);
  transform: translateY(-3px);
}

.dial-topic:hover span,
.dial-topic:focus-visible span {
  color: rgba(255, 255, 255, 0.62);
}

.dial-topic-gadget {
  top: 10px;
  left: -5px;
}

.dial-topic-beauty {
  top: 51%;
  right: -15px;
}

.dial-topic-life {
  bottom: 4px;
  left: 17px;
}

.featured-card {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 15px;
  overflow: hidden;
  align-content: start;
  padding: 30px;
  color: #fff;
  background: #17201b;
  border-radius: 5px;
  border-color: color-mix(in srgb, var(--theme) 75%, #000);
  box-shadow: 0 24px 64px rgba(22, 39, 31, 0.15);
  transition: background 500ms ease, border-color 500ms ease, box-shadow 500ms ease;
}

.featured-card::after {
  position: absolute;
  z-index: 0;
  content: "CHECKED";
  right: -8px;
  bottom: 28px;
  padding: 5px 12px;
  color: rgba(181, 83, 62, 0.32);
  border: 2px solid rgba(181, 83, 62, 0.25);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
  pointer-events: none;
  transform: rotate(-7deg);
}

.featured-card > * {
  position: relative;
  z-index: 1;
}

.featured-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.featured-card .section-label,
.featured-card dt {
  color: color-mix(in srgb, var(--signal-soft) 82%, #fff);
}

.featured-card h2 {
  margin: 0;
  color: #fff;
  font-size: 22px;
  line-height: 1.55;
}

.featured-card > p:not(.section-label) {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.82;
}

.score-gauge {
  display: grid;
  width: 70px;
  height: 70px;
  flex: 0 0 auto;
  place-content: center;
  background:
    radial-gradient(circle at center, var(--theme-deep) 57%, transparent 58%),
    conic-gradient(var(--signal) calc(var(--score) * 1%), rgba(255, 255, 255, 0.13) 0);
  border-radius: 50%;
  text-align: center;
  animation: gauge-enter 900ms 220ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.score-gauge span,
.score-gauge small {
  display: block;
  line-height: 1;
}

.score-gauge span {
  color: #fff;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.score-gauge small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 8px;
}

.verdict {
  width: fit-content;
  padding: 5px 10px;
  color: var(--theme-deep);
  background: var(--theme-soft);
  border: 1px solid color-mix(in srgb, var(--theme) 22%, var(--line));
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  transition: color 500ms ease, background-color 500ms ease, border-color 500ms ease;
}

.featured-card .verdict {
  color: color-mix(in srgb, var(--signal-soft) 88%, #fff);
  background: color-mix(in srgb, var(--signal) 14%, transparent);
  border-color: color-mix(in srgb, var(--signal-soft) 30%, transparent);
}

dl {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}

dl div {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.6;
}

dt {
  color: var(--subtle);
  font-weight: 500;
}

dd {
  margin: 0;
}

.featured-card dl,
.featured-card dl div {
  border-color: rgba(255, 255, 255, 0.14);
}

.featured-card dd {
  color: #fff;
}

.text-link {
  width: fit-content;
  color: var(--theme-deep);
  font-size: 14px;
  font-weight: 600;
  transition: color 180ms ease, letter-spacing 180ms ease;
}

.text-link:hover {
  letter-spacing: 0.04em;
}

.featured-card .text-link {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.38);
}

.method-strip {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  margin: 22px 0;
  padding: 22px;
  color: #fff;
  background: #14231d;
  border: 1px solid color-mix(in srgb, var(--theme) 70%, #000);
  border-radius: 5px;
  box-shadow: 0 18px 50px rgba(20, 35, 29, 0.14);
}

.method-strip[hidden] {
  display: none;
}

.method-heading {
  align-self: center;
  padding-right: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.method-heading .section-label {
  color: color-mix(in srgb, var(--signal-soft) 82%, #fff);
}

.method-heading h2 {
  margin: 8px 0 0;
  color: #fff;
  font-size: 17px;
  line-height: 1.6;
}

.method-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  margin: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.12);
}

.method-list li {
  position: relative;
  display: grid;
  min-height: 112px;
  align-content: center;
  padding: 14px;
  background: #14231d;
  transition: background-color 220ms ease, transform 220ms ease;
}

.method-list li::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 260ms ease;
}

.method-list li:hover {
  z-index: 2;
  background: color-mix(in srgb, var(--theme-deep) 82%, #14231d);
  transform: translateY(-3px);
}

.method-list li:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.method-list span {
  color: rgba(255, 255, 255, 0.64);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
}

.method-list strong,
.method-list small {
  display: block;
}

.method-list strong {
  margin-top: 6px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}

.method-list small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
}

.topic-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
  padding: 0 0 24px;
  border-bottom: 1px solid var(--line-strong);
}

.topic-chip {
  color: #4d5651;
  background: rgba(255, 254, 249, 0.76);
}

.topic-chip:hover {
  color: var(--theme-deep);
  background: var(--theme-soft);
  border-color: var(--theme-bright);
  transform: translateY(-2px);
}

.topic-chip.active {
  color: #fff;
  background: var(--theme-deep);
  border-color: var(--theme-deep);
  box-shadow: 0 11px 28px color-mix(in srgb, var(--theme) 18%, transparent);
}

.content-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 285px;
  gap: 26px;
}

.section-heading {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 15px;
  padding-bottom: 14px;
}

.section-heading::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--theme-deep), var(--signal) 26%, var(--line) 26%);
}

.section-heading h2 {
  margin: 5px 0 0;
  font-size: 24px;
  line-height: 1.5;
}

.result-count {
  margin: 0;
  color: var(--subtle);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.09em;
}

.article-list {
  display: grid;
  gap: 12px;
}

.article-card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  overflow: hidden;
  padding: 23px 24px 23px 58px;
  background: var(--surface-solid);
  border-radius: 4px;
  box-shadow: none;
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.article-card::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: var(--signal);
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform 240ms ease;
}

.article-card:hover {
  border-color: color-mix(in srgb, var(--theme) 38%, var(--line));
  box-shadow: 6px 6px 0 color-mix(in srgb, var(--theme) 8%, transparent);
  transform: translateX(2px);
}

.article-card:hover::before,
.article-card:focus-within::before {
  transform: scaleY(1);
}

.card-index {
  position: absolute;
  top: 20px;
  left: 18px;
  color: #a5ada8;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.article-meta,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.article-meta {
  margin-bottom: 8px;
  color: var(--subtle);
  font-size: 12px;
}

.article-meta span:not(:last-child)::after {
  content: "・";
  margin-left: 7px;
  color: var(--line-strong);
}

.article-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.58;
}

.article-card h3 a {
  background-image: linear-gradient(var(--theme-deep), var(--theme-deep));
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  text-decoration: none;
  transition: color 180ms ease, background-size 280ms ease, background-position 0s 280ms;
}

.article-card h3 a:hover {
  color: var(--theme-deep);
  background-position: 0 100%;
  background-size: 100% 1px;
}

.article-card p {
  max-width: 720px;
  margin: 10px 0 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.82;
}

.tag {
  display: inline-flex;
  min-height: 27px;
  align-items: center;
  padding: 0 9px;
  color: #59615d;
  background: #efefea;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
}

.score-pill {
  display: inline-flex;
  height: fit-content;
  min-height: 35px;
  align-items: center;
  padding: 0 11px;
  color: var(--theme-deep);
  background: var(--theme-soft);
  border: 1px solid color-mix(in srgb, var(--theme) 22%, var(--line));
  border-radius: 9px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.empty-state {
  padding: 32px;
  background: var(--surface);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
}

.empty-state h3 {
  margin: 0 0 8px;
  font-size: 19px;
}

.empty-state p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.side-rail {
  display: grid;
  gap: 12px;
  align-content: start;
}

.side-rail section {
  position: relative;
  overflow: hidden;
  padding: 22px;
  background: var(--surface-solid);
  box-shadow: none;
}

.side-rail section:first-child::after {
  position: absolute;
  content: "";
  top: -36px;
  right: -36px;
  width: 105px;
  height: 105px;
  border: 1px solid color-mix(in srgb, var(--theme) 17%, transparent);
  border-radius: 50%;
  box-shadow: 0 0 0 18px color-mix(in srgb, var(--theme) 3%, transparent);
}

.side-rail h3 {
  margin: 7px 0 0;
  font-size: 18px;
  line-height: 1.55;
}

.side-rail p,
.side-rail ol {
  color: var(--muted);
  font-size: 14px;
}

.side-rail ol {
  padding-left: 1.4em;
  margin: 12px 0 0;
  line-height: 1.88;
}

.collection-status {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 15px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.collection-status span {
  color: var(--theme-deep);
  font-size: 18px;
  font-weight: 700;
}

.article-view,
.static-view {
  position: relative;
  overflow: hidden;
  padding: 40px;
  background: var(--surface-solid);
  border-radius: 5px;
  border-color: color-mix(in srgb, var(--theme) 24%, var(--line));
  box-shadow: 0 34px 95px rgba(22, 39, 31, 0.1);
}

.article-view::before,
.static-view::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--theme-deep), var(--signal), transparent 72%);
}

.article-view[hidden],
.static-view[hidden],
#homeView[hidden],
.content-shell[hidden],
.topic-strip[hidden],
.featured-card[hidden] {
  display: none;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 25px;
  color: var(--subtle);
  font-size: 12px;
}

.breadcrumbs a {
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--theme-deep);
  text-decoration: underline;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 245px;
  gap: 40px;
}

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

.article-overline {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 18px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
}

.article-overline p {
  margin: 0;
}

.article-overline > p:last-child {
  color: var(--subtle);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.02em;
}

.article-body > h1 {
  max-width: 760px;
  margin: 10px 0 0;
  font-size: clamp(28px, 3.15vw, 36px);
  line-height: 1.5;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
  font-weight: 600;
}

.article-body > .verdict {
  margin-top: 19px;
}

.article-body > p:not(.section-label) {
  max-width: 44rem;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.summary-box,
.decision-box,
.evidence-box,
.disclosure-box,
.comparison-box,
.decision-tool,
.source-box,
.related-box {
  position: relative;
  overflow: hidden;
  margin-top: 23px;
  padding: 24px;
  background: #f3f4ef;
  border: 1px solid var(--line);
  border-radius: 11px;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.summary-box:hover,
.decision-box:hover,
.evidence-box:hover,
.comparison-box:hover {
  border-color: color-mix(in srgb, var(--theme) 32%, var(--line));
  box-shadow: 0 17px 44px rgba(22, 39, 31, 0.07);
  transform: translateY(-2px);
}

.summary-box::after,
.evidence-box::after {
  position: absolute;
  content: "";
  top: -46px;
  right: -46px;
  width: 104px;
  height: 104px;
  border: 1px solid color-mix(in srgb, var(--theme) 13%, transparent);
  border-radius: 50%;
  box-shadow: 0 0 0 18px color-mix(in srgb, var(--theme) 3%, transparent);
}

.decision-box {
  background: var(--signal-soft);
  border-color: color-mix(in srgb, var(--signal) 30%, var(--line));
}

.comparison-box {
  background: var(--surface-solid);
}

.comparison-box {
  overflow-x: auto;
}

.decision-tool {
  padding: 28px;
  background: #fbfaf5;
  border-color: color-mix(in srgb, var(--theme) 42%, var(--line));
  border-top: 4px solid var(--theme);
  border-radius: 4px;
}

.decision-tool-head,
.source-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.decision-tool-head h2,
.source-head h2,
.related-box > h2 {
  margin: 7px 0 0;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.55;
}

.decision-tool-head > div > p:last-child {
  max-width: 580px;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.72;
}

.check-progress {
  display: flex;
  flex-wrap: wrap;
  min-width: 78px;
  align-items: baseline;
  justify-content: center;
  margin: 0;
  padding: 11px 12px 10px;
  color: var(--theme-deep);
  background: var(--theme-soft);
  border: 1px solid color-mix(in srgb, var(--theme) 28%, var(--line));
  text-align: center;
}

.check-progress strong,
.check-progress span {
  display: inline;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 20px;
  line-height: 1;
}

.check-progress small {
  display: block;
  width: 100%;
  margin-top: 6px;
  color: var(--subtle);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.check-meter {
  height: 3px;
  margin: 21px 0 18px;
  overflow: hidden;
  background: color-mix(in srgb, var(--theme) 12%, var(--line));
}

.check-meter span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--theme), var(--signal));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 360ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.decision-fieldset {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  border: 0;
}

.decision-option {
  position: relative;
  display: grid;
  min-height: 58px;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  padding: 11px 14px;
  background: var(--surface-solid);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.decision-option:hover {
  border-color: color-mix(in srgb, var(--theme) 42%, var(--line));
  transform: translateX(2px);
}

.decision-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.decision-boxmark {
  position: relative;
  display: block;
  width: 26px;
  height: 26px;
  background: #fff;
  border: 1px solid var(--line-strong);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.decision-boxmark::after {
  position: absolute;
  content: "";
  top: 5px;
  left: 8px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  opacity: 0;
  transform: rotate(45deg) translateY(-2px);
  transition: opacity 160ms ease, transform 200ms ease;
}

.decision-option input:focus-visible + .decision-boxmark {
  outline: 3px solid #b5533e;
  outline-offset: 3px;
}

.decision-option input:checked + .decision-boxmark {
  background: var(--theme);
  border-color: var(--theme);
  box-shadow: 3px 3px 0 color-mix(in srgb, var(--signal) 35%, transparent);
}

.decision-option input:checked + .decision-boxmark::after {
  opacity: 1;
  transform: rotate(45deg) translateY(0);
}

.decision-option > span:last-child {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.65;
}

.decision-option small {
  display: block;
  margin-bottom: 2px;
  color: var(--subtle);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.check-result {
  margin-top: 15px;
  padding: 14px 16px;
  color: var(--theme-deep);
  background: var(--theme-soft);
  border-left: 3px solid var(--theme);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.72;
}

.decision-tool[data-complete="true"] .check-result {
  color: #fff;
  background: var(--theme-deep);
  border-left-color: var(--signal);
}

.decision-tool-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 14px;
}

.decision-tool-foot p {
  margin: 0;
  color: var(--subtle);
  font-size: 11px;
  line-height: 1.62;
}

.decision-tool-foot button {
  min-height: 44px;
  flex: 0 0 auto;
  padding: 0 14px;
  color: var(--theme-deep);
  background: transparent;
  border: 1px solid var(--line-strong);
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.decision-tool-foot button:hover:not(:disabled) {
  background: var(--theme-soft);
  border-color: var(--theme);
}

.decision-tool-foot button:disabled {
  color: #999f9b;
  cursor: not-allowed;
  opacity: 0.62;
}

.source-box {
  padding: 27px;
  background: #f3f4ef;
  border-radius: 4px;
}

.source-head time {
  flex: 0 0 auto;
  padding: 7px 9px;
  color: var(--theme-deep);
  background: var(--surface-solid);
  border: 1px solid var(--line);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
}

.source-list {
  display: grid;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.source-list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.source-index {
  color: var(--signal);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
}

.source-list p,
.source-list small {
  margin: 0;
  color: var(--subtle);
  font-size: 11px;
  line-height: 1.65;
}

.source-list a {
  display: inline-block;
  margin: 3px 0 4px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.55;
  text-underline-offset: 4px;
}

.source-list a::after {
  content: " ↗";
  color: var(--signal);
  font-size: 11px;
}

.evidence-boundary {
  margin-top: 17px;
  padding: 14px 16px;
  background: var(--signal-soft);
  border-left: 3px solid var(--signal);
}

.evidence-boundary p {
  margin: 0;
}

.evidence-boundary > p:last-child {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.78;
}

.update-trigger {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 1px;
  margin: 18px 0 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.update-trigger div {
  display: contents;
}

.update-trigger dt,
.update-trigger dd {
  padding: 10px 12px;
  margin: 0;
  background: var(--surface-solid);
  font-size: 12px;
  line-height: 1.6;
}

.update-trigger dt {
  color: var(--subtle);
  font-weight: 600;
}

.update-trigger dd {
  color: var(--ink);
}

.related-box {
  padding: 26px 0 0;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line-strong);
  border-radius: 0;
}

.related-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 17px;
}

.related-card {
  display: grid;
  min-height: 148px;
  align-content: space-between;
  padding: 18px;
  color: var(--ink);
  background: #f8f8f3;
  border: 1px solid var(--line);
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.related-card:hover {
  border-color: var(--theme);
  box-shadow: 5px 5px 0 var(--theme-soft);
  transform: translateY(-2px);
}

.related-card > span,
.related-card small {
  color: var(--subtle);
  font-size: 10px;
  letter-spacing: 0.03em;
}

.related-card strong {
  margin: 12px 0;
  font-size: 15px;
  line-height: 1.65;
}

.related-card small {
  color: var(--theme-deep);
  font-weight: 700;
}

.table-scroll {
  overflow-x: auto;
  margin: 0 -2px;
  border-radius: 4px;
}

.table-scroll:focus-visible {
  outline: 3px solid #b5533e;
  outline-offset: 2px;
}

.decision-box h2 {
  margin: 8px 0 0;
  font-size: 19px;
  line-height: 1.58;
}

.decision-box p,
.disclosure-box p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

table {
  width: 100%;
  min-width: 560px;
  margin-top: 10px;
  border-collapse: collapse;
  font-size: 14px;
}

th,
td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  line-height: 1.72;
}

th {
  color: var(--theme-deep);
  background: color-mix(in srgb, var(--theme-soft) 60%, #f4f4ef);
  font-weight: 600;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.78;
}

.check-list span {
  display: grid;
  width: 25px;
  height: 25px;
  margin-top: 1px;
  place-items: center;
  color: #fff;
  background: var(--theme);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 600;
}

.article-aside {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 12px;
  height: fit-content;
  align-content: start;
}

.article-aside .side-rail-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 18px;
  background: #f8f8f3;
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.article-aside .side-rail-card:hover {
  border-color: color-mix(in srgb, var(--theme) 34%, var(--line));
  transform: translateX(-3px);
}

.article-aside h3 {
  margin: 7px 0 0;
  font-size: 17px;
  line-height: 1.58;
}

.article-aside p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.static-view {
  max-width: 850px;
}

.static-view h1 {
  margin: 10px 0 0;
  font-size: 32px;
  line-height: 1.52;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
  font-weight: 600;
}

.static-view p {
  max-width: 44rem;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.92;
}

.static-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--print-rule);
}

.site-footer {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 38px;
  color: var(--subtle);
  font-size: 12px;
  line-height: 1.7;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-identity {
  display: grid;
  gap: 2px;
}

.footer-identity small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 680ms cubic-bezier(0.2, 0.7, 0.2, 1) var(--reveal-delay, 0ms),
    transform 680ms cubic-bezier(0.2, 0.7, 0.2, 1) var(--reveal-delay, 0ms);
}

.motion-ready [data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

::view-transition-old(root) {
  animation: page-leave 220ms ease both;
}

::view-transition-new(root) {
  animation: page-enter 420ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

@keyframes status-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.72); opacity: 0.58; }
}

@keyframes dial-settle {
  from { opacity: 0; transform: rotate(-18deg) scale(0.96); }
  to { opacity: 1; transform: rotate(0) scale(1); }
}

@keyframes dial-settle-reverse {
  from { opacity: 0; transform: rotate(18deg) scale(0.94); }
  to { opacity: 1; transform: rotate(0) scale(1); }
}

@keyframes dial-scan-once {
  from { opacity: 0; transform: rotate(-70deg); }
  to { opacity: 1; transform: rotate(0); }
}

@keyframes gauge-enter {
  from { opacity: 0; transform: rotate(-20deg) scale(0.76); }
  to { opacity: 1; transform: rotate(0) scale(1); }
}

@keyframes page-leave {
  to { opacity: 0; transform: translateY(-7px); }
}

@keyframes page-enter {
  from { opacity: 0; transform: translateY(12px); }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto 1fr minmax(210px, 270px) auto;
    gap: 10px;
    padding: 10px 14px;
  }

  .site-nav a {
    padding: 0 8px;
    font-size: 12px;
  }

  .lead-panel {
    grid-template-columns: minmax(0, 1fr) 215px;
    padding: 40px;
  }

  .signal-orbit {
    width: 210px;
    height: 210px;
  }

  .dial-core {
    width: 88px;
    height: 88px;
  }
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 9px 14px;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .search-box {
    grid-column: 2;
    grid-row: 1;
  }

  .motion-toggle {
    grid-column: 3;
    grid-row: 1;
  }

  .front-grid,
  .content-shell,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .lead-panel {
    grid-template-columns: minmax(0, 1fr) 240px;
  }

  .method-strip {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .method-heading {
    padding: 0 0 15px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .article-aside {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body {
    line-height: 1.72;
  }

  .site-header {
    position: relative;
    grid-template-columns: 1fr auto;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .motion-toggle {
    grid-column: 2;
    grid-row: 1;
  }

  .search-box {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 3;
    padding-bottom: 3px;
    scrollbar-width: thin;
  }

  main {
    padding: 22px 12px 54px;
  }

  .front-grid {
    gap: 12px;
  }

  .lead-panel {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: auto;
    padding: 30px 22px;
  }

  .lead-panel h1 {
    margin: 11px 0 15px;
    font-size: 28px;
    line-height: 1.52;
  }

  .lead-copy > p:last-of-type {
    font-size: 15px;
    line-height: 1.88;
  }

  .signal-orbit {
    width: 198px;
    height: 198px;
  }

  .quick-actions {
    margin-top: 22px;
  }

  .primary-link,
  .ghost-link {
    flex: 1 1 150px;
  }

  .featured-card {
    padding: 27px 22px;
  }

  .method-strip {
    margin: 14px 0 20px;
    padding: 19px;
  }

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

  .method-list li:last-child {
    grid-column: 1 / -1;
  }

  .method-list li {
    min-height: 92px;
  }

  .topic-chip {
    min-height: 43px;
    padding: 0 13px;
    font-size: 13px;
  }

  .section-heading h2 {
    font-size: 21px;
  }

  .article-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 21px 20px 21px 48px;
  }

  .article-card h3 {
    font-size: 18px;
    line-height: 1.62;
  }

  .score-pill {
    width: fit-content;
  }

  .article-view,
  .static-view {
    padding: 27px 20px;
  }

  .article-body > h1,
  .static-view h1 {
    font-size: 27px;
  }

  .article-body > p:not(.section-label) {
    font-size: 16px;
    line-height: 1.88;
  }

  .summary-box,
    .decision-box,
    .evidence-box,
    .disclosure-box,
    .comparison-box,
  .decision-tool,
  .source-box {
    padding: 19px;
  }

  .article-overline,
  .decision-tool-head,
  .source-head,
  .decision-tool-foot {
    align-items: stretch;
    flex-direction: column;
  }

  .check-progress {
    width: fit-content;
    min-width: 86px;
  }

  .decision-option {
    min-height: 64px;
    padding: 12px;
  }

  .decision-tool-foot button {
    width: 100%;
  }

  .update-trigger {
    grid-template-columns: 94px minmax(0, 1fr);
  }

  .related-list {
    grid-template-columns: 1fr;
  }

  .article-aside {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    padding: 0 12px 32px;
  }
}

@media (max-width: 420px) {
  .motion-toggle {
    width: 42px;
    justify-content: center;
    padding: 0;
  }

  .motion-toggle #motionLabel {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .dial-topic-gadget {
    left: -2px;
  }

  .dial-topic-beauty {
    right: -7px;
  }

  .featured-head {
    align-items: center;
  }

  .score-gauge {
    width: 62px;
    height: 62px;
  }
}

.motion-paused *,
.motion-paused *::before,
.motion-paused *::after {
  scroll-behavior: auto !important;
  animation: none !important;
  transition: none !important;
}

.motion-paused .signal-orbit,
.motion-paused .article-card,
.motion-paused .topic-chip,
.motion-paused .primary-link,
.motion-paused .ghost-link,
.motion-paused .summary-box,
.motion-paused .decision-box,
.motion-paused .evidence-box,
.motion-paused .comparison-box,
.motion-paused .article-aside .side-rail-card,
.motion-paused .decision-option,
.motion-paused .related-card {
  transform: none !important;
  transition: none !important;
}

.motion-paused .check-meter span,
.motion-paused .decision-boxmark,
.motion-paused .decision-boxmark::after {
  transition: none !important;
}

.motion-paused [data-reveal] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .signal-orbit,
  .article-card,
  .topic-chip,
  .primary-link,
  .ghost-link,
  .summary-box,
  .decision-box,
  .evidence-box,
  .comparison-box,
  .article-aside .side-rail-card,
  .decision-option,
  .related-card {
    transform: none !important;
  }

  .motion-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Print proof system — mirrors the public proof-sheet artwork. */
:root {
  --paper: #eee8dc;
  --paper-strong: #f8f3e8;
  --surface: #f8f3e8;
  --surface-solid: #fbf7ed;
  --ink: #161711;
  --muted: #51564f;
  --subtle: #60655e;
  --line: #c8c1b4;
  --line-strong: #8d8a81;
  --theme: #0e4b2f;
  --theme-deep: #0a3a25;
  --theme-bright: #5c8a71;
  --theme-soft: #dce7dd;
  --signal: #a94a37;
  --signal-soft: #efddd6;
  --print-rule: #22231e;
  --radius-sm: 1px;
  --radius: 2px;
  --radius-lg: 2px;
  --shadow-low: none;
  --shadow-high: none;
}

body[data-topic="gadget"],
body[data-topic="beauty"],
body[data-topic="life"] {
  --theme: #0e4b2f;
  --theme-deep: #0a3a25;
  --theme-bright: #5c8a71;
  --theme-soft: #dce7dd;
}

body {
  background-color: var(--paper);
  background-image:
    radial-gradient(circle at 18% 32%, rgba(79, 58, 34, 0.055) 0 0.45px, transparent 0.75px),
    radial-gradient(circle at 72% 64%, rgba(255, 255, 255, 0.46) 0 0.5px, transparent 0.85px),
    repeating-linear-gradient(96deg, transparent 0 13px, rgba(83, 64, 42, 0.018) 13px 14px, transparent 14px 29px);
  background-size: 11px 13px, 17px 19px, 31px 37px;
  background-attachment: fixed;
}

.page-atmosphere {
  z-index: 0;
  opacity: 0.42;
}

.atmosphere-orb {
  display: none;
}

.atmosphere-grid {
  inset: 0;
  opacity: 0.32;
  background-image:
    repeating-linear-gradient(7deg, transparent 0 21px, rgba(66, 49, 31, 0.035) 21px 22px, transparent 22px 47px),
    radial-gradient(ellipse at 35% 20%, rgba(99, 72, 41, 0.05), transparent 48%);
  background-size: 53px 61px, 100% 100%;
  mask-image: none;
}

.print-furniture {
  position: fixed;
  z-index: 50;
  inset: 0;
  color: var(--print-rule);
  pointer-events: none;
  user-select: none;
}

.trim-frame {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(34, 35, 30, 0.58);
}

.crop-mark {
  position: absolute;
  width: 30px;
  height: 30px;
}

.crop-mark::before,
.crop-mark::after {
  position: absolute;
  content: "";
  background: currentColor;
}

.crop-mark::before {
  top: 14px;
  left: 0;
  width: 30px;
  height: 1px;
}

.crop-mark::after {
  top: 0;
  left: 14px;
  width: 1px;
  height: 30px;
}

.crop-mark-tl {
  top: 1px;
  left: 1px;
}

.crop-mark-tr {
  top: 1px;
  right: 1px;
}

.crop-mark-bl {
  bottom: 1px;
  left: 1px;
}

.crop-mark-br {
  right: 1px;
  bottom: 1px;
}

.registration-mark,
.prepress-register {
  width: 20px;
  height: 20px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.registration-mark {
  position: absolute;
}

.registration-mark::before,
.registration-mark::after,
.prepress-register::before,
.prepress-register::after {
  position: absolute;
  content: "";
  background: currentColor;
}

.registration-mark::before,
.prepress-register::before {
  top: 9px;
  left: -6px;
  width: 30px;
  height: 1px;
}

.registration-mark::after,
.prepress-register::after {
  top: -6px;
  left: 9px;
  width: 1px;
  height: 30px;
}

.registration-top {
  top: 4px;
  left: calc(50% - 10px);
}

.registration-bottom {
  bottom: 4px;
  left: calc(50% - 10px);
}

.registration-left {
  top: calc(50% - 10px);
  left: 4px;
}

.registration-right {
  top: calc(50% - 10px);
  right: 4px;
}

.color-control {
  position: absolute;
  top: calc(50% + 66px);
  left: max(8px, calc(50% - 666px));
  display: grid;
  gap: 4px;
}

.color-control i {
  display: block;
  width: 18px;
  height: 18px;
  border: 1px solid transparent;
}

.color-control .color-green {
  background: #0e4b2f;
}

.color-control .color-red {
  background: #b62d1c;
}

.color-control .color-black {
  background: #161611;
}

.color-control .color-paper {
  background: #f3eee2;
  border-color: #161611;
}

.site-sheet {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 72px));
  min-height: calc(100vh - 56px);
  margin: 28px auto;
  background-color: rgba(248, 243, 232, 0.97);
  background-image:
    radial-gradient(circle at 28% 24%, rgba(86, 61, 32, 0.04) 0 0.45px, transparent 0.75px),
    radial-gradient(circle at 74% 66%, rgba(255, 255, 255, 0.52) 0 0.55px, transparent 0.9px);
  background-size: 13px 15px, 19px 21px;
  border: 1px solid var(--print-rule);
  box-shadow: 0 28px 70px rgba(46, 39, 29, 0.14);
}

.prepress-bar {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 22px;
  align-items: center;
  min-height: 58px;
  padding: 8px 28px;
  background: rgba(248, 243, 232, 0.93);
  border-bottom: 1px solid var(--print-rule);
}

.edition-name {
  display: inline-flex;
  align-items: baseline;
  gap: 13px;
}

.edition-name strong {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.edition-name small,
.proof-meta {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.prepress-register {
  position: relative;
  justify-self: center;
}

.proof-meta {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  white-space: nowrap;
}

.proof-meta::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 44px;
  background: #0e4b2f;
  box-shadow: 12px 0 #b62d1c, 24px 0 #161611, 36px 0 #f3eee2;
  content: "";
}

.site-header {
  top: 0;
  min-height: 70px;
  padding: 10px 28px;
  background: rgba(248, 243, 232, 0.98);
  border-bottom: 1px solid var(--print-rule);
  backdrop-filter: none;
  box-shadow: none;
}

.site-header.is-scrolled {
  min-height: 64px;
  background: rgba(248, 243, 232, 0.99);
  box-shadow: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  color: var(--theme-deep);
  border: 1px solid var(--print-rule);
  border-bottom: 4px solid var(--signal);
}

.site-nav {
  gap: 0;
  border-left: 1px solid var(--line-strong);
}

.site-nav a {
  min-height: 40px;
  padding: 0 11px;
  border-right: 1px solid var(--line-strong);
  border-radius: 0;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--theme-deep);
  background: transparent;
}

.site-nav a::after {
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--signal);
}

.search-box input {
  min-height: 42px;
  background: rgba(251, 247, 237, 0.9);
  border-color: var(--print-rule);
  border-radius: 0;
  box-shadow: none;
}

.search-box input:focus {
  background: #fffaf0;
  box-shadow: inset 4px 0 0 var(--signal);
}

.motion-toggle {
  min-height: 42px;
  border-color: var(--print-rule);
  border-radius: 0;
}

.site-sheet main {
  max-width: none;
  padding: 30px 28px 68px;
}

.front-grid {
  grid-template-columns: minmax(0, 1.45fr) minmax(310px, 0.55fr);
  gap: 0;
  background: var(--surface-solid);
  border: 2px solid var(--print-rule);
  perspective: none;
}

.lead-panel,
.featured-card,
.article-card,
.side-rail section,
.article-view,
.static-view {
  border-radius: 0;
  box-shadow: none;
}

.lead-panel {
  grid-template-columns: minmax(0, 1fr) minmax(250px, 296px);
  min-height: 476px;
  padding: 42px;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--print-rule);
}

.lead-panel::before {
  display: none;
}

.lead-panel::after {
  right: 16px;
  bottom: 10px;
  color: rgba(22, 23, 17, 0.44);
}

.lead-panel h1 {
  font-size: clamp(34px, 3.55vw, 44px);
  line-height: 1.42;
}

.proof-register {
  position: relative;
  z-index: 2;
  display: grid;
  width: 100%;
  max-width: 296px;
  height: auto;
  margin: auto;
  color: var(--ink);
  background: rgba(251, 247, 237, 0.76);
  border: 1px solid var(--print-rule);
}

.proof-check-row {
  display: grid;
  min-height: 65px;
  grid-template-columns: 50px minmax(0, 1fr);
  align-items: stretch;
  color: var(--ink);
  background: transparent;
  border-bottom: 1px solid var(--print-rule);
  text-decoration: none;
  transition: background-color 180ms ease;
}

.proof-check-row:hover,
.proof-check-row:focus-visible {
  background: var(--theme-soft);
}

.proof-check {
  position: relative;
  display: block;
  width: 27px;
  height: 27px;
  align-self: center;
  justify-self: center;
  border: 2px solid var(--theme-deep);
}

.proof-check::after {
  position: absolute;
  content: "";
  top: 2px;
  left: 8px;
  width: 8px;
  height: 17px;
  border: solid var(--theme-deep);
  border-width: 0 4px 4px 0;
  transform: rotate(45deg);
  transform-origin: center;
  animation: proof-check-enter 360ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.proof-check-row:nth-child(2) .proof-check::after {
  animation-delay: 80ms;
}

.proof-check-row:nth-child(3) .proof-check::after {
  animation-delay: 160ms;
}

.proof-check-row > span:last-child {
  display: grid;
  align-content: center;
  padding: 10px 12px;
  border-left: 1px solid var(--print-rule);
}

.proof-check-row small,
.proof-check-row strong {
  display: block;
}

.proof-check-row small {
  color: var(--subtle);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
}

.proof-check-row strong {
  margin-top: 2px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.proof-check-row-open {
  opacity: 0.64;
}

.proof-check-row-open .proof-check {
  border-color: var(--print-rule);
}

.proof-check-row-open .proof-check::after {
  display: none;
}

.proof-register-foot {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 12px;
  color: var(--theme-deep);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
}

.proof-register-foot strong {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.proof-register-foot span {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 14px;
}

.featured-card {
  padding: 30px 27px;
  background: #181a16;
  border: 0;
  border-left: 1px solid var(--print-rule);
}

.featured-card::after {
  right: -9px;
  bottom: 18px;
  display: grid;
  width: 90px;
  height: 90px;
  padding: 0;
  place-content: center;
  content: "根拠\A確認";
  color: rgba(190, 54, 32, 0.52);
  border: 3px double rgba(190, 54, 32, 0.48);
  border-radius: 50%;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: 0.12em;
  text-align: center;
  white-space: pre;
  transform: rotate(-9deg);
  animation: proof-stamp-in 420ms 260ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.score-gauge {
  width: 76px;
  height: 54px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 0;
  animation: proof-stamp-in 400ms 180ms ease both;
}

.verdict,
.tag,
.score-pill,
.primary-link,
.ghost-link,
.topic-chip {
  border-radius: 0;
  box-shadow: none;
}

.primary-link:hover,
.ghost-link:hover,
.topic-chip:hover {
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 color-mix(in srgb, var(--theme) 16%, transparent);
}

.method-strip {
  position: relative;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  margin: 20px 0;
  padding: 4px 0 0;
  color: var(--ink);
  background: var(--surface-solid);
  border: 1px solid var(--print-rule);
  border-radius: 0;
  box-shadow: none;
}

.method-strip::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #0e4b2f 0 25%, #b62d1c 25% 50%, #161611 50% 75%, #eee8dc 75%);
}

.method-heading {
  padding: 20px;
  border-right: 1px solid var(--print-rule);
}

.method-heading .section-label {
  color: var(--signal);
}

.method-heading h2 {
  color: var(--ink);
}

.method-list {
  gap: 1px;
  background: var(--print-rule);
}

.method-list li {
  min-height: 102px;
  background: var(--surface-solid);
}

.method-list li:hover {
  background: var(--signal-soft);
  transform: translateY(-1px);
}

.method-list span,
.method-list small {
  color: var(--subtle);
}

.method-list strong {
  color: var(--ink);
}

.topic-strip {
  border-bottom-color: var(--print-rule);
}

.topic-chip {
  background: transparent;
  border-color: var(--line-strong);
}

.topic-chip.active {
  background: var(--theme-deep);
  box-shadow: none;
}

.section-heading::after {
  background: linear-gradient(90deg, var(--signal) 0 70px, var(--print-rule) 70px);
}

.article-list {
  gap: 0;
}

.article-card {
  margin-top: -1px;
  background: rgba(251, 247, 237, 0.8);
  border-color: var(--print-rule);
  border-radius: 0;
}

.article-card:hover {
  border-color: var(--print-rule);
  box-shadow: inset 4px 0 0 var(--signal);
  transform: translateX(1px);
}

.card-index {
  color: var(--signal);
}

.side-rail section {
  background: transparent;
  border-color: var(--print-rule);
}

.side-rail section:first-child::after {
  display: none;
}

.article-view,
.static-view {
  padding: 38px;
  background: rgba(251, 247, 237, 0.84);
  border: 2px solid var(--print-rule);
  border-radius: 0;
  box-shadow: none;
}

.article-view::before,
.static-view::before {
  height: 4px;
  background: linear-gradient(90deg, #0e4b2f 0 25%, #b62d1c 25% 50%, #161611 50% 75%, #eee8dc 75%);
}

.article-overline {
  border-bottom-color: var(--print-rule);
}

.article-body > :is(
  .summary-box,
  .decision-box,
  .comparison-box,
  .decision-tool,
  .source-box,
  .disclosure-box,
  .related-box
) {
  margin-top: -1px;
  background: rgba(251, 247, 237, 0.72);
  border-color: var(--print-rule);
  border-radius: 0;
  box-shadow: none;
}

.article-body > .summary-box {
  margin-top: 28px;
}

.summary-box:hover,
.decision-box:hover,
.evidence-box:hover,
.comparison-box:hover {
  border-color: var(--print-rule);
  box-shadow: none;
  transform: none;
}

.summary-box::after,
.evidence-box::after {
  display: none;
}

.decision-box {
  background: var(--signal-soft) !important;
  border-left: 5px solid var(--signal) !important;
}

th,
td {
  border-color: var(--print-rule);
}

th {
  color: var(--theme-deep);
  background: var(--theme-soft);
}

.decision-tool {
  padding: 0 !important;
  border: 2px solid var(--print-rule) !important;
}

.decision-tool-head {
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--print-rule);
}

.check-progress {
  background: transparent;
  border-color: var(--print-rule);
}

.check-meter {
  height: 4px;
  margin: 0;
  background: var(--line);
}

.decision-fieldset {
  gap: 0;
}

.decision-option {
  min-height: 68px;
  padding: 11px 16px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--print-rule);
}

.decision-option:hover {
  background: var(--theme-soft);
  transform: translateX(1px);
}

.decision-boxmark {
  border: 2px solid var(--theme-deep);
  border-radius: 0;
}

.check-result {
  margin: 0;
  padding: 16px 20px;
  background: var(--theme-soft);
  border-left: 0;
  border-bottom: 1px solid var(--print-rule);
}

.decision-tool[data-complete="true"]::after {
  position: absolute;
  right: 22px;
  bottom: 66px;
  display: grid;
  width: 80px;
  height: 80px;
  place-content: center;
  content: "条件\A確認";
  color: rgba(169, 74, 55, 0.66);
  border: 3px double rgba(169, 74, 55, 0.6);
  border-radius: 50%;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  font-size: 17px;
  line-height: 1.1;
  text-align: center;
  white-space: pre;
  transform: rotate(-8deg);
  animation: proof-stamp-in 320ms ease both;
  pointer-events: none;
}

.decision-tool[data-complete="true"] .check-result {
  min-height: 94px;
  padding-right: 116px;
}

.decision-tool-foot {
  margin: 0;
  padding: 12px 16px;
}

.decision-tool-foot button {
  border-color: var(--print-rule);
  border-radius: 0;
}

.source-box {
  padding: 26px !important;
}

.source-list,
.source-list li {
  border-color: var(--print-rule);
}

.source-index {
  color: var(--signal);
}

.evidence-boundary {
  border-left-color: var(--signal);
}

.article-aside .side-rail-card {
  background: transparent;
  border: 0;
  border-left: 3px solid var(--signal);
  border-radius: 0;
}

.article-aside .side-rail-card:hover {
  border-color: var(--signal);
  transform: translateX(1px);
}

.score-basis {
  display: grid;
  gap: 7px;
  margin: 13px 0 0;
  padding: 12px 0 0;
  border-top: 1px solid var(--print-rule);
  color: var(--subtle);
  font-size: 11px;
  line-height: 1.65;
  list-style: none;
}

.score-basis li::before {
  margin-right: 7px;
  color: var(--theme-deep);
  content: "✓";
}

.related-card {
  background: transparent;
  border-color: var(--print-rule);
  border-radius: 0;
}

.related-card:hover {
  border-color: var(--print-rule);
  box-shadow: inset 4px 0 0 var(--signal);
  transform: translateX(1px);
}

.site-footer {
  max-width: none;
  padding: 22px 28px 28px;
  border-top: 1px solid var(--print-rule);
}

.site-footer::before {
  position: absolute;
  content: "FR / END OF PROOF";
  top: -8px;
  left: 28px;
  padding: 0 8px;
  color: var(--subtle);
  background: var(--paper-strong);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  letter-spacing: 0.16em;
}

@keyframes proof-check-enter {
  from {
    opacity: 0;
    transform: rotate(45deg) scale(0.6);
  }
  to {
    opacity: 1;
    transform: rotate(45deg) scale(1);
  }
}

@keyframes proof-stamp-in {
  from {
    opacity: 0;
    transform: rotate(-13deg) scale(1.08);
  }
  to {
    opacity: 1;
    transform: rotate(-9deg) scale(1);
  }
}

@media (max-width: 1340px) {
  .print-furniture {
    display: none;
  }

  .site-sheet {
    width: calc(100% - 32px);
    margin: 16px auto;
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto 1fr minmax(210px, 270px) auto;
    gap: 10px;
    padding: 10px 14px;
  }

  .site-sheet main {
    padding-inline: 22px;
  }

  .lead-panel {
    grid-template-columns: minmax(0, 1fr) minmax(230px, 270px);
    padding: 34px;
  }
}

@media (max-width: 960px) {
  .site-sheet {
    width: calc(100% - 24px);
    margin: 12px auto;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 9px 14px;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .search-box {
    grid-column: 2;
    grid-row: 1;
  }

  .motion-toggle {
    grid-column: 3;
    grid-row: 1;
  }

  .front-grid,
  .content-shell,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .lead-panel {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
    border-right: 0;
    border-bottom: 1px solid var(--print-rule);
  }

  .featured-card {
    border-left: 0;
    border-top: 1px solid var(--print-rule);
  }

  .method-strip {
    grid-template-columns: 1fr;
  }

  .method-heading {
    border-right: 0;
    border-bottom: 1px solid var(--print-rule);
  }
}

@media (max-width: 720px) {
  body {
    background-attachment: scroll;
  }

  .site-sheet {
    width: calc(100% - 12px);
    margin: 6px auto;
  }

  .prepress-bar {
    grid-template-columns: 1fr auto;
    min-height: 46px;
    padding: 7px 13px;
  }

  .edition-name {
    gap: 8px;
  }

  .edition-name strong {
    font-size: 14px;
  }

  .edition-name small,
  .prepress-register {
    display: none;
  }

  .proof-meta {
    font-size: 0;
  }

  .site-header {
    position: relative;
    grid-template-columns: 1fr auto;
    padding: 10px 12px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .motion-toggle {
    grid-column: 2;
    grid-row: 1;
  }

  .search-box {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 3;
    border-left: 0;
  }

  .site-nav a:first-child {
    border-left: 1px solid var(--line-strong);
  }

  .site-sheet main {
    padding: 18px 10px 48px;
  }

  .front-grid {
    border-width: 1px;
  }

  .lead-panel {
    grid-template-columns: 1fr;
    gap: 27px;
    padding: 27px 20px;
  }

  .lead-panel h1 {
    font-size: 29px;
  }

  .proof-register {
    max-width: none;
  }

  .featured-card {
    padding: 27px 20px;
  }

  .method-strip {
    padding: 4px 0 0;
  }

  .method-heading {
    padding: 18px;
  }

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

  .method-list li:last-child {
    grid-column: 1 / -1;
  }

  .article-view,
  .static-view {
    padding: 25px 18px;
    border-width: 1px;
  }

  .article-card {
    padding: 21px 18px 21px 48px;
  }

  .decision-tool-head {
    padding: 19px;
  }

  .decision-tool[data-complete="true"]::after {
    right: 12px;
    bottom: 61px;
    width: 62px;
    height: 62px;
    font-size: 13px;
  }

  .decision-tool[data-complete="true"] .check-result {
    min-height: 78px;
    padding-right: 84px;
  }

  .source-box {
    padding: 19px !important;
  }

  .site-footer {
    padding: 22px 12px 28px;
  }

  .site-footer::before {
    left: 12px;
  }
}

@media (forced-colors: active), print {
  .page-atmosphere,
  .print-furniture,
  .prepress-register,
  .proof-meta::before {
    display: none !important;
  }

  body,
  .site-sheet {
    background: Canvas !important;
    box-shadow: none !important;
  }
}
