:root {
  --black: #000;
  --white: #fff;
  --line: rgba(255, 255, 255, 0.2);
  --line-dark: rgba(0, 0, 0, 0.18);
  --muted: rgba(255, 255, 255, 0.62);
  --muted-dark: rgba(0, 0, 0, 0.58);
  --page: min(100% - 40px, 1480px);
  --header-height: 78px;
  --ease: cubic-bezier(.2, .75, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--white);
  color: var(--black);
}

button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  font: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--black);
  padding: 10px 14px;
  transition: transform .2s ease;
}

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

.page-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .16;
  background-image:
    linear-gradient(to right, transparent calc(25% - 1px), rgba(255,255,255,.12) 25%, transparent calc(25% + 1px)),
    linear-gradient(to right, transparent calc(50% - 1px), rgba(255,255,255,.12) 50%, transparent calc(50% + 1px)),
    linear-gradient(to right, transparent calc(75% - 1px), rgba(255,255,255,.12) 75%, transparent calc(75% + 1px));
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
}

.cursor-glow {
  position: fixed;
  width: 520px;
  height: 520px;
  left: 0;
  top: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,255,255,.075), rgba(255,255,255,0) 66%);
  opacity: 0;
  transition: opacity .25s ease;
}

body.pointer-active .cursor-glow {
  opacity: 1;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 999;
  background: transparent;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left center;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--page);
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,.86);
  backdrop-filter: blur(16px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.wordmark-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--white);
  font-size: 11px;
  letter-spacing: .16em;
}

.wordmark-name {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .13em;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a,
.menu-toggle {
  position: relative;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 1px;
  background: var(--white);
  transition: right .3s var(--ease);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  right: 0;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 12px;
  border: 0;
  padding: 10px 0;
  background: transparent;
  cursor: pointer;
}

.menu-icon,
.menu-icon::before {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--white);
  transition: transform .3s var(--ease), top .3s var(--ease);
}

.menu-icon {
  position: relative;
}

.menu-icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-icon {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon::before {
  top: 0;
  transform: rotate(-90deg);
}

main,
.site-footer {
  position: relative;
  z-index: 2;
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: 140px 0;
}

.section-invert {
  width: 100%;
  padding-left: max(20px, calc((100vw - min(100vw - 40px, 1480px)) / 2));
  padding-right: max(20px, calc((100vw - min(100vw - 40px, 1480px)) / 2));
  background: var(--white);
  color: var(--black);
}

.hero {
  min-height: 100svh;
  padding-top: calc(var(--header-height) + 56px);
  padding-bottom: 38px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-time {
  margin-left: auto;
  font-variant-numeric: tabular-nums;
}

.status-dot {
  width: 7px;
  height: 7px;
  border: 1px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255,255,255,.4);
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,.35); }
  50% { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: clamp(56px, 8vw, 140px);
  align-items: end;
  margin: clamp(70px, 11vh, 140px) 0;
}

.eyebrow,
.section-index {
  margin: 0 0 22px;
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--muted);
}

.section-invert .section-index {
  color: var(--muted-dark);
}

.hero-title {
  margin: 0;
  max-width: 1060px;
  font-size: clamp(3.5rem, 7vw, 8.6rem);
  font-weight: 400;
  line-height: .93;
  letter-spacing: -.06em;
}

.hero-title span {
  -webkit-text-stroke: 1px var(--white);
  color: transparent;
}

.hero-summary {
  max-width: 610px;
  margin: 36px 0 0;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  line-height: 1.55;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--white);
  padding: 0 20px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .18em;
  transition: background .25s ease, color .25s ease;
}

.button-solid {
  background: var(--white);
  color: var(--black);
}

.button-solid:hover,
.button-solid:focus-visible {
  background: transparent;
  color: var(--white);
}

.button-outline:hover,
.button-outline:focus-visible {
  background: var(--white);
  color: var(--black);
}

