:root {
  --ink: #111318;
  --ink-soft: #4e5868;
  --muted: #707b8d;
  --line: #d7dee9;
  --line-strong: #aeb9ca;
  --paper: #ffffff;
  --paper-blue: #f5f8fc;
  --blue: #1261e8;
  --blue-soft: #e8f1ff;
  --red: #ff3b30;
  --red-soft: #fff0ee;
  --mint: #00a88f;
  --mint-soft: #e6f8f3;
  --header-h: 72px;
  --gutter: clamp(24px, 4.4vw, 72px);
  --site-nav-gap: clamp(18px, 2vw, 34px);
  --site-nav-font-size: 15px;
  --max: 1540px;
  --font-ui: Inter, "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img, svg { display: block; }
::selection { background: #cfe0ff; color: var(--ink); }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 8px;
  left: 8px;
  padding: 8px 12px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.page-gutter {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-h);
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  padding: 0 var(--gutter);
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.035em;
  text-decoration: none;
  white-space: nowrap;
}
.brand img {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  transform: scale(1.7);
  object-fit: contain;
}
.brand b { font-weight: 750; }
.site-nav {
  align-self: stretch;
  display: flex;
  align-items: stretch;
  gap: var(--site-nav-gap);
}
.site-nav a {
  position: relative;
  display: flex;
  align-items: center;
  color: #303642;
  font-size: var(--site-nav-font-size);
  font-weight: 600;
  text-decoration: none;
}
.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.site-nav a:hover,
.site-nav a.is-active { color: var(--blue); }
.site-nav a:hover::after,
.site-nav a.is-active::after { transform: scaleX(1); }

/* The template is a framework sub-page, so its primary navigation follows the
   same right-anchored header contract as the four top-level architecture pages. */
.page-template .site-header {
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: clamp(36px, 5vw, 86px);
}
.page-template .site-nav {
  justify-self: end;
  gap: var(--site-nav-gap);
  min-width: 0;
}
.header-state {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #555f70;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  white-space: nowrap;
}
.header-state span { width: 58px; height: 1px; background: var(--line-strong); }
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Philosophy */
.philosophy-hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(460px, .98fr);
  align-items: start;
  gap: clamp(36px, 6vw, 96px);
  padding-top: clamp(88px, 9vh, 124px);
  padding-bottom: 86px;
  overflow: hidden;
}
.philosophy-hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--gutter);
  width: 1px;
  background: #edf1f6;
}
.hero-copy { position: relative; z-index: 2; padding-left: 4px; }
.hero-copy h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(48px, 5.1vw, 84px);
  line-height: 1.08;
  letter-spacing: -.07em;
  font-weight: 900;
}
.hero-copy p {
  max-width: 700px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.8;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 0 28px;
  border: 1px solid var(--blue);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--blue); color: white; box-shadow: 0 12px 26px rgba(18,97,232,.18); }
