:root {
  color-scheme: light;
  --ink: #273147;
  --muted: #68717d;
  --paper: #fffdf8;
  --desk: #efebe3;
  --line: #c8c7c2;
  --navy: #27324a;
  --orange: #b75c48;
  --mint: #5e8e83;
  --yellow: #d8a53e;
  --shadow: 0 15px 35px rgba(39, 49, 71, 0.12);
  font-family: Inter, "Yu Gothic UI", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: var(--ink);
  background: var(--desk);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-width: 320px;
  background: var(--desk);
}
a {
  color: inherit;
}
button,
input,
select {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  min-height: 64px;
  padding: 10px max(20px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(33, 48, 68, 0.17);
  background: rgba(239, 235, 227, 0.96);
  backdrop-filter: blur(12px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.brand img {
  border-radius: 9px;
  box-shadow: 0 3px 10px rgba(33, 48, 68, 0.16);
}
.site-header nav {
  display: flex;
  gap: 6px;
}
.site-header nav a {
  padding: 8px 10px;
  border-radius: 7px;
  text-decoration: none;
  color: #4f5b68;
  font-size: 14px;
  font-weight: 750;
}
.site-header nav a:hover {
  background: #fffefa;
  color: var(--navy);
}

main {
  min-height: calc(100vh - 190px);
}
.intro-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 62px 20px 54px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
  align-items: center;
  gap: 72px;
}
.eyebrow {
  margin: 0 0 13px;
  color: var(--orange);
  font:
    850 11px ui-monospace,
    SFMono-Regular,
    Consolas,
    monospace;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.intro-copy h1,
.page-intro h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(2rem, 4.2vw, 2.5rem);
  line-height: 1.19;
  letter-spacing: -0.055em;
}
.intro-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 22px 0 26px;
  color: #596573;
  font-size: 16px;
  line-height: 1.9;
}
.start-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 2px solid var(--orange);
  text-decoration: none;
  font-weight: 850;
}
.start-link span {
  color: var(--orange);
}

.size-skyline {
  position: relative;
  min-height: 370px;
  border: 2px solid #3b465c;
  border-radius: 18px 18px 8px 8px;
  background: #d8e2e4;
  box-shadow:
    0 16px 0 #c4bcae,
    var(--shadow);
  overflow: hidden;
}
.size-skyline::before {
  position: absolute;
  right: 0;
  bottom: 31px;
  left: 0;
  height: 20px;
  border-top: 3px solid #3f4a5e;
  border-bottom: 2px solid #3f4a5e;
  background: #a8a092;
  content: "";
}
.sky {
  position: absolute;
  inset: 0;
}
.sky i {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.9);
}
.sky i:nth-child(1) {
  top: 42px;
  right: 39px;
}
.sky i:nth-child(2) {
  top: 79px;
  right: 86px;
  width: 4px;
  height: 4px;
}
.sky i:nth-child(3) {
  top: 112px;
  right: 24px;
  width: 5px;
  height: 5px;
}
.condition-signs {
  position: absolute;
  z-index: 6;
  top: 20px;
  left: 20px;
  display: grid;
  gap: 7px;
}
.condition-signs span {
  width: max-content;
  padding: 6px 10px 6px 7px;
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(39, 50, 74, 0.25);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 2px 3px 0 rgba(39, 50, 74, 0.12);
  color: #4e5868;
  font-size: 11px;
  font-weight: 800;
}
.condition-signs b {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--paper);
}
.condition-signs span:nth-child(2) b {
  background: var(--yellow);
}
.condition-signs span:nth-child(3) b {
  background: var(--mint);
}
.buildings {
  position: absolute;
  z-index: 4;
  right: 24px;
  bottom: 51px;
  left: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 7px;
}
.building {
  padding: 12px 8px;
  display: grid;
  grid-template-columns: repeat(2, 9px);
  grid-auto-rows: 8px;
  align-content: start;
  justify-content: space-evenly;
  gap: 10px 8px;
  border: 2px solid #3c4659;
  border-bottom: 0;
  background: #c2775f;
}
.building i,
.card-building i {
  border-radius: 2px 2px 0 0;
  background: #f4cd69;
  box-shadow: inset 0 -2px 0 rgba(39, 50, 74, 0.2);
}
.building-xs {
  width: 53px;
  height: 62px;
  background: #d0a15f;
}
.building-sm {
  width: 62px;
  height: 91px;
  background: #7f9b95;
}
.building-md {
  width: 68px;
  height: 127px;
}
.building-lg {
  width: 74px;
  height: 172px;
  background: #77849a;
}
.building-xl {
  width: 80px;
  height: 221px;
  background: var(--navy);
}
.scale-labels {
  position: absolute;
  z-index: 5;
  right: 23px;
  bottom: 7px;
  left: 23px;
  display: flex;
  justify-content: space-between;
  color: #525b68;
  font:
    850 10px ui-monospace,
    monospace;
}