.hero-console {
  border: 1px solid var(--line);
  background: rgba(0,0,0,.7);
}

.console-head {
  display: flex;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  font-family: "Courier New", monospace;
  font-size: 9px;
  letter-spacing: .13em;
}

.console-head span:last-child::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--white);
}

.console-list {
  margin: 0;
}

.console-list div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.console-list dt,
.console-list dd {
  margin: 0;
  font-size: 11px;
}

.console-list dt {
  color: var(--muted);
}

.console-list dd {
  text-align: right;
}

.console-signal {
  height: 82px;
  display: flex;
  align-items: flex-end;
  gap: 5px;
  padding: 18px 16px;
  overflow: hidden;
}

.console-signal span {
  flex: 1;
  min-height: 10%;
  border: 1px solid var(--white);
  border-bottom: 0;
  animation: signal 2.4s ease-in-out infinite alternate;
}

.console-signal span:nth-child(2) { height: 62%; animation-delay: -.4s; }
.console-signal span:nth-child(3) { height: 35%; animation-delay: -.8s; }
.console-signal span:nth-child(4) { height: 82%; animation-delay: -1.2s; }
.console-signal span:nth-child(5) { height: 49%; animation-delay: -1.6s; }
.console-signal span:nth-child(6) { height: 70%; animation-delay: -2s; }
.console-signal span:nth-child(7) { height: 27%; animation-delay: -1s; }
.console-signal span:nth-child(8) { height: 92%; animation-delay: -.2s; }

@keyframes signal {
  to { height: 20%; }
}

.hero-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--muted);
}

.scroll-arrow {
  font-size: 20px;
  animation: bob 1.6s ease-in-out infinite;
}

@keyframes bob {
  50% { transform: translateY(6px); }
}

.statement {
  display: grid;
  grid-template-columns: minmax(150px, .45fr) minmax(0, 1.55fr);
  gap: 50px;
  align-items: start;
}

.statement-copy {
  margin: 0;
  max-width: 1120px;
  font-size: clamp(2.4rem, 5vw, 6.7rem);
  line-height: 1.02;
  letter-spacing: -.055em;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 420px);
  gap: 50px;
  align-items: end;
  margin-bottom: 76px;
}

.section-head h2,
.about-intro h2,
.contact-main h2 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(2.8rem, 5vw, 6rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.055em;
}

.section-note {
  margin: 0;
  max-width: 390px;
  color: var(--muted);
  font-size: 14px;
}

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

.project {
  position: relative;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.project-link {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) minmax(180px, 270px);
  gap: 30px;
  align-items: start;
  padding: 38px 0;
}

.project-number {
  font-family: "Courier New", monospace;
  font-size: 11px;
  color: var(--muted);
}

.project-title-row {
  display: flex;
  align-items: baseline;
  gap: 20px;
}

.project h3 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.045em;
}

.project-title-row > span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--muted);
}

.project-main > p {
  max-width: 770px;
  margin: 22px 0 0;
  color: var(--muted);
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.project-tags li {
  border: 1px solid var(--line);
  padding: 6px 9px;
  font-family: "Courier New", monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.project-meta {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: end;
  gap: 10px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--muted);
}

.project-arrow {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-top: 22px;
  border: 1px solid var(--line);
  color: var(--white);
  font-size: 20px;
  transition: background .25s ease, color .25s ease, transform .35s var(--ease);
}

.project-link:hover .project-arrow,
.project-link:focus-visible .project-arrow {
  background: var(--white);
  color: var(--black);
  transform: rotate(45deg);
}

.project-visual {
  position: relative;
  height: 0;
  margin-left: 100px;
  overflow: hidden;
  background: var(--white);
  color: var(--black);
  transition: height .65s var(--ease), margin-bottom .65s var(--ease);
}

.project:hover .project-visual,
.project:focus-within .project-visual {
  height: 260px;
  margin-bottom: 38px;
}

.market-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.14) 1px, transparent 1px);
  background-size: 52px 52px;
}

