@font-face {
  font-family: "Raleway";
  src: url("assets/fonts/raleway-variable.woff2?v=20260719-3") format("woff2-variations");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink-950: #03101c;
  --ink-900: #04121f;
  --ink-850: #071b2d;
  --ink-800: #0a2740;
  --blue-700: #00436f;
  --blue-600: #006aa7;
  --blue-300: #66b8e8;
  --yellow-500: #fec400;
  --yellow-300: #ffe27a;
  --paper-100: #fffdf6;
  --paper-200: #f7f2e7;
  --paper-300: #ede5d2;
  --red-700: #7a1f1b;
  --green-500: #1e9e4b;
  --text-on-dark: #f5f1e6;
  --text-muted-dark: rgba(226, 238, 248, 0.72);
  --text-on-light: #0e2a44;
  --text-muted-light: #4a6274;
  --border-dark: rgba(255, 255, 255, 0.16);
  --border-light: rgba(14, 42, 68, 0.13);
  --shadow-soft: 0 18px 54px rgba(0, 18, 34, 0.22);
  --shadow-deep: 0 42px 100px rgba(0, 0, 0, 0.5);
  --radius-sm: 0.65rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-pill: 999px;
  --page-gutter: clamp(1.25rem, 4vw, 3.25rem);
  --content-max: 82rem;
  --header-height: 5.25rem;
  --ease-cinematic: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  overflow-x: hidden;
  overflow-x: clip;
  background: var(--ink-900);
  scroll-behavior: smooth;
  scrollbar-color: var(--yellow-500) var(--ink-950);
}

body {
  margin: 0;
  min-width: 20rem;
  overflow-x: clip;
  background: var(--ink-900);
  color: var(--text-on-dark);
  font-family: "Raleway", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--yellow-500);
  color: var(--ink-900);
}

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

a {
  color: inherit;
}

em {
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

:focus-visible {
  border-radius: 0.25rem;
  outline: 3px solid var(--yellow-500);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--paper-100);
  color: var(--ink-900);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.page-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  height: 3px;
  overflow: hidden;
  pointer-events: none;
}

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

.site-header {
  position: fixed;
  top: max(0.5rem, env(safe-area-inset-top));
  right: 0;
  left: 0;
  z-index: 35;
  padding: 0 var(--page-gutter);
  pointer-events: none;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, var(--content-max));
  min-height: 4.25rem;
  margin: 0 auto;
  padding: 0.65rem 0.75rem 0.65rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  pointer-events: auto;
  transition:
    background 300ms ease,
    border-color 300ms ease,
    box-shadow 300ms ease,
    backdrop-filter 300ms ease;
}

.site-header[data-scrolled="true"] .site-nav {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(3, 16, 28, 0.96);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.24);
  backdrop-filter: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 2.75rem;
  text-decoration: none;
}

.brand img {
  width: 8.875rem;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 1.65vw, 1.65rem);
}

.desktop-nav a,
.nav-phone,
.language-link {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.42rem;
  left: 0;
  height: 2px;
  background: var(--yellow-500);
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 220ms var(--ease-cinematic);
}

.desktop-nav a:hover,
.nav-phone:hover,
.language-link:hover {
  color: #fff;
}

.language-link {
  display: inline-grid;
  place-items: center;
  width: 2.55rem;
  min-width: 2.55rem;
  height: 2.55rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="location"]::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.4rem;
  flex-shrink: 0;
  padding: 0.75rem 1.65rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 220ms var(--ease-cinematic),
    box-shadow 220ms ease,
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
}

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

.button--small {
  min-height: 2.75rem;
  padding-inline: 1.35rem;
  font-size: 0.92rem;
}

.button--yellow {
  background: var(--yellow-500);
  box-shadow: 0 12px 34px rgba(254, 196, 0, 0.16);
  color: #14283b;
}

.button--yellow:hover {
  background: #ffd12d;
  box-shadow: 0 18px 42px rgba(254, 196, 0, 0.28);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text-on-dark);
}

.button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.08);
}

.menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: white;
  cursor: pointer;
  gap: 0.38rem;
}

.menu-button span {
  width: 1.5rem;
  height: 2px;
  background: currentColor;
  transition: transform 260ms var(--ease-cinematic);
}

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

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

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding:
    calc(var(--header-height) + max(2.5rem, env(safe-area-inset-top)))
    var(--page-gutter)
    max(2rem, env(safe-area-inset-bottom));
  background:
    radial-gradient(circle at 80% 20%, rgba(0, 106, 167, 0.32), transparent 36%),
    var(--ink-900);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-2rem);
  visibility: hidden;
  transition:
    opacity 280ms ease,
    transform 480ms var(--ease-cinematic),
    visibility 0s linear 480ms;
}

.mobile-menu[data-open="true"] {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
  transition-delay: 0s;
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu nav a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: clamp(2.3rem, 9vw, 4.5rem);
  line-height: 1.05;
  text-decoration: none;
}

.mobile-menu nav a span {
  color: var(--yellow-500);
  font-family: "Raleway", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.mobile-menu__footer {
  display: grid;
  gap: 0.45rem;
}

.mobile-menu__footer a {
  width: fit-content;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
}

.mobile-menu__footer p {
  margin: 0.25rem 0 0;
  color: var(--text-muted-dark);
}

/* Z-index bands:
   0–9 world layers, 10–19 tint/frame, 20–29 narrative, 30–39 navigation, 40+ overlays. */
.cinematic-scroll {
  position: relative;
  height: clamp(255rem, 575vh, 330rem);
  background: var(--ink-900);
}

.cinematic-stage {
  --intro-o: 1;
  --intro-y: 0;
  --panel-a-o: 0;
  --panel-a-y: 1.25;
  --panel-b-o: 0;
  --panel-b-y: 1.25;
  --catalog-o: 0;
  --catalog-y: 4;
  --catalog-x: 9;
  --world-scale: 1;
  --world-brightness: 1;
  --world-saturation: 1;
  --world-blur: 0;
  --core-x: 18;
  --core-y: 1;
  --core-scale: 1;
  --portal: 0;
  --portal-exit: 0;
  --pointer-x: 0px;
  --pointer-y: 0px;
  --timeline-progress: 0;
  position: sticky;
  top: 0;
  isolation: isolate;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  overflow: clip;
  background: var(--ink-900);
}

.world {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  overflow: clip;
  filter:
    blur(calc(var(--world-blur) * 1px))
    brightness(var(--world-brightness))
    saturate(var(--world-saturation));
  perspective: 90rem;
  transform: scale(var(--world-scale));
  transform-origin: 50% 52%;
  will-change: transform, filter;
}

.layer {
  position: absolute;
  pointer-events: none;
}

.layer--sky {
  inset: -12%;
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 48% 120%, rgba(0, 106, 167, 0.38), transparent 44%),
    linear-gradient(180deg, #020b13 0%, #041522 66%, #07243a 100%);
  transform: translate3d(
      calc(var(--pointer-x) * -0.12),
      calc(var(--pointer-y) * -0.08),
      -10px
    )
    scale(1.08);
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  opacity: 0.72;
  filter: brightness(0.68) contrast(1.08) saturate(0.88);
  transform: scale(1.035);
}

.sky-video-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(2, 11, 19, 0.72) 0%,
      rgba(2, 11, 19, 0.38) 39%,
      rgba(2, 11, 19, 0.08) 70%,
      rgba(2, 11, 19, 0.22) 100%
    ),
    linear-gradient(
      180deg,
      rgba(2, 11, 19, 0.12) 0%,
      rgba(2, 11, 19, 0.03) 48%,
      rgba(2, 11, 19, 0.72) 100%
    );
}

.star-field {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0.82;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.86) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(102, 184, 232, 0.7) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(255, 255, 255, 0.5) 0 0.8px, transparent 1.2px);
  background-position:
    0 0,
    3.5rem 4.5rem,
    7rem 1.8rem;
  background-size:
    9rem 9rem,
    12rem 12rem,
    7rem 7rem;
  mask-image: linear-gradient(to bottom, #000 0%, #000 70%, transparent 100%);
}