.industry-files {
  position: relative;
  min-height: 370px;
  padding: 64px 24px 54px;
  border: 2px solid #3b465c;
  border-radius: 15px 15px 7px 7px;
  background: #d8e2e4;
  box-shadow:
    0 16px 0 #c4bcae,
    var(--shadow);
  overflow: hidden;
}
.file-tabs {
  position: absolute;
  top: 20px;
  right: 20px;
  left: 20px;
  display: flex;
  align-items: end;
  gap: 6px;
  border-bottom: 4px solid var(--navy);
}
.file-tabs span {
  padding: 7px 12px 6px;
  border: 2px solid var(--navy);
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
  background: var(--paper);
  color: #596573;
  font:
    850 10px ui-monospace,
    monospace;
}
.file-tabs span:nth-child(2) {
  background: #e8d7ae;
}
.file-tabs span:nth-child(3) {
  background: #d7e4df;
}
.file-tabs span:nth-child(4) {
  background: #e7d1ca;
}
.condition-files {
  position: relative;
  height: 236px;
}
.condition-files article {
  position: absolute;
  width: 46%;
  min-width: 190px;
  height: 184px;
  padding: 19px 17px;
  border: 2px solid var(--navy);
  border-top: 7px solid var(--orange);
  border-radius: 5px;
  background: var(--paper);
  box-shadow: 7px 8px 0 rgba(39, 50, 74, 0.14);
}
.condition-files .file-weekend {
  z-index: 3;
  top: 6px;
  left: 0;
}
.condition-files .file-bonus {
  z-index: 2;
  top: 28px;
  left: 27%;
  border-top-color: var(--yellow);
}
.condition-files .file-commute {
  z-index: 1;
  top: 50px;
  right: 0;
  border-top-color: var(--mint);
}
.condition-files article > b {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  color: var(--orange);
}
.condition-files .file-bonus > b {
  color: var(--yellow);
}
.condition-files .file-commute > b {
  color: var(--mint);
}
.condition-files article > span {
  position: absolute;
  top: 23px;
  right: 17px;
  font-size: 12px;
  font-weight: 850;
}
.condition-files article > i {
  position: absolute;
  right: 17px;
  bottom: 20px;
  left: 17px;
  height: 59px;
  display: flex;
  align-items: end;
  gap: 5px;
  border-bottom: 2px solid #a8b0b5;
}
.condition-files article > i em {
  flex: 1;
  height: 22px;
  border: 1px solid #8c969c;
  border-bottom: 0;
  background: #d8e2e4;
}
.condition-files article > i em:nth-child(2n) {
  height: 37px;
}
.condition-files article > i em:last-child {
  height: 51px;
  background: #c2775f;
}
.condition-files article > strong {
  position: absolute;
  top: 66px;
  right: 18px;
  color: var(--navy);
  font-size: 23px;
  letter-spacing: -0.04em;
}
.file-rail {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 49px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 13px;
  border-top: 3px solid var(--navy);
  background: #a8a092;
  color: var(--navy);
  font:
    850 11px ui-monospace,
    monospace;
}
.file-rail span {
  padding: 6px 9px;
  border-radius: 4px;
  background: var(--paper);
}
.file-rail em {
  margin-left: auto;
  font-style: normal;
}

