@font-face {
  font-family: "Pirulen";
  src: url("../fonts/pirulen.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Araboto";
  src: url("../fonts/araboto-light.woff2") format("woff2");
  font-display: swap;
  font-weight: 300;
}

:root {
  --ink: #231f20;
  --white: #ffffff;
  --stellar-blue: #d8e0f2;
  --blue-soft: #edf1f9;
  --blue-mid: #8ea4cf;
  --blue: #4b6196;
  --blue-deep: #26375e;
  --ice: var(--stellar-blue);
  --aqua: var(--blue-soft);
  --line: 1px solid var(--ink);
  --pad: clamp(1.25rem, 2.8vw, 3rem);
  --gutter: clamp(1.1rem, 4vw, 4.5rem);
  --display: "Pirulen", "Arial Black", sans-serif;
  --brand: "Araboto", "Helvetica Neue", Arial, sans-serif;
  --body: Arial, "Helvetica Neue", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--white);
  font-family: var(--body);
  font-size: clamp(1rem, 0.3vw + 0.93rem, 1.18rem);
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

button {
  color: inherit;
  font: inherit;
}

:focus-visible {
  outline: 4px solid var(--blue-mid);
  outline-offset: 4px;
  box-shadow: 0 0 0 7px var(--ink);
}

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

.stellar-cursor {
  display: none;
}

@media (pointer: fine) and (prefers-reduced-motion: no-preference) {
  html.stellar-cursor-ready,
  html.stellar-cursor-ready a,
  html.stellar-cursor-ready button {
    cursor: none;
  }

  .stellar-cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    display: block;
    width: 1.75rem;
    height: 1.75rem;
    border: 1px solid var(--white);
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 1px rgb(35 31 32 / 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translate3d(-4rem, -4rem, 0) translate(-50%, -50%);
    transition: width 150ms ease, height 150ms ease, background 150ms ease, border-color 150ms ease, opacity 100ms ease;
  }

  .stellar-cursor::before,
  .stellar-cursor::after {
    content: "";
    position: absolute;
    border-radius: 50%;
  }

  .stellar-cursor::before {
    inset: 50% auto auto 50%;
    width: 0.28rem;
    height: 0.28rem;
    background: var(--white);
    transform: translate(-50%, -50%);
  }

  .stellar-cursor::after {
    top: 0.15rem;
    right: 0.08rem;
    width: 0.38rem;
    height: 0.38rem;
    border: 1px solid var(--ink);
    background: var(--aqua);
  }

  .stellar-cursor.is-visible {
    opacity: 1;
  }

  .stellar-cursor.is-interactive {
    width: 2.7rem;
    height: 2.7rem;
    border-color: var(--ink);
    background: var(--ice);
  }

  .stellar-cursor.is-interactive::before {
    background: var(--ink);
  }

  .stellar-cursor.is-pressed {
    width: 1.35rem;
    height: 1.35rem;
  }
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.7rem 1rem;
  background: var(--white);
  color: var(--ink);
  font-family: var(--display);
  font-size: 0.62rem;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.shell {
  width: min(100%, 100rem);
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(12rem, 1fr) auto;
  min-height: 5.5rem;
  border-bottom: var(--line);
  background: var(--ice);
}

.wordmark {
  display: flex;
  align-items: center;
  width: fit-content;
  padding: 0.85rem var(--gutter);
}

.wordmark img {
  width: clamp(8.5rem, 12vw, 11.5rem);
  height: auto;
}

.site-nav,
.site-nav__list {
  display: flex;
}

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

.site-nav a {
  display: grid;
  place-items: center;
  min-width: 7.6rem;
  height: 100%;
  padding: 1rem 1.25rem;
  border-left: var(--line);
  font-family: var(--display);
  font-size: 0.59rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 170ms ease, color 170ms ease;
}

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

.site-nav a[href="contact.html"] {
  background: var(--blue-deep);
  color: var(--white);
}

.site-nav a[href="contact.html"]:hover,
.site-nav a[href="contact.html"][aria-current="page"] {
  background: var(--white);
  color: var(--ink);
}

.menu-button {
  display: none;
  width: 5.5rem;
  border: 0;
  border-left: var(--line);
  background: var(--blue-deep);
  color: var(--white);
  cursor: pointer;
  font-family: var(--display);
  font-size: 0.56rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.menu-button__close,
.menu-button[aria-expanded="true"] .menu-button__open {
  display: none;
}

.menu-button[aria-expanded="true"] .menu-button__close {
  display: inline;
}

.eyebrow,
.section-label,
.meta {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(0.55rem, 0.2vw + 0.51rem, 0.68rem);
  letter-spacing: 0.07em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before,
.section-label::before {
  content: "◌";
  margin-right: 0.65rem;
  color: var(--blue);
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(28rem, 0.95fr);
  min-height: calc(100svh - 5.5rem);
  border-bottom: var(--line);
}

.home-hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  padding: var(--gutter);
  background: var(--ice);
}

.home-hero h1 {
  max-width: 10ch;
  margin: clamp(3.5rem, 9vh, 7.5rem) 0 3rem;
  font-family: var(--brand);
  font-size: clamp(4rem, 7.7vw, 8.8rem);
  font-weight: 300;
  letter-spacing: -0.065em;
  line-height: 0.82;
}

.home-hero h1 span {
  display: block;
}

.home-hero h1 .perspective {
  color: transparent;
  font-family: var(--display);
  font-size: 0.67em;
  letter-spacing: -0.03em;
  line-height: 1.08;
  -webkit-text-stroke: 2px var(--ink);
  text-transform: uppercase;
}

.home-hero__foot {
  display: grid;
  grid-template-columns: minmax(15rem, 32rem) auto;
  gap: 2rem;
  align-items: end;
}

.home-hero__intro {
  margin: 0;
  font-size: clamp(1rem, 1.2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.35;
}

.home-hero__media {
  position: relative;
  min-height: 35rem;
  overflow: hidden;
  background: var(--ink);
}

.home-hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgb(35 31 32 / 0.7));
  pointer-events: none;
}

.media-coordinate {
  position: absolute;
  z-index: 2;
  top: var(--pad);
  right: var(--pad);
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--white);
  color: var(--white);
  font-family: var(--display);
  font-size: 0.55rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.media-caption {
  position: absolute;
  z-index: 2;
  right: var(--pad);
  bottom: var(--pad);
  left: var(--pad);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--white);
  color: var(--white);
  font-family: var(--display);
  font-size: 0.58rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: fit-content;
  min-height: 3.7rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-family: var(--display);
  font-size: 0.58rem;
  letter-spacing: 0.05em;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.button::after {
  content: "↗";
  font-family: var(--body);
  font-size: 1.35rem;
  line-height: 0;
}

.button:hover {
  background: var(--blue-deep);
  transform: translate(-3px, -3px);
  box-shadow: 3px 3px 0 var(--ink);
}

.button--light {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button--light:hover {
  border-color: var(--aqua);
  background: var(--aqua);
}

.service-tape {
  overflow: hidden;
  border-bottom: var(--line);
  background: var(--white);
  white-space: nowrap;
}

.service-tape__track {
  display: flex;
  width: max-content;
  animation: tape 32s linear infinite;
}

.service-tape__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 100vw;
  padding: 0.9rem 0;
  font-family: var(--display);
  font-size: clamp(0.65rem, 1vw, 0.88rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-tape__group span {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  padding-right: 1.2rem;
}

.service-tape__group span::after {
  content: "◉";
  color: var(--blue);
}

.section {
  padding: clamp(4.5rem, 9vw, 9rem) var(--gutter);
}

.section--ink {
  background: var(--ink);
  color: var(--white);
}

.section--ice {
  background: var(--ice);
}

.section--ice .statement strong {
  color: var(--blue-deep);
}

.section--blue {
  background: var(--blue-deep);
  color: var(--white);
}

.section-intro {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--pad);
}

.section-intro .section-label {
  grid-column: 1 / 4;
}

.section-intro__copy {
  grid-column: 4 / 13;
}

.statement {
  max-width: 14ch;
  margin: 0;
  font-family: var(--brand);
  font-size: clamp(2.8rem, 6vw, 6.8rem);
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.statement strong {
  color: var(--aqua);
  font-family: var(--display);
  font-size: 0.66em;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.section:not(.section--ink):not(.section--blue) .statement strong {
  color: var(--blue-deep);
}

.lead {
  max-width: 46rem;
  margin: 2rem 0 0;
  font-size: clamp(1.12rem, 1.3vw, 1.5rem);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column: 1 / 13;
  margin-top: clamp(4rem, 8vw, 8rem);
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
}

.value-card {
  display: flex;
  flex-direction: column;
  min-height: 23rem;
  padding: var(--pad);
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}

.value-card__number {
  font-family: var(--display);
  font-size: 0.58rem;
}

.value-card h3 {
  max-width: 10ch;
  margin: auto 0 1rem;
  font-family: var(--brand);
  font-size: clamp(2.2rem, 3.6vw, 4rem);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.value-card p {
  margin: 0;
}

.perspective-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(10rem, 15vw);
  gap: 0.65rem;
  margin-top: clamp(3rem, 6vw, 6rem);
}

.perspective-card {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.perspective-card:nth-child(1) {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
}

.perspective-card:nth-child(2) {
  grid-column: 8 / 13;
  grid-row: 1;
}

.perspective-card:nth-child(3) {
  grid-column: 8 / 11;
  grid-row: 2;
}

.perspective-card:nth-child(4) {
  grid-column: 11 / 13;
  grid-row: 2;
}

.perspective-card img,
.perspective-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88);
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 300ms ease;
}

.perspective-card:hover img,
.perspective-card:hover video {
  transform: scale(1.035);
  filter: saturate(1.1);
}

.perspective-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0.7rem;
  background: linear-gradient(transparent, rgb(35 31 32 / 0.9));
  color: var(--white);
  font-family: var(--display);
  font-size: 0.54rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-index {
  margin-top: clamp(3rem, 7vw, 7rem);
  border-top: 1px solid currentColor;
}

.service-index__row {
  display: grid;
  grid-template-columns: 0.25fr 1fr 0.65fr auto;
  gap: var(--pad);
  align-items: center;
  min-height: 8.5rem;
  padding-block: 1.4rem;
  border-bottom: 1px solid currentColor;
  color: inherit;
  text-decoration: none;
}

.service-index__row span:first-child {
  font-family: var(--display);
  font-size: 0.58rem;
}

.service-index__row strong {
  font-family: var(--brand);
  font-size: clamp(1.8rem, 3.6vw, 3.8rem);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.service-index__row p {
  margin: 0;
  font-size: 0.92rem;
}

.service-index__row::after {
  content: "↗";
  font-size: 1.6rem;
  transition: transform 170ms ease;
}

.service-index__row:hover strong {
  color: var(--blue-deep);
}

.service-index__row:hover::after {
  transform: translate(0.3rem, -0.3rem);
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  padding: clamp(4rem, 8vw, 8rem) var(--gutter);
  background: var(--blue-deep);
  color: var(--white);
}

.cta-band h2 {
  max-width: 10ch;
  margin: 1.2rem 0 0;
  font-family: var(--brand);
  font-size: clamp(3rem, 7.5vw, 8rem);
  font-weight: 300;
  letter-spacing: -0.065em;
  line-height: 0.84;
}

.page-hero {
  position: relative;
  min-height: clamp(35rem, 70vh, 52rem);
  overflow: hidden;
  border-bottom: var(--line);
  background: var(--ice);
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: inherit;
  padding: clamp(3rem, 6vw, 6rem) var(--gutter) var(--gutter);
}

.page-title {
  max-width: 11ch;
  margin: 3rem 0;
  font-family: var(--brand);
  font-size: clamp(4rem, 9.5vw, 10.5rem);
  font-weight: 300;
  letter-spacing: -0.07em;
  line-height: 0.88;
}

.page-title strong {
  display: block;
  margin-top: 0.16em;
  color: transparent;
  font-family: var(--display);
  font-size: 0.58em;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  -webkit-text-stroke: 2px var(--ink);
  text-transform: uppercase;
}

.page-hero__dek {
  align-self: end;
  max-width: 38rem;
  margin: 0;
  padding-top: 1rem;
  border-top: var(--line);
  font-size: clamp(1.05rem, 1.3vw, 1.4rem);
  font-weight: 700;
}

.page-orbit {
  position: absolute;
  top: 10%;
  right: -9rem;
  z-index: 1;
  width: clamp(19rem, 34vw, 36rem);
  aspect-ratio: 1;
  border: 1px solid var(--ink);
  border-radius: 50%;
  pointer-events: none;
}

.page-orbit::before,
.page-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.page-orbit::before {
  inset: 19%;
  border: 1px solid var(--ink);
}

.page-orbit::after {
  inset: 45%;
  background: var(--blue);
}

.services-list {
  border-top: 1px solid currentColor;
}

.service-detail {
  display: grid;
  grid-template-columns: 0.2fr 0.75fr 1fr;
  gap: var(--pad);
  padding: clamp(2.8rem, 5vw, 5rem) 0;
  border-bottom: 1px solid currentColor;
}

.service-detail__number {
  font-family: var(--display);
  font-size: 0.58rem;
}

.service-detail h2 {
  max-width: 10ch;
  margin: 0;
  font-family: var(--brand);
  font-size: clamp(2.3rem, 4.6vw, 5.2rem);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 0.87;
}

.service-detail__body {
  max-width: 37rem;
}

.service-detail__body > p {
  margin: 0 0 1.5rem;
}

.product-capabilities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column: 1 / 13;
  margin-top: clamp(3.5rem, 7vw, 7rem);
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
}

.product-capabilities article {
  display: flex;
  flex-direction: column;
  min-height: 20rem;
  padding: var(--pad);
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}

.product-capabilities article > span {
  font-family: var(--display);
  font-size: 0.55rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-capabilities h3 {
  max-width: 12ch;
  margin: auto 0 1rem;
  font-family: var(--brand);
  font-size: clamp(2.2rem, 4vw, 4.3rem);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.product-capabilities p {
  max-width: 35rem;
  margin: 0;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 0.42rem 0.6rem;
  border: 1px solid currentColor;
  font-family: var(--display);
  font-size: 0.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.image-stripe {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  height: clamp(18rem, 32vw, 35rem);
  border-bottom: var(--line);
}

.image-stripe img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-right: var(--line);
}

.image-stripe img:last-child {
  border-right: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.process-grid .statement {
  position: sticky;
  top: 2rem;
  height: fit-content;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  position: relative;
  min-height: 11rem;
  padding: 1.5rem 0 2rem 4.7rem;
  border-top: 1px solid currentColor;
  counter-increment: steps;
}

.steps li::before {
  content: "0" counter(steps);
  position: absolute;
  top: 1.75rem;
  left: 0;
  font-family: var(--display);
  font-size: 0.56rem;
}

.steps h3 {
  margin: 0 0 0.7rem;
  font-family: var(--brand);
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.steps p {
  max-width: 35rem;
  margin: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--pad);
}

.about-grid__aside {
  grid-column: 1 / 4;
}

.about-grid__main {
  grid-column: 4 / 13;
}

.about-grid__main > p:first-child {
  max-width: 15ch;
  margin-top: 0;
  font-family: var(--brand);
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.about-grid__main > p:not(:first-child) {
  max-width: 46rem;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column: 1 / 13;
  margin-top: clamp(3rem, 7vw, 7rem);
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
}

.fact {
  min-height: 13rem;
  padding: var(--pad);
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}

.fact__label {
  font-family: var(--display);
  font-size: 0.54rem;
  text-transform: uppercase;
}

.fact__value {
  display: block;
  margin-top: 3rem;
  font-family: var(--brand);
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.belief-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: var(--line);
}

.belief {
  min-height: 27rem;
  padding: var(--pad);
  border-right: var(--line);
}

.belief:last-child {
  border-right: 0;
}

.belief:nth-child(1) {
  background: var(--aqua);
}

.belief:nth-child(2) {
  background: var(--ice);
}

.belief:nth-child(3) {
  background: var(--blue-deep);
  color: var(--white);
}

.belief span {
  font-family: var(--display);
  font-size: 0.54rem;
}

.belief h2 {
  max-width: 10ch;
  margin: 10rem 0 1rem;
  font-family: var(--brand);
  font-size: clamp(2.2rem, 3.8vw, 4.2rem);
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.belief p {
  margin: 0;
}

.input-note {
  display: grid;
  grid-template-columns: 0.45fr 1.55fr;
  gap: var(--pad);
  padding: var(--pad);
  border: 1px dashed currentColor;
}

.input-note__tag {
  width: fit-content;
  height: fit-content;
  padding: 0.4rem 0.55rem;
  border: 1px solid currentColor;
  font-family: var(--display);
  font-size: 0.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.input-note h2 {
  margin: 0 0 0.8rem;
  font-family: var(--brand);
  font-size: clamp(2rem, 3.6vw, 3.8rem);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.input-note p {
  max-width: 44rem;
  margin: 0;
}

.founder-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(24rem, 0.95fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.founder-story__photo {
  position: sticky;
  top: 2rem;
  margin: 0;
}

.founder-story__photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border: var(--line);
}

.founder-story__photo figcaption {
  padding: 0.75rem 0;
  border-bottom: var(--line);
  font-family: var(--display);
  font-size: 0.52rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.founder-story__copy .section-label {
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
}

.founder-story__copy .statement {
  max-width: 11ch;
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
}

.founder-story__copy > p:not(.section-label) {
  max-width: 40rem;
  margin: 0 0 1.4rem;
}

.founder-story__copy .founder-story__lead {
  padding-top: 1rem;
  border-top: var(--line);
  font-size: clamp(1.1rem, 1.3vw, 1.4rem);
  font-weight: 700;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(23rem, 0.8fr);
  border-bottom: var(--line);
}

.contact-main {
  padding: clamp(3rem, 6vw, 6rem) var(--gutter);
  border-right: var(--line);
  background: var(--ice);
}

.contact-main h1 {
  max-width: 10ch;
  margin: clamp(3rem, 7vw, 6.5rem) 0 2rem;
  font-family: var(--brand);
  font-size: clamp(4rem, 8vw, 9rem);
  font-weight: 300;
  letter-spacing: -0.065em;
  line-height: 0.82;
}

.contact-main__intro {
  max-width: 42rem;
  font-size: clamp(1.1rem, 1.3vw, 1.45rem);
  font-weight: 700;
}

.prompt-group {
  margin-top: clamp(3rem, 6vw, 6rem);
}

.prompt-group h2 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: 0.58rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.prompt-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.prompt-chip {
  padding: 0.75rem 0.85rem;
  border: var(--line);
  border-radius: 0;
  background: transparent;
  font-family: var(--display);
  font-size: 0.52rem;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  cursor: pointer;
}

.prompt-chip:hover,
.prompt-chip[aria-pressed="true"] {
  background: var(--ink);
  color: var(--white);
}

.contact-form {
  margin-top: 2.5rem;
}

.contact-form__honey {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 0 0 1.2rem;
}

.field label {
  font-family: var(--display);
  font-size: 0.52rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.field__req {
  color: var(--blue);
}

.field__hint {
  font-family: var(--body);
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: none;
  opacity: 0.62;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 0.9rem;
  border: var(--line);
  border-radius: 0;
  background: var(--white);
  color: inherit;
  font-family: var(--body);
  font-size: 1rem;
}

.field textarea {
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgb(35 31 32 / 0.45);
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  border-color: var(--blue-deep);
}

.contact-form__actions {
  margin: 1.6rem 0 0;
}

.contact-form__status {
  margin: 1rem 0 0;
  font-family: var(--brand);
  font-size: 1.05rem;
}

.contact-form__status:empty {
  margin: 0;
}

.contact-form__status[data-state="error"] {
  color: #8a2118;
}

.contact-main__direct {
  margin-top: 2rem;
  padding-top: 1.1rem;
  border-top: var(--line);
  font-size: 0.95rem;
}

.contact-aside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 5rem;
  padding: var(--gutter);
  background: var(--ink);
  color: var(--white);
}

.contact-aside__mark {
  width: min(18rem, 80%);
  margin-left: auto;
  filter: invert(1);
}

.contact-facts {
  display: grid;
  gap: 1.4rem;
  margin: 0;
}

.contact-facts div {
  padding-top: 0.75rem;
  border-top: 1px solid currentColor;
}

.contact-facts dt {
  font-family: var(--display);
  font-size: 0.52rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-facts dd {
  margin: 0.4rem 0 0;
  font-family: var(--brand);
  font-size: clamp(1.2rem, 1.8vw, 1.7rem);
}

.contact-facts a {
  overflow-wrap: anywhere;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  padding: clamp(4rem, 8vw, 8rem) var(--gutter);
  border-bottom: 1px solid rgb(255 255 255 / 0.35);
}

.footer-main h2 {
  max-width: 10ch;
  margin: 1.2rem 0 0;
  font-family: var(--brand);
  font-size: clamp(3rem, 7.5vw, 8rem);
  font-weight: 300;
  letter-spacing: -0.065em;
  line-height: 0.84;
}

.footer-meta {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 2rem;
  align-items: end;
  padding: 1.4rem var(--gutter) 1.8rem;
  font-family: var(--display);
  font-size: 0.48rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-meta p {
  margin: 0;
}

.footer-meta a {
  text-decoration: none;
}

.footer-meta a:hover {
  color: var(--aqua);
}

.error-page {
  position: relative;
  display: grid;
  place-items: center;
  min-height: calc(100svh - 5.5rem);
  padding: var(--gutter);
  overflow: hidden;
  background: var(--ice);
  text-align: center;
}

.error-page__orbit {
  position: absolute;
  width: min(78vw, 65rem);
  aspect-ratio: 1;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.error-page__orbit::before,
.error-page__orbit::after {
  content: "";
  position: absolute;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.error-page__orbit::before {
  inset: 18%;
}

.error-page__orbit::after {
  inset: 38%;
  background: var(--blue);
}

.error-page__content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  max-width: 44rem;
  padding: clamp(2rem, 5vw, 5rem);
  border: 1px solid var(--ink);
  background: var(--white);
  box-shadow: 0.8rem 0.8rem 0 var(--blue);
}

.error-page h1 {
  margin: 1.5rem 0 1rem;
  font-family: var(--brand);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 0.85;
}

.error-page p:not(.eyebrow) {
  max-width: 31rem;
  margin: 0 0 2rem;
}

.perspective-grid__more {
  margin: clamp(2rem, 4vw, 3.5rem) 0 0;
}

.work-list {
  margin-top: clamp(3rem, 6vw, 6rem);
  border-top: 1px solid currentColor;
}

.work-piece {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(2.5rem, 5vw, 5rem) 0;
  border-bottom: 1px solid currentColor;
}

/* Vertical reels are far taller than their caption, so they take a
   narrower column to keep the row from stranding empty space. */
.work-piece:has(.work-piece__media--vertical) {
  grid-template-columns: 0.42fr 1fr;
}

.work-piece__media {
  position: relative;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 16 / 9;
  background: var(--ink);
}

.work-piece__media--vertical {
  max-width: 20rem;
  aspect-ratio: 9 / 16;
}

.work-piece__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88);
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 300ms ease;
}

.work-piece:hover .work-piece__media video {
  transform: scale(1.035);
  filter: saturate(1.1);
}

.work-piece__meta {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0.85rem;
}

.work-piece__index {
  font-family: var(--display);
  font-size: 0.58rem;
  letter-spacing: 0.05em;
}

.work-piece__meta h3 {
  max-width: 14ch;
  margin: 0;
  font-family: var(--brand);
  font-size: clamp(2rem, 3.8vw, 4rem);
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 0.88;
}

.work-piece__where {
  margin: 0;
  font-family: var(--display);
  font-size: 0.52rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.72;
}

.work-piece__meta p:not(.work-piece__where) {
  max-width: 38rem;
  margin: 0;
}

.work-piece__meta .tag-list {
  margin-top: 0.4rem;
}

.work-note {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1.4rem;
  max-width: 54rem;
}

.work-note .statement,
.work-note .lead {
  margin: 0;
}

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

@media (max-width: 70rem) {
  .site-nav a {
    min-width: 6.25rem;
    padding-inline: 0.75rem;
  }

  .home-hero {
    grid-template-columns: minmax(0, 1fr) minmax(23rem, 0.8fr);
  }

  .home-hero__foot {
    grid-template-columns: 1fr;
  }

  .perspective-grid {
    grid-auto-rows: minmax(9rem, 18vw);
  }
}

@media (max-width: 54rem) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    height: calc(100svh - 5.5rem);
    background: var(--ice);
  }

  .site-nav[data-open="true"] {
    display: block;
  }

  .site-nav__list {
    display: grid;
    grid-template-rows: repeat(4, 1fr);
    height: 100%;
  }

  .site-nav a {
    justify-content: start;
    min-width: 0;
    border-bottom: var(--line);
    border-left: 0;
    font-family: var(--brand);
    font-size: clamp(2.4rem, 9vw, 5rem);
    letter-spacing: -0.04em;
    text-transform: none;
  }

  .site-nav a[href="contact.html"] {
    color: var(--white);
  }

  .home-hero {
    grid-template-columns: 1fr;
  }

  .home-hero__copy {
    min-height: 42rem;
  }

  .home-hero__media {
    min-height: 55svh;
  }

  .section-intro .section-label,
  .section-intro__copy {
    grid-column: 1 / 13;
  }

  .section-intro .section-label {
    margin-bottom: 2rem;
  }

  .value-grid,
  .belief-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    min-height: 17rem;
  }

  .work-piece,
  .work-piece:has(.work-piece__media--vertical) {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .work-piece__media--vertical {
    max-width: 100%;
    aspect-ratio: 4 / 5;
  }

  .perspective-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 16rem;
  }

  .perspective-card:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
  }

  .perspective-card:nth-child(2),
  .perspective-card:nth-child(3),
  .perspective-card:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .perspective-card:nth-child(4) {
    grid-column: 1 / 3;
  }

  .service-index__row {
    grid-template-columns: 0.18fr 1fr auto;
  }

  .service-index__row p {
    display: none;
  }

  .cta-band,
  .footer-main,
  .process-grid,
  .contact-layout,
  .input-note,
  .founder-story__grid {
    grid-template-columns: 1fr;
  }

  .founder-story__photo {
    position: static;
  }

  .product-capabilities {
    grid-template-columns: 1fr;
  }

  .process-grid .statement {
    position: static;
  }

  .about-grid__aside,
  .about-grid__main {
    grid-column: 1 / 13;
  }

  .about-grid__aside {
    margin-bottom: 2rem;
  }

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

  .belief {
    min-height: 19rem;
    border-right: 0;
    border-bottom: var(--line);
  }

  .belief h2 {
    margin-top: 5rem;
  }

  .contact-main {
    border-right: 0;
    border-bottom: var(--line);
  }

  .contact-aside {
    min-height: 35rem;
  }
}

@media (max-width: 36rem) {
  :root { --gutter: 1rem; }

  .wordmark { padding-inline: 1rem; }

  .wordmark img { width: 8.25rem; }

  .home-hero__copy {
    min-height: 39rem;
    padding-top: 2rem;
  }

  .home-hero h1 {
    margin-block: 3.5rem 2rem;
    font-size: clamp(3.65rem, 16.5vw, 5rem);
  }

  .home-hero h1 .perspective {
    font-size: 0.54em;
    letter-spacing: -0.045em;
    -webkit-text-stroke-width: 1px;
  }

  .home-hero__foot { gap: 1.2rem; }

  .home-hero__media { min-height: 27rem; }

  .page-hero { min-height: 38rem; }

  .page-title {
    font-size: clamp(3.6rem, 16vw, 4.8rem);
  }

  .page-orbit {
    top: 18%;
    right: -12rem;
    opacity: 0.45;
  }

  .service-detail {
    grid-template-columns: 1fr;
  }

  .service-detail__body { max-width: none; }

  .image-stripe {
    grid-template-columns: 1fr;
    height: auto;
  }

  .image-stripe img {
    height: 16rem;
    border-right: 0;
    border-bottom: var(--line);
  }

  .image-stripe img:last-child { border-bottom: 0; }

  .perspective-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 15rem;
  }

  .perspective-card:nth-child(n) {
    grid-column: 1;
    grid-row: auto;
  }

  .perspective-card:nth-child(1) { min-height: 25rem; }

  .service-index__row {
    grid-template-columns: 2.5rem 1fr auto;
    min-height: 7rem;
  }

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

  .field-row { grid-template-columns: 1fr; }

  .product-capabilities article { min-height: 17rem; }

  .fact { min-height: 11rem; }

  .fact__value { margin-top: 2rem; }

  .steps li { padding-left: 3.1rem; }

  .footer-meta {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 0.7rem;
  }

  .error-page__content {
    box-shadow: 0.45rem 0.45rem 0 var(--blue);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .service-tape__track { transform: none; }
}
