:root {
  --ink: #050505;
  --ink-soft: #111111;
  --paper: #f0f0ee;
  --white: #ffffff;
  --muted: #aaa9ad;
  --purple: #7524ff;
  --violet: #a56cff;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(5, 5, 5, 0.18);
  --radius: 1.5rem;
  --shell: min(88rem, calc(100vw - 6rem));
}

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

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

body {
  margin: 0;
  color: var(--white);
  background: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

.arrow-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.12em;
}

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

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

button {
  color: inherit;
  font: inherit;
}

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

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

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

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

.eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  min-height: 3.8rem;
  padding: 0.65rem 0.75rem 0.65rem 1.5rem;
  border: 1px solid currentColor;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 600;
  transition:
    color 300ms ease,
    background-color 300ms ease,
    transform 300ms ease;
}

.button span {
  display: grid;
  width: 2.55rem;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  transition: transform 300ms ease;
}

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

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

.button:hover {
  transform: translateY(-3px);
}

.button:hover span {
  transform: rotate(45deg);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 1.4rem;
  left: 50%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: var(--shell);
  color: var(--white);
  transform: translateX(-50%);
  transition:
    transform 400ms ease,
    opacity 400ms ease;
}

.site-header.is-hidden {
  opacity: 0;
  transform: translate(-50%, -120%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  justify-self: start;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
}

.brand img {
  width: 3.65rem;
  height: 3.65rem;
  object-fit: contain;
  border-radius: 0.8rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.3rem;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(12, 12, 12, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 99px;
  backdrop-filter: blur(18px);
}

.desktop-nav a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1rem;
  border-radius: 99px;
  font-size: 0.76rem;
  transition:
    color 250ms ease,
    background-color 250ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--ink);
  background: var(--white);
}

.nav-count {
  display: inline-grid;
  width: 1.4rem;
  aspect-ratio: 1;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  border-radius: 50%;
  font-size: 0.55rem;
}

.desktop-nav a.active .nav-count,
.desktop-nav a:hover .nav-count {
  color: var(--white);
  background: var(--ink);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  justify-self: end;
  padding: 0.85rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 99px;
  font-size: 0.76rem;
  backdrop-filter: blur(18px);
  transition:
    color 250ms ease,
    background-color 250ms ease;
}

.header-cta:hover {
  color: var(--ink);
  background: var(--white);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #1c003c;
  isolation: isolate;
}

.hero-video,
.hero-shade,
.hero-grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  z-index: -4;
  object-fit: cover;
  filter: contrast(1.12) saturate(1.25);
  transform: scale(1.04);
}

.hero-shade {
  z-index: -3;
  background:
    linear-gradient(
      180deg,
      rgba(2, 0, 5, 0.35) 0%,
      rgba(20, 0, 47, 0.08) 45%,
      rgba(17, 0, 43, 0.72) 100%
    ),
    radial-gradient(
      circle at 58% 58%,
      rgba(171, 92, 255, 0.18),
      transparent 42%
    );
}

.hero-grain {
  z-index: -2;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: flex-end;
  padding-block: 9rem 3.2rem;
}

.hero-eyebrow {
  position: absolute;
  top: 9.5rem;
  left: 0;
  color: rgba(255, 255, 255, 0.75);
}

.hero-title {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 0 5rem;
  color: rgb(179, 179, 179);
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(4.5rem, 9.7vw, 10rem);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.79;
  mix-blend-mode: color-dodge;
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1fr minmax(18rem, 27rem);
  align-items: end;
}

.hero-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 0.84rem;
}

