@font-face {
  font-family: Barlow;
  src: url("/assets/barlow-regular-4464e5df.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: Barlow;
  src: url("/assets/barlow-medium-60ee87e3.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: Barlow;
  src: url("/assets/barlow-semibold-8e6c7601.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("/assets/ibm-plex-mono-regular-75757bfc.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --paper: #F7F8F4;
  --ink: #1F2320;
  --muted: #656b60;
  --accent: #D64A2E;
  /* Accessible text and filled controls derived from the brand accent. */
  --accent-readable: #b83d25;
  --line: #cbd0c5;
  --wash: #edf0e8;
  --mono: "IBM Plex Mono",monospace;
  --sans: Barlow,Arial,sans-serif;
}

* {
  box-sizing: border-box;
}

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

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

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

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

button {
  font: inherit;
}

button,a,summary {
  touch-action: manipulation;
}

button:focus-visible,a:focus-visible,summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}

::selection {
  background: #f0baa8;
  color: var(--ink);
}

h1,h2,h3,p,figure {
  margin: 0;
}

h1,h2,h3 {
  font-weight: 500;
}

p {
  font-size: 19px;
  line-height: 1.55;
}

h2 {
  font-size: clamp(34px,3.5vw,49px);
  line-height: 1.08;
  letter-spacing: -1.5px;
}

h3 {
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -.6px;
}

.page-width {
  width: calc(100% - 112px);
  max-width: 1440px;
  margin-inline: auto;
}

.metadata {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.accent {
  color: var(--accent-readable);
}

.muted {
  color: var(--muted);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  padding: 14px;
  background: var(--ink);
  color: var(--paper);
  z-index: 10;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  height: 108px;
  border-bottom: 1px solid var(--ink);
}

.brand-logo {
  display: block;
  width: 245px;
  max-width: none;
  height: auto;
}

.site-footer .brand-logo {
  width: 210px;
}

.wordmark {
  display: inline-flex;
  flex-shrink: 0;
  /* Account for the supplied SVG’s trailing whitespace in layout. */
  width: 196px;
  align-items: center;
  line-height: 1;
}

.header-descriptor {
  margin-right: auto;
  margin-left: 50px;
  color: var(--muted);
}

.site-header nav {
  font-size: 15px;
  font-weight: 500;
}

.nav-link:hover {
  color: var(--accent-readable);
}

.contact-link {
  display: flex;
  gap: 28px;
  border-bottom: 1px solid var(--accent);
  padding: 7px 0;
}

.contact-link span {
  color: var(--accent-readable);
}

.sheet-heading {
  padding-top: 22px;
  color: var(--muted);
}

.status-dot {
  display: inline-block;
  height: 6px;
  width: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: 2px;
}

.hero-composition {
  display: grid;
  grid-template-columns: 1.06fr 1fr;
  align-items: center;
  gap: 12px;
  padding: 55px 0 65px;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding-bottom: 10px;
}

.hero-copy h1 {
  font-size: clamp(48px,5.4vw,82px);
  line-height: 1.02;
  letter-spacing: -2.9px;
  white-space: nowrap;
}

.marked-text {
  position: relative;
  display: inline-block;
}

.marked-text svg {
  position: absolute;
  left: 0;
  bottom: -13px;
  width: 100%;
  height: 15px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
}

.hero-copy p {
  max-width: 425px;
  margin: 36px 0 28px;
  font-size: 20px;
  line-height: 1.5;
}

.button-primary {
  display: inline-flex;
  background: var(--accent-readable);
  color: #fff;
  padding: 17px 20px;
  font-size: 16px;
  gap: 32px;
  align-items: center;
  font-weight: 500;
  border: 1px solid var(--accent);
  transition: background .15s;
}

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

.hero-secondary {
  display: block;
  width: fit-content;
  margin-top: 19px;
  font-size: 14px;
}

.hero-secondary span {
  padding-left: 12px;
  color: var(--accent-readable);
}

.hero-secondary:hover {
  color: var(--accent-readable);
}

.hero-foot {
  border-top: 1px solid var(--line);
  padding: 19px 0 23px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
}

.hero-foot a span {
  margin-left: 25px;
  color: var(--accent-readable);
}

.information-drawing {
  min-width: 0;
  position: relative;
  background-image: linear-gradient(#cbd0c54a 1px,transparent 1px),linear-gradient(90deg,#cbd0c54a 1px,transparent 1px);
  background-size: 32px 32px;
  border: 1px solid var(--line);
}

.drawing-top {
  display: flex;
  justify-content: space-between;
  padding: 12px 15px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.drawing-canvas {
  position: relative;
  aspect-ratio: 1.13;
}

.school-image {
  mix-blend-mode: darken;
}

.building-drawing {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.map-card {
  position: absolute;
  padding: 11px 13px;
  background: var(--paper);
  border: 1px solid var(--line);
  min-width: 170px;
  transition: transform .65s ease,border-color .65s ease;
  z-index: 1;
}

.map-card>.metadata:first-child {
  font-size: 9px;
  color: var(--muted);
}

.node-icon {
  color: var(--accent-readable);
  margin-right: 5px;
}

.map-card strong {
  font-size: 16px;
  font-weight: 500;
  display: block;
  margin: 4px 0;
}

.map-card .card-meta {
  font-size: 8px;
  color: var(--muted);
}

.map-document {
  left: 4%;
  top: 6%;
}

.map-event {
  right: 3%;
  top: 17%;
}

.map-image {
  left: 3%;
  bottom: 10%;
}

.map-person {
  position: absolute;
  right: 3%;
  bottom: 11%;
  max-width: 190px;
  transform: rotate(-6deg);
}

.human-note {
  font-family: "Bradley Hand","Segoe Print","Comic Sans MS",cursive;
  font-size: 23px;
  color: var(--accent-readable);
  line-height: 1.1;
  display: inline-block;
  transform: rotate(-5deg);
}

.map-person .human-note {
  font-size: 23px;
}

.map-person svg {
  width: 120px;
  display: block;
  height: 30px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.4;
  margin-left: 5px;
  transform: rotate(160deg);
}

.map-person>.metadata {
  font-size: 8px;
  display: block;
  margin-top: 7px;
}

.drawing-place {
  position: absolute;
  bottom: 12px;
  left: 15px;
  font-size: 8px;
  background: var(--paper);
  padding: 3px;
}

.drawing-place span {
  color: var(--muted);
}

.drawing-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 15px;
  background: var(--paper);
  border-top: 1px solid var(--line);
  min-height: 56px;
}

.drawing-bottom .metadata {
  font-size: 8px;
}

.map-toggle {
  min-height: 44px;
  border: 1px solid var(--accent);
  color: var(--accent-readable);
  padding: 8px 11px;
  font-size: 11px;
  font-weight: 500;
  background: var(--paper);
  cursor: pointer;
  white-space: nowrap;
}

.map-toggle:hover {
  color: var(--paper);
  background: var(--accent-readable);
}

.map-toggle[hidden] {
  display: none;
}

.drawing-disclaimer {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  font-size: 8px;
  color: var(--muted);
}

.fragment-meta {
  display: none;
}
.information-drawing:not(.is-fragmented) .fragment-meta {
  display: none;
}

.is-fragmented .connected-meta {
  display: none;
}

.is-fragmented .fragment-meta {
  display: block;
}

.is-fragmented .map-document {
  transform: translate(-3px,8px) rotate(-6deg);
}

.is-fragmented .map-event {
  transform: translate(5px,-8px) rotate(5deg);
}

.is-fragmented .map-image {
  transform: translate(2px,5px) rotate(-4deg);
}

.map-connections {
  opacity: 1;
  transition: opacity .6s;
}

.map-connections path {
  stroke-dasharray: 250;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1s ease;
}

.is-fragmented .map-connections {
  opacity: 0;
}

.is-fragmented .map-connections path {
  stroke-dashoffset: 250;
}

.information-drawing:not(.is-fragmented) .map-card {
  border-left: 2px solid var(--accent);
}

.section-pad {
  padding-top: 58px;
  padding-bottom: 72px;
}

.section-label {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  margin-bottom: 45px;
}

.section-label>span:first-child {
  color: var(--accent-readable);
}

.information-section {
  background: var(--wash);
  border-block: 1px solid var(--line);
}

.section-intro {
  margin-bottom: 40px;
  align-items: end;
}

.section-intro>p {
  max-width: 440px;
  justify-self: end;
}

.knowledge-sheet {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  border: 1px solid var(--line);
  background: var(--paper);
}

.source-column,.connected-column {
  padding: 24px 30px;
}

.source-column {
  border-right: 1px solid var(--line);
  position: relative;
}

.panel-heading {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  color: var(--muted);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.source-list {
  padding: 20px 0 0;
  margin: 0;
  list-style: none;
}

.source-list li {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 17px;
}

.file-extension {
  font-family: var(--mono);
  font-size: 10px;
  border: 1px solid #9ba293;
  padding: 11px 6px;
  min-width: 37px;
  text-align: center;
  position: relative;
}

.file-extension:after {
  content: "";
  position: absolute;
  right: -1px;
  top: -1px;
  width: 8px;
  height: 8px;
  background: var(--paper);
  border-left: 1px solid #9ba293;
  border-bottom: 1px solid #9ba293;
}

.source-list small {
  font-size: 13px;
  display: block;
  color: var(--muted);
  margin-top: 3px;
}

.loose-end {
  margin-left: auto;
  color: var(--muted);
}

.source-column>.human-note {
  margin: 28px 0 14px 70px;
}

.place-record {
  border: 1px solid var(--accent);
  margin: 20px 0 0;
  padding: 15px 20px;
  background: #f8efea;
}

.place-record>.metadata:first-child {
  color: var(--accent-readable);
}

.place-record h3 {
  font-size: 25px;
  margin: 4px 0;
}

.place-record>.metadata:last-child {
  font-size: 9px;
  color: var(--muted);
  text-transform: none;
}

.record-branches {
  margin-left: 20px;
  padding-left: 26px;
  border-left: 1px solid var(--accent);
  padding-top: 16px;
}

.record {
  border: 1px solid var(--line);
  margin-bottom: 10px;
  position: relative;
}

.record:before {
  content: "";
  position: absolute;
  top: 30px;
  left: -27px;
  width: 26px;
  height: 1px;
  background: var(--accent);
}

.record summary {
  padding: 10px 14px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 10px;
}

.record summary::-webkit-details-marker {
  display: none;
}

.record summary .metadata {
  display: block;
  font-size: 8px;
  color: var(--muted);
}

.record strong {
  display: block;
  font-size: 17px;
  font-weight: 500;
  margin-top: 3px;
}

.record-action {
  color: var(--accent-readable);
  font-size: 20px;
  transition: transform .2s;
}

.record[open] .record-action {
  transform: rotate(45deg);
}

.record summary:hover {
  background: var(--wash);
}

.record p {
  font-size: 15px;
  padding: 0 14px 15px;
  line-height: 1.45;
  color: var(--muted);
}

.record-caption {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 18px;
  font-size: 8px;
  color: var(--muted);
}

.transformation {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-top: 32px;
}

.transformation>.metadata {
  color: var(--muted);
}

.transformation p {
  font-size: 27px;
  letter-spacing: -.5px;
}

.transformation p>.accent {
  margin: 0 13px;
}

.transformation strong {
  font-weight: 500;
}

.approach-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.approach-intro p {
  max-width: 395px;
  margin-top: 28px;
}

.method-note {
  margin-top: 42px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.method-note svg {
  width: 95px;
  height: 60px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
}

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

.method-stages li {
  display: flex;
  gap: 25px;
  padding: 23px 0;
  border-top: 1px solid var(--line);
  position: relative;
}

.method-stages li:first-child {
  padding-top: 0;
  border-top: 0;
}

.method-stages li:not(:last-child):after {
  content: "";
  position: absolute;
  left: 15px;
  top: 60px;
  bottom: 12px;
  border-left: 1px solid var(--line);
}

.stage-number {
  color: var(--accent-readable);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  height: 32px;
  min-width: 32px;
}

.method-stages h3 {
  font-size: 29px;
}

.method-stages p {
  font-size: 17px;
  line-height: 1.45;
  max-width: 430px;
  margin: 10px 0 14px;
  color: var(--muted);
}

.stage-output {
  font-size: 9px;
  color: var(--muted);
}

.case-section {
  background: var(--wash);
  border-block: 1px solid var(--line);
}

.client-label {
  font-size: 22px;
  font-weight: 600;
  display: block;
  margin-bottom: 22px;
}

.client-label .metadata {
  font-size: 10px;
  font-weight: 400;
  color: var(--muted);
  margin-left: 12px;
}

.case-layout p {
  font-size: 18px;
  margin-top: 25px;
  max-width: 470px;
}

.case-footnote {
  display: block;
  font-size: 9px;
  color: var(--muted);
  margin-top: 28px;
}

.case-diagram {
  border: 1px solid var(--line);
  padding: 24px;
  background: var(--paper);
  align-self: center;
}

.case-place {
  border: 1px solid var(--accent);
  background: #f8efea;
  text-align: center;
  padding: 23px 14px;
  margin: 28px 30px 0;
  position: relative;
}

.case-place:after {
  content: "";
  position: absolute;
  height: 23px;
  width: 1px;
  background: var(--accent);
  bottom: -24px;
  left: 50%;
}

.case-place>.metadata {
  color: var(--accent-readable);
  display: block;
  font-size: 9px;
}

.case-place strong {
  font-size: 23px;
  font-weight: 500;
  display: block;
  margin-top: 8px;
}

.case-relations {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--accent);
  margin-top: 23px;
  padding-top: 22px;
  position: relative;
}

.case-relations span {
  border: 1px solid var(--line);
  padding: 10px;
  flex: 1;
  text-align: center;
  font-size: 14px;
  position: relative;
}

.case-relations span:before,.case-relations span:after {
  content: "";
  position: absolute;
  height: 23px;
  width: 1px;
  background: var(--accent);
  top: -23px;
  left: 50%;
}

.case-relations span:after {
  top: 100%;
}

.case-assessment {
  margin-top: 23px;
  border: 1px solid var(--accent);
  padding: 17px;
  text-align: center;
}

.case-assessment>.metadata {
  color: var(--accent-readable);
  display: block;
  font-size: 9px;
}

.case-assessment strong {
  font-weight: 500;
  font-size: 18px;
  display: block;
  margin-top: 7px;
}

.case-timeline {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 7px;
  margin-top: 34px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
  color: var(--muted);
}

.case-timeline span {
  position: relative;
}

.case-timeline span:before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  top: -13px;
  left: 0;
  background: var(--paper);
}

.case-diagram figcaption {
  font-size: 8px;
  color: var(--muted);
  margin-top: 28px;
}

.databitat-section {
  border-bottom: 1px solid var(--line);
}

.product-name {
  font-size: 76px;
  letter-spacing: -3px;
  margin-bottom: 12px;
}

.product-name span {
  font-size: 42px;
  display: inline-block;
  margin-left: 22px;
  vertical-align: top;
}

.databitat-section h3 {
  font-size: 32px;
  line-height: 1.1;
}

.databitat-section p {
  font-size: 18px;
  margin-top: 22px;
  max-width: 475px;
}

.expertise-line {
  font-size: clamp(30px,4.5vw,65px);
  line-height: 1.22;
  letter-spacing: -1.8px;
}

.expertise-line span {
  color: var(--accent-readable);
  font-weight: 400;
  padding: 0 12px;
}

.about-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
  align-items: start;
}

.about-bottom>.metadata {
  color: var(--muted);
  padding-top: 7px;
}

.about-bottom p {
  font-size: 18px;
  max-width: 475px;
}

.ecosystem {
  display: flex;
  gap: 55px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 28px;
  margin-top: 55px;
}

.ecosystem>.metadata {
  color: var(--muted);
}

.ecosystem ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 18px;
}

.contact-section {
  background: var(--accent-readable);
  color: var(--paper);
}

.contact-section .section-label,.contact-section .section-label>span:first-child {
  color: var(--paper);
}

.contact-section h2 {
  font-size: clamp(54px,7vw,104px);
  letter-spacing: -3px;
  line-height: 1.02;
}

.contact-section h2>span {
  color: #fff;
}

.contact-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: end;
  margin-top: 36px;
}

.contact-bottom>p {
  max-width: 440px;
  font-size: 19px;
}

.contact-email {
  display: flex;
  justify-content: space-between;
  font-size: 23px;
  border-bottom: 1px solid var(--paper);
  padding-bottom: 14px;
}

.contact-email:hover {
  color: #fff;
}

.contact-email:focus-visible {
  outline-color: var(--paper);
}

.contact-pending {
  border-bottom: 1px solid #ffffff80;
  padding-bottom: 14px;
}

.contact-pending p {
  font-size: 18px;
  margin-top: 7px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-block: 33px;
}

.site-footer .wordmark {
  width: 168px;
}

.company-details {
  text-align: right;
}

.company-details address {
  font-size: 14px;
  font-style: normal;
  line-height: 1.6;
  margin-bottom: 8px;
}

.company-details strong {
  font-weight: 500;
}

.site-footer .metadata {
  font-size: 9px;
  color: var(--muted);
}

@media(min-width:1600px) {
  .hero-composition {
    padding-block: 80px;
  }
  .hero-copy h1 {
    font-size: 87px;
  }
}

@media(max-width:1100px) {
  .page-width {
    width: calc(100% - 64px);
  }
  .header-descriptor {
    margin-left: 20px;
  }
  .hero-composition {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  .hero-copy h1 {
    font-size: 5.2vw;
    letter-spacing: -2px;
  }
  .hero-copy p {
    font-size: 18px;
    max-width: 350px;
  }
  .map-card {
    min-width: 140px;
    padding: 8px;
  }
  .map-card strong {
    font-size: 14px;
  }
  .map-card .card-meta {
    font-size: 7px;
  }
  .map-person .human-note {
    font-size: 20px;
  }
  .map-person {
    right: 1%;
    max-width: 155px;
  }
  .source-column,.connected-column {
    padding: 20px;
  }
  .transformation p {
    font-size: 23px;
  }
  .approach-layout {
    gap: 40px;
  }
  .header-descriptor {
    font-size: 8px;
  }
  .sheet-heading {
    font-size: 8px;
  }
  .drawing-bottom {
    padding: 10px 8px;
  }
  .drawing-bottom .metadata {
    font-size: 7px;
  }
  .map-toggle {
    font-size: 10px;
    padding: 8px;
  }
  .record-caption {
    font-size: 7px;
  }
  .case-timeline {
    font-size: 6px;
  }
}

@media(max-width:800px) {
  .site-header {
    height: 85px;
  }
  .header-descriptor {
    display: none;
  }
  .site-header nav {
    gap: 22px;
    font-size: 14px;
  }
  .hero-composition {
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 45px 0 52px;
  }
  .hero-copy h1 {
    font-size: clamp(45px,8.4vw,67px);
    letter-spacing: -2px;
  }
  .hero-copy p {
    max-width: 450px;
    font-size: 19px;
  }
  .information-drawing {
    width: 100%;
    max-width: 580px;
    justify-self: center;
  }
  .map-card {
    min-width: 180px;
    padding: 12px;
  }
  .map-card strong {
    font-size: 17px;
  }
  .map-card .card-meta {
    font-size: 9px;
  }
  .map-person {
    right: 4%;
    max-width: 200px;
  }
  .map-person .human-note {
    font-size: 26px;
  }
  .drawing-bottom {
    padding: 12px 15px;
  }
  .drawing-bottom .metadata {
    font-size: 9px;
  }
  .map-toggle {
    font-size: 12px;
    padding: 9px;
  }
  .hero-foot {
    font-size: 8px;
  }
  .section-label {
    font-size: 9px;
    margin-bottom: 32px;
  }
  .section-label>span:last-child {
    max-width: 45%;
    text-align: right;
  }
  .section-intro {
    grid-template-columns: 1fr;
  }
  .section-intro>p {
    justify-self: start;
    max-width: 550px;
  }
  .knowledge-sheet {
    grid-template-columns: 1fr 1.15fr;
  }
  .source-column,.connected-column {
    padding: 16px;
  }
  .panel-heading {
    font-size: 8px;
    gap: 8px;
  }
  .source-list li {
    font-size: 14px;
    gap: 10px;
  }
  .source-list small {
    font-size: 11px;
  }
  .source-column>.human-note {
    font-size: 20px;
    margin-left: 20px;
  }
  .file-extension {
    font-size: 8px;
    min-width: 29px;
  }
  .record-branches {
    padding-left: 17px;
    margin-left: 10px;
  }
  .record:before {
    width: 17px;
    left: -18px;
  }
  .record strong {
    font-size: 15px;
  }
  .record-caption {
    display: block;
  }
  .record-caption span {
    display: block;
    margin-top: 5px;
  }
  .transformation {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }
  .transformation p {
    font-size: 25px;
  }
  .approach-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .approach-intro p {
    max-width: 530px;
  }
  .method-note {
    margin-top: 20px;
  }
  .method-stages li {
    gap: 25px;
  }
  .method-stages p {
    max-width: 100%;
  }
  .case-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .case-layout p {
    max-width: 550px;
  }
  .case-diagram {
    max-width: 560px;
    width: 100%;
  }
  .case-timeline {
    font-size: 8px;
  }
  .expertise-line {
    font-size: 39px;
    letter-spacing: -1px;
  }
  .contact-bottom {
    gap: 30px;
  }
  .contact-email {
    font-size: 18px;
  }
  .contact-bottom>p {
    font-size: 17px;
  }
  .site-footer>.metadata:nth-child(2) {
    display: none;
  }
}

@media(max-width:540px) {
  .page-width {
    width: calc(100% - 36px);
  }
  .site-header {
    height: 78px;
  }
  .site-header nav {
    gap: 0;
  }
  .nav-link {
    display: none;
  }
  .contact-link {
    gap: 20px;
  }
  .sheet-heading {
    font-size: 8px;
    max-width: 300px;
  }
  .hero-composition {
    padding-top: 36px;
    gap: 35px;
  }
  .hero-copy h1 {
    font-size: clamp(34px,9.3vw,50px);
    letter-spacing: -1.6px;
  }
  .hero-copy p {
    font-size: 18px;
    margin-top: 32px;
  }
  .hero-copy .button-primary {
    font-size: 15px;
    padding: 15px 17px;
  }
  .hero-secondary {
    font-size: 13px;
  }
  .drawing-canvas {
    aspect-ratio: 1/1.1;
  }
  .building-drawing {
    top: 8%;
    height: 90%;
  }
  .map-card {
    min-width: 139px;
    padding: 8px;
  }
  .map-card strong {
    font-size: 14px;
  }
  .map-card>.metadata:first-child {
    font-size: 7px;
  }
  .map-card .card-meta {
    font-size: 7px;
  }
  .map-document {
    top: 7%;
    left: 3%;
  }
  .map-event {
    top: 27%;
    right: 2%;
  }
  .map-image {
    bottom: 12%;
    left: 3%;
  }
  .map-person {
    max-width: 140px;
    right: 2%;
    bottom: 12%;
  }
  .map-person .human-note {
    font-size: 21px;
  }
  .map-person>.metadata {
    font-size: 6px;
  }
  .drawing-top {
    padding: 10px;
    font-size: 8px;
  }
  .drawing-bottom .metadata {
    font-size: 7px;
    max-width: 120px;
  }
  .drawing-bottom {
    padding: 10px;
  }
  .map-toggle {
    font-size: 10px;
  }
  .drawing-place {
    font-size: 7px;
    bottom: 10px;
    left: 8px;
  }
  .drawing-disclaimer {
    font-size: 6px;
  }
  .hero-foot {
    font-size: 7px;
    gap: 12px;
  }
  .hero-foot>span {
    max-width: 140px;
  }
  .hero-foot>a {
    text-align: right;
    max-width: 160px;
  }
  .hero-foot a span {
    margin-left: 8px;
  }
  .section-pad {
    padding-block: 40px;
  }
  .section-label {
    font-size: 8px;
    gap: 20px;
  }
  .section-label>span:last-child {
    max-width: 43%;
  }
  .section-intro {
    gap: 20px;
    margin-bottom: 28px;
  }
  h2 {
    font-size: 34px;
    letter-spacing: -1.1px;
  }
  p,.section-intro p {
    font-size: 17px;
  }
  .knowledge-sheet {
    grid-template-columns: 1fr;
  }
  .source-column,.connected-column {
    padding: 22px;
  }
  .source-column {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .source-list li {
    font-size: 17px;
    padding: 14px 0;
  }
  .source-list small {
    font-size: 12px;
  }
  .file-extension {
    font-size: 9px;
    min-width: 34px;
  }
  .source-column>.human-note {
    margin: 22px 0 5px 50px;
  }
  .panel-heading {
    font-size: 8px;
  }
  .place-record h3 {
    font-size: 25px;
  }
  .record strong {
    font-size: 17px;
  }
  .record-branches {
    padding-left: 23px;
    margin-left: 15px;
  }
  .record:before {
    left: -24px;
    width: 23px;
  }
  .record-caption {
    font-size: 7px;
  }
  .record-caption span {
    display: inline;
    margin-left: 8px;
  }
  .transformation {
    margin-top: 24px;
  }
  .transformation p {
    font-size: 25px;
    line-height: 1.25;
    max-width: 340px;
  }
  .transformation p>.accent {
    margin: 0 2px;
  }
  .transformation strong {
    display: block;
    margin-top: 5px;
  }
  .method-note {
    margin-top: 15px;
  }
  .method-stages h3 {
    font-size: 27px;
  }
  .stage-output {
    font-size: 8px;
  }
  .method-stages p {
    font-size: 17px;
  }
  .case-diagram {
    padding: 16px;
  }
  .case-place {
    margin-inline: 8px;
  }
  .case-place strong {
    font-size: 21px;
  }
  .case-relations {
    gap: 8px;
  }
  .case-relations span {
    font-size: 12px;
    padding: 10px 6px;
  }
  .case-assessment strong {
    font-size: 17px;
  }
  .case-timeline {
    font-size: 6px;
  }
  .case-diagram figcaption {
    font-size: 7px;
  }
  .case-footnote {
    font-size: 8px;
  }
  .databitat-section>.grid {
    gap: 32px;
  }
  .product-name {
    font-size: 64px;
  }
  .databitat-section h3 {
    font-size: 28px;
  }
  .databitat-section p,.about-bottom p {
    font-size: 17px;
  }
  .expertise-line {
    font-size: 30px;
    letter-spacing: -.9px;
  }
  .expertise-line span {
    padding: 0 3px;
  }
  .about-bottom {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 25px;
  }
  .ecosystem {
    display: block;
    margin-top: 32px;
  }
  .ecosystem ul {
    margin-top: 18px;
    font-size: 16px;
    column-gap: 23px;
  }
  .contact-section h2 {
    font-size: 51px;
    letter-spacing: -1.7px;
  }
  .contact-bottom {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 25px;
  }
  .contact-email {
    font-size: 22px;
  }
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding-block: 25px;
  }
  .company-details {
    text-align: left;
  }
  .site-footer .metadata {
    font-size: 8px;
  }
}

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

@media (max-width: 540px) {
  .wordmark { width: 168px; }
  .brand-logo { width: 210px; }
  .site-footer .wordmark { width: 144px; }
  .site-footer .brand-logo { width: 180px; }
}