.market-line {
  position: absolute;
  left: 5%;
  right: 5%;
  height: 2px;
  background: var(--black);
  transform-origin: left center;
}

.market-line-a {
  top: 58%;
  clip-path: polygon(0 70%, 8% 60%, 13% 75%, 19% 46%, 27% 55%, 35% 25%, 43% 45%, 51% 15%, 58% 35%, 67% 25%, 76% 50%, 84% 35%, 92% 10%, 100% 0, 100% 100%, 0 100%);
  height: 110px;
}

.market-line-b {
  top: 43%;
  opacity: .35;
  transform: rotate(-4deg);
}

.market-readout {
  position: absolute;
  inset: 20px 24px auto;
  display: flex;
  justify-content: space-between;
  font-family: "Courier New", monospace;
  font-size: 10px;
  letter-spacing: .12em;
}

.project-visual-type {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
}

.type-large {
  font-size: clamp(7rem, 16vw, 15rem);
  line-height: .7;
  letter-spacing: -.08em;
}

.type-small {
  max-width: 280px;
  text-align: right;
  font-size: 18px;
  line-height: 1.3;
}

.project-visual-radar {
  background: var(--black);
  border: 1px solid var(--white);
}

.radar-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid var(--white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.radar-ring-1 { width: 100px; height: 100px; }
.radar-ring-2 { width: 190px; height: 190px; opacity: .65; }
.radar-ring-3 { width: 290px; height: 290px; opacity: .35; }

.radar-sweep {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 145px;
  height: 1px;
  background: var(--white);
  transform-origin: left center;
  animation: sweep 4s linear infinite;
}

@keyframes sweep {
  to { transform: rotate(360deg); }
}

.radar-point {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 7px rgba(255,255,255,.12);
}

.point-a { left: 42%; top: 38%; }
.point-b { left: 62%; top: 57%; }
.point-c { left: 53%; top: 72%; }

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(60px, 10vw, 180px);
  align-items: start;
}

.about-copy {
  padding-top: 38px;
}

.about-copy p {
  max-width: 760px;
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted-dark);
}

.about-copy .about-lead {
  color: var(--black);
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  line-height: 1.25;
  letter-spacing: -.03em;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--black);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .15em;
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 110px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.facts > div {
  min-height: 230px;
  padding: 24px;
  border-right: 1px solid var(--line-dark);
}

.facts > div:last-child {
  border-right: 0;
}

.facts span {
  display: block;
  margin-bottom: 60px;
  font-family: "Courier New", monospace;
  font-size: 10px;
  color: var(--muted-dark);
}

.facts strong {
  font-size: 21px;
  font-weight: 400;
}