.aurora {
  position: absolute;
  z-index: 2;
  width: 72%;
  height: 85%;
  border-radius: 45% 55% 50% 50%;
  filter: blur(3.2rem);
  mix-blend-mode: screen;
  opacity: 0.28;
  transform-origin: center;
}

.aurora--one {
  top: -22%;
  left: 1%;
  background: radial-gradient(ellipse at center, rgba(65, 228, 169, 0.9), transparent 67%);
  transform: rotate(12deg) skewX(-18deg);
}

.aurora--two {
  top: -12%;
  right: -14%;
  background: radial-gradient(ellipse at center, rgba(64, 163, 255, 0.78), transparent 66%);
  transform: rotate(-14deg) skewX(15deg);
}

.aurora--three {
  right: 9%;
  bottom: -42%;
  background: radial-gradient(ellipse at center, rgba(254, 196, 0, 0.52), transparent 68%);
  opacity: 0.16;
  transform: rotate(8deg);
}

.cinematic-stage[data-ambient-active="true"] .aurora--one {
  animation: aurora-drift-one 16s ease-in-out infinite alternate;
}

.cinematic-stage[data-ambient-active="true"] .aurora--two {
  animation: aurora-drift-two 21s ease-in-out infinite alternate;
}

.cinematic-stage[data-ambient-active="true"] .aurora--three {
  animation: aurora-drift-three 18s ease-in-out infinite alternate;
}

.low-power .world {
  filter: none;
  will-change: transform;
}

.low-power .hero-video {
  opacity: 0.52;
  filter: none;
}

.low-power .aurora {
  animation: none !important;
  filter: none;
  mix-blend-mode: normal;
  opacity: 0.1;
}

.low-power .cinematic-grain {
  display: none;
}

.low-power .cinematic-stage * {
  backdrop-filter: none !important;
}

@keyframes aurora-drift-one {
  from {
    transform: translate3d(-2%, -1%, 0) rotate(10deg) skewX(-18deg) scale(0.94);
  }
  to {
    transform: translate3d(7%, 4%, 0) rotate(16deg) skewX(-12deg) scale(1.08);
  }
}

@keyframes aurora-drift-two {
  from {
    transform: translate3d(3%, -2%, 0) rotate(-16deg) skewX(15deg) scale(0.92);
  }
  to {
    transform: translate3d(-6%, 5%, 0) rotate(-9deg) skewX(9deg) scale(1.1);
  }
}

@keyframes aurora-drift-three {
  from {
    transform: translate3d(0, 3%, 0) rotate(6deg) scale(0.95);
  }
  to {
    transform: translate3d(-4%, -3%, 0) rotate(12deg) scale(1.08);
  }
}

.layer--distant {
  inset: -10%;
  z-index: 2;
  transform: translate3d(
    calc(var(--pointer-x) * -0.26),
    calc(var(--pointer-y) * -0.18),
    0
  );
}

.orbit {
  position: absolute;
  border: 1px solid rgba(102, 184, 232, 0.17);
  border-radius: 50%;
}

.orbit::before,
.orbit::after {
  position: absolute;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--yellow-500);
  box-shadow: 0 0 1.25rem rgba(254, 196, 0, 0.8);
  content: "";
}

.orbit--one {
  top: 9%;
  right: 3%;
  width: min(48vw, 44rem);
  aspect-ratio: 1;
  transform: rotate(-18deg);
}

.orbit--one::before {
  top: 19%;
  left: 6%;
}

.orbit--one::after {
  right: 8%;
  bottom: 16%;
  background: var(--blue-300);
  box-shadow: 0 0 1.25rem rgba(102, 184, 232, 0.8);
}

.orbit--two {
  bottom: -29%;
  left: 5%;
  width: min(54vw, 52rem);
  aspect-ratio: 1.1;
  transform: rotate(22deg);
}

.orbit--two::before {
  top: 1%;
  right: 22%;
}

.signal {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: white;
  box-shadow:
    0 0 0 0.55rem rgba(255, 255, 255, 0.035),
    0 0 0 1.4rem rgba(255, 255, 255, 0.025);
}

.signal--one {
  top: 18%;
  left: 12%;
}

.signal--two {
  top: 36%;
  right: 19%;
}

.signal--three {
  right: 42%;
  bottom: 22%;
}

.layer--midground {
  inset: 0;
  z-index: 4;
  overflow: hidden;
  transform: translate3d(
    calc(var(--pointer-x) * 0.22),
    calc(var(--pointer-y) * 0.15),
    20px
  );
}

.horizon-grid {
  position: absolute;
  right: -20%;
  bottom: -43%;
  left: -20%;
  height: 76%;
  background-image:
    linear-gradient(rgba(102, 184, 232, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 184, 232, 0.14) 1px, transparent 1px);
  background-size: 4.5rem 4.5rem;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 34%, #000 100%);
  transform: perspective(35rem) rotateX(62deg) scaleX(1.22);
  transform-origin: top center;
}

.data-ridge {
  position: absolute;
  bottom: 7%;
  width: 34%;
  height: 16%;
  border-top: 1px solid rgba(102, 184, 232, 0.25);
  opacity: 0.55;
  clip-path: polygon(0 100%, 0 72%, 8% 72%, 8% 52%, 13% 52%, 13% 82%, 20% 82%, 20% 36%, 25% 36%, 25% 66%, 32% 66%, 32% 46%, 38% 46%, 38% 76%, 45% 76%, 45% 24%, 50% 24%, 50% 58%, 57% 58%, 57% 40%, 63% 40%, 63% 72%, 70% 72%, 70% 30%, 75% 30%, 75% 54%, 82% 54%, 82% 69%, 88% 69%, 88% 43%, 94% 43%, 94% 78%, 100% 78%, 100% 100%);
  background: linear-gradient(to top, rgba(0, 106, 167, 0.2), transparent);
}

.data-ridge--left {
  left: -3%;
}

.data-ridge--right {
  right: -2%;
  transform: scaleX(-1);
}

.studio-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 6;
  width: min(48vw, 46rem);
  min-width: 31rem;
  aspect-ratio: 1.06;
  transform: translate3d(
      calc(-50% + var(--core-x) * 1vw + var(--pointer-x) * 0.65),
      calc(-50% + var(--core-y) * 1vh + var(--pointer-y) * 0.48),
      4rem
    )
    scale(var(--core-scale))
    rotateX(-1.5deg)
    rotateY(-5deg);
  transform-origin: center;
  transform-style: preserve-3d;
  opacity: calc(1 - var(--catalog-o) * 0.98);
  will-change: transform, opacity;
}

.browser-object {
  position: absolute;
  top: 13%;
  right: 2%;
  left: 2%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 1.15rem;
  background: var(--paper-100);
  box-shadow: var(--shadow-deep);
  color: var(--text-on-light);
  transform: translateZ(4.5rem);
}

.browser-object__top {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  height: 3rem;
  padding: 0 1rem;
  border-bottom: 1px solid rgba(14, 42, 68, 0.08);
  background: rgba(247, 242, 231, 0.92);
}

.window-dot {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
}

.window-dot--red {
  background: #ff5f57;
}

.window-dot--yellow {
  background: #febc2e;
}

.window-dot--green {
  background: #28c840;
}

.browser-object__address {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 1.65rem;
  margin-left: 0.5rem;
  border-radius: var(--radius-pill);
  background: rgba(14, 42, 68, 0.055);
  color: #65798a;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.66rem;
}

.browser-object__body {
  position: relative;
  display: grid;
  min-height: 22rem;
  padding: 2rem;
}

.browser-object__body--showcase {
  display: block;
  min-height: 0;
  padding: 0;
  background: #f8f5ee;
}

.browser-object__showcase {
  display: block;
  overflow: hidden;
  line-height: 0;
}

.browser-object__showcase img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