.finder-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 20px 80px;
}
.metric-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.metric-tab {
  min-width: 0;
  min-height: 82px;
  padding: 14px 15px;
  display: grid;
  grid-template-columns: 38px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  border: 1px solid #c7ccd0;
  border-bottom: 4px solid #aeb5bc;
  border-radius: 10px 10px 5px 5px;
  background: #e7e4dd;
  color: #5f6872;
  text-align: left;
  cursor: pointer;
}
.metric-tab > span {
  grid-row: 1 / 3;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-weight: 950;
}
.metric-tab b,
.metric-tab small {
  display: block;
}
.metric-tab b {
  color: var(--ink);
  font-size: 15px;
}
.metric-tab small {
  font-size: 10px;
}
.metric-tab.active {
  border-color: var(--navy);
  border-bottom-color: var(--orange);
  background: var(--paper);
  color: var(--orange);
  box-shadow: 0 8px 22px rgba(33, 48, 68, 0.08);
  transform: translateY(-2px);
}
.controls {
  margin-top: 18px;
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(250px, 1.2fr) 180px minmax(210px, 0.8fr);
  gap: 13px;
  border: 1px solid #c8c5bd;
  border-radius: 11px;
  background: #ded9ce;
}
.controls label {
  min-width: 0;
}
.controls label > span {
  display: block;
  margin: 0 0 7px;
  color: #626a72;
  font:
    800 10px ui-monospace,
    SFMono-Regular,
    Consolas,
    monospace;
  letter-spacing: 0.08em;
}
.controls input,
.controls select {
  width: 100%;
  height: 45px;
  padding: 0 12px;
  border: 1px solid #adb4ba;
  border-radius: 7px;
  outline: none;
  background: var(--paper);
  color: var(--ink);
}
.controls input:focus,
.controls select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(231, 114, 56, 0.13);
}
.finder-status {
  min-height: 54px;
  padding: 14px 3px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #68727c;
  font-size: 12px;
}
.finder-status p {
  margin: 0;
}
.finder-status p:last-child {
  font-weight: 800;
}
.boundary-card {
  margin: 0 0 14px;
  padding: 12px 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-left: 4px solid var(--yellow);
  border-radius: 5px;
  background: rgba(255, 254, 250, 0.68);
}
.boundary-card span {
  flex: none;
  padding: 3px 6px;
  border-radius: 4px;
  background: var(--navy);
  color: white;
  font:
    850 9px ui-monospace,
    monospace;
}
.boundary-card p {
  margin: 0;
  color: #5d6872;
  font-size: 12px;
  line-height: 1.65;
}