.facts p {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--muted-dark);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.capability {
  min-height: 320px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-id {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  font-family: "Courier New", monospace;
  font-size: 11px;
}

.capability h3 {
  margin: 80px 0 18px;
  font-size: clamp(1.8rem, 3vw, 3.4rem);
  font-weight: 400;
  letter-spacing: -.045em;
}

.capability p {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
}

.stack-marquee {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 90px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stack-track {
  width: max-content;
  display: flex;
  align-items: center;
  animation: marquee 28s linear infinite;
}

.stack-track span {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding: 20px 32px;
  font-size: 11px;
  letter-spacing: .18em;
}

.stack-track span::after {
  content: "✳";
  font-size: 10px;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.process-list li {
  display: grid;
  grid-template-columns: 80px minmax(180px, .6fr) minmax(0, 1.4fr);
  gap: 30px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-dark);
}

.process-list span {
  font-family: "Courier New", monospace;
  font-size: 10px;
  color: var(--muted-dark);
}

.process-list strong {
  font-size: clamp(1.8rem, 3vw, 3.4rem);
  font-weight: 400;
  letter-spacing: -.04em;
}

.process-list p {
  margin: 0;
  max-width: 620px;
  color: var(--muted-dark);
}

.contact {
  min-height: 82vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.contact-top > span {
  max-width: 430px;
  text-align: right;
  color: var(--muted);
  font-size: 13px;
}

.contact-main {
  margin: 110px 0;
}

.contact-main h2 {
  max-width: 1200px;
  font-size: clamp(4rem, 8vw, 9.2rem);
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 70px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: clamp(1.4rem, 2.5vw, 2.6rem);
  transition: padding .35s var(--ease), background .35s ease, color .35s ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  padding-left: 24px;
  padding-right: 24px;
  background: var(--white);
  color: var(--black);
}

.contact-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
}

.contact-meta span:nth-child(2) { text-align: center; }
.contact-meta span:last-child { text-align: right; }

.site-footer {
  width: var(--page);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 5px;
}

@media (max-width: 1080px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-console {
    max-width: 620px;
  }

  .project-link {
    grid-template-columns: 50px minmax(0, 1fr);
  }

  .project-meta {
    grid-column: 2;
    grid-template-columns: repeat(3, auto);
    justify-content: start;
    justify-items: start;
  }

  .project-arrow {
    margin: 0 0 0 16px;
  }

  .facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .facts > div:nth-child(2) {
    border-right: 0;
  }

  .facts > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line-dark);
  }
}

@media (max-width: 780px) {
  :root {
    --page: min(100% - 28px, 1480px);
    --header-height: 68px;
  }

  .page-grid,
  .cursor-glow {
    display: none;
  }

  .wordmark-name {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    z-index: 102;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 18px;
    padding: 30px;
    background: var(--black);
    transform: translateY(-100%);
    transition: transform .45s var(--ease);
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a {
    font-size: clamp(2.7rem, 12vw, 5rem);
    line-height: 1;
    letter-spacing: -.04em;
    text-transform: none;
  }

  .site-nav a::after {
    display: none;
  }

  .section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .section-invert {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 42px);
    padding-bottom: 28px;
  }

  .hero-layout {
    margin-top: 70px;
    margin-bottom: 70px;
    gap: 50px;
  }

  .hero-title {
    font-size: clamp(3.25rem, 15vw, 5.8rem);
  }

  .hero-summary {
    font-size: 16px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .statement,
  .section-head,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .statement {
    gap: 24px;
  }

  .section-head {
    gap: 24px;
    margin-bottom: 50px;
  }

  .section-note {
    max-width: 100%;
  }

  .project-link {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 16px;
    padding: 28px 0;
  }

  .project-title-row {
    display: block;
  }

  .project-title-row > span {
    display: block;
    margin-top: 9px;
  }

  .project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    align-items: center;
  }

  .project-arrow {
    width: 38px;
    height: 38px;
    margin-left: auto;
  }

  .project-visual {
    display: none;
  }

  .about-copy {
    padding-top: 0;
  }

  .facts {
    grid-template-columns: 1fr;
    margin-top: 70px;
  }

  .facts > div,
  .facts > div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .facts > div:last-child {
    border-bottom: 0;
  }

  .capability-grid {
    grid-template-columns: 1fr;
  }

  .capability {
    min-height: 260px;
  }

  .capability h3 {
    margin-top: 50px;
  }

  .process-list li {
    grid-template-columns: 38px 1fr;
    gap: 16px;
  }

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

  .contact-top,
  .contact-meta,
  .site-footer {
    display: flex;
    flex-direction: column;
  }

  .contact-top > span,
  .contact-meta span:nth-child(2),
  .contact-meta span:last-child {
    text-align: left;
  }

  .contact-main {
    margin: 90px 0;
  }

  .contact-main h2 {
    font-size: clamp(3.6rem, 16vw, 6.6rem);
  }

  .contact-link {
    margin-top: 50px;
    font-size: 22px;
  }
}

@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;
  }
}