.browser-object__case-label {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  display: grid;
  gap: 0.1rem;
  padding: 0.58rem 0.72rem;
  border: 1px solid rgba(14, 42, 68, 0.13);
  border-radius: 0.62rem;
  background: rgba(255, 253, 246, 0.92);
  box-shadow: 0 10px 28px rgba(3, 16, 28, 0.13);
  backdrop-filter: blur(8px);
}

.browser-object__case-label span {
  color: var(--blue-600);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.browser-object__case-label strong {
  font-size: 0.62rem;
}

.mock-kicker,
.mock-title,
.mock-copy {
  display: block;
  border-radius: var(--radius-pill);
}

.mock-kicker {
  width: 30%;
  height: 0.5rem;
  background: var(--yellow-500);
}

.mock-title {
  height: 1.04rem;
  margin-top: 0.7rem;
  background: rgba(14, 42, 68, 0.87);
}

.mock-title--one {
  width: 88%;
}

.mock-title--two {
  width: 62%;
  margin-top: 0.45rem;
  background: rgba(14, 42, 68, 0.56);
}

.mock-copy {
  height: 0.46rem;
  margin-top: 0.55rem;
  background: rgba(14, 42, 68, 0.16);
}

.mock-copy--one {
  width: 91%;
  margin-top: 1.05rem;
}

.mock-copy--two {
  width: 76%;
}

.mock-copy--three {
  width: 58%;
}

.mock-actions {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.1rem;
}

.mock-actions span {
  width: 6.2rem;
  height: 2rem;
  border-radius: var(--radius-pill);
  background: var(--yellow-500);
}

.mock-actions span:last-child {
  width: 5.4rem;
  border: 1px solid rgba(0, 106, 167, 0.48);
  background: transparent;
}

.performance-panel {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 0.42rem;
  height: 7.8rem;
  margin-top: 1.2rem;
  overflow: hidden;
  border-radius: 0.8rem;
  background:
    linear-gradient(rgba(0, 106, 167, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 106, 167, 0.09) 1px, transparent 1px),
    rgba(0, 106, 167, 0.055);
  background-size: 1.6rem 1.6rem;
  padding: 0 1.4rem 1rem;
}

.performance-panel i {
  flex: 1;
  height: 18%;
  border-radius: 0.28rem 0.28rem 0 0;
  background: var(--blue-600);
  opacity: 0.72;
}

.performance-panel i:nth-of-type(2) {
  height: 30%;
}

.performance-panel i:nth-of-type(3) {
  height: 42%;
}

.performance-panel i:nth-of-type(4) {
  height: 38%;
}

.performance-panel i:nth-of-type(5) {
  height: 64%;
  background: var(--yellow-500);
}

.performance-panel i:nth-of-type(6) {
  height: 83%;
  background: var(--yellow-500);
}

.performance-panel__line {
  position: absolute;
  right: 1.4rem;
  bottom: 2.25rem;
  left: 1.4rem;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-300), var(--yellow-500));
  transform: rotate(-13deg);
  transform-origin: right center;
}

.performance-panel__line:nth-child(2) {
  bottom: 3.45rem;
  opacity: 0.32;
  transform: rotate(-8deg);
}

.floating-pill,
.result-card {
  position: absolute;
  border: 1px solid rgba(0, 106, 167, 0.28);
  background: var(--paper-100);
  box-shadow: var(--shadow-soft);
  color: var(--text-on-light);
  transform: translateZ(8rem);
}

.floating-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 0.95rem;
  border-radius: var(--radius-pill);
  font-size: 0.74rem;
  font-weight: 700;
  white-space: nowrap;
}

.floating-pill span {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--green-500);
}

.floating-pill--seo {
  top: 1%;
  left: 26%;
}

.floating-pill--lead {
  right: -6%;
  bottom: 17%;
}

.floating-pill--lead span {
  background: var(--blue-600);
}

.result-card {
  bottom: 1%;
  left: -3%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1rem;
  border-radius: 0.85rem;
}

.result-card strong {
  color: var(--blue-600);
  font-size: 1.08rem;
}

.result-card span {
  color: var(--text-muted-light);
  font-size: 0.68rem;
  line-height: 1.25;
}

.foreground-panel {
  position: absolute;
  z-index: 7;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  will-change: transform, opacity;
}

.foreground-panel--left {
  top: 20%;
  left: 39%;
  width: min(18vw, 16rem);
  min-width: 13rem;
  background: rgba(7, 27, 45, 0.93);
  transform: translate3d(
      calc(var(--pointer-x) * 0.95 - var(--portal) * 60vw - var(--portal-exit) * 18vw),
      calc(var(--pointer-y) * 0.65 + var(--portal) * 4vh),
      9rem
    )
    rotate(calc(-7deg - var(--portal) * 8deg))
    scale(calc(1 + var(--portal) * 0.12));
}

.foreground-panel--right {
  top: 17%;
  right: -1%;
  width: min(17vw, 15rem);
  min-width: 12.5rem;
  background: var(--paper-100);
  color: var(--text-on-light);
  transform: translate3d(
      calc(var(--pointer-x) * 0.8 + var(--portal) * 38vw + var(--portal-exit) * 18vw),
      calc(var(--pointer-y) * 0.58 - var(--portal) * 2vh),
      8rem
    )
    rotate(calc(5deg + var(--portal) * 9deg))
    scale(calc(1 + var(--portal) * 0.1));
}

.foreground-panel--left,
.foreground-panel--right,
.portal-edge {
  opacity: calc(1 - var(--portal-exit));
}