.results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}
.industry-card {
  position: relative;
  min-width: 0;
  padding: 21px 18px 17px;
  border: 1px solid #c8cdd0;
  border-radius: 8px 8px 11px 11px;
  background: var(--paper);
  box-shadow: 0 7px 18px rgba(33, 48, 68, 0.07);
  overflow: hidden;
}
.industry-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #aeb7c0;
  content: "";
}
.industry-card.selected {
  border-color: var(--orange);
  box-shadow: 0 8px 25px rgba(231, 114, 56, 0.16);
}
.industry-card.selected::before {
  background: var(--orange);
}
.card-tab {
  position: absolute;
  top: 5px;
  right: 16px;
  padding: 4px 8px 5px;
  border-radius: 0 0 5px 5px;
  background: #e3e6e7;
  color: #5c6874;
  font:
    850 9px ui-monospace,
    monospace;
}
.card-heading {
  min-height: 68px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
}
.card-building {
  flex: none;
  width: 46px;
  height: 45px;
  padding: 8px 6px 5px;
  display: grid;
  grid-template-columns: repeat(2, 7px);
  grid-auto-rows: 6px;
  align-content: start;
  justify-content: space-evenly;
  gap: 5px;
  border: 2px solid #4b5465;
  border-bottom-width: 4px;
  border-radius: 3px 3px 1px 1px;
  background: #c2775f;
}
.card-building-xs {
  width: 38px;
  height: 30px;
  background: #d0a15f;
}
.card-building-sm {
  width: 40px;
  height: 35px;
  background: #7f9b95;
}
.card-building-md {
  width: 42px;
  height: 40px;
}
.card-building-lg {
  height: 45px;
  background: #77849a;
}
.card-building-xl {
  height: 50px;
  background: #606d85;
}
.card-building-xxl {
  height: 55px;
  background: #47546e;
}
.card-building-tower {
  height: 61px;
  background: var(--navy);
}
.card-building-all {
  width: 48px;
  height: 40px;
  grid-template-columns: repeat(3, 7px);
  background: #9a8270;
}
.industry-mark {
  flex: none;
  width: 47px;
  height: 54px;
  padding: 8px 7px 6px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  border: 2px solid #4b5465;
  border-radius: 4px;
  background: #d8e2e4;
}
.industry-mark span {
  grid-column: 1 / -1;
  font:
    900 11px ui-monospace,
    monospace;
  text-align: center;
}
.industry-mark i {
  height: 12px;
  border-top: 3px solid var(--orange);
  background: var(--paper);
}
.industry-mark.is-total {
  background: #e8d7ae;
}
.card-heading > div:not(.industry-mark) {
  min-width: 0;
  flex: 1;
}
.card-heading p {
  margin: 0 0 4px;
  color: #8a9299;
  font:
    750 9px ui-monospace,
    monospace;
}
.card-heading h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.035em;
}
.compare-toggle {
  flex: none;
  padding: 7px 9px;
  border: 1px solid #aeb5bb;
  border-radius: 6px;
  background: transparent;
  color: #4f5d6b;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}
.selected .compare-toggle {
  border-color: var(--orange);
  background: #fff2e9;
  color: #bd5020;
}
.card-main {
  min-height: 78px;
  margin: 18px 0 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 131px;
  align-items: end;
  gap: 10px;
}
.percent-block strong,
.percent-block span {
  display: block;
}
.percent-block strong {
  font:
    900 clamp(28px, 3vw, 38px)/1 ui-monospace,
    SFMono-Regular,
    Consolas,
    monospace;
  letter-spacing: -0.08em;
}
.percent-block span {
  margin-top: 8px;
  color: #6d7780;
  font-size: 11px;
  font-weight: 750;
}
.sparkline {
  width: 131px;
  height: 42px;
  overflow: visible;
}
.sparkline path {
  fill: none;
  stroke: #d6dadd;
  stroke-width: 1;
}
.sparkline polyline {
  fill: none;
  stroke: var(--orange);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}
.sparkline circle {
  fill: var(--paper);
  stroke: var(--orange);
  stroke-width: 2.5;
}
.distribution {
  height: 10px;
  display: flex;
  border: 1px solid #bcc2c6;
  border-radius: 5px;
  overflow: hidden;
  background: #e5e7e8;
}
.segment {
  display: block;
  min-width: 0;
}
.primary {
  background: var(--orange);
}
.secondary {
  background: var(--mint);
}
.tertiary {
  background: var(--yellow);
}
.none {
  background: #c8cdd1;
}
.legend {
  min-height: 37px;
  padding-top: 8px;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 5px 9px;
  color: #68727b;
  font-size: 9px;
}
.legend span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.legend i {
  width: 7px;
  height: 7px;
  border-radius: 2px;
}
.card-foot {
  margin: 12px 0 0;
  padding-top: 10px;
  border-top: 1px dashed #d4d6d5;
  color: #7b8389;
  font:
    750 9px ui-monospace,
    monospace;
}
.no-results {
  grid-column: 1 / -1;
  padding: 70px 20px;
  border: 1px dashed #b5bac0;
  border-radius: 10px;
  text-align: center;
}
.no-results span {
  font:
    900 32px ui-monospace,
    monospace;
  color: var(--orange);
}
.no-results h3 {
  margin: 10px 0 5px;
}
.no-results p {
  margin: 0;
  color: var(--muted);
}

.compare-drawer {
  position: sticky;
  z-index: 20;
  bottom: 14px;
  max-width: 1180px;
  margin: 0 auto 24px;
  padding: 14px;
  display: grid;
  grid-template-columns: 150px 1fr 150px;
  align-items: center;
  gap: 13px;
  border: 1px solid #41536a;
  border-radius: 12px;
  background: #253447;
  color: white;
  box-shadow: 0 13px 34px rgba(20, 31, 45, 0.24);
}
.compare-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.compare-head p,
.compare-head h2 {
  margin: 0;
}
.compare-head p {
  color: #aeb8c4;
  font-size: 9px;
}
.compare-head h2 {
  margin-top: 3px;
  font-size: 15px;
}
.compare-head button {
  display: none;
  border: 0;
  background: none;
  color: #c8d0d9;
  font-size: 9px;
  cursor: pointer;
}
.has-items .compare-head button {
  display: block;
}
.compare-list {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
}
.compare-empty {
  margin: 0;
  color: #abb7c4;
  font-size: 11px;
}
.compare-row {
  min-width: 0;
  padding: 8px;
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr) auto 18px;
  align-items: center;
  gap: 7px;
  border: 1px solid #51647a;
  border-radius: 7px;
  background: #30445a;
}
.compare-row > span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: #425970;
  color: #dce5ec;
  font:
    800 8px ui-monospace,
    monospace;
}
.compare-row b,
.compare-row small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.compare-row b {
  font-size: 10px;
}
.compare-row small {
  margin-top: 2px;
  color: #aab6c2;
  font-size: 7px;
}
.compare-row strong {
  font:
    850 11px ui-monospace,
    monospace;
}
.compare-row button {
  border: 0;
  background: none;
  color: #b7c0c8;
  cursor: pointer;
}
.copy-button {
  min-height: 42px;
  border: 0;
  border-radius: 7px;
  background: var(--orange);
  color: white;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}