.button-primary:hover { background: #0d51c9; }
.button-secondary { background: white; color: var(--blue); }
.button-secondary:hover { background: var(--blue-soft); }
.system-map { align-self: start; margin-top: -12px; color: #d6dfea; }
.system-map svg { width: 100%; height: auto; }
.map-grid { stroke-width: 1; }
.trace { fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.trace-blue { stroke: var(--blue); stroke-dasharray: 600; animation: trace-in 2.2s ease both; }
.trace-red { stroke: var(--red); stroke-dasharray: 700; animation: trace-in 2.6s .18s ease both; }
.trace-mint { stroke: var(--mint); stroke-dasharray: 240; animation: trace-in 1.8s .3s ease both; }
@keyframes trace-in { from { stroke-dashoffset: 700; } to { stroke-dashoffset: 0; } }
.map-node text { fill: #344052; font-family: var(--font-mono); font-size: 10px; letter-spacing: .17em; }
.map-node text:nth-of-type(even) { font-family: var(--font-ui); font-size: 13px; font-weight: 700; letter-spacing: 0; }
.map-node .blue { fill: var(--blue); }
.map-node .red { fill: var(--red); }
.map-node .mint { fill: var(--mint); }
.hero-footnote {
  position: absolute;
  right: var(--gutter);
  bottom: 38px;
  left: var(--gutter);
  display: flex;
  align-items: center;
  gap: 28px;
  color: #667286;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .23em;
}
.hero-footnote i { width: min(320px, 34vw); height: 1px; background: var(--line-strong); }

.principles,
.beliefs,
.template-assessment,
.module-system,
.case-list { position: relative; border-top: 1px solid var(--line); }
.principles { padding-top: 84px; padding-bottom: 96px; }
.section-index {
  position: absolute;
  top: 84px;
  left: var(--gutter);
  color: #657188;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
}
.section-intro {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(340px, .8fr);
  gap: 72px;
  margin-left: 68px;
  padding-left: 24px;
  border-left: 1px solid var(--line-strong);
}
.section-intro h2,
.beliefs-copy h2,
.standards-copy h2 {
  margin: 0;
  font-size: clamp(32px, 3.2vw, 50px);
  line-height: 1.18;
  letter-spacing: -.055em;
}
.section-intro p,
.beliefs-copy p,
.standards-copy p {
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.85;
}
.principle-track {
  position: relative;
  min-height: 410px;
  margin: 52px 0 0 68px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: clamp(36px, 7vw, 118px);
}
.principle { position: relative; z-index: 2; max-width: 310px; padding: 18px 0 0 24px; border-left: 1px dashed var(--line-strong); }
.principle-two { margin-top: 86px; }
.principle-three { margin-top: 146px; }
.principle b { display: block; margin-bottom: 8px; color: var(--blue); font-family: var(--font-mono); font-size: 14px; }
.principle-two b { color: var(--red); }
.principle-three b { color: var(--mint); }
.principle h3 { display: inline-block; margin: 0; padding-bottom: 8px; border-bottom: 2px solid var(--blue); font-size: 25px; letter-spacing: -.03em; }
.principle-two h3 { border-color: var(--red); }
.principle-three h3 { border-color: var(--mint); }
.principle p { margin: 15px 0 0; color: var(--ink-soft); font-size: 15px; line-height: 1.8; }
.principle-line { position: absolute; z-index: 1; right: 0; bottom: 4px; left: 0; width: 100%; height: 210px; overflow: visible; }
.principle-line path { fill: none; stroke: var(--blue); stroke-width: 1.5; }
.principle-line circle { fill: white; stroke: var(--blue); stroke-width: 4; }
.principle-line circle:nth-of-type(2) { stroke: var(--red); }
.principle-line circle:nth-of-type(3) { stroke: var(--mint); }
.manifesto {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  margin: 34px 0 0 68px;
  padding: 25px 0 25px 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 4px solid var(--ink);
  font-size: clamp(21px, 2vw, 30px);
  font-style: normal;
  font-weight: 700;
  letter-spacing: -.02em;
}
.manifesto small { max-width: 180px; color: #6a7688; font-family: var(--font-mono); font-size: 9px; font-weight: 500; line-height: 1.5; letter-spacing: .22em; }

.beliefs { padding-top: 88px; padding-bottom: 110px; background: linear-gradient(180deg, #f8faff 0, white 36%); }
.beliefs .section-index { top: 90px; }
.beliefs-copy { margin-left: 68px; display: grid; grid-template-columns: 1fr 1fr; gap: 84px; padding-left: 24px; border-left: 1px solid var(--line-strong); }
.belief-list { margin: 66px 0 0 92px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.belief-list li { display: grid; grid-template-columns: 150px 240px 1fr; align-items: baseline; gap: 26px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.belief-list span { color: var(--blue); font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; }
.belief-list li:nth-child(2) span { color: var(--red); }
.belief-list li:nth-child(3) span { color: var(--mint); }
.belief-list strong { font-size: 21px; }
.belief-list p { margin: 0; color: var(--ink-soft); }

/* Template methodology */
.template-hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(650px, .95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 72px;
  padding-top: 74px;
  padding-bottom: 84px;
}
.template-hero-copy h1 { margin: 0; font-size: clamp(46px, 4.2vw, 68px); line-height: 1.1; letter-spacing: -.065em; }
.template-hero-copy > p { max-width: 640px; margin: 28px 0 0; color: var(--ink-soft); font-size: 19px; line-height: 1.8; }
.template-actions { display: flex; flex-wrap: wrap; gap: 34px; margin-top: 38px; }
.template-actions a { display: inline-flex; gap: 24px; padding-bottom: 4px; border-bottom: 1px solid var(--blue); color: var(--blue); font-size: 14px; font-weight: 700; text-decoration: none; }
.template-stack { position: relative; height: 450px; perspective: 1200px; }
.sheet { position: absolute; top: 72px; width: 180px; height: 268px; padding: 19px 17px; border: 1.4px solid var(--blue); background: rgba(255,255,255,.94); color: var(--blue); transform: skewY(-7deg); box-shadow: 0 14px 28px rgba(34,82,153,.06); }
.sheet::before { content: ""; position: absolute; inset: -19px 14px 19px -14px; z-index: -1; border: 1px dashed #67a0ff; }
.sheet b { display: block; font: 11px var(--font-mono); }
.sheet span { display: block; margin-top: 4px; color: var(--ink); font-size: 14px; font-weight: 750; }
.sheet i { display: block; width: 80%; height: 1px; margin-top: 24px; background: #8eb6f4; }
.sheet i + i { width: 55%; margin-top: 10px; }
.sheet i + i + i { width: 70%; }
.sheet-one { left: 1%; }
.sheet-two { left: 17%; top: 88px; }
.sheet-three { left: 33%; top: 104px; }
.sheet-four { left: 49%; top: 120px; }
.sheet-five { left: 65%; top: 136px; }
.sheet-six { left: 81%; top: 152px; }

@media (min-width: 1021px) and (max-width: 1480px) {
  .sheet-six { right: -40px; left: auto; }
}
.mini-blocks { display: block; width: 100px; height: 90px; margin: 30px auto; border: 1px solid #8eb6f4; background: linear-gradient(90deg, transparent 47%, #8eb6f4 48%, #8eb6f4 49%, transparent 50%), linear-gradient(transparent 47%, #8eb6f4 48%, #8eb6f4 49%, transparent 50%); }
.mini-flow { display: block; width: 110px; height: 2px; margin: 70px auto; background: var(--blue); box-shadow: -25px -22px 0 -1px var(--blue), 22px 20px 0 -1px var(--blue); }
.mini-checks { display: block; margin: 24px; color: var(--blue); font: 18px/2 var(--font-mono); }
.mini-route { display: block; width: 110px; height: 70px; margin: 44px auto; border-bottom: 2px solid var(--blue); border-right: 2px solid var(--blue); transform: skewY(-25deg); }
.stack-caption { position: absolute; right: 0; bottom: 22px; left: 6%; display: flex; justify-content: space-between; color: #5d78a8; font: 9px var(--font-mono); letter-spacing: .12em; }
.stack-caption i { font-style: normal; }

.template-assessment { padding-top: 76px; padding-bottom: 86px; }
.ruled-heading { display: flex; align-items: center; gap: 16px; }
.ruled-heading > span { width: 7px; height: 42px; background: var(--red); }
.ruled-heading h2 { margin: 0; font-size: clamp(30px, 2.8vw, 43px); letter-spacing: -.05em; white-space: nowrap; }
.ruled-heading > i { flex: 1; height: 1px; background: var(--blue); }
.ruled-heading small { color: #697487; font-size: 12px; white-space: nowrap; }
.assessment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; margin: 50px 7px 0; }
.assessment-column + .assessment-column { padding-left: 40px; border-left: 1px solid var(--line); }
.assessment-column h3 { margin: 0 0 22px; padding-left: 14px; border-left: 5px solid var(--blue); font-size: 23px; }
.assessment-column.gap h3 { border-color: var(--red); }
.assessment-column ul { margin: 0; padding: 0; list-style: none; }
.assessment-column li { position: relative; display: grid; grid-template-columns: 150px 1fr; gap: 18px; min-height: 50px; align-items: center; padding: 8px 0 8px 44px; border-bottom: 1px solid var(--line); }
.assessment-column li::before { content: "✓"; position: absolute; left: 5px; color: var(--blue); font-size: 25px; font-weight: 800; }
.assessment-column.gap li::before { content: "+"; color: var(--red); font-family: var(--font-mono); font-size: 26px; font-weight: 500; }
.assessment-column li b { font-size: 15px; }
.assessment-column li span { color: var(--muted); font-size: 12px; }
.assessment-conclusion { margin: 36px 7px 0; padding: 18px 22px; border-left: 3px solid var(--mint); background: var(--mint-soft); color: #28534d; }

.module-system { padding-top: 76px; padding-bottom: 92px; }
.module-rail { position: relative; display: grid; grid-template-columns: repeat(13, minmax(80px, 1fr)); margin: 50px 0 0; padding: 0; list-style: none; }
.module-rail::before { content: ""; position: absolute; top: 73px; right: 0; left: 0; height: 2px; background: var(--blue); }
.module-rail::after { content: ""; position: absolute; top: 68px; right: -1px; border: 6px solid transparent; border-left-color: var(--blue); }
.module-rail li { position: relative; min-height: 155px; padding: 0 9px; border-right: 1px solid #bed2f5; }
.module-rail b { display: block; color: var(--blue); font: 10px var(--font-mono); }
.module-rail strong { display: block; margin-top: 8px; font-size: 16px; }
.module-rail strong::after { content: ""; position: absolute; z-index: 2; top: 68px; left: calc(50% - 5px); width: 10px; height: 10px; border: 2px solid var(--blue); border-radius: 50%; background: white; }
.module-rail span { display: block; margin-top: 44px; color: #697488; font-size: 10px; line-height: 1.6; }
.evidence-caption { display: grid; grid-template-columns: 1fr auto auto 1fr; align-items: center; gap: 14px; color: var(--blue); font: 9px var(--font-mono); letter-spacing: .13em; }
.evidence-caption span { height: 1px; background: repeating-linear-gradient(90deg, var(--blue) 0 4px, transparent 4px 8px); }
.evidence-caption i { font-style: normal; font-size: 15px; }

.standards { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; padding-top: 88px; padding-bottom: 96px; border-top: 1px solid var(--line); background: linear-gradient(180deg, #f8faff 0%, #fff 100%); }
.standards-copy p { margin-top: 24px; }
.standards-list { border-top: 1px solid var(--line-strong); }
.standards-list a { display: grid; grid-template-columns: minmax(190px, .7fr) 1fr auto; gap: 24px; align-items: center; padding: 22px 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.standards-list a:hover b { color: var(--blue); }
.standards-list b { font-size: 14px; }
.standards-list span { color: var(--muted); font-size: 12px; }
.standards-list i { color: var(--blue); font-style: normal; }

.case-list { padding-top: 72px; padding-bottom: 100px; }
.case-row { display: grid; grid-template-columns: 54px 1.15fr .9fr 1.15fr auto; align-items: center; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.case-row > strong { color: var(--blue); font: 28px var(--font-mono); }
.case-row h3 { margin: 0; font-size: 18px; }
.case-row p { margin: 4px 0 0; color: var(--muted); font-size: 12px; }
.case-row dl { margin: 0; }
.case-row dt { font-size: 10px; font-weight: 750; }
.case-row dd { margin: 4px 0 0; color: var(--muted); font-size: 11px; }
.case-row a { color: var(--blue); font-size: 13px; font-weight: 700; text-decoration: none; white-space: nowrap; border-bottom: 1px solid var(--blue); }

.site-footer { min-height: 96px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 32px; border-top: 1px solid var(--line); }
.site-footer .brand { font-size: 14px; }
.site-footer .brand img { width: 22px; height: 22px; flex-basis: 22px; }
.site-footer p { margin: 0; color: var(--muted); font-size: 11px; }
.site-footer > a:last-child { justify-self: end; color: var(--blue); font-size: 12px; font-weight: 700; text-decoration: none; }

@media (max-width: 1280px) {
  :root {
    --site-nav-gap: 20px;
    --site-nav-font-size: 13px;
  }
}

@media (max-width: 1260px) {
  .site-header { grid-template-columns: 1fr auto 1fr; }
  .header-state { display: none; }
  .philosophy-hero { grid-template-columns: 1fr .8fr; }
  .hero-copy h1 { font-size: clamp(48px, 5.8vw, 70px); }
  .module-rail { overflow-x: auto; grid-template-columns: repeat(13, 92px); padding-bottom: 12px; }
  .module-rail::after { right: auto; left: 1190px; }
}

@media (min-width: 1021px) and (max-width: 1200px) {
  .template-hero { grid-template-columns: 1fr; }
  .template-stack { width: min(780px, 100%); justify-self: center; }
}

@media (max-width: 1020px) {
  .site-header { padding-inline: 24px; }
  .site-nav { gap: var(--site-nav-gap); }
  .philosophy-hero { grid-template-columns: 1fr; min-height: auto; padding-top: 84px; }
  .system-map { max-width: 700px; justify-self: center; }
  .section-intro, .beliefs-copy { grid-template-columns: 1fr; gap: 24px; }
  .principle-track { gap: 36px; }
  .belief-list li { grid-template-columns: 110px 190px 1fr; }
  .template-hero { grid-template-columns: 1fr; }
  .template-stack { width: min(780px, 100%); justify-self: center; }
  .assessment-grid { gap: 36px; }
  .standards { grid-template-columns: 1fr; gap: 46px; }
  .case-row { grid-template-columns: 42px 1fr 1fr; }
  .case-row dl:nth-of-type(2) { grid-column: 2; }
  .case-row a { grid-column: 3; grid-row: 2; justify-self: end; }

}

@media (max-width: 720px) {
  :root { --header-h: 64px; --gutter: 20px; }
  .site-header { height: var(--header-h); grid-template-columns: 1fr auto; padding-inline: 18px; }
  .brand { font-size: 17px; }
  .brand img { width: 28px; height: 28px; flex-basis: 28px; }
  .site-nav { gap: 18px; }
  .site-nav a { font-size: 13px; }
  .page-home .site-header,
  .page-template .site-header { grid-template-columns: 1fr auto; }
  .page-home .site-nav a,
  .page-template .site-nav a { display: none; }
  .page-home .site-nav a.is-active,
  .page-template .site-nav a.is-active { display: flex; }
  .philosophy-hero { display: block; padding-top: 68px; padding-bottom: 90px; }
  .hero-copy h1 { font-size: 44px; line-height: 1.13; }
  .hero-copy p { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .system-map { margin-top: 46px; }
  .hero-footnote { right: 20px; left: 20px; }
  .principles, .beliefs { padding-top: 62px; padding-bottom: 72px; }
  .section-index { top: 64px; }
  .section-intro, .beliefs-copy { margin-left: 44px; padding-left: 18px; }
  .section-intro h2, .beliefs-copy h2, .standards-copy h2 { font-size: 34px; }
  .principle-track { display: block; min-height: 0; margin-left: 44px; }
  .principle { max-width: none; margin: 0 0 44px; }
  .principle-line { display: none; }
  .manifesto { display: block; margin-left: 44px; font-size: 22px; }
  .manifesto small { display: block; margin-top: 16px; }
  .belief-list { margin: 44px 0 0 44px; }
  .belief-list li { grid-template-columns: 78px 1fr; gap: 10px; }
  .belief-list p { grid-column: 2; }
  .template-hero { display: block; min-height: auto; padding-top: 70px; padding-bottom: 72px; }
  .template-hero-copy h1 { font-size: 42px; }
  .template-hero-copy > p { font-size: 16px; }
  .template-actions { gap: 18px; }
  .template-stack { height: 350px; margin-top: 46px; overflow: hidden; }
  .sheet { width: 130px; height: 205px; padding: 12px; }
  .sheet span { font-size: 11px; }
  .sheet-one { left: 0; }
  .sheet-two { left: 18%; }
  .sheet-three { left: 36%; }
  .sheet-four { left: 54%; }
  .sheet-five { left: 72%; }
  .sheet-six { left: 90%; }
  .stack-caption { display: none; }
  .template-assessment, .module-system, .case-list { padding-top: 58px; padding-bottom: 68px; }
  .ruled-heading { flex-wrap: wrap; }
  .ruled-heading h2 { font-size: 30px; white-space: normal; }
  .ruled-heading small { width: 100%; padding-left: 23px; }
  .assessment-grid { grid-template-columns: 1fr; margin-top: 34px; }
  .assessment-column + .assessment-column { padding: 0; border-left: 0; }
  .assessment-column li { grid-template-columns: 126px 1fr; padding-left: 36px; }
  .standards { padding-top: 68px; padding-bottom: 70px; }
  .standards-list a { grid-template-columns: 1fr auto; gap: 9px; }
  .standards-list span { grid-column: 1; }
  .standards-list i { grid-column: 2; grid-row: 1 / span 2; }
  .case-row { grid-template-columns: 36px 1fr; gap: 14px; }
  .case-row dl, .case-row dl:nth-of-type(2), .case-row a { grid-column: 2; grid-row: auto; justify-self: start; }
  .site-footer { grid-template-columns: 1fr auto; }
  .site-footer p { display: none; }
}