.panel-label {
  color: var(--blue-300);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.foreground-panel--right .panel-label {
  color: var(--blue-600);
}

.code-window {
  display: grid;
  gap: 0.5rem;
  margin: 1.35rem 0 1.2rem;
}

.code-line {
  display: block;
  width: 82%;
  height: 0.4rem;
  border-radius: var(--radius-pill);
  background: rgba(226, 238, 248, 0.25);
}

.code-line--blue {
  width: 64%;
  background: var(--blue-300);
}

.code-line--yellow {
  width: 48%;
  background: var(--yellow-500);
}

.code-line--short {
  width: 38%;
}

.foreground-panel p {
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.05;
}

.foreground-panel--right > p {
  margin: 1rem 0 0.9rem;
}

.swatches {
  display: flex;
  gap: 0.48rem;
}

.swatches span {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background: var(--blue-600);
}

.swatches span:nth-child(2) {
  background: var(--yellow-500);
}

.swatches span:nth-child(3) {
  background: var(--red-700);
}

.swatches span:nth-child(4) {
  border: 1px solid var(--border-light);
  background: var(--paper-300);
}

.component-lines {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.component-lines span {
  width: 72%;
  height: 1.65rem;
  border-radius: var(--radius-pill);
  background: var(--yellow-500);
}

.component-lines span:last-child {
  width: 55%;
  border: 1px solid rgba(0, 106, 167, 0.5);
  background: transparent;
}

.portal-edge {
  position: absolute;
  top: -12%;
  bottom: -12%;
  z-index: 8;
  width: 13vw;
  min-width: 8rem;
  border: 1px solid rgba(102, 184, 232, 0.14);
  background:
    linear-gradient(90deg, rgba(102, 184, 232, 0.06), transparent 50%),
    rgba(3, 16, 28, 0.34);
  box-shadow: 0 0 4rem rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(2px);
  will-change: transform;
}

.portal-edge--left {
  left: 39%;
  transform: translateX(calc(var(--portal) * -58vw - var(--portal-exit) * 18vw)) rotate(7deg);
}

.portal-edge--right {
  right: -2%;
  transform: translateX(calc(var(--portal) * 45vw + var(--portal-exit) * 18vw)) rotate(-7deg);
}

.world-tint {
  position: absolute;
  inset: 0;
  z-index: 12;
  background:
    linear-gradient(90deg, rgba(3, 16, 28, 0.75), rgba(3, 16, 28, 0.08) 52%, rgba(3, 16, 28, 0.2)),
    rgba(0, 50, 90, 0.04);
  opacity: calc(var(--panel-b-o) * 0.76 + var(--catalog-o) * 0.42);
  pointer-events: none;
}

.cinematic-grain {
  position: absolute;
  inset: 0;
  z-index: 13;
  opacity: 0.11;
  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='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.stage-content {
  position: absolute;
  inset: 0;
  z-index: 20;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.beat {
  position: absolute;
  pointer-events: none;
}

.beat:not([aria-hidden="true"]) {
  pointer-events: auto;
}

.beat--intro {
  top: 50%;
  left: max(var(--page-gutter), calc((100vw - var(--content-max)) / 2 + var(--page-gutter)));
  width: min(48vw, 42rem);
  opacity: var(--intro-o);
  transform: translate3d(0, calc(-50% + var(--intro-y) * 1rem), 0);
  will-change: transform, opacity;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 2.35rem;
  padding: 0.48rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-pill);
  background: rgba(3, 16, 28, 0.82);
  box-shadow: 0 0.55rem 1.6rem rgba(0, 0, 0, 0.24);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.eyebrow--plain {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--yellow-500);
  letter-spacing: 0.17em;
  text-transform: uppercase;
  backdrop-filter: none;
}

.eyebrow--blue {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--blue-600);
  letter-spacing: 0.17em;
  text-transform: uppercase;
  backdrop-filter: none;
}

.swedish-flag {
  position: relative;
  display: inline-block;
  width: 1.25rem;
  height: 0.78rem;
  overflow: hidden;
  border-radius: 2px;
  background: #006aa7;
}

.swedish-flag::before,
.swedish-flag::after {
  position: absolute;
  background: #fecc02;
  content: "";
}

.swedish-flag::before {
  top: 0;
  bottom: 0;
  left: 31%;
  width: 14%;
}

.swedish-flag::after {
  top: 40%;
  right: 0;
  left: 0;
  height: 21%;
}

.beat--intro h1,
.beat--panel h2,
.catalog h2,
.contact-copy h2,
.faq-section h2 {
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  letter-spacing: -0.038em;
  text-wrap: balance;
}

.beat--intro h1 {
  margin-top: 1.35rem;
  font-size: clamp(3.4rem, 5.5vw, 5.35rem);
  line-height: 0.93;
}

.beat h1 em,
.beat h2 em,
.catalog h2 em,
.contact-copy h2 em {
  color: var(--yellow-500);
  font: inherit;
}

.beat--intro > p {
  max-width: 36rem;
  margin: 1.45rem 0 0;
  color: var(--text-muted-dark);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.85rem;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.6rem;
  margin: 1.4rem 0 0;
  padding: 0;
  color: rgba(226, 238, 248, 0.68);
  font-size: 0.83rem;
  font-weight: 600;
  list-style: none;
}

.trust-line li {
  position: relative;
}

.trust-line li + li::before {
  position: absolute;
  top: 50%;
  left: -0.9rem;
  color: rgba(255, 255, 255, 0.28);
  content: "·";
  transform: translateY(-50%);
}

.trust-line span {
  color: var(--yellow-500);
  letter-spacing: 0.04em;
}

.beat--panel {
  top: 50%;
  width: min(36rem, 42vw);
}

.beat--panel-a {
  left: max(var(--page-gutter), calc((100vw - var(--content-max)) / 2 + var(--page-gutter)));
  opacity: var(--panel-a-o);
  transform: translateY(calc(-50% + var(--panel-a-y) * 1rem));
}

.beat--panel-b {
  right: max(var(--page-gutter), calc((100vw - var(--content-max)) / 2 + var(--page-gutter)));
  opacity: var(--panel-b-o);
  transform: translateY(calc(-50% + var(--panel-b-y) * 1rem));
}

.beat-index {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--yellow-500);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.beat-index::before {
  width: 1.8rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.beat--panel h2 {
  max-width: 33rem;
  margin-top: 1.1rem;
  font-size: clamp(2.9rem, 4.7vw, 4.65rem);
  line-height: 0.96;
}

.beat--panel > p {
  max-width: 31rem;
  margin: 1.35rem 0 0;
  color: rgba(226, 238, 248, 0.78);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.65;
}

.fact-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1.8rem 0 0;
  padding: 1.15rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  list-style: none;
}

.fact-list li {
  display: grid;
  gap: 0.25rem;
}

.fact-list strong {
  color: var(--yellow-500);
  font-size: 1.2rem;
}

.fact-list span {
  color: rgba(226, 238, 248, 0.62);
  font-size: 0.75rem;
  line-height: 1.25;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 1.8rem 0 0;
  padding: 1.1rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  list-style: none;
}

.process-line li {
  display: grid;
  gap: 0.28rem;
  color: rgba(245, 241, 230, 0.82);
  font-size: 0.8rem;
}

.process-line span {
  color: var(--yellow-500);
  font-size: 0.7rem;
  font-weight: 700;
}

.beat-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.15rem;
  color: var(--yellow-500);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.beat-link span {
  transition: transform 180ms ease;
}

.beat-link:hover span {
  transform: translateX(0.2rem);
}

.catalog {
  position: absolute;
  inset: 6.4rem 0 1.2rem;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(3, 16, 28, 0.72), rgba(3, 16, 28, 0.92)),
    rgba(3, 16, 28, 0.54);
  opacity: var(--catalog-o);
  pointer-events: none;
  transform: translate3d(calc(var(--catalog-x) * 1vw), calc(var(--catalog-y) * 1rem), 0);
  will-change: transform, opacity;
}

.catalog:not([aria-hidden="true"]) {
  pointer-events: auto;
}

.catalog__heading,
.catalog__footer {
  width: min(100%, var(--content-max));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

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

.catalog__archive-link {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  min-height: 2.8rem;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(254, 196, 0, 0.4);
  border-radius: var(--radius-pill);
  color: var(--yellow-500);
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.catalog__archive-link:hover {
  border-color: var(--yellow-500);
  background: rgba(254, 196, 0, 0.08);
}

.catalog__heading {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 2rem;
  align-items: end;
}

.catalog h2 {
  margin-top: 0.55rem;
  font-size: clamp(2.8rem, 4.7vw, 4.8rem);
  line-height: 0.98;
}

.catalog__heading > p {
  max-width: 26rem;
  margin: 0 0 0.25rem auto;
  color: var(--text-muted-dark);
  font-size: 0.95rem;
  line-height: 1.58;
}

.catalog__summary {
  display: grid;
  justify-items: start;
  gap: 0.75rem;
  max-width: 27rem;
  margin-left: auto;
}

.catalog__summary > p {
  margin: 0;
  color: var(--text-muted-dark);
  font-size: 0.95rem;
  line-height: 1.58;
}

.catalog__summary > a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--yellow-500);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

.catalog__summary > a span {
  transition: transform 180ms ease;
}

.catalog__summary > a:hover span {
  transform: translate(2px, -2px);
}

.catalog__viewport {
  flex: 1;
  min-height: 0;
  margin-top: 1.35rem;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.catalog__viewport[data-dragging="true"] {
  cursor: grabbing;
}

.catalog__track {
  display: flex;
  gap: clamp(0.85rem, 1.5vw, 1.35rem);
  height: 100%;
  margin: 0;
  padding: 0 var(--page-gutter);
  list-style: none;
  transform: translate3d(0, 0, 0);
  transition: transform 520ms var(--ease-cinematic);
  will-change: transform;
}

.catalog__track[data-dragging="true"] {
  transition: none;
}

.project-card {
  position: relative;
  display: flex;
  flex: 0 0 clamp(17rem, 29vw, 25rem);
  flex-direction: column;
  align-self: center;
  min-width: 0;
  height: auto;
  max-height: none;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1.1rem;
  background: var(--paper-100);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.26);
  color: var(--text-on-light);
}

.project-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  min-height: 0;
  flex: 0 0 auto;
  object-fit: cover;
  object-position: center top;
  pointer-events: none;
}

.project-card img[data-deferred] {
  opacity: 0;
  background: var(--paper-300);
  transition: opacity 350ms ease;
}