.copy-button:disabled {
  background: #536273;
  color: #8e9baa;
  cursor: default;
}
.compare-drawer.limit-reached {
  outline: 4px solid rgba(231, 114, 56, 0.35);
}

.page-intro {
  max-width: 920px;
  margin: 0 auto;
  padding: 76px 20px 42px;
}
.page-intro > p:last-child {
  max-width: 690px;
  margin: 20px 0 0;
  color: #606b76;
  line-height: 1.9;
}
.prose-grid,
.source-cards {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 20px 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.prose-grid.two {
  grid-template-columns: repeat(2, 1fr);
}
.prose-grid article {
  padding: 24px;
  border: 1px solid #c9cdd0;
  border-top: 4px solid var(--navy);
  border-radius: 8px;
  background: var(--paper);
}
.prose-grid h2 {
  margin: 14px 0 9px;
  font-size: 18px;
}
.prose-grid p,
.prose-section p,
.prose-section li {
  color: #5b6671;
  font-size: 14px;
  line-height: 1.9;
}
.prose-mark {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border: 2px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
  font-weight: 950;
}
.prose-section {
  max-width: 880px;
  margin: 24px auto 64px;
  padding: 27px 30px;
  border-left: 5px solid var(--yellow);
  background: rgba(255, 254, 250, 0.72);
}
.prose-section h2 {
  margin: 0 0 10px;
  font-size: 19px;
}
.prose-section p {
  margin: 0;
}
.prose-section ul {
  margin: 0;
  padding-left: 20px;
}
.source-cards a {
  min-height: 140px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  border: 1px solid #bec4c8;
  border-radius: 8px;
  background: var(--paper);
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(33, 48, 68, 0.06);
}
.source-cards a:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
}
.source-cards span {
  color: var(--orange);
  font:
    850 10px ui-monospace,
    monospace;
}
.source-cards b {
  margin-top: 17px;
}
.source-cards small {
  margin-top: auto;
  color: #6c7680;
}
.source-links {
  max-width: 880px;
  margin: -40px auto 70px;
  padding: 0 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  font-weight: 750;
}
.not-found {
  min-height: 66vh;
  padding: 110px 20px;
  text-align: center;
}
.not-found > span {
  color: var(--orange);
  font:
    900 45px ui-monospace,
    monospace;
}
.not-found h1 {
  margin: 12px 0 24px;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}
.not-found a {
  font-weight: 850;
}

footer {
  padding: 30px max(20px, calc((100vw - 1180px) / 2));
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid #c9c6be;
  color: #6f767c;
  font-size: 11px;
}
footer p {
  margin: 0;
}
footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 900px) {
  .intro-shell {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .industry-files {
    max-width: 620px;
    width: 100%;
  }
  .results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .compare-drawer {
    margin-inline: 12px;
    grid-template-columns: 120px 1fr;
  }
  .copy-button {
    grid-column: 1 / -1;
  }
  .compare-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 650px) {
  .site-header {
    min-height: 58px;
  }
  .brand span {
    font-size: 14px;
  }
  .site-header nav a {
    padding: 7px 5px;
    font-size: 11px;
  }
  .site-header nav a:nth-child(n + 3) {
    display: none;
  }
  .intro-shell {
    padding-top: 42px;
  }
  .industry-files {
    min-height: 328px;
    padding-inline: 14px;
  }
  .file-tabs span:nth-child(3) {
    display: none;
  }
  .condition-files article {
    width: 57%;
    min-width: 172px;
  }
  .condition-files .file-bonus {
    left: 21%;
  }
  .condition-files article > strong {
    font-size: 19px;
  }
  .metric-tabs {
    grid-template-columns: 1fr;
  }
  .metric-tab {
    min-height: 65px;
  }
  .controls {
    grid-template-columns: 1fr;
  }
  .results {
    grid-template-columns: 1fr;
  }
  .industry-card {
    padding-inline: 16px;
  }
  .compare-drawer {
    position: relative;
    bottom: auto;
    grid-template-columns: 1fr;
  }
  .compare-list {
    grid-template-columns: 1fr;
  }
  .prose-grid,
  .prose-grid.two,
  .source-cards {
    grid-template-columns: 1fr;
  }
  .page-intro {
    padding-top: 55px;
  }
  footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
