@font-face {
  font-family: "Redaction";
  src: url("../fonts/Redaction-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Redaction";
  src: url("../fonts/Redaction-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Redaction";
  src: url("../fonts/Redaction-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --purple-50: #faf5fe;
  --purple-100: #efe0fc;
  --purple-200: #e4ccfa;
  --purple-300: #cea3f6;
  --purple-400: #b97af1;
  --purple-500: #9333ea;
  --purple-600: #872fd7;
  --purple-700: #7629bb;
  --purple-800: #64239f;
  --purple-900: #511c81;
  --purple-950: #421769;
  --ink: #0e0d10;
  --black: #020203;
  --paper: #fbf7ff;
  --paper-2: #f2ebf8;
  --line-dark: rgba(147, 51, 234, 0.34);
  --line-light: rgba(66, 23, 105, 0.18);
  --signal: #f4c430;
  --mint: #83e2cc;
  --page-x: 24px;
  --max-width: 1440px;
  --header-height: 74px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  background: var(--black);
}

body {
  margin: 0;
  color: var(--paper);
  background: var(--black);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
  text-rendering: geometricPrecision;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--purple-950);
  background: var(--paper);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.scroll-progress {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--purple-400);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px var(--page-x);
  color: var(--paper);
  mix-blend-mode: difference;
}

.site-header.is-scrolled {
  backdrop-filter: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
}

.desktop-nav {
  justify-self: center;
  display: none;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.desktop-nav a {
  padding: 10px 12px;
  opacity: 0.74;
  transition: opacity 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  opacity: 1;
}

.menu-toggle,
.menu-close {
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-toggle {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.menu-toggle__dots {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.menu-toggle__dots::before,
.menu-toggle__dots::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: currentColor;
  transform: translateY(-50%);
}

.menu-toggle__dots::before {
  left: 13px;
}

.menu-toggle__dots::after {
  right: 13px;
}

.menu-panel {
  position: fixed;
  z-index: 110;
  inset: 0;
  color: var(--paper);
  background: var(--black);
  transform: translateY(-100%);
  transition: transform 720ms var(--ease-out);
  pointer-events: none;
}

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

.menu-panel__inner {
  min-height: 100%;
  display: grid;
  align-content: space-between;
  padding: 22px var(--page-x) 40px;
  background-image:
    linear-gradient(var(--line-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: 100% 22vh, 16.666% 100%;
}

.menu-close {
  justify-self: end;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.menu-panel nav {
  display: grid;
  gap: 6px;
}

.menu-panel a {
  max-width: 980px;
  font-size: 4.25rem;
  font-weight: 800;
  line-height: 0.95;
}

.menu-panel a:hover,
.menu-panel a:focus-visible {
  color: var(--purple-300);
}

.section-dark {
  color: var(--paper);
  background: var(--purple-950);
}

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

.grid-field {
  position: relative;
  overflow: hidden;
}

.grid-field::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--line-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: 100% 27vh, 15.5% 100%;
}

.grid-field > * {
  position: relative;
  z-index: 1;
}

.section-shell {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 110px var(--page-x);
}

.two-column {
  display: grid;
  gap: 38px;
}

.section-kicker {
  margin: 0 0 18px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-title {
  max-width: 980px;
  margin: 0;
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1;
}

.copy-stack {
  max-width: 760px;
  margin-top: 34px;
  display: grid;
  gap: 18px;
  font-size: 1.08rem;
}

.copy-stack p,
.motion-copy p,
.project-intro p,
.contact-actions p,
.method-step p,
.service-row p {
  margin: 0;
}

.hero {
  min-height: 90svh;
  display: grid;
  align-content: space-between;
  gap: 34px;
  padding: 106px var(--page-x) 40px;
  background-color: #2b003e;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  max-width: 920px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(250, 245, 254, 0.72);
}

.hero__body {
  max-width: 1220px;
}

.hero__title {
  max-width: 1220px;
  margin: 0;
  font-size: 4rem;
  font-weight: 800;
  line-height: 0.98;
}

.hero__title span {
  display: block;
}

em {
  display: inline-block;
  color: var(--purple-400);
  font-family: "Redaction", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.hero__lower {
  display: grid;
  gap: 24px;
  max-width: 620px;
  font-size: 1.02rem;
}

.hero__lower p {
  margin: 0;
  color: rgba(250, 245, 254, 0.78);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  font-weight: 800;
}

.text-link::after {
  content: "";
  width: 70px;
  height: 2px;
  background: currentColor;
  transform-origin: left;
  transition: transform 260ms var(--ease-out);
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1.35);
}

.hero-fragment {
  position: absolute;
  right: 0;
  bottom: 8vh;
  width: min(52vw, 760px);
  margin: 0;
  opacity: 0.18;
  transform: translateX(22%);
}

.hero-fragment img {
  width: 100%;
  aspect-ratio: 4 / 1;
  object-fit: cover;
  border-left: 1px solid var(--line-dark);
}

.statement-section {
  padding: 86px var(--page-x) 96px;
  color: var(--paper);
  background: var(--black);
}

.statement-line {
  width: min(100%, var(--max-width));
  margin: 0 auto 120px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(250, 245, 254, 0.2);
  border-bottom: 1px solid rgba(250, 245, 254, 0.2);
}

.statement-line span {
  min-height: 120px;
  display: flex;
  align-items: center;
  padding: 24px 0;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.statement-line span + span {
  border-left: 1px solid rgba(250, 245, 254, 0.2);
  padding-left: 24px;
}

.statement-copy {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.02;
}

.statement-copy em {
  display: block;
  margin-top: 10px;
}

.section-heading {
  display: grid;
  gap: 20px;
  margin-bottom: 58px;
}

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

.service-row {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-light);
}

.service-row span {
  color: var(--purple-600);
  font-size: 0.86rem;
  font-weight: 800;
}

.service-row h3 {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.05;
}

.service-row p {
  grid-column: 2;
  max-width: 680px;
  color: rgba(14, 13, 16, 0.68);
}

.motion-section {
  min-height: 112svh;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  padding: 112px var(--page-x);
  background-color: #250036;
}

.motion-copy {
  max-width: 720px;
}

.motion-copy p:last-child {
  max-width: 600px;
  margin-top: 28px;
  color: rgba(250, 245, 254, 0.72);
}

.motion-stage {
  position: relative;
  width: min(100%, 860px);
  justify-self: end;
}

.motion-stage__screen {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: var(--black);
}

.motion-stage__bar {
  height: 34px;
  border: 1px solid var(--line-dark);
  border-bottom: 0;
}

.motion-stage__bar--bottom {
  border-top: 0;
  border-bottom: 1px solid var(--line-dark);
}

.motion-strip {
  position: absolute;
  left: 0;
  right: auto;
  display: flex;
  width: max-content;
  gap: 18px;
  white-space: nowrap;
  animation: strip-slide 16s linear infinite;
}

.motion-strip span {
  display: block;
  min-width: 280px;
  padding: 20px 24px;
  border: 1px solid var(--line-dark);
  color: var(--paper);
  font-size: 2.2rem;
  font-weight: 800;
}

.motion-strip--a {
  top: 70px;
}

.motion-strip--b {
  right: 0;
  bottom: 72px;
  animation-direction: reverse;
}

.motion-poster {
  position: absolute;
  right: 8%;
  bottom: 0;
  width: 34%;
  min-width: 210px;
  opacity: 0.52;
}

.motion-poster img {
  height: 320px;
  width: 100%;
  object-fit: cover;
  object-position: 50% 100%;
}

.projects-horizontal {
  position: relative;
  color: var(--paper);
  background: var(--black);
}

.projects-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  background: var(--black);
}

.projects-track {
  height: 100%;
  display: flex;
  align-items: stretch;
  will-change: transform;
}

.project-intro {
  flex: 0 0 min(92vw, 680px);
  display: grid;
  align-content: end;
  gap: 22px;
  padding: 110px var(--page-x) 58px;
  background-color: #210030;
}

.project-intro__title {
  max-width: 620px;
  margin: 0;
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1;
}

.project-intro p:last-child {
  max-width: 520px;
  color: rgba(250, 245, 254, 0.72);
}

.project-card {
  position: relative;
  flex: 0 0 min(84vw, 500px);
  min-height: 100%;
  display: grid;
  align-content: space-between;
  gap: 28px;
  padding: 90px 34px 44px;
  border-left: 1px solid rgba(250, 245, 254, 0.14);
  overflow: hidden;
}

.project-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  height: 100%;
  background: var(--case-color);
}

.project-card__index {
  font-size: 5.5rem;
  font-weight: 800;
  line-height: 1;
  opacity: 0.18;
}

.project-card p {
  margin: 0 0 14px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  opacity: 0.74;
}

.project-card h3 {
  max-width: 390px;
  margin: 0;
  font-size: 2.15rem;
  line-height: 1.02;
}

.project-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: inherit;
  opacity: 0.74;
}

.project-card li::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  margin-right: 10px;
  vertical-align: middle;
  background: currentColor;
}

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

.project-card--purple {
  color: var(--paper);
  background: var(--purple-950);
}

.project-card--dark {
  color: var(--paper);
  background: #08060a;
}

.project-card--image {
  color: var(--paper);
  background: var(--purple-900);
}

.project-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid rgba(250, 245, 254, 0.18);
}

.method-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line-light);
}

.method-step {
  min-height: 300px;
  display: grid;
  align-content: space-between;
  padding: 28px;
  background: var(--paper);
}

.method-step span {
  color: var(--purple-600);
  font-size: 0.8rem;
  font-weight: 800;
}

.method-step h3 {
  margin: 0;
  font-size: 2rem;
}

.method-step p {
  max-width: 340px;
  color: rgba(14, 13, 16, 0.68);
}

.contact-section {
  min-height: 92svh;
  display: grid;
  align-items: end;
  padding: 112px var(--page-x) 42px;
  background-color: #300044;
}

.contact-layout {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  display: grid;
  gap: 56px;
}

.contact-title {
  max-width: 900px;
  margin: 0;
  font-size: 4.2rem;
  font-weight: 800;
  line-height: 0.98;
}

.contact-actions {
  justify-self: start;
  width: min(100%, 520px);
  display: grid;
  gap: 1px;
  background: rgba(250, 245, 254, 0.14);
}

.contact-actions p {
  padding: 22px 0 28px;
  color: rgba(250, 245, 254, 0.72);
  background: #300044;
}

.contact-link {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 22px;
  min-height: 104px;
  padding: 20px 0;
  background: #300044;
}

.contact-link span {
  color: rgba(250, 245, 254, 0.64);
}

.contact-link strong {
  font-size: 2rem;
  line-height: 1;
  transition: color 180ms ease;
}

.contact-link:hover strong,
.contact-link:focus-visible strong {
  color: var(--purple-300);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 720ms var(--ease-out),
    transform 720ms var(--ease-out);
}

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

@keyframes strip-slide {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (min-width: 760px) {
  :root {
    --page-x: 36px;
  }

  .desktop-nav {
    display: inline-flex;
  }

  .two-column {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .section-title {
    font-size: 4.1rem;
  }

  .hero__title {
    font-size: 5.15rem;
  }

  .service-row {
    grid-template-columns: 88px 0.7fr 1fr;
    align-items: start;
    gap: 28px;
  }

  .service-row p {
    grid-column: auto;
  }

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

  .contact-layout {
    grid-template-columns: minmax(0, 1fr) 520px;
    align-items: end;
  }
}

@media (min-width: 1180px) {
  :root {
    --page-x: 56px;
  }

  .hero__title {
    font-size: 6.65rem;
  }

  .statement-copy {
    font-size: 5.4rem;
  }

  .motion-section {
    grid-template-columns: 0.76fr 1fr;
  }

  .contact-title {
    font-size: 5.7rem;
  }
}

@media (min-width: 1500px) and (min-height: 840px) {
  .hero__title {
    font-size: 7.65rem;
  }
}

@media (max-width: 899px) {
  .projects-horizontal {
    height: auto;
  }

  .projects-sticky {
    position: relative;
    height: auto;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .projects-track {
    min-height: 82svh;
  }

  .project-intro,
  .project-card {
    scroll-snap-align: start;
  }
}

@media (max-width: 759px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .desktop-nav {
    display: none;
  }

  .menu-panel a {
    font-size: 3rem;
  }

  .section-shell {
    padding: 84px var(--page-x);
  }

  .section-title {
    font-size: 2.55rem;
  }

  .hero {
    min-height: 92svh;
    padding-top: 104px;
  }

  .hero__title {
    font-size: 3.55rem;
  }

  .hero-fragment {
    width: 78vw;
    bottom: 14vh;
    opacity: 0.12;
  }

  .statement-line {
    grid-template-columns: 1fr;
    margin-bottom: 64px;
  }

  .statement-line span {
    min-height: 76px;
  }

  .statement-line span + span {
    border-left: 0;
    border-top: 1px solid rgba(250, 245, 254, 0.2);
    padding-left: 0;
  }

  .statement-copy {
    font-size: 2.7rem;
  }

  .motion-section {
    padding: 84px var(--page-x);
  }

  .motion-stage__screen {
    min-height: 360px;
  }

  .motion-strip span {
    min-width: 220px;
    font-size: 1.7rem;
  }

  .project-intro__title {
    font-size: 2.45rem;
  }

  .project-card {
    padding: 78px 24px 34px;
  }

  .project-card h3 {
    font-size: 1.82rem;
  }

  .contact-title {
    font-size: 3.5rem;
  }

  .contact-link {
    grid-template-columns: 1fr;
  }
}

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

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

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