.project-card img[data-deferred][data-loaded="true"] {
  opacity: 1;
}

.no-js .project-card img[data-deferred] {
  display: none;
}

.project-card__body {
  position: relative;
  flex: 0 0 auto;
  padding: 1rem 1.15rem 1.1rem;
  background: var(--paper-100);
}

.project-card__body > span {
  color: var(--blue-600);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.project-card h3 {
  margin: 0.3rem 0 0;
  font-family: "Raleway", sans-serif;
  font-size: 1.48rem;
  font-weight: 700;
  line-height: 1.05;
}

.project-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  margin-top: 0.65rem;
  color: var(--blue-600);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

.project-card a span {
  transition: transform 180ms ease;
}

.project-card a:hover span {
  transform: translate(2px, -2px);
}

.catalog__footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  margin-top: 0.9rem;
}

.catalog__footer > p,
.catalog__status {
  margin: 0;
  color: rgba(226, 238, 248, 0.6);
  font-size: 0.76rem;
}

.catalog__status {
  font-variant-numeric: tabular-nums;
  text-align: center;
}

.catalog__controls {
  display: flex;
  justify-content: flex-end;
  gap: 0.55rem;
}

.catalog__controls button {
  display: inline-grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    opacity 180ms ease;
}

.catalog__controls button:hover:not(:disabled) {
  border-color: var(--yellow-500);
  background: var(--yellow-500);
  color: var(--ink-900);
}

.catalog__controls button:disabled {
  cursor: not-allowed;
  opacity: 0.34;
}

.timeline-nav {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  z-index: 28;
  display: grid;
  gap: 0.78rem;
  transform: translateY(-50%);
}

.timeline-nav::before {
  position: absolute;
  top: 0.65rem;
  bottom: 0.65rem;
  left: 1.68rem;
  width: 1px;
  background: rgba(255, 255, 255, 0.14);
  content: "";
}

.timeline-nav::after {
  position: absolute;
  top: 0.65rem;
  left: 1.68rem;
  width: 1px;
  height: calc((100% - 1.3rem) * var(--timeline-progress));
  background: var(--yellow-500);
  content: "";
}

.timeline-nav a {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2rem 0.8rem 5.4rem;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.timeline-nav i {
  display: block;
  width: 0.55rem;
  height: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: var(--ink-900);
}

.timeline-nav b {
  font-weight: 600;
  opacity: 0;
  transform: translateX(-0.25rem);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.timeline-nav a:hover b,
.timeline-nav a[aria-current="location"] b {
  opacity: 1;
  transform: translateX(0);
}

.timeline-nav a[aria-current="location"] {
  color: white;
}

.timeline-nav a[aria-current="location"] i {
  border-color: var(--yellow-500);
  background: var(--yellow-500);
  box-shadow: 0 0 0 0.3rem rgba(254, 196, 0, 0.13);
}

.scroll-cue {
  position: absolute;
  bottom: max(1.25rem, env(safe-area-inset-bottom));
  left: 50%;
  z-index: 25;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  opacity: calc(1 - min(1, var(--timeline-progress) * 8));
  transform: translateX(-50%);
}

.scroll-cue > span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.scroll-cue > i {
  display: block;
  width: 1px;
  height: 2.5rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.scroll-cue b {
  display: block;
  width: 100%;
  height: 45%;
  background: var(--yellow-500);
  animation: scroll-cue 1.65s var(--ease-standard) infinite;
}

@keyframes scroll-cue {
  from {
    transform: translateY(-120%);
  }
  to {
    transform: translateY(230%);
  }
}

.proof-band {
  position: relative;
  z-index: 2;
  background: var(--paper-300);
  color: var(--text-on-light);
}

.proof-band__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(100%, var(--content-max));
  margin-inline: auto;
  padding: clamp(3.4rem, 6vw, 5.5rem) var(--page-gutter);
}

.proof-band__inner > div {
  display: grid;
  gap: 0.55rem;
  padding: 0 1.8rem;
  border-left: 1px solid rgba(14, 42, 68, 0.16);
}

.proof-band__inner > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.proof-band strong {
  font-family: "Raleway", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.9rem);
  font-weight: 700;
  line-height: 0.9;
}

.proof-band strong::first-letter {
  color: var(--blue-600);
}

.proof-band span {
  color: var(--text-muted-light);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.services-section,
.insights-section {
  background: var(--paper-100);
  color: var(--text-on-light);
}

.services-section__inner,
.experience-section__inner,
.insights-section__inner {
  width: min(100%, var(--content-max));
  margin-inline: auto;
  padding: clamp(6rem, 10vw, 9.5rem) var(--page-gutter);
}

.services-intro {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.services-intro__copy h2,
.experience-copy h2,
.insights-heading h2 {
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  letter-spacing: -0.038em;
  line-height: 0.96;
  text-wrap: balance;
}

.services-intro__copy h2 {
  max-width: 36rem;
  margin-top: 1rem;
  font-size: clamp(3.2rem, 5.2vw, 5.4rem);
}

.services-intro__copy h2 em,
.insights-heading h2 em {
  color: var(--blue-600);
  font: inherit;
}

.services-intro__copy > p {
  max-width: 35rem;
  margin: 1.4rem 0 0;
  color: var(--text-muted-light);
  line-height: 1.72;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.35rem;
  color: var(--blue-600);
  font-weight: 700;
  text-decoration: none;
}

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

.text-link:hover span {
  transform: translate(2px, -2px);
}

.services-intro__visual {
  position: relative;
  display: block;
  aspect-ratio: 1.6;
  overflow: hidden;
  border: 1px solid rgba(14, 42, 68, 0.1);
  border-radius: clamp(1rem, 2.5vw, 2rem);
  background: var(--ink-900);
  box-shadow: 0 36px 90px rgba(3, 16, 28, 0.22);
}

.services-intro__visual::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.services-intro__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(4rem, 7vw, 6rem);
  overflow: hidden;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  background: var(--border-light);
}

.service-card {
  min-width: 0;
  background: var(--paper-100);
}

.service-card > a {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: clamp(1.4rem, 2.8vw, 2.2rem);
  text-decoration: none;
  transition:
    background 260ms ease,
    color 260ms ease,
    transform 260ms var(--ease-cinematic);
}

.service-card > a:hover {
  background: #fff;
  transform: translateY(-0.2rem);
}

.service-card--accent > a {
  background:
    radial-gradient(circle at 90% 5%, rgba(102, 184, 232, 0.24), transparent 38%),
    var(--blue-700);
  color: var(--text-on-dark);
}

.service-card--accent > a:hover {
  background:
    radial-gradient(circle at 90% 5%, rgba(102, 184, 232, 0.34), transparent 42%),
    var(--blue-600);
}

.service-card__number {
  color: var(--blue-600);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.service-card--accent .service-card__number {
  color: var(--yellow-500);
}

.service-card h3 {
  min-height: 2.2em;
  margin: 1.1rem 0 0;
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  font-weight: 700;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.service-card p {
  margin: 1rem 0 0;
  color: var(--text-muted-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

.service-card--accent p {
  color: rgba(226, 238, 248, 0.72);
}

.service-card ul {
  display: grid;
  gap: 0.48rem;
  margin: 1.25rem 0 1.8rem;
  padding: 0;
  color: var(--text-muted-light);
  font-size: 0.78rem;
  line-height: 1.45;
  list-style: none;
}

.service-card--accent ul {
  color: rgba(226, 238, 248, 0.7);
}

.service-card li {
  position: relative;
  padding-left: 0.9rem;
}

.service-card li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 50%;
  background: var(--yellow-500);
  content: "";
}

.service-card strong {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  color: var(--blue-600);
  font-size: 0.8rem;
}

.service-card--accent strong {
  color: var(--yellow-500);
}

.experience-section {
  background:
    radial-gradient(circle at 12% 24%, rgba(0, 106, 167, 0.24), transparent 34rem),
    var(--ink-900);
}

.experience-section__inner {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  align-items: start;
  gap: clamp(3rem, 7vw, 7rem);
}

.experience-media {
  position: sticky;
  top: 7rem;
}

.experience-media picture {
  display: block;
  aspect-ratio: 1.5;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: clamp(1rem, 2.5vw, 2rem);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.38);
}

.experience-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-stamp {
  position: absolute;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  display: grid;
  gap: 0.15rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(3, 16, 28, 0.9);
  box-shadow: var(--shadow-soft);
}

.experience-stamp span {
  color: var(--text-muted-dark);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.experience-stamp strong {
  color: var(--yellow-500);
  font-family: "Raleway", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.experience-copy h2 {
  margin-top: 1rem;
  font-size: clamp(3.2rem, 5vw, 5.2rem);
}

.experience-copy h2 em {
  color: var(--yellow-500);
  font: inherit;
}

.experience-copy > p {
  max-width: 41rem;
  margin: 1.45rem 0 0;
  color: var(--text-muted-dark);
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.72;
}

.delivery-steps {
  display: grid;
  margin: 2.2rem 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  list-style: none;
}

.delivery-steps > li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.delivery-steps > li > span {
  padding-top: 0.16rem;
  color: var(--yellow-500);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.delivery-steps h3 {
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 1.42rem;
  font-weight: 700;
  line-height: 1.1;
}

.delivery-steps p {
  margin: 0.35rem 0 0;
  color: var(--text-muted-dark);
  font-size: 0.84rem;
  line-height: 1.5;
}

.insights-section {
  background: var(--paper-200);
}

.insights-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: clamp(2rem, 5vw, 5rem);
}

.insights-heading h2 {
  max-width: 48rem;
  margin-top: 1rem;
  font-size: clamp(3.2rem, 5.2vw, 5.4rem);
}

.insights-heading > div:last-child > p {
  max-width: 29rem;
  margin: 0;
  color: var(--text-muted-light);
  line-height: 1.68;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(3rem, 6vw, 5rem);
}

.insight-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  background: var(--paper-100);
  box-shadow: 0 18px 55px rgba(14, 42, 68, 0.08);
}

.insight-card > a {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  text-decoration: none;
}

.insight-card picture {
  display: block;
  aspect-ratio: 1.79;
  overflow: hidden;
  background: var(--ink-850);
}

.insight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-cinematic);
}

.insight-card > a:hover img {
  transform: scale(1.035);
}

.insight-card > a > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(1.25rem, 2.5vw, 1.8rem);
}

.insight-card div > span {
  color: var(--blue-600);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.insight-card h3 {
  margin: 0.75rem 0 0;
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.7rem, 2.5vw, 2.15rem);
  font-weight: 700;
  line-height: 1.05;
}

.insight-card p {
  margin: 0.85rem 0 1.5rem;
  color: var(--text-muted-light);
  font-size: 0.9rem;
  line-height: 1.62;
}

.insight-card strong {
  margin-top: auto;
  color: var(--blue-600);
  font-size: 0.8rem;
}

.contact-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--blue-700);
}

