@font-face {
  font-family: "Work Sans";
  src: url("./work-sans-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Shrikhand";
  src: url("./shrikhand-latin.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

:root {
  --ink-black: #101011;
  --almond-cream: #e7d7c1;
  --tomato-jam: #c0392b;
  --metallic-gold: #d4ae39;
  --seppia-black: #031414;
  --nav-bg: transparent;
  --font-work-sans: "Work Sans", Arial, sans-serif;
  --font-shrikhand: "Shrikhand", Georgia, serif;
  --font-geist-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--ink-black);
  color: var(--almond-cream);
  font-family: "Work Sans", Arial, sans-serif;
  overflow-x: hidden;
}

body {
  min-height: 100svh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 48% 42%, rgba(255, 255, 255, 0.025), transparent 32%),
    radial-gradient(circle at 10% 70%, rgba(192, 57, 43, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(16, 16, 17, 0.9), rgba(16, 16, 17, 1));
}

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

button {
  font: inherit;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: normal;
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: block;
  overflow: hidden;
  pointer-events: none;
  opacity: 1;
}

.intro-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.site-nav {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 5vw, 72px);
  height: auto;
  width: calc(100vw - 44px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -100%);
  transition:
    opacity 1000ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1000ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0ms linear 1000ms;
}

.site-nav.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  transition:
    opacity 1000ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1000ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0ms linear 0ms;
}

.brand {
  display: flex;
  align-items: center;
  width: 116px;
  flex: 0 0 auto;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.nav-separator {
  height: 34px;
  width: 1px;
  background: rgba(231, 215, 193, 0.28);
}

.nav-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 208px));
  align-items: center;
  gap: clamp(28px, 3.1vw, 46px);
  flex: 0 1 auto;
  justify-content: start;
}

.nav-links a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  min-height: 26px;
  padding: 12px 0 0;
  border-radius: 0;
  color: var(--almond-cream);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.nav-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 999px;
  background: rgba(231, 215, 193, 0.36);
}

.nav-links a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 0;
  height: 4px;
  border-radius: 999px;
  background: var(--almond-cream);
  transition: width 450ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-text,
.cta-text {
  display: inline-flex;
  overflow: hidden;
  line-height: 1;
}

.nav-text {
  color: var(--almond-cream);
  text-shadow: 0 1em rgba(231, 215, 193, 0.55);
}

