:root {
  --paper: #f2f0e7;
  --paper-deep: #e8e4d8;
  --ink: #141414;
  --muted: #66645e;
  --blue: #3956a6;
  --cyan: #39a6d7;
  --acid: #d7ff55;
  --line: rgba(20, 20, 20, 0.62);
  --page: min(100% - 40px, 1480px);
  --header-height: 88px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

.site-progress {
  position: fixed;
  z-index: 250;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}

.site-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.motion-cursor {
  position: fixed;
  z-index: 300;
  top: 0;
  left: 0;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-100px, -100px, 0) scale(0.5);
  transition: opacity 180ms ease;
  will-change: transform;
}

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

.motion-cursor span {
  max-width: 62px;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.service-preview {
  position: fixed;
  z-index: 210;
  top: 0;
  left: 0;
  width: 260px;
  padding: 8px;
  border: 1px solid var(--line);
  background: var(--paper);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-100vw, -100vh, 0) rotate(-3deg) scale(0.86);
  transition: opacity 180ms ease;
  will-change: transform;
}

.service-preview.is-visible {
  opacity: 1;
}

.service-preview img {
  width: 100%;
  height: 172px;
  object-fit: cover;
}

.service-preview span {
  display: block;
  padding: 9px 4px 2px;
  font-family: "DM Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

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

button {
  color: inherit;
  font: inherit;
}

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

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

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

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

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header-height);
  padding: 0 max(20px, calc((100vw - 1480px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(242, 240, 231, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  justify-self: start;
  width: 164px;
}

.brand img {
  width: 100%;
  height: 56px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms var(--ease);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 38px;
  justify-self: end;
  padding: 13px 15px;
  background: var(--ink);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    background 220ms ease,
    color 220ms ease;
}

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

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 6px 0;
  background: currentColor;
  transition: transform 250ms ease;
}

.hero {
  padding-top: 38px;
}

.hero-kicker {
  display: flex;
  justify-content: space-between;
  padding-bottom: 22px;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-heading-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 50px;
  align-items: end;
  padding-bottom: 38px;
}

.hero h1 {
  max-width: 1120px;
  font-size: clamp(64px, 8.6vw, 142px);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.78;
  text-transform: uppercase;
}

.hero-line {
  display: block;
  overflow: hidden;
}

.hero-line-inner {
  display: block;
}

.hero-line-accent .hero-line-inner {
  padding-left: 11vw;
  color: var(--blue);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.12em;
  font-weight: 400;
  letter-spacing: -0.045em;
  text-transform: none;
}

.motion-capable .hero-line-inner {
  transform: translateY(112%) rotate(1.5deg);
  transform-origin: left bottom;
  transition: transform 1.05s var(--ease);
}

.motion-capable body.is-loaded .hero-line:nth-child(1) .hero-line-inner {
  transition-delay: 90ms;
  transform: translateY(0) rotate(0);
}

.motion-capable body.is-loaded .hero-line:nth-child(2) .hero-line-inner {
  transition-delay: 180ms;
  transform: translateY(0) rotate(0);
}

.motion-capable body.is-loaded .hero-line:nth-child(3) .hero-line-inner {
  transition-delay: 270ms;
  transform: translateY(0) rotate(0);
}

.motion-capable .hero-kicker,
.motion-capable .hero-load {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 900ms var(--ease),
    transform 900ms var(--ease);
}

.motion-capable body.is-loaded .hero-kicker {
  opacity: 1;
  transform: translateY(0);
}

.motion-capable body.is-loaded .hero-intro {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 430ms;
}

.motion-capable body.is-loaded .hero-visual {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 520ms;
}

.hero-intro {
  display: grid;
  gap: 26px;
  padding-bottom: 7px;
  font-size: 14px;
  line-height: 1.55;
}

.text-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid var(--ink);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 200ms ease;
}

.text-link:hover span {
  transform: translateY(4px);
}

.hero-visual {
  position: relative;
  height: min(69vw, 830px);
  min-height: 560px;
  overflow: hidden;
  border-radius: 14px;
  background: #8f8b80;
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.08);
  transition: transform 1.2s var(--ease);
  will-change: transform;
}

.hero-visual:hover > img {
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.115);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 10, 14, 0.62), transparent 55%),
    linear-gradient(0deg, rgba(8, 10, 14, 0.48), transparent 48%);
}