.contact-section__glow {
  position: absolute;
  z-index: -1;
  width: 58rem;
  height: 58rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 106, 167, 0.82), transparent 66%);
  top: -28rem;
  right: -17rem;
  opacity: 0.8;
}

.contact-section__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(3rem, 7vw, 8rem);
  width: min(100%, var(--content-max));
  margin-inline: auto;
  padding: clamp(6rem, 10vw, 9.5rem) var(--page-gutter);
}

.contact-copy h2 {
  max-width: 40rem;
  margin-top: 1rem;
  font-size: clamp(3.3rem, 6.2vw, 6.2rem);
  line-height: 0.94;
}

.contact-copy > p {
  max-width: 36rem;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1rem, 1.4vw, 1.17rem);
  line-height: 1.65;
}

.contact-copy ul {
  display: grid;
  gap: 0.62rem;
  margin: 1.7rem 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.84);
  list-style: none;
}

.contact-copy li::before {
  margin-right: 0.62rem;
  color: var(--yellow-500);
  content: "✓";
  font-weight: 700;
}

.contact-actions {
  display: grid;
  align-content: center;
  gap: 0.8rem;
}

.contact-card,
.contact-location {
  position: relative;
  display: grid;
  gap: 0.22rem;
  padding: 1.35rem 4rem 1.35rem 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.065);
}

.contact-card {
  text-decoration: none;
  transition:
    border-color 200ms ease,
    background 200ms ease,
    transform 200ms var(--ease-cinematic);
}

.contact-card:hover {
  border-color: rgba(254, 196, 0, 0.55);
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(0.25rem);
}

.contact-card > span,
.contact-location > span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-card strong,
.contact-location strong {
  font-size: clamp(1.12rem, 2vw, 1.42rem);
}

.contact-card small,
.contact-location small {
  color: rgba(255, 255, 255, 0.56);
}

.contact-card i {
  position: absolute;
  top: 50%;
  right: 1.45rem;
  color: var(--yellow-500);
  font-size: 1.4rem;
  font-style: normal;
  transform: translateY(-50%);
}

.faq-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(3rem, 8vw, 8rem);
  width: 100%;
  padding: clamp(6rem, 10vw, 9.5rem) max(var(--page-gutter), calc((100vw - var(--content-max)) / 2 + var(--page-gutter)));
  background: var(--paper-200);
  color: var(--text-on-light);
}

.faq-section h2 {
  margin-top: 0.85rem;
  font-size: clamp(3.2rem, 5vw, 5rem);
  line-height: 0.96;
}

.faq-section__intro p {
  margin-top: 1.4rem;
  color: var(--text-muted-light);
}

.faq-section__intro a {
  color: var(--blue-600);
  font-weight: 700;
  text-decoration: none;
}

.faq-list {
  border-top: 1px solid rgba(14, 42, 68, 0.16);
}

.faq-list details {
  border-bottom: 1px solid rgba(14, 42, 68, 0.16);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1.4rem 0;
  cursor: pointer;
  font-size: clamp(1.02rem, 1.7vw, 1.25rem);
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--blue-600);
  font-size: 1.8rem;
  font-weight: 400;
  transition: transform 220ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 42rem;
  margin: -0.25rem 0 1.45rem;
  color: var(--text-muted-light);
  line-height: 1.68;
}

.site-footer {
  padding: clamp(4rem, 7vw, 6.5rem) max(var(--page-gutter), calc((100vw - var(--content-max)) / 2 + var(--page-gutter))) 2rem;
  background: var(--ink-950);
}

.site-footer__main {
  display: grid;
  grid-template-columns: 1.25fr 1.35fr 0.7fr 0.9fr;
  gap: 3rem;
}

.site-footer__main > div > img {
  width: 12.5rem;
  height: auto;
}

.site-footer__main > div > p {
  max-width: 24rem;
  color: rgba(226, 238, 248, 0.58);
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 0.62rem;
}

.footer-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.62rem 1.4rem;
}