.hero-contact strong {
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.hero-contact a {
  color: rgba(255, 255, 255, 0.7);
}

.hero-bottom p {
  margin: 0;
  font-size: clamp(1rem, 1.35vw, 1.3rem);
  line-height: 1.35;
}

.scroll-cue {
  position: absolute;
  right: 0;
  bottom: 10rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0.65rem 0.65rem 0.65rem 1.4rem;
  background: rgba(8, 8, 8, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 99px;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.scroll-arrow {
  display: grid;
  width: 2.7rem;
  aspect-ratio: 1;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  border-radius: 50%;
}

.intro {
  position: relative;
  min-height: 105svh;
  padding-block: clamp(8rem, 14vw, 15rem);
  overflow: hidden;
}

.intro-inner {
  position: relative;
}

.intro-mark {
  position: absolute;
  top: -5rem;
  right: 0;
  width: 8rem;
}

.intro-mark img {
  width: 100%;
}

.display-title,
.section-heading h2,
.technology h2,
.about h2,
.contact h2 {
  margin: 0;
  font-family: "Inter Tight", sans-serif;
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.intro-title {
  margin-top: 8rem;
  font-size: clamp(4rem, 9vw, 9rem);
}

.intro-title span,
.technology h2 span,
.about h2 span,
.contact h2 span {
  color: var(--muted);
}

.intro-copy {
  display: grid;
  grid-template-columns: 1fr minmax(18rem, 36rem);
  margin-top: 9rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
}

.intro-copy span {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.intro-copy p {
  margin: 0;
  font-size: clamp(1.15rem, 2.2vw, 2rem);
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.projects {
  padding-block: 7rem 12rem;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(17rem, 29rem);
  align-items: end;
  gap: 3rem;
  margin-bottom: 6rem;
}

.section-heading h2 {
  margin-top: 1.5rem;
  font-size: clamp(4rem, 7.6vw, 7.5rem);
}

.heading-copy {
  margin: 0;
  padding-bottom: 0.5rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 6rem 2rem;
}

.project-card {
  grid-column: span 7;
}

.project-card:nth-child(2) {
  grid-column: 7 / span 6;
  margin-top: 12rem;
}

.project-card:nth-child(3) {
  grid-column: 2 / span 8;
  margin-top: 2rem;
}

.project-media {
  position: relative;
  display: block;
  aspect-ratio: 1.22 / 1;
  overflow: hidden;
  background: var(--project-color, #6d33fb);
  border-radius: var(--radius);
  isolation: isolate;
}

.project-media::before {
  position: absolute;
  z-index: -1;
  inset: -15%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 255, 255, 0.2),
    transparent 58%
  );
  content: "";
}

.project-browser {
  position: absolute;
  top: 12%;
  right: -4%;
  bottom: -8%;
  left: 8%;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 0.85rem 0.85rem 0 0;
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.28);
  transform: rotate(-1.8deg);
  transform-origin: bottom center;
  transition: transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.project-card:nth-child(2) .project-browser {
  right: 8%;
  left: -4%;
  transform: rotate(1.8deg);
}

.project-card:hover .project-browser {
  transform: rotate(0deg) scale(1.025);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 0.38rem;
  height: 1.9rem;
  padding-left: 0.8rem;
  background: #121212;
}

.browser-bar i {
  display: block;
  width: 0.38rem;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.42);
  border-radius: 50%;
}

.project-browser img {
  width: 100%;
  height: calc(100% - 1.9rem);
  object-fit: cover;
  object-position: top;
  transition: transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.project-card:hover .project-browser img {
  transform: scale(1.025);
}

.project-badge {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 4rem;
  aspect-ratio: 1;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  border-radius: 50%;
  font-size: 1.15rem;
  transform: rotate(-12deg);
  transition: transform 400ms ease;
}

.project-card:hover .project-badge {
  transform: rotate(0deg) scale(1.08);
}

.project-info {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 1.5rem;
  padding-top: 1.25rem;
}

.project-index {
  color: var(--muted);
  font-size: 0.72rem;
}

.project-info h3 {
  margin: 0;
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(1.55rem, 2.4vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.project-info p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.75rem;
  line-height: 1.8;
  text-transform: uppercase;
}

.services {
  padding-block: 10rem;
}

.services .heading-copy {
  color: #555;
}

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

.service-item {
  position: relative;
  display: grid;
  grid-template-columns: 5rem 1fr minmax(17rem, 27rem) 3rem;
  align-items: center;
  gap: 1.5rem;
  min-height: 9rem;
  border-bottom: 1px solid var(--line-light);
  transition:
    color 350ms ease,
    padding 350ms ease,
    background-color 350ms ease;
}

.service-item::before {
  position: absolute;
  z-index: 0;
  inset: 0 -1.5rem;
  background: var(--purple);
  content: "";
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 350ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-item > * {
  position: relative;
  z-index: 1;
}

.service-item:hover {
  color: var(--white);
  padding-inline: 0.75rem;
}

.service-item:hover::before {
  transform: scaleY(1);
}

.service-number {
  font-size: 0.68rem;
}

.service-item h3 {
  margin: 0;
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(1.7rem, 3.4vw, 3.6rem);
  font-weight: 400;
  letter-spacing: -0.05em;
}

.service-item p {
  margin: 0;
  color: #555;
  font-size: 0.84rem;
  transition: color 350ms ease;
}

.service-item:hover p {
  color: rgba(255, 255, 255, 0.72);
}

.service-icon {
  display: grid;
  width: 2.7rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: transform 350ms ease;
}

.service-item:hover .service-icon {
  transform: rotate(45deg);
}

.statement {
  position: relative;
  min-height: 105svh;
  overflow: hidden;
  color: var(--white);
  background: var(--purple);
}

.statement-track {
  display: flex;
  width: max-content;
  padding-top: 3rem;
  color: var(--ink);
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(5rem, 12vw, 13rem);
  letter-spacing: -0.07em;
  line-height: 0.85;
  white-space: nowrap;
}

.statement-copy {
  display: flex;
  min-height: 85svh;
  flex-direction: column;
  justify-content: center;
  margin-top: 2rem;
}

.statement-copy p {
  margin: 0;
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(2.1rem, 5.5vw, 6rem);
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.statement-copy p:nth-child(2) {
  color: rgba(255, 255, 255, 0.62);
}

.statement-copy p:nth-child(3) {
  color: rgba(255, 255, 255, 0.28);
}

.process {
  padding-block: 11rem;
}

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

.process-card {
  min-height: 24rem;
  padding: 1.5rem;
  border-right: 1px solid var(--line-dark);
  transition:
    color 350ms ease,
    background-color 350ms ease;
}

.process-card:last-child {
  border-right: 0;
}

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

.process-card span {
  color: var(--muted);
  font-size: 0.7rem;
}

.process-card h3 {
  margin: 7rem 0 1rem;
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(1.5rem, 2.3vw, 2.4rem);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.technology {
  position: relative;
  min-height: 105svh;
  padding-block: 12rem;
  overflow: hidden;
}

.tech-orbit {
  position: absolute;
  top: 50%;
  left: 65%;
  width: 42rem;
  aspect-ratio: 1;
  border: 1px solid rgba(147, 72, 255, 0.35);
  border-radius: 50%;
  box-shadow:
    0 0 10rem rgba(118, 36, 255, 0.24) inset,
    0 0 8rem rgba(118, 36, 255, 0.2);
  transform: translate(-50%, -50%);
}

.tech-orbit::before,
.tech-orbit::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
}

.tech-orbit::before {
  inset: 12%;
}

.tech-orbit::after {
  inset: 30%;
  background: var(--purple);
  filter: blur(50px);
  opacity: 0.5;
}

.technology-inner {
  position: relative;
  z-index: 1;
}

.technology h2 {
  margin-top: 8rem;
  font-size: clamp(4rem, 8.2vw, 8.5rem);
}

.tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: 58rem;
  margin-top: 7rem;
}

.tech-list span {
  padding: 0.8rem 1.3rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-dark);
  border-radius: 99px;
  font-size: 0.8rem;
  backdrop-filter: blur(10px);
}

.about {
  padding-block: 11rem 9rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 5rem;
}

.about-aside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-aside img {
  width: 6rem;
  max-height: 17rem;
}

.about h2 {
  font-size: clamp(3.8rem, 7vw, 7rem);
}

.about-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-light);
}

.about-copy p {
  margin: 0;
  font-size: 0.95rem;
}

.about-copy strong {
  grid-column: 1 / -1;
  margin-top: 2rem;
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(1.7rem, 3vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 10rem;
  border-top: 1px solid var(--line-light);
}

.difference-grid article {
  min-height: 18rem;
  padding: 1.5rem 1.5rem 2rem;
  border-right: 1px solid var(--line-light);
}

.difference-grid article:first-child {
  border-left: 1px solid var(--line-light);
}

.difference-grid span {
  font-size: 0.7rem;
}

.difference-grid h3 {
  margin: 6rem 0 1rem;
  font-family: "Inter Tight", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.difference-grid p {
  margin: 0;
  color: #555;
  font-size: 0.8rem;
}

.contact {
  position: relative;
  min-height: 100svh;
  padding-block: 10rem 8rem;
  overflow: hidden;
}

.contact-glow {
  position: absolute;
  right: -15rem;
  bottom: -22rem;
  width: 65rem;
  aspect-ratio: 1;
  background: radial-gradient(
    circle,
    rgba(130, 43, 255, 0.8) 0%,
    rgba(80, 14, 188, 0.35) 35%,
    transparent 68%
  );
  pointer-events: none;
}

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

.contact h2 {
  margin-top: 6rem;
  font-size: clamp(4.4rem, 9vw, 9rem);
}

.contact-copy {
  max-width: 32rem;
  margin: 5rem 0 2.5rem auto;
  color: var(--muted);
  font-size: 1.1rem;
}

.contact-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.82rem;
  line-height: 2.2;
}

.footer {
  padding-block: 2rem;
  border-top: 1px solid var(--line-dark);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  padding-block: 4rem 6rem;
}

.footer-brand {
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(3.5rem, 8vw, 8rem);
  letter-spacing: -0.07em;
  line-height: 0.85;
}

.footer-top p {
  max-width: 30rem;
  margin: 0 0 0 auto;
  color: var(--muted);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
  color: var(--muted);
  font-size: 0.65rem;
}

.footer-bottom > span:last-child {
  text-align: right;
}

.footer-links {
  display: flex;
  gap: 1.2rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.cursor {
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  display: grid;
  width: 5rem;
  aspect-ratio: 1;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
}

.cursor span {
  font-size: 0.62rem;
  font-weight: 600;
}

.line-mask {
  overflow: hidden;
}

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 3rem, 76rem);
  }

  .desktop-nav a {
    padding-inline: 0.75rem;
  }

  .brand span,
  .header-cta {
    display: none;
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-card:nth-child(3) {
    border-right: 0;
  }

  .process-card:nth-child(n + 4) {
    border-top: 1px solid var(--line-dark);
  }

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

  .difference-grid article:nth-child(3) {
    border-left: 1px solid var(--line-light);
  }

  .difference-grid article:nth-child(n + 3) {
    border-top: 1px solid var(--line-light);
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 2rem);
    --radius: 1rem;
  }

  body {
    font-size: 0.94rem;
  }

  .site-header {
    top: 0.75rem;
    grid-template-columns: 1fr auto;
    padding: 0.35rem 0.4rem 0.35rem 0.5rem;
    background: rgba(10, 10, 10, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1rem;
    backdrop-filter: blur(18px);
  }

  .brand img {
    width: 2.8rem;
    height: 2.8rem;
  }

  .brand span {
    display: inline;
    font-size: 0.68rem;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: grid;
    width: 2.8rem;
    aspect-ratio: 1;
    padding: 0;
    place-content: center;
    gap: 0.35rem;
    background: var(--white);
    border: 0;
    border-radius: 0.7rem;
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 1rem;
    height: 1px;
    background: var(--ink);
    transition: transform 300ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-3px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 2;
    top: -0.35rem;
    right: -0.4rem;
    left: -0.4rem;
    display: flex;
    min-height: 75svh;
    flex-direction: column;
    justify-content: flex-end;
    padding: 6rem 1.5rem 1.5rem;
    color: var(--white);
    background: var(--ink-soft);
    border-radius: 1.2rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1rem);
    transition:
      opacity 300ms ease,
      transform 400ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu nav {
    display: flex;
    flex-direction: column;
  }

  .mobile-menu nav a {
    padding-block: 0.45rem;
    font-family: "Inter Tight", sans-serif;
    font-size: clamp(2.6rem, 12vw, 4rem);
    letter-spacing: -0.055em;
    line-height: 0.95;
  }

  .mobile-menu .button {
    margin-top: 2rem;
  }

  .hero-content {
    padding-block: 7rem 1.5rem;
  }

  .hero-video {
    object-position: 58% center;
  }

  .hero-eyebrow {
    top: 7.5rem;
  }

  .hero-title {
    margin-bottom: 3.2rem;
    font-size: clamp(3.45rem, 17vw, 6rem);
    line-height: 0.84;
  }

  .hero-bottom {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-bottom p {
    max-width: 22rem;
    font-size: 0.95rem;
  }

  .scroll-cue {
    right: 0;
    bottom: 8.5rem;
  }

  .intro {
    min-height: auto;
    padding-block: 7rem;
  }

  .intro-mark {
    top: -2rem;
    width: 4rem;
  }

  .intro-title {
    margin-top: 5rem;
    font-size: clamp(3.1rem, 15vw, 5rem);
  }

  .intro-copy {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 5rem;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3.5rem;
  }

  .section-heading h2 {
    font-size: clamp(3.3rem, 15vw, 5rem);
  }

  .projects {
    padding-block: 5rem 8rem;
  }

  .projects-grid {
    display: block;
  }

  .project-card,
  .project-card:nth-child(2),
  .project-card:nth-child(3) {
    margin: 0 0 4.5rem;
  }

  .project-media {
    aspect-ratio: 0.95 / 1;
  }

  .project-browser,
  .project-card:nth-child(2) .project-browser {
    top: 13%;
    right: -12%;
    bottom: -5%;
    left: 8%;
    transform: rotate(-1.5deg);
  }

  .project-info {
    grid-template-columns: auto 1fr;
    gap: 0.9rem;
  }

  .project-link {
    grid-column: 2;
    justify-self: start;
  }

  .services {
    padding-block: 7rem;
  }

  .service-item {
    grid-template-columns: 2.5rem 1fr 2.5rem;
    gap: 0.6rem;
    min-height: 8rem;
  }

  .service-item p {
    display: none;
  }

  .service-item h3 {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
    line-height: 1;
  }

  .statement {
    min-height: 85svh;
  }

  .statement-track {
    padding-top: 2rem;
  }

  .statement-copy {
    min-height: 70svh;
  }

  .process {
    padding-block: 7rem;
  }

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

  .process-card,
  .process-card:nth-child(3),
  .process-card:nth-child(n + 4) {
    display: grid;
    grid-template-columns: 2.5rem 1fr;
    min-height: auto;
    padding: 1.5rem 0;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .process-card h3 {
    margin: 0 0 0.5rem;
  }

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

  .technology {
    min-height: 90svh;
    padding-block: 8rem;
  }

  .technology h2 {
    margin-top: 5rem;
    font-size: clamp(3.1rem, 15vw, 5rem);
  }

  .tech-orbit {
    top: 65%;
    left: 80%;
    width: 30rem;
  }

  .tech-list {
    margin-top: 5rem;
  }

  .about {
    padding-block: 7rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .about-aside img {
    display: none;
  }

  .about h2 {
    font-size: clamp(3.1rem, 14vw, 5rem);
  }

  .about-copy {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .difference-grid {
    grid-template-columns: 1fr;
    margin-top: 6rem;
  }

  .difference-grid article,
  .difference-grid article:first-child,
  .difference-grid article:nth-child(3),
  .difference-grid article:nth-child(n + 3) {
    min-height: auto;
    padding: 1.5rem 0 2rem;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
    border-left: 0;
  }

  .difference-grid h3 {
    margin: 2.5rem 0 0.7rem;
  }

  .contact {
    min-height: 90svh;
    padding-block: 7rem 5rem;
  }

  .contact h2 {
    margin-top: 5rem;
    font-size: clamp(3.5rem, 16vw, 5.8rem);
  }

  .contact-copy {
    margin: 4rem 0 2rem;
  }

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-actions .text-link {
    align-self: flex-start;
  }

  .footer-top {
    grid-template-columns: 1fr;
    padding-block: 3rem 4rem;
  }

  .footer-top p {
    margin: 0;
  }

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

  .footer-bottom > span:last-child {
    text-align: left;
  }

  .cursor {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