.hero-caption {
  position: absolute;
  color: white;
}

.hero-caption-main {
  bottom: 38px;
  left: 36px;
}

.caption-index {
  display: block;
  margin-bottom: 16px;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.04em;
}

.hero-caption-main p {
  max-width: 700px;
  font-size: clamp(44px, 7vw, 112px);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.82;
  text-transform: uppercase;
}

.hero-caption-side {
  top: 24px;
  right: 26px;
  display: flex;
  gap: 7px;
  font-family: "DM Mono", monospace;
  font-size: 8px;
  text-transform: uppercase;
}

.hero-caption-side span,
.tag-row span {
  padding: 7px 9px;
  background: rgba(13, 13, 13, 0.78);
  color: white;
  backdrop-filter: blur(8px);
}

.round-link {
  position: absolute;
  right: 34px;
  bottom: 34px;
  display: flex;
  width: 120px;
  height: 120px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border-radius: 50%;
  background: var(--acid);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  transition:
    transform 280ms var(--ease),
    background 280ms ease;
}

.round-link span {
  align-self: flex-end;
}

.round-link:hover {
  background: white;
  transform: rotate(7deg) scale(1.06);
}

.section-grid {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(150px, calc((100vw - 1480px) / 2 + 210px)) 1fr;
  border-bottom: 1px solid var(--line);
}