.letter {
  display: inline-block;
  transition: transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.nav-links a:hover .letter {
  transform: translateY(-100%);
}

.nav-links a small {
  color: rgba(231, 215, 193, 0.42);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.nav-links a.active,
.nav-links a:hover {
  background: transparent;
  color: #fff2dd;
}

.header-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: clamp(176px, 14.6vw, 208px);
  height: 34px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: var(--almond-cream);
  color: var(--ink-black);
  cursor: pointer;
  font-size: 14px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  transition:
    width 300ms ease,
    height 300ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.header-cta:hover {
  background: #f2dfc6;
  width: clamp(149px, 12.4vw, 177px);
  height: 41px;
  transform: translateY(-3px);
}

.header-cta:active {
  transform: translateY(-1px) scale(0.98);
}

.cta-text {
  color: var(--ink-black);
  text-shadow: 0 1em var(--ink-black);
}

.header-cta:hover .letter {
  transform: translateY(-100%);
}

.hero {
  position: relative;
  z-index: 10;
}

.hero-section {
  position: relative;
  --hero-wordmark-width: min(94vw, 1640px);
  --hero-wordmark-shift-y: clamp(-22px, -2vh, -10px);
  display: flex;
  width: 100%;
  height: 100svh;
  min-height: 720px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  overflow: visible;
  padding-top: 80px;
}

.hero-shell {
  position: relative;
  width: 100%;
  height: 100%;
}

.logo-stage {
  position: relative;
  z-index: 30;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  transform: perspective(1000px);
  will-change: transform;
}

.wordmark-layer {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  mix-blend-mode: normal;
  will-change: transform;
}

.wordmark-refraction-layer {
  position: absolute;
  inset: 0;
  z-index: 35;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0.16;
  mix-blend-mode: soft-light;
  mask-image: radial-gradient(ellipse 34% 39% at 48% 52%, #000 0 42%, rgba(0, 0, 0, 0.72) 54%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 34% 39% at 48% 52%, #000 0 42%, rgba(0, 0, 0, 0.72) 54%, transparent 72%);
  will-change: transform;
}

.hero-wordmark,
.hero-wordmark-refraction {
  display: block;
  width: var(--hero-wordmark-width);
  max-width: none;
  margin-top: var(--hero-wordmark-shift-y);
  height: auto;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}

.hero-wordmark {
  filter: drop-shadow(8px 12px 4px rgba(0, 0, 0, 0.34));
}

.hero-wordmark-refraction {
  filter: grayscale(1) saturate(0) contrast(1.05) brightness(0.78);
}

.hero-buttons-layer {
  position: absolute;
  inset: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero-buttons-inner {
  display: flex;
  width: min(90vw, 1280px);
  flex-direction: column;
  align-items: center;
}

.wordmark-spacer-desktop {
  display: block;
  width: 100%;
  height: calc(min(90vw, 1280px) * 0.3325);
}

.wordmark-spacer-mobile {
  display: none;
}

.hero-copy {
  position: absolute;
  left: clamp(28px, 2.1vw, 32px);
  bottom: 38px;
  z-index: 40;
  max-width: 310px;
  opacity: 0;
  transform: translateY(26px);
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.68);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--tomato-jam);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.42em;
  line-height: 1.2;
  text-transform: uppercase;
}

.role {
  margin: 0 0 16px;
  color: rgba(231, 215, 193, 0.82);
  font-size: 15px;
  font-weight: 760;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.hero-copy h1 {
  margin: 0;
  color: var(--almond-cream);
  font-family: "Shrikhand", Georgia, serif;
  font-size: clamp(40px, 3.05vw, 48px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0;
}

.description {
  margin: 20px 0 0;
  color: rgba(231, 215, 193, 0.62);
  font-size: 15px;
  line-height: 1.45;
}

.hero-actions {
  display: none;
  gap: 12px;
  margin-top: 12px;
  pointer-events: auto;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.16em;
}

.btn-ghost {
  min-width: 129px;
  border: 1px solid rgba(231, 215, 193, 0.26);
  color: rgba(231, 215, 193, 0.86);
  background: rgba(16, 16, 17, 0.08);
}

.btn-red {
  min-width: 140px;
  border: 1px solid var(--tomato-jam);
  background: rgba(192, 57, 43, 0.92);
  color: var(--almond-cream);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transform: translate(-50%, 26px);
  color: var(--almond-cream);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.scroll-cue.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.scroll-cue span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.48em;
  text-transform: uppercase;
  white-space: nowrap;
}

.mouse {
  position: relative;
  width: 23px;
  height: 38px;
  border: 2px solid rgba(231, 215, 193, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
}

.mouse span {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 3px;
  height: 8px;
  border-radius: 999px;
  background: var(--tomato-jam);
  transform: translateX(-50%);
  animation: scroll-dot 1.5s ease-in-out infinite;
}

.stats {
  position: absolute;
  right: 28px;
  bottom: 34px;
  z-index: 40;
  display: flex;
  gap: 42px;
  opacity: 0;
  transform: translateY(26px);
  text-align: right;
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.stats strong {
  display: block;
  color: var(--tomato-jam);
  font-family: "Shrikhand", Georgia, serif;
  font-size: 31px;
  font-weight: 400;
  line-height: 0.92;
}

.stats span {
  display: block;
  margin-top: 8px;
  color: rgba(231, 215, 193, 0.86);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.right-scroll {
  position: fixed;
  top: 50%;
  right: 28px;
  z-index: 70;
  width: 2px;
  height: 30vh;
  border-radius: 999px;
  background: rgba(192, 57, 43, 0.2);
  transform: translateY(-50%);
}

.right-scroll span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 8px;
  height: 40px;
  border-radius: 999px;
  background: var(--tomato-jam);
  box-shadow: 0 0 15px rgba(192, 57, 43, 0.4);
  transform: translateX(-50%);
}

.help-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 75;
  display: none;
}

@keyframes scroll-dot {
  0%,
  100% {
    transform: translate(-50%, -6px);
    opacity: 0.65;
  }
  50% {
    transform: translate(-50%, 10px);
    opacity: 1;
  }
}

.services-clone-section {
  position: relative;
  z-index: 12;
  background: var(--ink-black);
  color: var(--almond-cream);
}

.services-clone-section .font-editorial {
  font-family: "PP Editorial New", Georgia, serif;
}

.services-clone-section .bento-card {
  transform-origin: center;
}

.services-clone-section .bento-card:not(:nth-child(4)):hover {
  transform: scale(1.02) !important;
}

.services-clone-section .card-inner-animation {
  will-change: transform, opacity;
}

.services-clone-section .wireframe-line {
  will-change: stroke-dashoffset;
}

.services-clone-section .ui-element {
  transform-box: fill-box;
  transform-origin: center;
  will-change: transform, opacity;
}

.services-clone-section .cursor {
  will-change: opacity;
}

.services-clone-section .animate-draw-path {
  animation: service-draw-path 3.6s ease-in-out infinite;
}

.services-clone-section .animate-draw-area {
  animation: service-draw-area 3.6s ease-in-out infinite;
}

@keyframes service-draw-path {
  0% {
    stroke-dashoffset: 300;
  }
  55%,
  78% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 300;
  }
}

@keyframes service-draw-area {
  0%,
  20% {
    opacity: 0;
  }
  55%,
  78% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.work-showcase-section {
  position: relative;
  z-index: 14;
  min-height: 100svh;
  background: var(--almond-cream);
  color: var(--seppia-black);
  overflow: visible;
  isolation: isolate;
}

.work-shell {
  position: relative;
  min-height: 100svh;
  background: var(--almond-cream);
  overflow: hidden;
  isolation: isolate;
}

.work-intro,
.work-stage,
.work-word-layer,
.work-heading {
  pointer-events: none;
}

.work-intro {
  position: absolute;
  inset: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px) scale(1);
  will-change: opacity, transform;
}

.work-intro-frame {
  position: relative;
  width: 100%;
  height: 100%;
}

.work-intro-icons {
  position: absolute;
  inset: 0;
  margin: auto;
  width: min(64vw, 980px);
  height: min(48vh, 420px);
  top: 48%;
  transform: translateY(-50%);
}

.work-intro-icon {
  position: absolute;
  display: block;
  width: clamp(38px, 3.2vw, 58px);
  height: clamp(38px, 3.2vw, 58px);
  color: rgba(192, 57, 43, 0.44);
  opacity: 0;
  transform: translateY(18px) scale(0.72) rotate(var(--rotation));
  transform-origin: center;
  will-change: opacity, transform;
}

.work-intro-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.work-icon-laptop {
  left: 8%;
  top: 9%;
}

.work-icon-phone {
  left: 22%;
  top: 4%;
}

.work-icon-layers {
  right: 22%;
  top: 8%;
}

.work-icon-sparkles {
  right: 7%;
  top: 17%;
}

.work-icon-palette {
  left: 1%;
  top: 45%;
}

.work-icon-pen {
  left: 6%;
  bottom: 10%;
}

.work-icon-bulb {
  left: 23%;
  bottom: 5%;
}

.work-icon-rocket {
  right: 5%;
  bottom: 15%;
}

.work-icon-party {
  right: 12%;
  bottom: 9%;
}

.work-icon-smile {
  right: 23%;
  bottom: 7%;
}

.work-intro-title {
  position: absolute;
  top: 48%;
  left: 50%;
  width: min(86vw, 880px);
  margin: 0;
  transform: translate(-50%, -50%);
  color: var(--seppia-black);
  font-family: var(--font-shrikhand);
  font-size: clamp(42px, 4.65vw, 82px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0;
  text-align: center;
}

.work-intro-title span {
  display: block;
}

.work-intro-title span:last-child {
  color: var(--tomato-jam);
}

.work-intro-cue {
  position: absolute;
  top: calc(50% + 132px);
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  transform: translateX(-50%);
  color: rgba(3, 20, 20, 0.38);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.32em;
  white-space: nowrap;
}

.work-intro-mouse {
  position: relative;
  width: 42px;
  height: 86px;
  border: 2px solid rgba(3, 20, 20, 0.36);
  border-radius: 999px;
}

.work-intro-mouse i {
  position: absolute;
  top: 27px;
  left: 50%;
  display: block;
  width: 8px;
  height: 16px;
  border-radius: 999px;
  background: rgba(192, 57, 43, 0.5);
  transform: translateX(-50%);
  animation: scroll-dot 2s ease-in-out infinite;
}

.work-heading {
  position: absolute;
  top: 96px;
  left: 80px;
  z-index: 20;
  width: min(42rem, calc(100vw - 10rem));
  opacity: 0;
  transform: translateY(28px);
  will-change: opacity, transform;
}

.work-heading h2 {
  margin: 0;
  color: var(--seppia-black);
  font-family: var(--font-shrikhand);
  font-size: 60px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.work-heading h2 span {
  display: block;
  color: var(--tomato-jam);
}

.work-heading p {
  margin: 16px 0 0;
  color: rgba(4, 15, 15, 0.3);
  font-size: 14px;
  font-weight: 800;
  line-height: 20px;
  letter-spacing: 0.18em;
}

.work-word-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: none;
  overflow: hidden;
}

.work-word {
  position: absolute;
  left: 50%;
  z-index: 1;
  color: rgba(3, 20, 20, 0.72);
  font-family: "PP Editorial New", Georgia, serif;
  font-style: italic;
  line-height: 1;
  transform: translate3d(calc(var(--progress, 1.2) * (80vw + 150%) - 50%), 0, 0);
  will-change: transform;
  white-space: nowrap;
}

.work-word-6 {
  font-size: 3.75rem;
}

.work-word-7 {
  font-size: 4.5rem;
}

.work-word-8 {
  font-size: 6rem;
}

.work-word-9 {
  font-size: 8rem;
}

.work-stage {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: none;
  perspective: 1200px;
  transform-style: flat;
  overflow: visible;
}

.work-item {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 8px;
  opacity: 0;
  transform: rotateY(calc(var(--progress, 1) * -20deg))
    translate3d(
      calc(var(--progress, 1) * (50vw + 100%) - 50%),
      calc(var(--y, 0) * 50% - 50%),
      calc(var(--progress, 1) * var(--progress, 1) * -5rem)
    )
    scale(var(--size, 1))
    translateZ(0);
  backface-visibility: hidden;
  transform-style: flat;
  isolation: isolate;
  overflow: visible;
  transition: opacity 150ms ease;
  will-change: opacity, transform;
}

.work-item.is-inview {
  opacity: 1;
}

.work-item-desktop {
  z-index: 10;
  width: 680px;
}

.work-item-mobile {
  z-index: 40;
  width: 640px;
}

.work-device-tilt {
  display: block;
  pointer-events: auto;
  overflow: visible;
  transform: rotate(calc(var(--progress, 0) * -15deg));
  will-change: transform;
}

.work-device-tilt-desktop {
  padding: 64px;
}

.work-device-link {
  position: relative;
  display: block;
}

.work-laptop {
  position: relative;
  display: flex;
  width: 600px;
  aspect-ratio: 550 / 326;
  align-items: center;
  justify-content: center;
  background: #000;
}

.work-laptop video,
.work-phone video {
  display: block;
  background: #000;
}

.work-laptop video {
  width: 100%;
  height: 100%;
  aspect-ratio: 550 / 326;
  object-fit: contain;
}

.work-laptop-frame,
.work-phone-frame {
  position: absolute;
  left: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.work-laptop-frame {
  top: 53%;
  width: 160%;
  height: 128%;
  aspect-ratio: 550 / 326;
}

.work-phone {
  position: relative;
  display: flex;
  height: 520px;
  width: auto;
  aspect-ratio: 270 / 530;
  align-items: center;
  justify-content: center;
  overflow: visible;
  border-radius: 32px;
  background: #000;
}

.work-phone video {
  width: 100%;
  height: 100%;
  aspect-ratio: 270 / 530;
  border-radius: 32px;
  object-fit: contain;
  pointer-events: none;
}

.work-phone-frame {
  top: 50%;
  width: 120%;
  height: 106%;
  aspect-ratio: 270 / 530;
}

.work-laptop-frame img,
.work-phone-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.work-laptop-frame img {
  transform: scaleY(0.87);
}

.work-mobile-list {
  display: grid;
  gap: 28px;
  padding: 32px 18px 72px;
}

.work-mobile-card {
  display: flex;
  flex-direction: column;
  color: var(--seppia-black);
}

.work-mobile-preview {
  position: relative;
  aspect-ratio: 550 / 326;
  overflow: hidden;
  border-radius: 18px;
  background: #000;
  box-shadow: 0 24px 70px rgba(3, 20, 20, 0.2);
}

.work-mobile-preview video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.work-showcase-section.work-mobile-mode {
  overflow: hidden;
}

.work-showcase-section.work-mobile-mode .work-shell {
  min-height: auto;
  overflow: visible;
}

.work-showcase-section.work-mobile-mode .work-intro,
.work-showcase-section.work-mobile-mode .work-stage,
.work-showcase-section.work-mobile-mode .work-word-layer {
  display: none;
}

.work-showcase-section.work-mobile-mode .work-heading {
  position: relative;
  top: auto;
  left: auto;
  width: auto;
  padding: 96px 18px 18px;
  opacity: 1;
  transform: none;
}

.work-showcase-section.work-mobile-mode .work-heading h2 {
  font-size: clamp(42px, 13vw, 64px);
}

@media (min-width: 1024px) {
  .work-showcase-section {
    min-height: 100svh;
  }

  .work-shell {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100svh;
    min-height: 720px;
  }

  .work-showcase-section.work-pin-active .work-shell {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 14;
  }

  .work-showcase-section.work-pin-after .work-shell {
    top: auto;
    bottom: 0;
  }

  .work-word-layer,
  .work-stage {
    display: block;
  }

  .work-mobile-list {
    display: none;
  }
}

@media (min-width: 1536px) {
  .work-item-desktop {
    width: 780px;
  }

  .work-item-mobile {
    width: 720px;
  }

  .work-laptop {
    width: 700px;
  }
}

@media (max-width: 1023px) {
  .site-nav {
    top: 16px;
    width: calc(100vw - 32px);
    gap: 16px;
    align-items: flex-start;
  }

  .nav-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
  }

  .nav-links a {
    min-height: 23px;
    padding-top: 9px;
    font-size: 10px;
  }

  .nav-links a::before {
    height: 3px;
  }

  .nav-links a::after {
    height: 3px;
  }

  .nav-links a small {
    font-size: 8px;
    letter-spacing: 0.04em;
  }

  .hero-section {
    height: 100svh;
    min-height: 100svh;
    overflow: hidden;
  }

  .hero-shell {
    height: 50vh;
    min-height: 280px;
    transform: translateY(-7vh);
  }

  .logo-stage {
    align-items: center;
  }

  .wordmark-layer,
  .wordmark-refraction-layer {
    align-items: center;
    justify-content: center;
  }

  .wordmark-refraction-layer {
    opacity: 0.14;
    mask-image: radial-gradient(ellipse 42% 42% at 47% 52%, #000 0 45%, rgba(0, 0, 0, 0.7) 58%, transparent 78%);
    -webkit-mask-image: radial-gradient(ellipse 42% 42% at 47% 52%, #000 0 45%, rgba(0, 0, 0, 0.7) 58%, transparent 78%);
  }

  .hero-wordmark,
  .hero-wordmark-refraction {
    width: 94vw;
    max-width: none;
    margin-top: -10px;
  }

  .hero-buttons-inner {
    width: 85vw;
  }

  .wordmark-spacer-desktop {
    display: none;
  }

  .wordmark-spacer-mobile {
    display: block;
    width: 100%;
    height: calc(85vw * 0.3325);
  }

  .hero-copy {
    left: 24px;
    right: auto;
    bottom: 88px;
    max-width: 330px;
    text-align: left;
  }

  .hero-copy h1 {
    font-size: clamp(38px, 11vw, 48px);
    line-height: 0.96;
  }

  .description {
    max-width: 20rem;
    font-size: 13px;
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 16px;
  }

  .btn {
    min-width: 0;
    flex: 1 1 0;
    padding: 0 16px;
    letter-spacing: 0.12em;
  }

  .right-scroll {
    display: none;
  }

  .stats {
    right: 20px;
    bottom: 28px;
    gap: 18px;
  }

  .stats strong {
    font-size: 24px;
  }

  .stats span {
    font-size: 8px;
    letter-spacing: 0.24em;
  }

  .scroll-cue {
    bottom: 14px;
    gap: 8px;
  }

  .scroll-cue span {
    font-size: 8px;
    letter-spacing: 0.38em;
  }

  .services-clone-section.services-js-ready .bento-card {
    opacity: 0 !important;
    transform: translateY(80px) !important;
    transition: opacity 800ms cubic-bezier(0.22, 1, 0.36, 1), transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .services-clone-section.services-js-ready .bento-card.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

@media (max-width: 640px) {
  .site-nav {
    justify-content: flex-end;
  }

  .nav-links {
    display: none;
  }

  .header-cta {
    display: flex;
    width: 38vw;
    min-width: 140px;
    height: 34px;
    font-size: 12px;
  }

  .header-cta:hover {
    width: 32vw;
    min-width: 124px;
    height: 41px;
  }

  .stats {
    display: none;
  }
}

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

  .intro {
    display: none;
  }

  .services-clone-section .animate-draw-path,
  .services-clone-section .animate-draw-area {
    animation: none !important;
  }
}
