:root {
  color-scheme: light;
  --ink: #172033;
  --ink-soft: #475467;
  --ink-faint: #667085;
  --canvas: #f4f6f8;
  --surface: #ffffff;
  --surface-soft: #f9fafb;
  --line: #dfe3e8;
  --line-strong: #c9d0d9;
  --accent: #1d4ed8;
  --accent-dark: #173fae;
  --accent-soft: #eaf0ff;
  --verified: #087a55;
  --verified-soft: #e8f7f1;
  --warning: #a15c00;
  --danger: #b42318;
  --shadow-sm: 0 1px 2px rgb(16 24 40 / 0.05);
  --shadow-lg: 0 24px 80px rgb(16 24 40 / 0.18);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --focus: 0 0 0 3px rgb(29 78 216 / 0.22);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

body.dialog-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
}

:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgb(223 227 232 / 0.86);
  background: rgb(255 255 255 / 0.94);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(1240px, calc(100% - 40px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  background: var(--ink);
  color: white;
  font-family: "Songti SC", SimSun, serif;
  font-size: 22px;
  line-height: 1;
}

.brand > span:last-child {
  display: grid;
  gap: 1px;
}

.brand strong {
  font-size: 17px;
  letter-spacing: 0.04em;
}

.brand small {
  color: var(--ink-faint);
  font-size: 11px;
}

.primary-nav {
  display: flex;
  align-items: stretch;
  align-self: stretch;
  gap: 28px;
}

.primary-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--ink);
}

.primary-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--accent);
}

.header-actions,
.process-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.button {
  min-height: 40px;
  padding: 9px 15px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.2;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:active {
  transform: translateY(1px);
}

.button:disabled,
.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.52;
  transform: none;
}

.button-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: white;
}

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

.button-quiet {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink-soft);
}

.button-quiet:hover {
  border-color: var(--line-strong);
  background: var(--surface-soft);
  color: var(--ink);
}

.button-inverse {
  border-color: rgb(255 255 255 / 0.28);
  background: rgb(255 255 255 / 0.08);
  color: white;
}

.button-inverse:hover {
  background: rgb(255 255 255 / 0.14);
}

.hero {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(340px, 0.75fr);
  align-items: center;
  gap: 64px;
}

.product-note,
.section-context {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.product-note {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-note span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--verified);
  box-shadow: 0 0 0 4px var(--verified-soft);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.038em;
  text-wrap: balance;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 30px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.8;
  text-wrap: pretty;
}

.hero-search {
  max-width: 680px;
  min-height: 58px;
  padding: 7px 7px 7px 17px;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  background: var(--surface);
  box-shadow: 0 8px 24px rgb(16 24 40 / 0.08), var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-search:focus-within {
  border-color: var(--accent);
  box-shadow: var(--focus), 0 8px 24px rgb(16 24 40 / 0.08);
}

.hero-search svg,
.inline-search svg {
  width: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--ink-faint);
  stroke-linecap: round;
  stroke-width: 1.8;
}

.hero-search input,
.inline-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.hero-search input {
  height: 42px;
  font-size: 15px;
}

.hero-search input::placeholder,
.inline-search input::placeholder {
  color: #667085;
  opacity: 1;
}

.hero-links {
  max-width: 680px;
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--ink-faint);
  font-size: 12px;
}

.hero-links a {
  color: var(--accent);
  font-weight: 650;
}

.method-brief {
  position: relative;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 16px 46px rgb(16 24 40 / 0.08);
}

.method-brief::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 28px;
  width: 76px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: var(--accent);
}

.brief-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.brief-heading p {
  margin: 0 0 5px;
  color: var(--ink-faint);
  font-size: 12px;
}

.brief-heading h2 {
  margin: 0;
  font-size: 19px;
}

.seal {
  width: 44px;
  height: 44px;
  border: 1px solid #cf4654;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #a92f3d;
  font-family: "Songti SC", SimSun, serif;
  font-size: 14px;
  transform: rotate(-7deg);
}