.section-label {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.manifesto {
  margin-top: 74px;
  border-top: 1px solid var(--line);
}

.manifesto > .section-label {
  padding: 20px max(20px, calc((100vw - 1480px) / 2));
  border-right: 1px solid var(--line);
}

.manifesto-copy {
  padding: 76px max(20px, calc((100vw - 1480px) / 2)) 76px 7vw;
}

.manifesto-copy h2 {
  max-width: 1120px;
  font-size: clamp(44px, 5.7vw, 90px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.96;
  text-transform: uppercase;
}

.manifesto-copy h2 em,
.proof-intro h2 em,
.process-heading h2 em,
.contact-inner h2 em {
  color: var(--blue);
  font-family: "Newsreader", Georgia, serif;
  font-weight: 400;
  text-transform: none;
}

.manifesto-details {
  display: grid;
  max-width: 840px;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 56px;
  margin-left: auto;
  font-size: 14px;
  line-height: 1.65;
}

.work-section {
  padding: 96px 0 110px;
}

.section-topline {
  display: grid;
  grid-template-columns: 170px 1fr 220px;
  align-items: end;
  gap: 30px;
  margin-bottom: 45px;
}

.section-topline h2 {
  font-size: clamp(42px, 5.2vw, 76px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.94;
  text-transform: uppercase;
}

.section-note {
  font-size: 13px;
  line-height: 1.5;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 20px;
}

.work-card {
  position: relative;
  min-width: 0;
}

.work-card a {
  display: block;
}

.work-card-wide .work-image {
  aspect-ratio: 1.72 / 1;
}

.work-card-tall .work-image {
  aspect-ratio: 1 / 1.1;
}

.work-card:nth-child(2) {
  padding-top: 170px;
}

.work-card:nth-child(3) {
  margin-top: -115px;
}

.work-image {
  overflow: hidden;
  border-radius: 10px;
  background: var(--paper-deep);
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82);
  transform: translate3d(var(--image-x, 0), var(--image-y, 0), 0) scale(1.055);
  transition:
    transform 800ms var(--ease),
    filter 500ms ease;
  will-change: transform;
}

.work-card:hover .work-image img {
  filter: saturate(1);
  transform: translate3d(var(--image-x, 0), var(--image-y, 0), 0) scale(1.1);
}

.work-card:nth-child(1) .work-image img {
  object-position: center 69%;
}

.work-card-copy {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 16px;
  align-items: start;
  padding: 18px 0 14px;
  border-bottom: 1px solid var(--ink);
}

.work-number,
.eyebrow,
.work-arrow {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.work-card-copy h3 {
  margin-top: 5px;
  font-size: clamp(25px, 2.8vw, 43px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
}

.work-arrow {
  font-size: 18px;
  transition: transform 220ms var(--ease);
}

.work-card:hover .work-arrow {
  transform: translate(4px, -4px);
}

.tag-row {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  font-family: "DM Mono", monospace;
  font-size: 7px;
  text-transform: uppercase;
}

.work-card:nth-child(2) .tag-row {
  top: 184px;
}

.platform-strip {
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--cyan);
}

.platform-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: ticker 34s linear infinite;
}

.platform-track span {
  padding: 28px 38px;
  font-size: clamp(25px, 3vw, 46px);
  font-weight: 600;
  letter-spacing: -0.045em;
}

.platform-track i {
  font-size: 20px;
  font-style: normal;
}

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

.proof-section {
  padding: 112px 0;
}

.proof-intro {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 40px;
}

.proof-intro h2 {
  font-size: clamp(48px, 6.6vw, 105px);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.9;
  text-transform: uppercase;
}

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

.stat {
  min-height: 210px;
  padding: 26px 22px;
  border-right: 1px solid var(--line);
}

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

.stat-value {
  display: block;
  font-size: clamp(60px, 7vw, 108px);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.9;
  font-variant-numeric: tabular-nums;
}

.stat-value sup {
  color: var(--blue);
  font-size: 0.42em;
  vertical-align: top;
}

.stat p {
  margin-top: 34px;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.services-section {
  border-top: 1px solid var(--line);
}

.services-section > .section-label {
  padding: 20px max(20px, calc((100vw - 1480px) / 2));
  border-right: 1px solid var(--line);
}

.services-main {
  padding: 80px max(20px, calc((100vw - 1480px) / 2)) 100px 7vw;
}

.services-heading {
  display: grid;
  grid-template-columns: 1fr 310px;
  gap: 60px;
  align-items: end;
  padding-bottom: 62px;
}

.services-heading h2,
.process-heading h2 {
  font-size: clamp(52px, 6.6vw, 100px);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.86;
  text-transform: uppercase;
}

.services-heading p {
  font-size: 14px;
  line-height: 1.6;
}

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

.service-row {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 20px;
  align-items: start;
  min-height: 168px;
  padding: 30px 4px;
  border-bottom: 1px solid var(--line);
  transition:
    padding 250ms var(--ease),
    background 200ms ease;
}

.service-index,
.service-arrow {
  padding-top: 7px;
  font-family: "DM Mono", monospace;
  font-size: 9px;
}

.service-row h3 {
  font-size: clamp(27px, 3vw, 45px);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.service-row p {
  max-width: 680px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  max-width: 920px;
  margin-top: 22px;
}

.service-tags span {
  padding: 7px 10px;
  border: 1px solid rgba(20, 20, 20, 0.48);
  border-radius: 999px;
  font-family: "DM Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.service-row:hover .service-tags span {
  border-color: rgba(20, 20, 20, 0.7);
  background: rgba(255, 255, 255, 0.48);
}

.service-arrow {
  font-size: 20px;
  transition: transform 220ms var(--ease);
}

.service-row:hover {
  padding-right: 18px;
  padding-left: 18px;
  background: var(--acid);
}

.service-row:hover .service-arrow {
  transform: translate(4px, -4px);
}

.process-section {
  padding: 105px 0 0;
  overflow: hidden;
  background: #dbe7f4;
  color: var(--ink);
}

.process-heading {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 40px;
  padding-bottom: 76px;
}

.process-heading h2 em {
  color: var(--blue);
}

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

.process-card {
  position: relative;
  overflow: hidden;
  min-height: 410px;
  padding: 27px 32px 46px 0;
  border-right: 1px solid var(--line);
  transition:
    color 350ms ease,
    padding 420ms var(--ease);
}

.process-card::before {
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: var(--acid);
  content: "";
  transform: scale(0);
  transition: transform 650ms var(--ease);
}

.process-card:hover::before {
  transform: scale(3.6);
}

.process-card > * {
  position: relative;
  z-index: 1;
}

.process-card + .process-card {
  padding-left: 32px;
}

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

.process-card > span {
  font-family: "DM Mono", monospace;
  font-size: 10px;
}

.process-card h3 {
  margin-top: 148px;
  font-size: clamp(27px, 2.9vw, 42px);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.process-card p {
  max-width: 360px;
  margin-top: 18px;
  color: rgba(20, 20, 20, 0.68);
  font-size: 13px;
  line-height: 1.65;
}

.quote-section {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 45px;
  padding-top: 130px;
  padding-bottom: 140px;
}

.quote-mark {
  color: var(--blue);
  font-family: "Newsreader", Georgia, serif;
  font-size: 150px;
  line-height: 0.65;
}

.quote-slider {
  max-width: 1160px;
  min-width: 0;
}

.quote-track {
  display: grid;
}

.quote-slide {
  grid-area: 1 / 1;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(40px);
  transition:
    opacity 500ms var(--ease),
    transform 650ms var(--ease);
}

.quote-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.quote-slide > p {
  font-size: clamp(40px, 5.2vw, 79px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.quote-slide footer {
  display: flex;
  justify-content: space-between;
  margin-top: 58px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.quote-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}

.quote-count {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.04em;
}

.quote-controls > div {
  display: flex;
  gap: 8px;
}

.quote-controls button {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.quote-controls button:hover {
  background: var(--blue);
  color: white;
}

.contact-section {
  position: relative;
  overflow: hidden;
  min-height: 730px;
  background: var(--blue);
  color: white;
}

.contact-section::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 80%, rgba(57, 166, 215, 0.95), transparent 35%),
    linear-gradient(132deg, transparent 50%, rgba(0, 0, 0, 0.13));
  content: "";
}

.contact-inner {
  position: relative;
  z-index: 2;
  padding-top: 112px;
  padding-bottom: 100px;
}

.contact-inner h2 {
  max-width: 1250px;
  margin-top: 42px;
  font-size: clamp(58px, 9vw, 142px);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.84;
  text-transform: uppercase;
}

.contact-inner h2 em {
  color: var(--acid);
}

.contact-button {
  display: flex;
  width: 340px;
  align-items: center;
  justify-content: space-between;
  margin-top: 68px;
  padding: 21px 24px;
  border: 1px solid white;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
  transition:
    background 200ms ease,
    color 200ms ease;
}

.contact-button:hover {
  background: white;
  color: var(--blue);
}

.contact-orbit {
  position: absolute;
  top: 42px;
  right: -30px;
  display: grid;
  width: 190px;
  height: 190px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  animation: spin 18s linear infinite;
}

.contact-orbit span {
  width: 120px;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  line-height: 1.8;
  text-align: center;
  text-transform: uppercase;
}

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

.site-footer {
  background: #29458e;
  color: white;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 50px;
  padding-top: 85px;
  padding-bottom: 80px;
}

.footer-brand img {
  width: 180px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
  filter: grayscale(1) brightness(0) invert(1);
}

.footer-brand p {
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.65;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 12px;
}

.footer-label {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.45);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  text-transform: uppercase;
}

.footer-column a:hover {
  color: var(--cyan);
}

.footer-column p:not(.footer-label) {
  color: rgba(255, 255, 255, 0.78);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  padding-bottom: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.52);
  font-family: "DM Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(38px);
  transition:
    opacity 900ms var(--ease),
    filter 900ms var(--ease),
    transform 900ms var(--ease);
}

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

.magnetic {
  will-change: transform;
}

@media (max-width: 1040px) {
  :root {
    --header-height: 76px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    grid-column: 2;
    justify-self: end;
  }

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

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

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: flex;
    height: calc(100vh - var(--header-height));
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 50px 20px;
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition:
      opacity 240ms ease,
      transform 240ms var(--ease);
  }

  .site-nav a {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-size: 34px;
    letter-spacing: -0.04em;
    text-transform: none;
  }

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

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

  .hero-intro {
    max-width: 420px;
    grid-template-columns: 1fr;
  }

  .section-grid {
    grid-template-columns: 140px 1fr;
  }

  .section-topline {
    grid-template-columns: 140px 1fr;
  }

  .section-note {
    display: none;
  }

  .work-card:nth-child(2) {
    padding-top: 100px;
  }

  .work-card:nth-child(3) {
    margin-top: -60px;
  }

  .work-card:nth-child(2) .tag-row {
    top: 114px;
  }

  .services-heading {
    grid-template-columns: 1fr;
  }

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

  .footer-column:last-child {
    grid-column: 2 / -1;
  }
}

@media (max-width: 720px) {
  :root {
    --page: min(100% - 24px, 1480px);
  }

  .site-header {
    padding-inline: 12px;
  }

  .brand {
    width: 122px;
  }

  .brand img {
    height: 46px;
  }

  .hero {
    padding-top: 22px;
  }

  .hero-kicker span:last-child {
    display: none;
  }

  .hero-heading-wrap {
    gap: 28px;
    padding-bottom: 26px;
  }

  .hero h1 {
    font-size: clamp(52px, 16.2vw, 90px);
    line-height: 0.83;
  }

  .hero h1 span {
    padding-left: 0;
  }

  .hero-line-accent .hero-line-inner {
    padding-left: 0;
  }

  .hero-visual {
    height: 76vh;
    min-height: 540px;
    border-radius: 8px;
  }

  .hero-visual > img {
    object-position: 57% center;
  }

  .hero-caption-main {
    right: 18px;
    bottom: 26px;
    left: 18px;
  }

  .hero-caption-main p {
    font-size: 47px;
  }

  .hero-caption-side {
    right: auto;
    left: 14px;
  }

  .round-link {
    display: none;
  }

  .section-grid {
    display: block;
  }

  .manifesto {
    margin-top: 40px;
  }

  .manifesto > .section-label,
  .services-section > .section-label {
    padding: 16px 12px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .manifesto-copy,
  .services-main {
    padding: 52px 12px 64px;
  }

  .manifesto-copy h2 {
    font-size: 43px;
  }

  .manifesto-details {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 38px;
  }

  .work-section {
    padding: 70px 0;
  }

  .section-topline {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
  }

  .section-topline h2 {
    font-size: 43px;
  }

  .work-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .work-card:nth-child(2) {
    padding-top: 0;
  }

  .work-card:nth-child(3) {
    margin-top: 0;
  }

  .work-card:nth-child(2) .tag-row {
    top: 14px;
  }

  .work-card-wide .work-image,
  .work-card-tall .work-image {
    aspect-ratio: 1 / 1.08;
  }

  .work-card-copy {
    grid-template-columns: 32px 1fr auto;
  }

  .work-card-copy h3 {
    font-size: 29px;
  }

  .tag-row {
    max-width: calc(100% - 28px);
  }

  .proof-section {
    padding: 76px 0;
  }

  .proof-intro {
    grid-template-columns: 1fr;
  }

  .proof-intro h2 {
    font-size: 47px;
  }

  .stat-grid {
    grid-template-columns: 1fr 1fr;
    margin-top: 56px;
  }

  .stat {
    min-height: 170px;
    border-bottom: 1px solid var(--line);
  }

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(3),
  .stat:nth-child(4) {
    border-bottom: 0;
  }

  .services-heading {
    padding-bottom: 40px;
  }

  .services-heading h2,
  .process-heading h2 {
    font-size: 49px;
  }

  .service-row {
    grid-template-columns: 28px 1fr auto;
    padding: 23px 0;
  }

  .service-row p {
    font-size: 12px;
  }

  .service-tags {
    gap: 5px;
    margin-top: 18px;
  }

  .service-tags span {
    padding: 6px 8px;
    font-size: 7px;
  }

  .process-section {
    padding-top: 74px;
  }

  .process-heading {
    grid-template-columns: 1fr;
    padding-bottom: 50px;
  }

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

  .process-card,
  .process-card + .process-card {
    min-height: 310px;
    padding: 25px 0 40px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-card h3 {
    margin-top: 90px;
  }

  .quote-section {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 80px;
    padding-bottom: 86px;
  }

  .quote-mark {
    font-size: 100px;
  }

  .quote-slide > p {
    font-size: 37px;
  }

  .quote-slide footer {
    flex-direction: column;
    gap: 10px;
  }

  .contact-section {
    min-height: 650px;
  }

  .contact-inner {
    padding-top: 92px;
  }

  .contact-inner h2 {
    margin-top: 90px;
    font-size: 55px;
  }

  .contact-button {
    width: 100%;
  }

  .contact-orbit {
    top: 20px;
    right: -55px;
    transform: scale(0.7);
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-column:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .footer-bottom p:nth-child(2) {
    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;
  }

  .reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .motion-capable .hero-line-inner,
  .motion-capable .hero-kicker,
  .motion-capable .hero-load {
    opacity: 1;
    transform: none;
  }
}

@media (hover: none), (pointer: coarse) {
  .motion-cursor,
  .service-preview {
    display: none;
  }
}