.site-footer nav strong {
  margin-bottom: 0.35rem;
  color: var(--yellow-500);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-footer nav a,
.site-footer nav span {
  width: fit-content;
  color: rgba(226, 238, 248, 0.67);
  font-size: 0.9rem;
  text-decoration: none;
}

.site-footer nav a:hover {
  color: white;
}

.site-footer__legal {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 4rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(226, 238, 248, 0.46);
  font-size: 0.72rem;
}

@media (max-width: 68rem) {
  .desktop-nav {
    gap: 1.1rem;
  }

  .nav-phone {
    display: none;
  }

  .beat--intro {
    width: min(50vw, 38rem);
  }

  .beat--intro h1 {
    font-size: clamp(3.3rem, 6.3vw, 4.7rem);
  }

  .studio-core {
    width: min(48vw, 39rem);
    min-width: 27rem;
  }

  .browser-object__body {
    min-height: 18.5rem;
    padding: 1.55rem;
  }

  .browser-object__body--showcase {
    min-height: 0;
    padding: 0;
  }

  .performance-panel {
    height: 6rem;
  }

  .foreground-panel--left {
    left: 40%;
  }

  .foreground-panel--right {
    right: -3%;
  }

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

  .site-footer__main {
    grid-template-columns: 1fr 1.2fr 0.7fr;
  }

  .site-footer__main > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 56rem) {
  .desktop-nav,
  .desktop-cta {
    display: none;
  }

  .menu-button {
    display: flex;
  }

  .site-nav {
    padding-right: 0.5rem;
  }

  .cinematic-scroll {
    height: clamp(235rem, 520vh, 285rem);
  }

  .timeline-nav {
    display: none;
  }

  .beat--intro {
    top: 48%;
    width: min(54vw, 32rem);
  }

  .beat--intro h1 {
    font-size: clamp(3rem, 7.3vw, 4.3rem);
  }

  .beat--intro > p {
    max-width: 26rem;
    font-size: 0.98rem;
  }

  .studio-core {
    min-width: 25rem;
  }

  .foreground-panel {
    min-width: 10rem;
    padding: 1rem;
  }

  .foreground-panel p {
    font-size: 1.15rem;
  }

  .foreground-panel--left {
    left: 41%;
  }

  .beat--panel {
    width: min(46vw, 31rem);
  }

  .beat--panel h2 {
    font-size: clamp(3rem, 7vw, 4.6rem);
  }

  .catalog {
    top: 6rem;
  }

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

  .catalog__summary {
    display: none;
  }

  .proof-band__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 0;
  }

  .proof-band__inner > div:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .contact-section__inner,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .services-intro,
  .experience-section__inner,
  .insights-heading {
    grid-template-columns: 1fr;
  }

  .experience-media {
    position: relative;
    top: auto;
  }

  .insights-heading > div:last-child > p {
    max-width: 38rem;
  }
}

@media (min-width: 46.01rem) and (max-width: 52rem) and (orientation: portrait) {
  .beat--intro {
    width: 52vw;
  }

  .beat--intro > p {
    max-width: 100%;
  }

  .studio-core {
    left: 62%;
  }

  .foreground-panel--left {
    left: 63%;
  }

  .foreground-panel--right {
    right: -8%;
  }
}