.brief-steps {
  padding: 0;
  margin: 8px 0 0;
  list-style: none;
}

.brief-steps li {
  position: relative;
  min-height: 68px;
  padding: 14px 0 13px 42px;
}

.brief-steps li:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 40px;
  bottom: -4px;
  left: 13px;
  width: 1px;
  background: var(--line);
}

.brief-steps li > span {
  position: absolute;
  top: 14px;
  left: 0;
  width: 27px;
  height: 27px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--surface);
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 10px;
  font-weight: 750;
}

.brief-steps strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

.brief-steps p {
  margin: 0;
  color: var(--ink-faint);
  font-size: 12px;
  line-height: 1.55;
}

.catalog-section {
  padding: 72px max(20px, calc((100% - 1240px) / 2));
  border-top: 1px solid var(--line);
  background: var(--surface);
}

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

.section-heading h2,
.method-intro h2,
.process-section h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.25;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.section-heading > div:first-child > p:last-child,
.method-intro > p:not(.section-context),
.process-section > div:first-child > p:last-child {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

.demo-flag {
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  background: #f2f4f7;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
}

.demo-flag span {
  width: 16px;
  height: 16px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: serif;
  font-size: 11px;
  font-weight: 700;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  align-items: start;
  gap: 34px;
}

.filters {
  position: sticky;
  top: 100px;
}

.filter-heading,
.results-toolbar,
.dialog-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.filter-heading h3 {
  margin: 0;
  font-size: 15px;
}

.text-button {
  padding: 4px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  font-size: 12px;
  font-weight: 650;
}

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

.filter-group {
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}

.filter-group > p,
.filter-group > label {
  display: block;
  margin: 0 0 12px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.filter-options button {
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 12px;
  line-height: 1.2;
}

.filter-options button:hover {
  border-color: var(--line-strong);
  color: var(--ink);
}

.filter-options button[aria-pressed="true"] {
  border-color: #c9d7ff;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 700;
}

.filter-group select {
  width: 100%;
  height: 40px;
  padding: 0 34px 0 11px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
  color: var(--ink);
  font-size: 12px;
}

.filter-note {
  margin-top: 23px;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: var(--verified-soft);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #155b45;
}

.filter-note svg {
  width: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.filter-note p {
  margin: 0;
  font-size: 11px;
  line-height: 1.55;
}

.filter-note strong {
  font-size: 12px;
}

.results-toolbar {
  min-height: 44px;
  margin-bottom: 10px;
}

.results-toolbar > div:first-child {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.results-toolbar strong {
  font-size: 14px;
}

.results-toolbar span {
  color: var(--ink-faint);
  font-size: 11px;
}

.inline-search {
  width: 220px;
  height: 38px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.inline-search:focus-within {
  border-color: var(--accent);
  box-shadow: var(--focus);
}

.inline-search svg {
  width: 16px;
}

.inline-search input {
  font-size: 12px;
}

.results-list {
  border-top: 1px solid var(--line-strong);
}

.work-row {
  padding: 24px 4px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 160px;
  align-items: start;
  gap: 22px;
  transition: background-color 180ms ease;
}

.work-row:hover {
  background: #fbfcff;
}

.grade-block {
  width: 58px;
  height: 64px;
  border: 1px solid #cdd8f5;
  border-radius: 11px;
  background: var(--accent-soft);
  display: grid;
  place-content: center;
  text-align: center;
}

.grade-block strong {
  color: var(--accent-dark);
  font-size: 25px;
  line-height: 1;
}

.grade-block span {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.work-title-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.work-title-line h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
}

.verified-badge {
  padding: 4px 7px;
  border-radius: 5px;
  background: var(--verified-soft);
  color: var(--verified);
  font-size: 10px;
  font-weight: 700;
}

.verified-badge i {
  font-style: normal;
}

.work-summary {
  max-width: 690px;
  margin: 9px 0 12px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
  text-wrap: pretty;
}

.work-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  color: var(--ink-faint);
  font-size: 11px;
}

.work-meta span:not(:last-child)::after {
  content: "·";
  padding: 0 8px;
  color: var(--line-strong);
}

.work-evidence {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 8px;
}

.work-evidence div {
  display: grid;
  gap: 3px;
}

.work-evidence div span {
  color: var(--ink-faint);
  font-size: 10px;
}

.work-evidence div strong {
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}

.evidence-button {
  grid-column: 1 / -1;
  padding: 8px 0;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
}

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

.evidence-button span {
  display: inline-block;
  transition: transform 180ms ease;
}

.evidence-button:hover span {
  transform: translateX(3px);
}

.empty-state {
  min-height: 340px;
  padding: 60px 24px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
}

.empty-state > span {
  color: var(--line-strong);
  font-size: 52px;
  line-height: 1;
}

.empty-state h3 {
  margin: 18px 0 6px;
  font-size: 17px;
}

.empty-state p {
  margin: 0 0 18px;
  color: var(--ink-faint);
  font-size: 13px;
}

.method-section {
  padding: 82px max(20px, calc((100% - 1240px) / 2));
  background: var(--ink);
  color: white;
}

.method-intro {
  max-width: 780px;
}

.method-intro .section-context {
  color: #91aefb;
}

.method-intro > p:not(.section-context) {
  max-width: 720px;
  margin: 18px 0 26px;
  color: #cbd2df;
}

.evaluation-frameworks {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.framework-column:first-child {
  padding-right: 38px;
  border-right: 1px solid rgb(255 255 255 / 0.16);
}

.framework-column:last-child {
  padding-left: 38px;
}

.framework-heading {
  padding-bottom: 18px;
  border-top: 2px solid #7da2ff;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.framework-heading div > span {
  display: block;
  margin-top: 15px;
  color: #91aefb;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.framework-heading h3 {
  margin: 6px 0 0;
  font-size: 21px;
  letter-spacing: -0.02em;
}

.framework-heading > strong {
  color: #dce5ff;
  font-size: 12px;
}

.framework-purpose {
  min-height: 42px;
  margin: 0 0 8px;
  color: #aeb7c7;
  font-size: 12px;
  line-height: 1.65;
}

.dimension-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.dimension-list li {
  padding: 15px 0;
  border-top: 1px solid rgb(255 255 255 / 0.13);
  display: grid;
  grid-template-columns: 34px minmax(150px, 0.7fr) minmax(220px, 1fr);
  align-items: baseline;
  gap: 12px;
}

.dimension-list li:last-child {
  border-bottom: 1px solid rgb(255 255 255 / 0.13);
}

.dimension-list span {
  color: #91aefb;
  font-size: 10px;
  font-weight: 700;
}

.dimension-list strong {
  font-size: 14px;
}

.dimension-list p {
  margin: 0;
  color: #aeb7c7;
  font-size: 12px;
}

.shared-gate {
  margin-top: 32px;
  padding: 18px 0 0;
  border-top: 1px solid rgb(255 255 255 / 0.16);
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 22px;
}

.shared-gate strong {
  color: #dce5ff;
  font-size: 12px;
}

.shared-gate p {
  margin: 0;
  color: #aeb7c7;
  font-size: 12px;
  line-height: 1.7;
}

.process-section {
  padding: 80px max(20px, calc((100% - 1240px) / 2));
  background: var(--canvas);
}

.process-section > div:first-child {
  max-width: 720px;
}

.process-track {
  padding: 0;
  margin: 42px 0 32px;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.process-track li {
  position: relative;
  display: grid;
  justify-items: start;
  gap: 6px;
}

.process-track li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 12px;
  left: 44px;
  height: 1px;
  background: var(--line-strong);
}

.process-track span {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  border: 1px solid #c9d7ff;
  border-radius: 50%;
  background: var(--accent-soft);
  display: grid;
  place-items: center;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 750;
}

.process-track strong {
  margin-top: 5px;
  font-size: 13px;
}

.process-track small {
  color: var(--ink-faint);
  font-size: 11px;
}

.membership-note {
  max-width: 760px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.membership-note > span {
  flex: 0 0 auto;
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.membership-note p {
  margin: 0;
  color: var(--ink-faint);
  font-size: 12px;
  line-height: 1.7;
}

.membership-note strong {
  color: var(--ink-soft);
}

footer {
  padding: 34px max(20px, calc((100% - 1240px) / 2));
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  align-items: center;
  gap: 44px;
}

.footer-brand .brand-mark {
  width: 34px;
  height: 34px;
  font-size: 19px;
}

.footer-inner > p {
  max-width: 620px;
  margin: 0;
  color: var(--ink-faint);
  font-size: 12px;
  line-height: 1.65;
}

.footer-inner nav {
  display: flex;
  gap: 18px;
  color: var(--ink-soft);
  font-size: 12px;
}

.footer-inner nav a:hover {
  color: var(--accent);
}

.work-dialog {
  width: min(820px, calc(100% - 32px));
  max-height: min(820px, calc(100vh - 40px));
  padding: 0;
  border: 0;
  border-radius: var(--radius-lg);
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-lg);
  overflow: auto;
}

.work-dialog::backdrop {
  background: rgb(15 23 42 / 0.58);
  backdrop-filter: blur(4px);
}

.dialog-shell {
  position: relative;
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 1;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgb(255 255 255 / 0.22);
  border-radius: 50%;
  background: rgb(255 255 255 / 0.08);
  color: white;
  cursor: pointer;
  font-size: 23px;
  line-height: 1;
}

.dialog-close:hover {
  background: rgb(255 255 255 / 0.16);
}

.dialog-header {
  padding: 36px 64px 32px 34px;
  background: var(--ink);
  color: white;
  display: flex;
  align-items: center;
  gap: 22px;
}

.dialog-grade {
  width: 72px;
  height: 78px;
  flex: 0 0 auto;
  border: 1px solid rgb(255 255 255 / 0.24);
  border-radius: 13px;
  background: rgb(255 255 255 / 0.08);
  display: grid;
  place-content: center;
  text-align: center;
}

.dialog-grade strong {
  color: #b7c9ff;
  font-size: 31px;
  line-height: 1;
}

.dialog-grade span {
  margin-top: 6px;
  color: #d9dfeb;
  font-size: 12px;
}

.dialog-poster {
  width: 66px;
  height: 88px;
  flex: 0 0 auto;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgb(255 255 255 / 0.24);
  background: #0f172a;
}

.dialog-poster-fallback {
  display: grid;
  place-content: center;
  color: #fff;
  font-size: 26px;
}

.dialog-poster-fallback.film {
  background: linear-gradient(150deg, #0f172a, #1d4ed8);
}

.dialog-poster-fallback.story {
  background: linear-gradient(150deg, #1d4ed8, #4f46e5);
}

.dialog-share {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 16px 34px;
  border-top: 1px solid var(--line);
}

.dialog-share .share-label {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
}

.dialog-share .share-copy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.dialog-share .share-copy:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.dialog-share .share-copy.copied {
  border-color: var(--verified);
  color: var(--verified);
}

.dialog-share .share-url {
  flex: 1;
  min-width: 160px;
  color: var(--ink-faint);
  font-size: 11px;
  word-break: break-all;
}

.dialog-status {
  margin: 0 0 6px;
  color: #86e0be;
  font-size: 11px;
  font-weight: 700;
}

.dialog-header h2 {
  margin: 0;
  font-size: 26px;
}

.dialog-header div:last-child > p:last-child {
  margin: 7px 0 0;
  color: #b8c0ce;
  font-size: 12px;
}

.dialog-body {
  padding: 30px 34px 26px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: 34px;
}

.dialog-body h3 {
  margin: 0;
  font-size: 15px;
}

.dialog-summary > p {
  margin: 14px 0 22px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.75;
}

.dialog-summary dl {
  margin: 0;
}

.dialog-summary dl div {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.dialog-summary dt {
  color: var(--ink-faint);
  font-size: 11px;
}

.dialog-summary dd {
  margin: 0;
  font-size: 11px;
  font-weight: 650;
  text-align: right;
}

.dialog-section-title span {
  color: var(--ink-faint);
  font-size: 10px;
}

.dialog-scores ul {
  padding: 0;
  margin: 12px 0 0;
  list-style: none;
}

.dialog-scores li {
  margin-bottom: 12px;
}

.dialog-scores li > div:first-child {
  margin-bottom: 5px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
}

.dialog-scores li strong {
  font-variant-numeric: tabular-nums;
}

.score-track {
  height: 5px;
  border-radius: 5px;
  background: #e9edf2;
  overflow: hidden;
}

.score-track span {
  display: block;
  width: var(--score);
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
}

.dialog-footnote {
  margin: 0;
  padding: 14px 34px;
  border-top: 1px solid var(--line);
  background: var(--surface-soft);
  color: var(--ink-faint);
  font-size: 10px;
}

@media (max-width: 1024px) {
  .primary-nav {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 38px;
  }

  .catalog-layout {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 24px;
  }

  .work-row {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .work-evidence {
    grid-column: 2;
    grid-template-columns: auto auto 1fr;
    align-items: end;
  }

  .evidence-button {
    grid-column: auto;
    text-align: right;
  }

  .method-section {
    gap: 48px;
  }

  .dimension-list li {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .dimension-list p {
    grid-column: 2;
  }

  .footer-inner {
    grid-template-columns: auto 1fr;
  }

  .footer-inner nav {
    grid-column: 1 / -1;
  }
}

@media (max-width: 780px) {
  .header-inner,
  .hero {
    width: min(100% - 28px, 680px);
  }

  .desktop-action {
    display: none;
  }

  .hero {
    padding: 52px 0 48px;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 56px);
  }

  .hero-copy {
    font-size: 15px;
  }

  .catalog-section,
  .method-section,
  .process-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .filters {
    position: static;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-soft);
  }

  .filter-group {
    padding: 18px 0;
  }

  .filter-note {
    display: none;
  }

  .evaluation-frameworks {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .framework-column:first-child {
    padding-right: 0;
    padding-bottom: 42px;
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / 0.16);
  }

  .framework-column:last-child {
    padding-left: 0;
  }

  .dimension-list li {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .dimension-list p {
    grid-column: 2;
  }

  .shared-gate {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .process-track {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-track li {
    min-height: 68px;
    padding-left: 48px;
    align-content: start;
  }

  .process-track li:not(:last-child)::after {
    top: 32px;
    bottom: 0;
    left: 16px;
    width: 1px;
    height: auto;
  }

  .process-track span {
    position: absolute;
    left: 0;
  }

  .process-track strong {
    margin-top: 1px;
  }

  .dialog-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header .brand small {
    display: none;
  }

  .header-inner {
    height: 64px;
    gap: 8px;
  }

  .header-actions .button {
    min-height: 38px;
    padding: 8px 11px;
  }

  .hero h1 {
    letter-spacing: -0.03em;
  }

  .hero-search {
    padding: 9px 10px;
    flex-wrap: wrap;
  }

  .hero-search input {
    width: calc(100% - 32px);
  }

  .hero-search .button {
    width: 100%;
  }

  .hero-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .section-heading h2,
  .method-intro h2,
  .process-section h2 {
    font-size: 27px;
  }

  .results-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .inline-search {
    width: 100%;
  }

  .work-row {
    padding: 21px 0;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
  }

  .grade-block {
    width: 50px;
    height: 58px;
  }

  .work-summary {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .work-evidence {
    grid-column: 1 / -1;
    grid-template-columns: auto auto 1fr;
    padding-left: 64px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-inner nav {
    grid-column: auto;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .dialog-header {
    padding: 62px 22px 24px;
    align-items: flex-start;
  }

  .dialog-grade {
    width: 58px;
    height: 66px;
  }

  .dialog-header h2 {
    font-size: 21px;
  }

  .dialog-body {
    padding: 24px 22px;
  }

  .dialog-footnote {
    padding-right: 22px;
    padding-left: 22px;
  }
}

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

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