:root {
  color-scheme: light;
  --paper: #f2f2f0;
  --white: #ffffff;
  --ink: #181818;
  --gray: #747474;
  --line: #d6d6d2;
  --pink: #f3b4c5;
  --blue: #bfd8ff;
  --acid: #dfff58;
  --sans:
    -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial,
    sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.4;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid #005fcc;
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 500;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

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

.page-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 450;
  height: 3px;
  pointer-events: none;
}

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

.site-header {
  position: fixed;
  inset: 0;
  bottom: auto;
  z-index: 300;
  pointer-events: none;
}

.nav {
  width: calc(100% - 48px);
  height: 88px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: auto;
}

.logo {
  width: 58px;
  height: 52px;
  display: grid;
  place-items: center;
  position: relative;
  isolation: isolate;
}

.logo::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  width: 8px;
  height: 8px;
  background: var(--acid);
  transition: width 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.logo-orbit {
  width: 42px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.logo-orbit img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo:hover .logo-orbit {
  transform: translateY(-2px);
}

.logo:hover::after {
  width: 18px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switcher {
  position: relative;
  font-family: var(--mono);
}

.language-toggle {
  width: 50px;
  min-height: 42px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  color: var(--ink);
  background: rgba(242, 242, 240, 0.8);
  border: 1px solid var(--ink);
  border-radius: 4px;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.language-toggle b {
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  transition: transform 180ms ease;
}

.language-switcher.is-open .language-toggle b {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 178px;
  padding: 6px;
  background: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 4px;
  box-shadow: 0 18px 45px rgba(24, 24, 24, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity 160ms ease,
    visibility 160ms ease,
    transform 160ms ease;
}

.language-switcher.is-open .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-menu a {
  width: 100%;
  min-height: 38px;
  padding: 9px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 2px;
  font-family: inherit;
  font-size: 11px;
  text-align: left;
  cursor: pointer;
}

.language-menu a:hover,
.language-menu a.is-current {
  background: var(--acid);
}

.language-menu a span {
  opacity: 0.58;
}

.nav-outline,
.nav-contact {
  min-height: 42px;
  padding: 11px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    color 200ms ease,
    background 200ms ease,
    transform 150ms ease;
}

.nav-outline {
  background: rgba(242, 242, 240, 0.8);
  backdrop-filter: blur(12px);
}

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

.nav-outline:hover,
.nav-contact:hover {
  color: var(--ink);
  background: var(--acid);
}

.nav-contact b {
  font-size: 14px;
  font-weight: 400;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: var(--paper);
}

.menu-toggle i,
.menu-toggle i::before {
  display: block;
  width: 18px;
  height: 1px;
  margin: auto;
  background: var(--ink);
  transition: transform 200ms ease;
}

.menu-toggle i::before {
  content: "";
  transform: translateY(-6px);
}

.menu-open .menu-toggle i {
  transform: rotate(45deg);
}

.menu-open .menu-toggle i::before {
  transform: rotate(90deg);
}

.hero {
  --mx: 50%;
  --my: 50%;
  position: relative;
  min-height: 1080px;
  overflow: hidden;
  background: #ededeb;
  isolation: isolate;
}

.dot-field,
.dot-focus {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.dot-field {
  z-index: -2;
  background-image: radial-gradient(circle, #c8c8c4 1.15px, transparent 1.25px);
  background-size: 6px 6px;
}

.dot-focus {
  z-index: -1;
  background-image: radial-gradient(circle, #292929 1.25px, transparent 1.35px);
  background-size: 6px 6px;
  mask-image: radial-gradient(
    circle 180px at var(--mx) var(--my),
    #000 0%,
    rgba(0, 0, 0, 0.8) 42%,
    transparent 100%
  );
  -webkit-mask-image: radial-gradient(
    circle 180px at var(--mx) var(--my),
    #000 0%,
    rgba(0, 0, 0, 0.8) 42%,
    transparent 100%
  );
  transition: opacity 250ms ease;
}

.hero-inner {
  width: min(calc(100% - 64px), 1040px);
  margin-inline: auto;
  padding: 176px 0 100px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-awards,
.eyebrow {
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 980px;
  margin: 54px auto 0;
  font-size: 118px;
  font-weight: 430;
  line-height: 0.82;
  letter-spacing: -0.065em;
}

.hero h1 > span {
  display: block;
  overflow: hidden;
  padding: 0.04em 0 0.09em;
}

.hero h1 i {
  display: block;
  font-style: normal;
  transform: translateY(120%) rotate(2deg);
  transform-origin: left bottom;
  animation: hero-type-in 900ms 160ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero h1 > span:nth-child(2) i {
  animation-delay: 260ms;
}

.hero h1 > span:nth-child(3) i {
  animation-delay: 360ms;
}

@keyframes hero-type-in {
  to {
    transform: translateY(0) rotate(0);
  }
}

.hero-intro {
  max-width: 560px;
  margin: 58px auto 0;
  font-size: 19px;
  line-height: 1.4;
}

.hero-proof {
  width: min(100%, 720px);
  margin: 76px auto 0;
  padding-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(24, 24, 24, 0.3);
}

.hero-proof span {
  display: grid;
  gap: 5px;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.hero-proof b {
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 500;
}

.hero-scroll {
  position: absolute;
  right: 28px;
  bottom: 24px;
  display: flex;
  gap: 20px;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.hero-scroll span {
  animation: scroll-nudge 1.6s ease-in-out infinite;
}

@keyframes scroll-nudge {
  50% {
    transform: translateY(5px);
  }
}

.about {
  position: relative;
  height: 190svh;
  background: var(--paper);
}

.about-sticky {
  position: sticky;
  top: 0;
  min-height: 100svh;
  padding: 120px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-sticky h2 {
  max-width: 1110px;
  margin: 52px auto 0;
  font-size: 92px;
  font-weight: 430;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.kinetic-word {
  color: #7f7f7b;
  transition: color 240ms ease;
}

.kinetic-word.is-lit {
  color: var(--ink);
}

.about-sticky > p:last-child {
  max-width: 470px;
  margin: 54px auto 0;
  font-size: 17px;
}

.work {
  position: relative;
  height: 610svh;
  background: var(--paper);
}

.work-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  padding: 104px 24px 28px;
  overflow: hidden;
}

.section-head {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 24px;
  width: 300px;
  display: grid;
  gap: 34px;
  transform: translateY(-50%);
}

.section-head h2 {
  margin: 0;
  font-size: 82px;
  font-weight: 430;
  line-height: 0.8;
  letter-spacing: -0.065em;
}

.section-head > a {
  width: max-content;
  padding: 10px 0;
  border-bottom: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.projects {
  height: 100%;
  margin-left: 340px;
  display: flex;
  align-items: center;
  gap: 24px;
  transform: translate3d(var(--track-x, 0), 0, 0);
  will-change: transform;
}

.project {
  --project-rotate: 0deg;
  position: relative;
  flex: 0 0 min(64vw, 760px);
  height: min(700px, calc(100svh - 150px));
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 60px rgba(24, 24, 24, 0.1);
  opacity: 0.55;
  transform: scale(0.92) rotate(var(--project-rotate));
  transition:
    opacity 350ms ease,
    transform 500ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 350ms ease;
  will-change: transform;
}

.project.is-active {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  box-shadow: 0 28px 80px rgba(24, 24, 24, 0.16);
}

.project > a {
  position: relative;
  height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
}

.project figure {
  position: relative;
  min-height: 0;
  margin: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.project figure::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(24, 24, 24, 0.16) 1px,
    transparent 1.1px
  );
  background-size: 6px 6px;
  opacity: 0.42;
  transform: translate3d(var(--pattern-x, 0), var(--pattern-y, 0), 0)
    scale(1.08);
  transition: transform 240ms ease;
}

.project img {
  position: relative;
  z-index: 1;
  width: 70%;
  max-height: 76%;
  object-fit: contain;
  transform: translate3d(var(--image-x, 0), var(--image-y, 0), 0) scale(0.94);
  transition: transform 180ms ease-out;
  will-change: transform;
}

.project.is-active img,
.project:hover img {
  transform: translate3d(var(--image-x, 0), var(--image-y, 0), 0) scale(1.03);
}

.project-live figure,
.project-generated figure {
  background: #dfe3e8;
}

.project-live figure::before,
.project-generated figure::before {
  opacity: 0.2;
}

.project-live img,
.project-generated img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  mix-blend-mode: normal;
}

.project-info {
  position: relative;
  z-index: 2;
  min-height: 180px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto;
  align-items: start;
  gap: 9px 16px;
}

.project-info span {
  grid-column: 1 / -1;
  font-family: var(--mono);
  font-size: 10px;
}

.project-info h3 {
  margin: 0;
  font-size: 34px;
  font-weight: 470;
  letter-spacing: -0.035em;
  transform: translateY(8px);
  transition: transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-info p {
  max-width: 460px;
  margin: 0;
  color: #555552;
  font-size: 13px;
  line-height: 1.35;
}

.project.is-active .project-info h3 {
  transform: translateY(0);
}

.project-info b {
  grid-column: 2;
  grid-row: 2 / span 2;
  align-self: center;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-weight: 400;
  transition:
    color 200ms ease,
    background 200ms ease,
    transform 200ms ease;
}

.project:hover .project-info b {
  color: var(--white);
  background: var(--ink);
  transform: rotate(45deg);
}

.project-action {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  min-width: 118px;
  padding: 12px 14px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--white);
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 9px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(var(--cursor-x, 30px), var(--cursor-y, 30px), 0)
    scale(0.8);
  transition:
    opacity 180ms ease,
    transform 120ms ease-out;
}

.project:hover .project-action {
  opacity: 1;
  transform: translate3d(var(--cursor-x, 30px), var(--cursor-y, 30px), 0)
    scale(1);
}

.work-progress {
  position: absolute;
  right: 24px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 9px;
}

.work-progress i {
  width: 140px;
  height: 2px;
  overflow: hidden;
  background: var(--line);
}

.work-progress b {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
}

.more-work {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.more-work::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.18) 1px,
    transparent 1.1px
  );
  background-size: 6px 6px;
  mask-image: linear-gradient(90deg, #000, transparent 64%);
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 64%);
}

.more-work-grid {
  position: relative;
  z-index: 1;
  min-height: 760px;
  padding: 100px 32px 72px;
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 40px;
}

.more-work .eyebrow {
  align-self: start;
  color: var(--acid);
}

.more-count {
  color: var(--white);
  font-size: 230px;
  font-weight: 430;
  line-height: 0.72;
  letter-spacing: -0.08em;
}

.more-count b {
  color: var(--acid);
  font-weight: 430;
}

.more-copy {
  padding-bottom: 14px;
}

.more-copy h2 {
  margin: 0;
  font-size: 58px;
  font-weight: 430;
  line-height: 0.86;
  letter-spacing: -0.055em;
}

.more-copy p {
  max-width: 390px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
}

.more-work-note {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 18px 32px;
  color: var(--ink);
  background: var(--acid);
  font-family: var(--mono);
  font-size: 10px;
  text-align: center;
  text-transform: uppercase;
}

.why {
  padding-bottom: 200px;
  background: #e8e8e5;
}

.why-intro {
  min-height: 100svh;
  padding: 120px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.why-intro h2 {
  margin: 48px 0 0;
  font-size: 112px;
  font-weight: 430;
  line-height: 0.82;
  letter-spacing: -0.06em;
}

.why-intro > p:last-child {
  max-width: 520px;
  margin: 50px auto 0;
  font-size: 18px;
}

.reason-stack {
  width: min(calc(100% - 48px), 460px);
  min-height: 2250px;
  margin: 0 auto;
}

.reason {
  position: sticky;
  top: 108px;
  min-height: 610px;
  margin-bottom: 210px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(24, 24, 24, 0.11);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(24, 24, 24, 0.12);
}

.reason:nth-child(2) {
  top: 122px;
}

.reason:nth-child(3) {
  top: 136px;
}

.reason-one {
  background: #f7c5d2;
}

.reason-two {
  background: #caddff;
}

.reason-three {
  background: var(--white);
}

.reason > span {
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 10px;
}

.reason h3 {
  margin: auto 0 14px;
  font-size: 34px;
  font-weight: 470;
  line-height: 1;
  letter-spacing: -0.035em;
}

.reason p {
  max-width: 360px;
  margin: 0 0 12px;
  font-size: 15px;
}

.reason-art {
  position: relative;
  height: 300px;
  overflow: hidden;
  background-image: radial-gradient(
    circle,
    rgba(24, 24, 24, 0.2) 1px,
    transparent 1.1px
  );
  background-size: 6px 6px;
}

.bars {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bars i {
  width: 15%;
  height: 70%;
  background: rgba(255, 255, 255, 0.62);
  transform-origin: bottom;
  animation: bars-breathe 2.8s ease-in-out infinite alternate;
}

.bars i:nth-child(2),
.bars i:nth-child(4) {
  height: 46%;
  animation-delay: -0.7s;
}

.bars i:nth-child(3) {
  height: 28%;
  animation-delay: -1.4s;
}

@keyframes bars-breathe {
  to {
    transform: scaleY(0.55);
  }
}

.circles {
  display: flex;
  align-items: center;
  justify-content: center;
}

.circles i {
  width: 38%;
  aspect-ratio: 1;
  margin-left: -14%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  animation: circles-drift 4s ease-in-out infinite alternate;
}

.circles i:first-child {
  margin-left: 0;
}

.circles i:nth-child(even) {
  animation-delay: -2s;
}

@keyframes circles-drift {
  to {
    transform: translateX(16px) scale(0.82);
  }
}

.diamonds {
  display: grid;
  place-items: center;
}

.diamonds i {
  position: absolute;
  width: 62%;
  aspect-ratio: 1;
  border: 20px solid var(--pink);
  transform: rotate(45deg);
  animation: diamond-turn 10s linear infinite;
}

.diamonds i:nth-child(2) {
  width: 42%;
  border-width: 16px;
  animation-direction: reverse;
}

.diamonds i:nth-child(3) {
  width: 22%;
  border-width: 12px;
}

@keyframes diamond-turn {
  to {
    transform: rotate(405deg);
  }
}

.site-footer {
  min-height: 1000px;
  padding: 150px 32px 32px;
  color: var(--white);
  background: var(--ink);
  text-align: center;
}

.site-footer .eyebrow {
  color: var(--acid);
}

.site-footer h2 {
  margin: 60px auto 0;
  font-size: 112px;
  font-weight: 430;
  line-height: 0.82;
  letter-spacing: -0.06em;
}

.footer-email {
  width: min(100%, 420px);
  min-height: 54px;
  margin: 72px auto 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  background: var(--acid);
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  transition:
    background 200ms ease,
    transform 150ms ease;
}

.footer-email:hover {
  background: var(--white);
}

.footer-bottom {
  margin-top: 180px;
  padding-top: 24px;
  display: grid;
  grid-template-columns: auto 1.3fr 1fr auto auto;
  align-items: end;
  gap: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  font-family: var(--mono);
  font-size: 10px;
  text-align: left;
  text-transform: uppercase;
}

.footer-logo {
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 800;
}

.footer-bottom address {
  display: grid;
  gap: 3px;
  font-style: normal;
}

.footer-bottom address a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer-bottom p {
  margin: 0;
}

.contact-modal {
  width: min(calc(100% - 32px), 650px);
  max-height: min(760px, calc(100svh - 32px));
  padding: 0;
  overflow: auto;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 8px;
  box-shadow: 0 32px 120px rgba(0, 0, 0, 0.34);
  overscroll-behavior: contain;
}

.contact-modal[open] {
  animation: modal-enter 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.contact-modal::backdrop {
  background: rgba(18, 18, 18, 0.56);
  backdrop-filter: blur(8px);
  animation: backdrop-enter 300ms ease both;
}

@keyframes modal-enter {
  from {
    opacity: 0;
    transform: translateY(32px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes backdrop-enter {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.contact-modal-inner {
  position: relative;
  padding: 26px;
  background-image: radial-gradient(
    circle,
    rgba(24, 24, 24, 0.14) 1px,
    transparent 1.1px
  );
  background-size: 6px 6px;
}

.contact-modal-inner::before {
  content: "";
  position: absolute;
  inset: 74px 0 0;
  background: var(--paper);
  pointer-events: none;
}

.contact-modal-inner > * {
  position: relative;
  z-index: 1;
}

.contact-modal-top {
  min-height: 48px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.contact-close {
  width: 42px;
  height: 42px;
  padding: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 4px;
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.contact-close:hover {
  color: var(--ink);
  background: var(--acid);
  transform: rotate(90deg);
}

.contact-modal h2 {
  margin: 54px 0 0;
  font-size: 62px;
  font-weight: 430;
  line-height: 0.88;
  letter-spacing: -0.055em;
}

.contact-intro {
  max-width: 360px;
  margin: 34px 0 0;
  font-size: 16px;
}

.contact-options {
  margin-top: 50px;
  border-top: 1px solid var(--ink);
}

.contact-options a {
  min-height: 94px;
  padding: 18px 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 6px 20px;
  border-bottom: 1px solid var(--ink);
  transition:
    background 220ms ease,
    padding 220ms ease;
}

.contact-options a:hover {
  padding-inline: 20px;
  background: var(--acid);
}

.contact-options small {
  grid-column: 1 / -1;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 650;
}

.contact-options strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 23px;
  font-weight: 470;
  letter-spacing: -0.025em;
}

.contact-options span {
  font-size: 20px;
  transition: transform 180ms ease;
}

.contact-options a:hover span {
  transform: translate(3px, -3px);
}

.contact-note {
  margin: 28px 0 0;
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.contact-note i {
  width: 7px;
  height: 7px;
  background: #24a148;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(36, 161, 72, 0.14);
}

.js .reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(20px);
  transition:
    opacity 700ms ease,
    filter 700ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.seo-service-page {
  background: var(--paper);
}

.service-hero-page {
  position: relative;
  min-height: 920px;
  padding: 150px 24px 80px;
  overflow: hidden;
  background: #ededeb;
  isolation: isolate;
}

.service-hero-page .dot-field {
  z-index: -1;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.breadcrumbs a {
  border-bottom: 1px solid var(--ink);
}

.service-hero-page > .eyebrow {
  margin-top: 90px;
}

.service-hero-page h1 {
  max-width: 1120px;
  margin: 34px 0 0;
  font-size: clamp(72px, 9.2vw, 150px);
  font-weight: 430;
  line-height: 0.82;
  letter-spacing: -0.07em;
}

.service-lead {
  max-width: 680px;
  margin: 52px 0 0 auto;
  font-size: 21px;
  line-height: 1.5;
}

.service-cta {
  margin: 32px 0 0 auto;
  min-height: 54px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
}

.service-cta:hover {
  color: var(--ink);
  background: var(--acid);
}

.service-signals {
  margin-top: 74px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
}

.service-signals span {
  padding: 18px 0;
  display: flex;
  gap: 22px;
  border-bottom: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.service-signals span + span {
  padding-left: 20px;
  border-left: 1px solid var(--ink);
}

.service-signals b {
  color: var(--gray);
  font-weight: 500;
}

.service-explainer,
.service-industries {
  padding: 130px 24px;
  display: grid;
  grid-template-columns: minmax(170px, 0.7fr) minmax(0, 2.3fr);
  gap: 48px;
  border-bottom: 1px solid var(--line);
}

.service-explainer h2,
.service-industries h2 {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(56px, 7vw, 110px);
  font-weight: 430;
  line-height: 0.88;
  letter-spacing: -0.06em;
}

.service-explainer div > p,
.service-industries div > p {
  max-width: 720px;
  margin: 42px 0 0;
  color: #555552;
  font-size: 18px;
  line-height: 1.6;
}

.website-types,
.service-process,
.service-proof,
.service-faq {
  padding: 130px 24px;
  border-bottom: 1px solid var(--line);
}

.service-section-head {
  display: grid;
  grid-template-columns: minmax(170px, 0.7fr) minmax(0, 2.3fr);
  gap: 48px;
  align-items: start;
}

.service-section-head h2 {
  max-width: 1020px;
  margin: 0;
  font-size: clamp(56px, 7vw, 110px);
  font-weight: 430;
  line-height: 0.88;
  letter-spacing: -0.06em;
}

.website-type-grid {
  margin-top: 88px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.website-type-grid article {
  min-height: 285px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.website-type-grid article:nth-child(2),
.website-type-grid article:nth-child(4) {
  background: rgba(191, 216, 255, 0.22);
}

.website-type-grid article > span,
.service-proof-grid > a > span {
  font-family: var(--mono);
  font-size: 10px;
}

.website-type-grid h3 {
  margin: auto 0 18px;
  font-size: 30px;
  font-weight: 480;
  line-height: 1;
  letter-spacing: -0.04em;
}

.website-type-grid p {
  margin: 0;
  color: #555552;
  font-size: 14px;
  line-height: 1.5;
}

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

.service-process ol {
  margin: 90px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.38);
}

.service-process li {
  padding: 28px 0;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
}

.service-process li b {
  font-size: 28px;
  font-weight: 460;
}

.service-process li p {
  max-width: 650px;
  margin: 0;
  color: #c4c4c0;
  font-size: 16px;
}

.service-industries {
  background: rgba(223, 255, 88, 0.14);
}

.service-proof-grid {
  margin-top: 88px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-proof-grid a {
  padding: 10px;
  display: grid;
  gap: 14px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
}

.service-proof-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-proof-grid a:hover img {
  transform: scale(1.025);
}

.faq-list {
  margin: 88px 0 0 auto;
  max-width: 980px;
  border-top: 1px solid var(--ink);
}

.faq-list article {
  padding: 30px 0;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  border-bottom: 1px solid var(--ink);
}

.faq-list h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 480;
  line-height: 1.1;
}

.faq-list p {
  margin: 0;
  color: #555552;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 88px;
  }

  .about-sticky h2 {
    font-size: 70px;
  }

  .service-explainer,
  .service-industries,
  .service-section-head {
    grid-template-columns: 130px minmax(0, 1fr);
  }

  .website-type-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work {
    height: auto;
    padding: 130px 20px 180px;
  }

  .work-sticky {
    position: relative;
    height: auto;
    padding: 0;
    overflow: visible;
  }

  .section-head {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    margin: 0 auto 80px;
    grid-template-columns: 130px 1fr;
    transform: none;
  }

  .section-head h2 {
    font-size: 88px;
  }

  .section-head > a {
    grid-column: 2;
    width: max-content;
  }

  .projects {
    height: auto;
    margin-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
    align-items: start;
    transform: none !important;
  }

  .project,
  .project.is-active {
    height: auto;
    min-height: 0;
    opacity: 1;
    transform: none !important;
  }

  .project > a {
    height: auto;
    grid-template-rows: auto auto;
  }

  .project figure {
    height: 430px;
  }

  .project-action,
  .work-progress {
    display: none;
  }

  .more-work-grid {
    min-height: 640px;
    grid-template-columns: 120px 1fr;
  }

  .more-count {
    grid-column: 1 / -1;
    font-size: 184px;
  }

  .more-copy {
    grid-column: 2;
  }

  .why-intro h2,
  .site-footer h2 {
    font-size: 88px;
  }

  .footer-bottom {
    grid-template-columns: auto 1fr 1fr;
  }

  .footer-bottom p:last-of-type,
  .footer-bottom > a:last-child {
    display: none;
  }
}

@media (max-width: 680px) {
  .nav {
    width: calc(100% - 24px);
    height: 68px;
  }

  .logo,
  .menu-toggle {
    width: 44px;
    height: 44px;
    z-index: 2;
  }

  .logo-orbit {
    width: 36px;
  }

  .logo::after {
    right: -2px;
    bottom: 2px;
    width: 7px;
    height: 7px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 1;
    padding: 88px 24px 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background:
      radial-gradient(circle at 50% 45%, rgba(216, 255, 0, 0.1), transparent 34%),
      var(--paper);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition:
      opacity 200ms ease,
      visibility 200ms ease,
      transform 200ms ease;
  }

  .nav-links::before {
    content: attr(data-menu-label);
    width: min(100%, 360px);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(24, 24, 24, 0.22);
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
  }

  .menu-open .nav-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-outline,
  .nav-contact {
    width: min(100%, 360px);
    min-height: 58px;
    justify-content: space-between;
    padding-inline: 20px;
    font-size: 12px;
  }

  .nav-outline {
    background: rgba(242, 242, 240, 0.58);
    backdrop-filter: blur(16px);
  }

  .language-switcher {
    width: min(100%, 360px);
  }

  .language-toggle {
    width: 100%;
    min-height: 54px;
    padding-inline: 20px;
    background: transparent;
  }

  .language-menu {
    right: 0;
    bottom: calc(100% + 8px);
    top: auto;
    width: 100%;
  }

  .service-hero-page {
    min-height: 820px;
    padding: 112px 16px 56px;
  }

  .breadcrumbs {
    line-height: 1.5;
  }

  .service-hero-page > .eyebrow {
    margin-top: 68px;
  }

  .service-hero-page h1 {
    margin-top: 28px;
    font-size: 58px;
  }

  .service-lead {
    margin-top: 42px;
    font-size: 17px;
  }

  .service-cta {
    width: 100%;
    margin-top: 28px;
  }

  .service-signals {
    margin-top: 58px;
    grid-template-columns: 1fr;
  }

  .service-signals span + span {
    padding-left: 0;
    border-left: 0;
  }

  .service-explainer,
  .service-industries,
  .website-types,
  .service-process,
  .service-proof,
  .service-faq {
    padding: 88px 16px;
  }

  .service-explainer,
  .service-industries,
  .service-section-head {
    display: block;
  }

  .service-explainer h2,
  .service-industries h2,
  .service-section-head h2 {
    margin-top: 30px;
    font-size: 50px;
  }

  .service-explainer div > p,
  .service-industries div > p {
    margin-top: 32px;
    font-size: 17px;
  }

  .website-type-grid {
    margin-top: 58px;
    grid-template-columns: 1fr;
  }

  .website-type-grid article {
    min-height: 240px;
  }

  .service-process ol {
    margin-top: 58px;
  }

  .service-process li {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-proof-grid {
    margin-top: 58px;
    grid-template-columns: 1fr;
  }

  .faq-list {
    margin-top: 58px;
  }

  .faq-list article {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero {
    min-height: 900px;
  }

  .dot-focus {
    display: none;
  }

  .hero-inner {
    width: calc(100% - 32px);
    padding-top: 138px;
  }

  .hero-awards {
    max-width: 250px;
    margin-inline: auto;
  }

  .hero h1 {
    margin-top: 50px;
    font-size: 61px;
    line-height: 0.86;
  }

  .hero-intro {
    max-width: 340px;
    margin-top: 48px;
    font-size: 17px;
  }

  .hero-proof {
    margin-top: 60px;
    grid-template-columns: 1fr;
  }

  .hero-proof span {
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(24, 24, 24, 0.22);
  }

  .hero-proof b {
    font-size: 22px;
  }

  .hero-scroll {
    display: none;
  }

  .about {
    height: 160svh;
  }

  .about-sticky {
    padding: 100px 18px;
  }

  .about-sticky h2 {
    margin-top: 42px;
    font-size: 48px;
    line-height: 0.96;
  }

  .about-sticky > p:last-child {
    margin-top: 42px;
    font-size: 16px;
  }

  .work {
    padding: 110px 12px 140px;
  }

  .section-head {
    margin-bottom: 64px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-head h2 {
    font-size: 68px;
  }

  .section-head > a {
    grid-column: 1;
  }

  .projects {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .project:nth-child(even) {
    margin-top: 0;
  }

  .project figure {
    height: 420px;
  }

  .project-info {
    min-height: 166px;
    padding: 20px;
  }

  .project-info h3 {
    font-size: 29px;
  }

  .project-info p {
    font-size: 12px;
  }

  .more-work-grid {
    min-height: 680px;
    padding: 86px 18px 52px;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .more-work .eyebrow,
  .more-count,
  .more-copy {
    grid-column: 1;
  }

  .more-count {
    font-size: 132px;
  }

  .more-copy {
    padding-bottom: 0;
  }

  .more-copy h2 {
    font-size: 52px;
  }

  .more-copy p {
    margin-top: 26px;
    font-size: 15px;
  }

  .more-work-note {
    padding: 16px 18px;
    font-size: 9px;
    line-height: 1.5;
  }

  .why {
    padding-bottom: 120px;
  }

  .why-intro {
    min-height: 86svh;
    padding: 100px 18px;
  }

  .why-intro h2 {
    font-size: 67px;
  }

  .why-intro > p:last-child {
    font-size: 16px;
  }

  .reason-stack {
    width: calc(100% - 24px);
    min-height: 2080px;
  }

  .reason {
    top: 82px;
    min-height: 560px;
    margin-bottom: 180px;
  }

  .reason:nth-child(2) {
    top: 94px;
  }

  .reason:nth-child(3) {
    top: 106px;
  }

  .reason-art {
    height: 270px;
  }

  .site-footer {
    min-height: 860px;
    padding: 110px 16px 24px;
  }

  .site-footer h2 {
    font-size: 60px;
  }

  .footer-email {
    margin-top: 54px;
  }

  .footer-bottom {
    margin-top: 120px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-bottom p:last-of-type,
  .footer-bottom > a:last-child {
    display: block;
  }

  .contact-modal {
    width: calc(100% - 20px);
    max-height: calc(100svh - 20px);
  }

  .contact-modal-inner {
    padding: 18px;
  }

  .contact-modal h2 {
    margin-top: 44px;
    font-size: 48px;
  }

  .contact-intro {
    margin-top: 28px;
  }

  .contact-options {
    margin-top: 38px;
  }

  .contact-options a {
    min-height: 86px;
    padding-inline: 10px;
  }

  .contact-options strong {
    font-size: 19px;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 54px;
  }

  .about-sticky h2 {
    font-size: 43px;
  }

  .project figure {
    height: 370px;
  }

  .why-intro h2,
  .section-head h2 {
    font-size: 59px;
  }

  .site-footer h2 {
    font-size: 53px;
  }
}

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

  .js .reveal,
  .hero h1 i {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }

  .kinetic-word {
    color: var(--ink);
  }

  .work {
    height: auto;
    padding: 130px 24px 180px;
  }

  .work-sticky {
    position: relative;
    height: auto;
    padding: 0;
    overflow: visible;
  }

  .section-head {
    position: relative;
    top: auto;
    left: auto;
    width: min(100%, 1232px);
    margin: 0 auto 80px;
    transform: none;
  }

  .projects {
    width: min(100%, 1232px);
    height: auto;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
    transform: none !important;
  }

  .project,
  .project.is-active {
    height: auto;
    opacity: 1;
    transform: none !important;
  }

  .project figure {
    height: min(520px, 80vw);
  }

  .project-action,
  .work-progress {
    display: none;
  }
}