@media (max-width: 46rem) {
  :root {
    --header-height: 4.8rem;
    --page-gutter: clamp(1rem, 5vw, 1.45rem);
  }

  .site-header {
    top: max(0.25rem, env(safe-area-inset-top));
  }

  .site-nav {
    min-height: 3.75rem;
    padding-left: 0.8rem;
  }

  .brand img {
    width: 7.875rem;
  }

  .mobile-menu {
    padding-top: calc(var(--header-height) + max(2rem, env(safe-area-inset-top)));
  }

  .cinematic-scroll {
    height: clamp(225rem, 480vh, 260rem);
  }

  .world::after {
    position: absolute;
    inset: 0;
    z-index: 11;
    background: linear-gradient(
      180deg,
      rgba(3, 16, 28, 0.26) 0%,
      rgba(3, 16, 28, 0.58) 42%,
      rgba(3, 16, 28, 0.88) 100%
    );
    content: "";
    pointer-events: none;
  }

  .beat--intro {
    top: auto;
    right: var(--page-gutter);
    bottom: max(3.7rem, calc(env(safe-area-inset-bottom) + 2.75rem));
    left: var(--page-gutter);
    width: auto;
    transform: translate3d(0, calc(var(--intro-y) * 1rem), 0);
  }

  .eyebrow {
    min-height: 2.05rem;
    padding: 0.38rem 0.68rem;
    border-color: rgba(254, 204, 2, 0.48);
    background: rgba(2, 13, 23, 0.96);
    box-shadow: 0 0.7rem 1.8rem rgba(0, 0, 0, 0.4);
    color: #fff;
    font-size: 0.68rem;
    line-height: 1.25;
    backdrop-filter: none;
  }

  .beat--intro h1 {
    max-width: 22rem;
    margin-top: 0.85rem;
    font-size: clamp(2.7rem, 11.4vw, 3.45rem);
    line-height: 0.91;
  }

  .beat--intro > p {
    max-width: 32rem;
    margin-top: 0.9rem;
    font-size: 0.89rem;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
    margin-top: 1.05rem;
  }

  .button {
    min-height: 3rem;
    padding: 0.65rem 1.15rem;
    font-size: 0.88rem;
  }

  .hero-actions .button {
    width: min(100%, 22rem);
    white-space: normal;
  }

  .trust-line {
    gap: 0.35rem 1.2rem;
    margin-top: 0.8rem;
    font-size: 0.69rem;
  }

  .trust-line li:nth-child(2)::before {
    left: -0.72rem;
  }

  .trust-line li:nth-child(3) {
    display: none;
  }

  .studio-core {
    top: 30%;
    width: min(86vw, 32rem);
    min-width: 18rem;
    opacity: calc(
      0.96 -
      var(--panel-a-o) * 0.28 -
      var(--panel-b-o) * 0.18 -
      var(--catalog-o) * 0.96
    );
    transform: translate3d(
        calc(-50% + var(--core-x) * 0.12vw),
        calc(-50% + var(--core-y) * 0.15vh),
        0
      )
      scale(calc(var(--core-scale) * 0.96));
  }

  .browser-object {
    top: 8%;
  }

  .browser-object__top {
    height: 2.4rem;
  }

  .browser-object__body {
    min-height: 14rem;
    padding: 1.15rem;
  }

  .browser-object__body--showcase {
    min-height: 0;
    padding: 0;
  }

  .performance-panel {
    height: 4.4rem;
    margin-top: 0.8rem;
  }

  .floating-pill--seo {
    display: none;
  }

  .floating-pill--lead {
    display: none;
  }

  .result-card {
    display: none;
  }

  .foreground-panel,
  .portal-edge {
    display: none;
  }

  .layer--distant,
  .layer--midground {
    opacity: 0.34;
  }

  .star-field {
    opacity: 0.48;
  }

  .browser-object__case-label {
    display: none;
  }

  .beat--panel {
    top: auto;
    right: var(--page-gutter);
    bottom: max(4.2rem, calc(env(safe-area-inset-bottom) + 3.2rem));
    left: var(--page-gutter);
    width: auto;
    transform: translateY(calc(var(--panel-a-y) * 1rem));
  }

  .beat--panel-b {
    transform: translateY(calc(var(--panel-b-y) * 1rem));
  }

  .beat--panel h2 {
    max-width: 23rem;
    margin-top: 0.7rem;
    font-size: clamp(2.55rem, 10.6vw, 3.35rem);
    line-height: 0.92;
  }

  .beat--panel > p {
    margin-top: 0.9rem;
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .fact-list,
  .process-line {
    margin-top: 1rem;
    padding-top: 0.75rem;
  }

  .fact-list {
    gap: 0.3rem;
  }

  .fact-list strong {
    font-size: 0.98rem;
  }

  .fact-list span {
    font-size: 0.63rem;
  }

  .process-line {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.55rem;
  }

  .catalog {
    inset: max(5.2rem, calc(env(safe-area-inset-top) + 4.5rem)) 0 max(0.8rem, env(safe-area-inset-bottom));
  }

  .catalog__heading {
    padding-inline: var(--page-gutter);
  }

  .catalog h2 {
    margin-top: 0.35rem;
    font-size: clamp(2.55rem, 10.5vw, 3.35rem);
  }

  .catalog__viewport {
    margin-top: 0.8rem;
  }

  .catalog__track {
    gap: 0.75rem;
  }

  .project-card {
    flex-basis: min(78vw, 20.5rem);
    align-self: center;
    height: auto;
    max-height: none;
  }

  .project-card img {
    height: auto;
    aspect-ratio: 1;
    flex: 0 0 auto;
    object-fit: cover;
    object-position: center top;
  }

  .project-card__body {
    padding: 0.85rem 0.95rem 0.9rem;
  }

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

  .catalog__footer {
    grid-template-columns: 1fr auto;
    margin-top: 0.65rem;
  }

  .catalog__footer > p {
    display: none;
  }

  .catalog__status {
    text-align: left;
  }

  .catalog__footer-actions {
    gap: 0.45rem;
  }

  .catalog__archive-link {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .proof-band__inner {
    gap: 1.8rem 0;
    padding-block: 3.8rem;
  }

  .proof-band__inner > div {
    padding-inline: 1rem;
  }

  .proof-band strong {
    font-size: 2.7rem;
  }

  .proof-band span {
    font-size: 0.61rem;
    letter-spacing: 0.08em;
  }

  .services-section__inner,
  .experience-section__inner,
  .insights-section__inner {
    padding-block: 5.5rem;
  }

  .services-intro__copy h2,
  .experience-copy h2,
  .insights-heading h2 {
    font-size: clamp(3.05rem, 13vw, 4.2rem);
  }

  .services-intro {
    gap: 2rem;
  }

  .services-intro__visual,
  .experience-media picture {
    aspect-ratio: 1.2;
  }

  .service-grid,
  .insight-grid {
    grid-template-columns: 1fr;
  }

  .service-card h3 {
    min-height: 0;
    overflow-wrap: normal;
  }

  .insight-grid {
    gap: 1rem;
  }

  .contact-section__inner {
    gap: 2.5rem;
    padding-block: 5.5rem;
  }

  .contact-copy h2 {
    font-size: clamp(3.3rem, 14vw, 4.8rem);
  }

  .contact-card,
  .contact-location {
    padding-left: 1.15rem;
  }

  .faq-section {
    gap: 2.5rem;
    padding-block: 5.5rem;
  }

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

  .site-footer__main > div,
  .footer-services {
    grid-column: 1 / -1;
  }

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

  .site-footer__legal {
    flex-direction: column;
  }
}

@media (max-height: 48rem) and (min-width: 46.01rem) {
  .beat--intro {
    top: 53%;
  }

  .beat--intro h1 {
    margin-top: 0.8rem;
    font-size: clamp(2.8rem, 5.4vw, 4.25rem);
  }

  .beat--intro > p {
    margin-top: 0.85rem;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 1rem;
  }

  .trust-line {
    margin-top: 0.75rem;
  }

  .studio-core {
    width: min(39vw, 31rem);
  }

  .browser-object__body {
    min-height: 15rem;
  }

  .catalog {
    top: 5.2rem;
  }

  .catalog h2 {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
  }

  .catalog__viewport {
    margin-top: 0.8rem;
  }

  .project-card {
    flex-basis: min(28vw, 22.5rem);
  }

  .project-card__body {
    padding-block: 0.55rem;
  }
}

@media (max-width: 46rem) and (max-height: 44rem) {
  .studio-core {
    top: 28%;
    width: min(74vw, 27rem);
  }

  .beat--intro {
    bottom: max(2rem, calc(env(safe-area-inset-bottom) + 1.5rem));
  }

  .beat--intro .eyebrow {
    display: none;
  }

  .beat--intro h1 {
    margin-top: 0;
    font-size: clamp(2.65rem, 11vw, 3.2rem);
  }

  .beat--intro > p {
    margin-top: 0.65rem;
    font-size: 0.82rem;
    line-height: 1.42;
  }

  .hero-actions {
    margin-top: 0.75rem;
  }

  .trust-line {
    margin-top: 0.6rem;
  }

  .project-card {
    flex-basis: min(74vw, 19rem);
  }

  .project-card__body {
    padding-block: 0.72rem 0.76rem;
  }
}

@media (max-height: 32rem) and (max-width: 46rem) {
  .beat--intro {
    top: 58%;
    right: var(--page-gutter);
    bottom: auto;
    left: var(--page-gutter);
    transform: translate3d(0, calc(-50% + var(--intro-y) * 1rem), 0);
  }

  .beat--intro .eyebrow {
    display: none;
  }

  .beat--intro h1 {
    max-width: 34rem;
    margin-top: 0;
    font-size: clamp(2.25rem, 7vw, 2.75rem);
    line-height: 0.9;
  }

  .beat--intro > p {
    max-width: 35rem;
    margin-top: 0.55rem;
    font-size: 0.76rem;
    line-height: 1.35;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    margin-top: 0.65rem;
  }

  .hero-actions .button {
    width: auto;
  }

  .button {
    min-height: 2.65rem;
  }

  .trust-line {
    display: none;
  }

  .studio-core {
    top: 45%;
    opacity: 0.5;
  }

  .beat--panel {
    top: 57%;
    bottom: auto;
    transform: translateY(calc(-50% + var(--panel-a-y) * 1rem));
  }

  .beat--panel-b {
    transform: translateY(calc(-50% + var(--panel-b-y) * 1rem));
  }

  .beat--panel h2 {
    max-width: 35rem;
    font-size: clamp(2.25rem, 7.2vw, 2.8rem);
  }

  .beat--panel > p {
    max-width: 36rem;
    margin-top: 0.55rem;
    font-size: 0.76rem;
    line-height: 1.35;
  }

  .fact-list,
  .process-line {
    margin-top: 0.55rem;
    padding-top: 0.45rem;
  }

  .beat-link {
    margin-top: 0.55rem;
    font-size: 0.72rem;
  }

  .catalog h2 {
    margin-top: 0;
    font-size: clamp(1.55rem, 5.2vw, 2rem);
    line-height: 0.94;
  }

  .catalog {
    inset: 4.8rem 0 0.25rem;
  }

  .catalog__heading .beat-index {
    display: none;
  }

  .catalog__viewport {
    margin-top: 0.3rem;
  }

  .project-card {
    flex-basis: 8.5rem;
  }

  .project-card__body {
    padding: 0.3rem 0.5rem 0.35rem;
  }

  .project-card__body > span {
    display: none;
  }

  .project-card h3 {
    margin-top: 0;
    font-size: 1rem;
  }

  .project-card a {
    margin-top: 0.22rem;
    font-size: 0.62rem;
  }

  .catalog__footer {
    margin-top: 0.25rem;
  }

  .catalog__status {
    font-size: 0.65rem;
  }

  .catalog__controls button {
    width: 2.25rem;
    height: 2.25rem;
  }
}

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

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

  .cinematic-scroll {
    height: auto;
  }

  .cinematic-stage {
    position: relative;
    min-height: 0;
    overflow: clip;
  }

  .world {
    height: 100vh;
    height: 100svh;
    filter: none;
    transform: none;
  }

  .foreground-panel,
  .portal-edge,
  .timeline-nav,
  .scroll-cue {
    display: none;
  }

  .studio-core {
    transform: translate3d(-12%, -50%, 0) scale(0.88);
  }

  .stage-content {
    position: relative;
    height: auto;
  }

  .beat,
  .catalog {
    position: relative;
    inset: auto;
    width: auto;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .beat--intro {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    min-height: 100svh;
    padding:
      calc(var(--header-height) + 3rem)
      52vw
      4rem
      var(--page-gutter);
  }

  .beat--panel {
    min-height: auto;
    padding: 6rem var(--page-gutter);
    background: var(--blue-700);
  }

  .beat--panel-b {
    background: var(--ink-800);
  }

  .catalog {
    display: flex;
    min-height: 46rem;
    padding: 5.5rem 0 2rem;
    background: var(--ink-900);
  }
}

@media (prefers-reduced-motion: reduce) and (max-width: 46rem) {
  .beat--intro {
    padding-right: var(--page-gutter);
  }

  .studio-core {
    opacity: 0.58;
    transform: translate3d(-50%, -61%, 0) scale(0.78);
  }
}

.no-js .cinematic-scroll {
  height: auto;
}

.no-js .cinematic-stage {
  position: relative;
  min-height: 0;
  overflow: clip;
}

.no-js .world {
  height: 100vh;
}

.no-js .stage-content {
  position: relative;
  height: auto;
}

.no-js .beat,
.no-js .catalog {
  position: relative;
  inset: auto;
  width: auto;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.no-js .beat--intro {
  min-height: 100vh;
  padding: 8rem var(--page-gutter);
}
