:root {
  --surface: #08090d;
  --surface-raised: #101218;
  --surface-soft: #151821;
  --text: #f4f5f8;
  --muted: #979ba8;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #6877ff;
  --violet: #946cff;
  --cyan: #68d8ff;
  --font-sans: "Manrope", sans-serif;
  --font-mono: "DM Mono", monospace;
  --page: min(1360px, calc(100vw - 48px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@view-transition { navigation: auto; }

::view-transition-group(root) {
  animation-duration: 720ms;
  animation-timing-function: cubic-bezier(.16, 1, .3, 1);
}

::view-transition-old(root) {
  animation: page-view-old 520ms cubic-bezier(.7, 0, .84, 0) both;
  transform-origin: 50% 42%;
}

::view-transition-new(root) {
  animation: page-view-new 720ms cubic-bezier(.16, 1, .3, 1) both;
  transform-origin: 50% 58%;
}

@keyframes page-view-old {
  to { opacity: 0; filter: blur(12px) saturate(.7); transform: scale(.965) translateY(-18px); }
}

@keyframes page-view-new {
  from { opacity: 0; filter: blur(12px) saturate(.7); transform: scale(1.035) translateY(28px); }
  to { opacity: 1; filter: blur(0) saturate(1); transform: scale(1) translateY(0); }
}

.page-transition-layer {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  pointer-events: none;
  visibility: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(105, 122, 255, .28), transparent 23rem),
    linear-gradient(135deg, #090a10, #151530 54%, #090a10);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}

.page-transition-layer::before,
.page-transition-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-transition-layer::before {
  background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
  opacity: .5;
  transform: perspective(600px) rotateX(58deg) scale(1.4) translateY(8%);
}

.page-transition-layer::after {
  background: radial-gradient(circle at center, transparent 0 10rem, rgba(104, 119, 255, .14) 10.1rem 10.2rem, transparent 10.3rem 18rem, rgba(104, 119, 255, .08) 18.1rem 18.2rem, transparent 18.3rem);
  opacity: .8;
  transform: scale(1.25);
}

.page-transition-layer.is-entering {
  visibility: visible;
  animation: page-layer-open 900ms cubic-bezier(.16, 1, .3, 1) forwards;
}

html.page-leaving .page-transition-layer {
  visibility: visible;
  animation: page-layer-cover 520ms cubic-bezier(.7, 0, .84, 0) forwards;
}

html.page-leaving body {
  animation: page-content-leave 520ms cubic-bezier(.7, 0, .84, 0) both;
  pointer-events: none;
}

.page-transition-orbit {
  position: absolute;
  width: min(46vw, 620px);
  aspect-ratio: 1;
  border: 1px solid rgba(164, 173, 255, .34);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(92, 105, 255, .22), inset 0 0 60px rgba(92, 105, 255, .12);
  transform: rotate(-18deg) scale(.72);
}

.page-transition-orbit::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  top: 8%;
  left: 50%;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 24px 8px rgba(104, 216, 255, .35);
}

.page-transition-orbit-one { animation: page-orbit-one 1.5s ease-in-out infinite alternate; }
.page-transition-orbit-two { width: min(30vw, 420px); border-color: rgba(148, 108, 255, .5); transform: rotate(34deg) scale(.8); animation: page-orbit-two 1.1s ease-in-out infinite alternate; }
.page-transition-orbit-two::after { top: auto; bottom: 11%; left: 30%; background: var(--violet); }

.page-transition-word {
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.page-transition-line {
  position: absolute;
  z-index: 1;
  width: min(360px, 42vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--violet), transparent);
  box-shadow: 0 0 22px rgba(104, 216, 255, .8);
  transform: scaleX(.1);
  animation: page-line-pulse 1s ease-in-out infinite alternate;
}

@keyframes page-layer-open {
  0% { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); opacity: 1; }
  68% { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); opacity: 1; }
  100% { clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); opacity: 0; visibility: hidden; }
}

@keyframes page-layer-cover {
  0% { clip-path: polygon(0 0, 0 0, 0 100%, 0 100%); opacity: 0; }
  20% { opacity: 1; }
  100% { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); opacity: 1; }
}

@keyframes page-content-leave {
  to { opacity: 0; filter: blur(10px) saturate(.65); transform: scale(.985) translateY(-12px); }
}

@keyframes page-orbit-one { from { transform: rotate(-18deg) scale(.72); } to { transform: rotate(22deg) scale(.83); } }
@keyframes page-orbit-two { from { transform: rotate(34deg) scale(.8); } to { transform: rotate(-26deg) scale(.68); } }
@keyframes page-line-pulse { from { transform: scaleX(.1); opacity: .35; } to { transform: scaleX(1); opacity: 1; } }

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 82% 12%, rgba(81, 70, 180, 0.12), transparent 25rem),
    var(--surface);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.menu-open { overflow: hidden; }

.scroll-progress {
  position: fixed;
  z-index: 80;
  inset: 0 0 auto;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--accent), var(--violet));
  box-shadow: 0 0 16px rgba(104, 119, 255, .65);
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
  will-change: transform;
}

.cursor-glow {
  position: fixed;
  z-index: 45;
  top: 0;
  left: 0;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(102, 118, 255, .13), transparent 67%);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(calc(var(--cursor-x, -500px) - 50%), calc(var(--cursor-y, -500px) - 50%), 0);
  transition: opacity 220ms ease;
  will-change: transform;
}

@media (pointer: fine) {
  .motion-ready.cursor-active .cursor-glow { opacity: 1; }
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { color: inherit; font: inherit; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  color: #090a0f;
  transform: translateY(-150%);
}

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

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 50%;
  width: var(--page);
  height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 10px 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(11, 12, 17, 0.72);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(20px) saturate(140%);
  transform: translateX(-50%);
  transition: background 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled {
  background: rgba(11, 12, 17, 0.92);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.42);
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: linear-gradient(145deg, #7885ff, #4e54d7 60%, #24265f);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.28), 0 7px 20px rgba(92, 102, 255, 0.25);
  color: #fff;
  font-size: 13px;
}

.site-nav { display: flex; gap: 30px; }

.site-nav a,
.site-footer nav a {
  position: relative;
  color: #c8cad2;
  font-size: 13px;
  transition: color 150ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -9px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #8994ff;
  opacity: 0;
  transform: translate(-50%, 5px) scale(.4);
  transition: opacity 220ms ease, transform 320ms cubic-bezier(.16,1,.3,1);
}

.site-nav a.is-active { color: #fff; }
.site-nav a.is-active::after { opacity: 1; transform: translate(-50%, 0) scale(1); }
.site-nav a[aria-current="page"] { color: #fff; }
.site-nav a[aria-current="page"]::after { opacity: 1; transform: translate(-50%, 0) scale(1); }

.site-nav a:hover,
.site-footer nav a:hover { color: #fff; }

.header-cta {
  justify-self: end;
  padding: 12px 17px;
  border-radius: 12px;
  background: #f4f5f8;
  color: #0a0b10;
  font-size: 12px;
  font-weight: 700;
}

[data-magnetic] {
  --mag-x: 0px;
  --mag-y: 0px;
  translate: var(--mag-x) var(--mag-y);
  transition: translate 320ms cubic-bezier(.16, 1, .3, 1), background 200ms ease, color 200ms ease;
  will-change: translate;
}

.header-cta span,
.button span { margin-left: 7px; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 890px;
  height: min(940px, 100svh);
  overflow: hidden;
  background: #07080c;
}

.hero-media,
.hero-media-shade { position: absolute; inset: 0; }

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.04);
  transform: translate3d(0, var(--parallax, 0px), 0) scale(1.06);
  animation: hero-arrive 1.1s cubic-bezier(.16,1,.3,1) both;
  will-change: transform;
}

.hero-media-shade {
  background:
    linear-gradient(90deg, rgba(5, 6, 10, 0.98) 0%, rgba(5, 6, 10, 0.82) 30%, rgba(5, 6, 10, 0.12) 67%, rgba(5, 6, 10, 0.45) 100%),
    linear-gradient(0deg, rgba(7, 8, 12, 0.95), transparent 26%, transparent 78%, rgba(7, 8, 12, 0.55));
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(90deg, black, transparent 62%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--page);
  margin: 0 auto;
  padding-top: clamp(190px, 23vh, 250px);
}

.status,
.eyebrow {
  margin: 0;
  color: #a8abb7;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.status { display: flex; align-items: center; gap: 10px; }
.status span { width: 7px; height: 7px; border-radius: 50%; background: #7df6b5; box-shadow: 0 0 18px #4ce695; }

h1,
h2,
h3,
p { text-wrap: pretty; }

h1 {
  max-width: 950px;
  margin: 32px 0 28px;
  font-size: clamp(64px, 7.6vw, 118px);
  line-height: .9;
  letter-spacing: -.075em;
  font-weight: 600;
}

h1 span {
  color: transparent;
  background: linear-gradient(90deg, #fff 5%, #aaaefb 55%, #7287ff);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy {
  max-width: 580px;
  margin: 0;
  color: #b7bac4;
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 40px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 15px;
  font-size: 13px;
  font-weight: 700;
}

.button-primary {
  background: linear-gradient(135deg, #8290ff, #5f68f0);
  box-shadow: inset 0 1px rgba(255,255,255,.35), 0 14px 34px rgba(78, 89, 235, .28);
}

.quiet-link { color: #c7c9d2; font-size: 13px; }
.quiet-link span { margin-left: 9px; color: #fff; }

.hero-scope {
  position: absolute;
  z-index: 2;
  right: max(24px, calc((100vw - min(1360px, calc(100vw - 48px))) / 2));
  bottom: 34px;
  display: flex;
  gap: 24px;
  color: rgba(255, 255, 255, .48);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.signal-strip {
  width: 100%;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #adafba;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .11em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
}

.signal-strip i { width: 3px; height: 3px; border-radius: 50%; background: var(--accent); }

.signal-track {
  display: flex;
  width: max-content;
  animation: signal-flow 28s linear infinite;
  will-change: transform;
}

.signal-set {
  display: flex;
  align-items: center;
  flex: none;
  gap: clamp(18px, 3vw, 48px);
  padding-right: clamp(18px, 3vw, 48px);
}

.section { width: var(--page); margin: 0 auto; padding: 150px 0; }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 70px;
}

.section-heading h2,
.about-content h2 {
  margin: 18px 0 0;
  max-width: 840px;
  font-size: clamp(48px, 5.3vw, 82px);
  line-height: .98;
  letter-spacing: -.06em;
  font-weight: 500;
}

.section-heading > p {
  justify-self: end;
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.offer { padding-bottom: 130px; }

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

.offer-card {
  min-height: 430px;
  padding: 30px 34px 34px 0;
  border-right: 1px solid var(--line);
}

.offer-card:not(:first-child) { padding-left: 34px; }
.offer-card:last-child { border-right: 0; }

.offer-card > span,
.engagement-bar span,
.contact-details span {
  color: #747885;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.offer-card h3 {
  margin: 90px 0 18px;
  font-size: clamp(28px, 2.7vw, 42px);
  line-height: 1.05;
  letter-spacing: -.045em;
  font-weight: 500;
}

.offer-card p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.offer-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.offer-card li {
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 8px;
  color: #b6b9c3;
  background: rgba(255,255,255,.025);
  font-size: 10px;
}

.project-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 70px 20px; }
.project-wide { grid-column: 1 / -1; }

.project-image {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --spot-x: 50%;
  --spot-y: 50%;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--surface-raised);
  box-shadow: 0 40px 100px rgba(0,0,0,.22);
  transform: perspective(1100px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform 380ms cubic-bezier(.16, 1, .3, 1), border-color 240ms ease;
  will-change: transform;
}

.project-image::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: radial-gradient(420px circle at var(--spot-x) var(--spot-y), rgba(150, 168, 255, .18), transparent 58%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.project-image:hover { border-color: rgba(151, 161, 255, .3); }
.project-image:hover::after { opacity: 1; }

.project-wide .project-image { aspect-ratio: 2 / 1; }
.project-half .project-image { aspect-ratio: 1.25 / 1; }

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--parallax, 0px), 22px) scale(1.08);
  transition: transform 700ms cubic-bezier(.16,1,.3,1), filter 500ms ease;
  will-change: transform;
}

.project:hover .project-image img { transform: translate3d(0, var(--parallax, 0px), 22px) scale(1.12); filter: brightness(1.07); }

.project-index,
.project-arrow {
  position: absolute;
  top: 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(8,9,13,.55);
  backdrop-filter: blur(14px);
}

.project-index {
  left: 18px;
  height: 34px;
  padding: 0 13px;
  border-radius: 10px;
  font-family: var(--font-mono);
  font-size: 9px;
}

.project-arrow { right: 18px; width: 42px; height: 42px; border-radius: 50%; font-size: 16px; }

.project-meta { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(240px, .65fr); gap: 30px; margin-top: 24px; }
.project-half .project-meta { grid-template-columns: 1fr; }
.project-meta p { margin: 0 0 10px; color: var(--muted); font-family: var(--font-mono); font-size: 9px; letter-spacing: .09em; text-transform: uppercase; }
.project-meta h3 { max-width: 750px; margin: 0; font-size: clamp(24px, 2.4vw, 38px); line-height: 1.15; letter-spacing: -.045em; font-weight: 500; }
.project-meta .project-copy { align-self: end; margin: 0; font-family: var(--font-sans); font-size: 13px; line-height: 1.65; letter-spacing: 0; text-transform: none; }

.services {
  width: 100%;
  padding-left: max(24px, calc((100vw - min(1360px, calc(100vw - 48px))) / 2));
  padding-right: max(24px, calc((100vw - min(1360px, calc(100vw - 48px))) / 2));
  background: linear-gradient(180deg, #0a0b10, #0e1017 50%, #090a0f);
  border-block: 1px solid rgba(255,255,255,.06);
}

.services-heading { width: 100%; }

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

.service-card {
  position: relative;
  min-height: 335px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  transition: transform 380ms cubic-bezier(.16,1,.3,1), border-color 240ms ease, background 240ms ease;
}

.service-card:hover {
  border-color: rgba(143, 153, 255, .25);
  background: linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.022));
  transform: translateY(-8px);
}

.service-card::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -160px;
  width: 330px;
  height: 260px;
  border-radius: 50%;
  background: var(--card-glow, rgba(92,105,255,.14));
  filter: blur(70px);
}

.service-card:nth-child(2) { --card-glow: rgba(124,91,255,.16); }
.service-card:nth-child(3) { --card-glow: rgba(44,169,255,.13); }
.service-card:nth-child(4) { --card-glow: rgba(179,82,255,.14); }

.service-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 58px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 15px;
  background: rgba(255,255,255,.04);
  color: #aab1ff;
}

.service-icon svg { width: 27px; fill: none; stroke: currentColor; stroke-width: 1.4; }
.service-card > span { position: absolute; top: 38px; right: 36px; color: #696d79; font-family: var(--font-mono); font-size: 9px; }
.service-card h3 { margin: 0 0 13px; font-size: 26px; letter-spacing: -.04em; font-weight: 500; }
.service-card p { position: relative; z-index: 1; max-width: 480px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.statement {
  position: relative;
  min-height: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 24px;
  overflow: hidden;
  text-align: center;
  background: #07080b;
}

.statement-orb {
  position: absolute;
  width: min(72vw, 940px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 35%, rgba(150,170,255,.48), transparent 11%),
    radial-gradient(circle at 48% 48%, #4857d8 0, #2d327d 28%, #171938 48%, rgba(7,8,11,.2) 70%);
  filter: blur(2px);
  box-shadow: 0 0 170px rgba(59,68,190,.22);
  opacity: .76;
  transform: translate3d(0, calc(25% + var(--parallax, 0px)), 0);
  will-change: transform;
}

.statement::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, #07080b 2%, transparent 30%, transparent 72%, #07080b); }
.statement .eyebrow, .statement-text { position: relative; z-index: 2; }
.statement-text { max-width: 1120px; margin: 30px auto 0; font-size: clamp(46px, 6.7vw, 96px); line-height: 1; letter-spacing: -.065em; font-weight: 500; }
.statement-text em { color: #c6c9ff; font-style: normal; }

.process { padding-bottom: 180px; }
.engagement-bar {
  display: grid;
  grid-template-columns: 1fr .9fr 1.3fr;
  margin-bottom: 70px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.025);
}

.engagement-bar div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}

.engagement-bar div:last-child { border-right: 0; }
.engagement-bar strong { font-size: 13px; font-weight: 500; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-grid li { min-height: 280px; padding: 28px 24px 0 0; border-right: 1px solid var(--line); }
.process-grid li:not(:first-child) { padding-left: 24px; }
.process-grid li:last-child { border-right: 0; }
.process-grid span { color: var(--accent); font-family: var(--font-mono); font-size: 9px; }
.process-grid h3 { margin: 85px 0 12px; font-size: 24px; letter-spacing: -.03em; font-weight: 500; }
.process-grid p { max-width: 240px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.about { padding-top: 0; }
.about-card { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 650px; overflow: hidden; border: 1px solid var(--line); border-radius: 32px; background: var(--surface-raised); }
.about-visual { position: relative; min-height: 520px; overflow: hidden; background: radial-gradient(circle at 50% 45%, #252b78, #11142d 45%, #0a0c14 75%); }
.about-visual::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 46px 46px; }
.about-visual small { position: absolute; z-index: 3; left: 30px; bottom: 26px; color: rgba(255,255,255,.46); font-family: var(--font-mono); font-size: 9px; letter-spacing: .14em; }
.glass-form { position: absolute; z-index: 2; display: block; border: 1px solid rgba(255,255,255,.27); background: linear-gradient(145deg, rgba(255,255,255,.18), rgba(85,100,255,.06)); box-shadow: inset 0 0 30px rgba(255,255,255,.07), 0 28px 80px rgba(0,0,0,.35); backdrop-filter: blur(8px); }
.form-one { width: 56%; aspect-ratio: 1; left: 20%; top: 19%; border-radius: 42% 58% 47% 53%; animation: form-one-float 8s ease-in-out infinite alternate; }
.form-two { width: 34%; aspect-ratio: 1; right: 8%; top: 11%; border-radius: 50%; animation: form-two-float 10s ease-in-out -2s infinite alternate; }
.form-three { width: 24%; height: 55%; left: 13%; bottom: -13%; border-radius: 50%; animation: form-three-float 9s ease-in-out -4s infinite alternate; }
.about-content { display: flex; flex-direction: column; justify-content: center; padding: clamp(42px, 6vw, 92px); }
.about-content h2 { font-size: clamp(44px, 4.5vw, 70px); }
.about-content > p:not(.eyebrow) { max-width: 620px; margin: 30px 0 42px; color: var(--muted); font-size: 15px; line-height: 1.8; }
.about-facts { margin: 0; border-top: 1px solid var(--line); }
.about-facts div { display: grid; grid-template-columns: 120px 1fr; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.about-facts dt { color: #707480; font-family: var(--font-mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.about-facts dd { margin: 0; font-size: 13px; }

.contact {
  position: relative;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 24px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  text-align: center;
}

.contact-halo { position: absolute; top: 18%; left: 50%; width: 650px; height: 430px; border-radius: 50%; background: rgba(74,83,224,.24); filter: blur(120px); transform: translateX(-50%); }
.contact > *:not(.contact-halo) { position: relative; z-index: 1; }
.contact h2 { margin: 26px 0 42px; font-size: clamp(62px, 9vw, 132px); line-height: .88; letter-spacing: -.075em; font-weight: 500; }
.contact-intro { max-width: 610px; margin: -14px 0 30px; color: #989ca8; font-size: 15px; line-height: 1.7; }
.contact > a { padding-bottom: 7px; border-bottom: 1px solid rgba(255,255,255,.4); font-size: clamp(18px, 2vw, 26px); }
.contact > a span { margin-left: 10px; }
.contact-note { margin: 22px 0 0; color: #6f727d; font-size: 11px; }

.contact-details {
  width: min(900px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 72px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.contact-details div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 22px;
  border-right: 1px solid var(--line);
}

.contact-details div:last-child { border-right: 0; }
.contact-details strong { font-size: 12px; font-weight: 500; }

.site-footer {
  width: var(--page);
  min-height: 100px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.site-footer nav { display: flex; gap: 26px; }
.site-footer > p { justify-self: end; margin: 0; color: #696c76; font-family: var(--font-mono); font-size: 9px; text-transform: uppercase; }

.motion-ready [data-reveal] {
  opacity: 0;
  clip-path: inset(0 0 16% 0);
  transform: translate3d(0, 52px, 0) scale(.985);
  transition:
    opacity 700ms cubic-bezier(.16, 1, .3, 1),
    transform 900ms cubic-bezier(.16, 1, .3, 1),
    clip-path 900ms cubic-bezier(.16, 1, .3, 1);
  transition-delay: calc(var(--reveal-delay, 0) * 70ms);
  will-change: transform, opacity, clip-path;
}

.motion-ready [data-reveal][data-delay="1"] { --reveal-delay: 1; }
.motion-ready [data-reveal][data-delay="2"] { --reveal-delay: 2; }
.motion-ready [data-reveal][data-delay="3"] { --reveal-delay: 3; }

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: translate3d(0, 0, 0) scale(1);
}

@keyframes hero-arrive {
  from { opacity: 0; filter: saturate(.6) contrast(1.04) blur(10px); }
  to { opacity: 1; filter: saturate(1.08) contrast(1.04) blur(0); }
}

@keyframes signal-flow { to { transform: translateX(-50%); } }
@keyframes form-one-float { from { transform: translate3d(-2%, 2%, 0) rotate(28deg); } to { transform: translate3d(5%, -5%, 0) rotate(42deg); } }
@keyframes form-two-float { from { transform: translate3d(3%, -4%, 0) rotate(-28deg); } to { transform: translate3d(-7%, 7%, 0) rotate(-12deg); } }
@keyframes form-three-float { from { transform: translate3d(-3%, 4%, 0) rotate(-38deg); } to { transform: translate3d(8%, -4%, 0) rotate(-25deg); } }

@media (max-width: 900px) {
  :root { --page: calc(100vw - 32px); }
  .site-header { grid-template-columns: 1fr auto; }
  .header-cta { display: none; }
  .site-nav { position: fixed; z-index: -1; inset: -18px -1px auto; height: 100svh; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 14px; padding: 80px 26px; border-radius: 0; background: rgba(8,9,13,.98); opacity: 0; visibility: hidden; transform: translateY(-16px); transition: opacity 180ms ease, transform 180ms ease, visibility 180ms; }
  .site-nav a { font-size: clamp(36px, 11vw, 64px); line-height: 1.15; letter-spacing: -.055em; font-weight: 500; }
  .site-nav a::after { display: none; }
  .menu-toggle { position: relative; z-index: 2; width: 42px; height: 42px; display: grid; place-items: center; justify-self: end; padding: 0; border: 0; border-radius: 12px; background: rgba(255,255,255,.07); }
  .menu-toggle span { position: absolute; width: 16px; height: 1px; background: #fff; transition: transform 180ms ease; }
  .menu-toggle span:first-child { transform: translateY(-3px); }
  .menu-toggle span:last-child { transform: translateY(3px); }
  .menu-open .site-nav { opacity: 1; visibility: visible; transform: translateY(0); }
  .menu-open .menu-toggle span:first-child { transform: rotate(45deg); }
  .menu-open .menu-toggle span:last-child { transform: rotate(-45deg); }
  .section-heading { grid-template-columns: 1fr; align-items: start; }
  .section-heading > p { justify-self: start; }
  .project-meta { grid-template-columns: 1fr; }
  .project-meta .project-copy { max-width: 550px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-grid { grid-template-columns: 1fr; }
  .offer-card, .offer-card:not(:first-child) { min-height: 0; padding: 28px 0 38px; border-right: 0; border-bottom: 1px solid var(--line); }
  .offer-card:last-child { border-bottom: 0; }
  .offer-card h3 { margin-top: 55px; }
  .process-grid li:nth-child(2) { border-right: 0; }
  .process-grid li:nth-child(n+3) { border-top: 1px solid var(--line); }
  .about-card { grid-template-columns: 1fr; }
  .about-visual { min-height: 500px; }
}

@media (max-width: 620px) {
  :root { --page: calc(100vw - 24px); }
  .site-header { top: 10px; height: 58px; padding-left: 12px; border-radius: 16px; }
  .hero { min-height: 780px; height: 100svh; }
  .hero-media img { object-position: 63% center; opacity: .82; }
  .hero-media-shade { background: linear-gradient(90deg, rgba(5,6,10,.96), rgba(5,6,10,.5) 75%), linear-gradient(0deg, rgba(7,8,12,.98), transparent 42%, rgba(7,8,12,.4)); }
  .hero-content { padding-top: 150px; }
  .status { max-width: 260px; line-height: 1.6; }
  h1 { margin: 28px 0 24px; font-size: clamp(53px, 16vw, 72px); line-height: .94; }
  .hero-copy { max-width: 92%; font-size: 15px; line-height: 1.6; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; margin-top: 32px; }
  .hero-scope { right: 12px; bottom: 18px; gap: 10px; font-size: 7px; }
  .signal-strip { min-height: 66px; }
  .signal-set { gap: 18px; padding-right: 18px; }
  .section { padding: 105px 0; }
  .section-heading { gap: 24px; margin-bottom: 44px; }
  .section-heading h2, .about-content h2 { font-size: 45px; }
  .section-heading > p { font-size: 14px; }
  .project-grid { grid-template-columns: 1fr; gap: 54px; }
  .project-wide { grid-column: auto; }
  .project-wide .project-image, .project-half .project-image { aspect-ratio: 1 / .88; border-radius: 22px; }
  .project-image img { object-position: center; }
  .project-meta { margin-top: 18px; }
  .project-meta h3 { font-size: 26px; }
  .project-meta .project-copy { display: none; }
  .services { padding-left: 12px; padding-right: 12px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 300px; padding: 26px; border-radius: 22px; }
  .service-icon { margin-bottom: 54px; }
  .statement { min-height: 670px; padding-inline: 16px; }
  .statement-orb { width: 135vw; }
  .statement-text { font-size: 48px; }
  .process-grid { grid-template-columns: 1fr; }
  .engagement-bar { grid-template-columns: 1fr; margin-bottom: 48px; border-radius: 15px; }
  .engagement-bar div { border-right: 0; border-bottom: 1px solid var(--line); }
  .engagement-bar div:last-child { border-bottom: 0; }
  .process-grid li, .process-grid li:not(:first-child) { min-height: 220px; padding: 25px 0; border-right: 0; border-top: 1px solid var(--line); }
  .process-grid h3 { margin-top: 58px; }
  .about-card { border-radius: 22px; }
  .about-visual { min-height: 400px; }
  .about-content { padding: 38px 24px 44px; }
  .about-facts div { grid-template-columns: 90px 1fr; }
  .contact { min-height: 590px; }
  .contact h2 { font-size: 63px; }
  .contact-intro { max-width: 330px; margin-top: -8px; font-size: 14px; }
  .contact-details { grid-template-columns: 1fr; margin-top: 58px; }
  .contact-details div { border-right: 0; border-bottom: 1px solid var(--line); }
  .contact-details div:last-child { border-bottom: 0; }
  .contact-note { max-width: 260px; }
  .site-footer { min-height: 170px; grid-template-columns: 1fr auto; align-content: center; }
  .site-footer nav { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  ::view-transition-group(root), ::view-transition-old(root), ::view-transition-new(root) { animation: none !important; }
  .page-transition-layer { display: none !important; }
  html.page-leaving body { animation: none !important; }
  .motion-ready [data-reveal] { opacity: 1; clip-path: none; transform: none; }
  [data-parallax] { --parallax: 0px !important; }
  [data-magnetic] { translate: 0 0 !important; }
  .cursor-glow, .scroll-progress { display: none; }
}

/* Multipage studio */
.project-link { display: block; }
.inner-page main { overflow: hidden; }
.inner-page .site-footer { margin-top: 0; }

.page-hero {
  position: relative;
  min-height: 780px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 180px max(24px, calc((100vw - min(1360px, calc(100vw - 48px))) / 2)) 92px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(8,9,13,.98) 10%, rgba(8,9,13,.55) 62%, rgba(26,29,61,.4)),
    radial-gradient(circle at 78% 42%, rgba(92,104,255,.2), transparent 30rem);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(90deg, #000, transparent 75%);
  pointer-events: none;
}

.page-hero-glow { position: absolute; right: 8%; bottom: -10%; width: 54vw; height: 54vw; border-radius: 50%; background: radial-gradient(circle at 40% 35%, rgba(163,177,255,.34), rgba(71,78,205,.2) 25%, transparent 67%); filter: blur(5px); }
.page-hero-copy { position: relative; z-index: 2; width: min(980px, 78vw); }
.page-hero h1, .contact-hero h1, .case-heading h1 { margin: 30px 0 34px; font-size: clamp(68px, 8.4vw, 132px); line-height: .9; letter-spacing: -.075em; font-weight: 500; }
.page-hero h1 span, .contact-hero h1 span, .case-heading h1 span { color: #aeb6ff; }
.page-lede { max-width: 720px; margin: 0; color: #b0b3bf; font-size: clamp(17px, 1.55vw, 22px); line-height: 1.65; }

.page-orbit { position: absolute; z-index: 1; right: 5vw; top: 20%; width: min(38vw, 520px); aspect-ratio: 1; transform: translate3d(0, var(--parallax, 0px), 0); }
.page-orbit::before, .page-orbit::after, .page-orbit span { content: ""; position: absolute; inset: 0; border: 1px solid rgba(145,157,255,.24); border-radius: 50%; }
.page-orbit::before { transform: rotateX(68deg); box-shadow: 0 0 60px rgba(102,116,255,.12); }
.page-orbit::after { transform: rotateY(68deg); }
.page-orbit span:nth-child(1) { inset: 18%; background: radial-gradient(circle at 38% 30%, rgba(255,255,255,.5), #6877ff 8%, #25295f 42%, #0b0c14 72%); box-shadow: 0 0 90px rgba(85,98,255,.42); animation: orbit-pulse 5s ease-in-out infinite alternate; }
.page-orbit span:nth-child(2), .page-orbit span:nth-child(3) { width: 8px; height: 8px; inset: 8% auto auto 28%; border: 0; background: #a6eaff; box-shadow: 0 0 22px #68d8ff; }
.page-orbit span:nth-child(3) { inset: auto 8% 22% auto; width: 5px; height: 5px; background: #a690ff; }

.page-section { width: var(--page); margin: 0 auto; padding: 150px 0; }
.compact-section { padding-top: 10px; }
.page-section h2, .page-cta h2 { margin: 18px 0 0; font-size: clamp(46px, 5.6vw, 82px); line-height: .98; letter-spacing: -.06em; font-weight: 500; }

.capability-list { border-top: 1px solid var(--line); }
.capability-list article { display: grid; grid-template-columns: 80px 1.2fr .8fr; gap: 28px; align-items: start; padding: 34px 0 38px; border-bottom: 1px solid var(--line); }
.capability-list article > span { color: var(--accent); font-family: var(--font-mono); font-size: 9px; }
.capability-list h3 { margin: -5px 0 12px; font-size: 32px; letter-spacing: -.04em; font-weight: 500; }
.capability-list p { max-width: 650px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.capability-list ul, .deliverables ul { margin: 0; padding: 0; list-style: none; }
.capability-list li { padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.06); color: #c8cad2; font-size: 12px; }

.split-panel { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 10vw, 160px); padding: 74px; border: 1px solid var(--line); border-radius: 28px; background: linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.012)); }
.split-panel h2 { font-size: clamp(42px, 4.7vw, 70px); }
.split-panel > div:last-child { padding-top: 34px; }
.split-panel > div:last-child p { max-width: 620px; margin: 0 0 22px; color: #a4a8b4; font-size: 15px; line-height: 1.8; }
.split-panel .quiet-link { display: inline-flex; margin-top: 18px; }

.page-cta { min-height: 640px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 110px 24px; border-top: 1px solid var(--line); text-align: center; background: radial-gradient(circle at 50% 65%, rgba(92,103,255,.24), transparent 30rem); }
.page-cta h2 { margin-bottom: 44px; font-size: clamp(58px, 7.5vw, 108px); }

.work-hero-stack { position: absolute; right: 6vw; top: 26%; width: min(39vw, 560px); aspect-ratio: 1.18; transform: translate3d(0, var(--parallax, 0px), 0) rotate(-8deg); }
.work-hero-stack i { position: absolute; inset: 12%; display: block; border: 1px solid rgba(255,255,255,.16); border-radius: 28px; background: linear-gradient(145deg, rgba(134,148,255,.2), rgba(255,255,255,.015)); box-shadow: 0 45px 100px rgba(0,0,0,.4), inset 0 1px rgba(255,255,255,.18); backdrop-filter: blur(6px); }
.work-hero-stack i:nth-child(2) { transform: translate(-16%, 13%) rotate(-7deg); }
.work-hero-stack i:nth-child(3) { transform: translate(16%, -13%) rotate(8deg); background: linear-gradient(145deg, rgba(104,216,255,.12), rgba(104,119,255,.05)); }
.work-list { padding-top: 90px; }
.work-row { padding: 54px 0; border-bottom: 1px solid var(--line); }
.work-row > a { display: grid; grid-template-columns: 1.35fr .85fr; gap: clamp(38px, 7vw, 108px); align-items: center; }
.work-row-image { position: relative; aspect-ratio: 1.45; overflow: hidden; border-radius: 26px; transform: perspective(1400px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)); transition: transform 500ms cubic-bezier(.16,1,.3,1); }
.work-row-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 800ms cubic-bezier(.16,1,.3,1), filter 300ms ease; }
.work-row a:hover img { transform: scale(1.035); filter: saturate(1.14); }
.work-row-copy > span, .work-row-copy strong { color: #858a98; font-family: var(--font-mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.work-row-copy h2 { margin: 28px 0 24px; font-size: clamp(38px, 4.3vw, 66px); }
.work-row-copy p { max-width: 520px; margin: 0 0 42px; color: var(--muted); font-size: 14px; line-height: 1.75; }
.work-row-copy strong { display: inline-flex; align-items: center; gap: 14px; color: #e9eaf0; }
.work-row-copy strong b { color: var(--cyan); font-size: 16px; }
.honesty-note { display: grid; grid-template-columns: .4fr 1fr; gap: 40px; margin-top: 72px; padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.honesty-note span { color: #777b88; font-family: var(--font-mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.honesty-note p { max-width: 760px; margin: 0; color: #a6a9b4; font-size: 14px; line-height: 1.75; }

.studio-sculpture { position: absolute; right: 8%; top: 22%; width: min(35vw, 500px); aspect-ratio: 1; transform: translate3d(0, var(--parallax, 0px), 0); }
.studio-sculpture i { position: absolute; display: block; border: 1px solid rgba(255,255,255,.24); background: linear-gradient(145deg, rgba(180,188,255,.21), rgba(81,92,219,.03)); box-shadow: inset 0 0 40px rgba(255,255,255,.06), 0 30px 90px rgba(0,0,0,.45); backdrop-filter: blur(7px); }
.studio-sculpture i:nth-child(1) { width: 64%; height: 64%; left: 10%; top: 12%; border-radius: 42% 58% 47% 53%; transform: rotate(30deg); }
.studio-sculpture i:nth-child(2) { width: 42%; height: 42%; right: 3%; top: 4%; border-radius: 50%; }
.studio-sculpture i:nth-child(3) { width: 34%; height: 63%; left: 42%; bottom: -4%; border-radius: 50%; transform: rotate(-42deg); }
.studio-intro { padding-bottom: 40px; }
.principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.principle-grid article { min-height: 360px; padding: 30px 34px 36px 0; border-right: 1px solid var(--line); }
.principle-grid article:not(:first-child) { padding-left: 34px; }
.principle-grid article:last-child { border-right: 0; }
.principle-grid span { color: var(--accent); font-family: var(--font-mono); font-size: 9px; }
.principle-grid h3 { margin: 110px 0 18px; font-size: 30px; letter-spacing: -.04em; font-weight: 500; }
.principle-grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.fit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.fit-grid > div { min-height: 330px; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.025); }
.fit-grid span { margin-bottom: auto; color: #777b88; font-family: var(--font-mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.fit-grid strong { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.07); font-size: 14px; font-weight: 500; }

.contact-hero { position: relative; min-height: 920px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 180px 24px 110px; overflow: hidden; text-align: center; }
.contact-hero > *:not(.contact-halo) { position: relative; z-index: 1; }
.contact-hero h1 { margin-bottom: 38px; }
.contact-hero .page-lede { max-width: 690px; }
.contact-email { display: inline-flex; align-items: center; gap: 14px; margin-top: 46px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.4); font-size: clamp(18px, 2vw, 26px); }
.contact-meta { display: flex; gap: 36px; margin-top: 70px; color: #767a87; font-family: var(--font-mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.inquiry-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(48px, 10vw, 150px); }
.inquiry-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.inquiry-list li { display: grid; grid-template-columns: 60px 1fr; gap: 20px; padding: 27px 0; border-bottom: 1px solid var(--line); }
.inquiry-list span { color: var(--accent); font-family: var(--font-mono); font-size: 9px; }
.inquiry-list h3 { margin: -5px 0 9px; font-size: 23px; font-weight: 500; }
.inquiry-list p { max-width: 520px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.faq-section { padding-top: 40px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 90px; display: flex; align-items: center; justify-content: space-between; gap: 24px; cursor: pointer; list-style: none; font-size: clamp(20px, 2.2vw, 30px); letter-spacing: -.03em; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--accent); font-size: 30px; font-weight: 300; transition: transform 220ms ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 760px; margin: -5px 0 30px; color: var(--muted); font-size: 14px; line-height: 1.75; }

.case-hero { padding: 190px max(24px, calc((100vw - min(1360px, calc(100vw - 48px))) / 2)) 0; }
.case-heading { width: var(--page); margin: 0 auto 70px; }
.case-heading h1 { max-width: 1250px; }
.case-meta { display: flex; justify-content: space-between; gap: 28px; padding-top: 24px; border-top: 1px solid var(--line); color: #7e828e; font-family: var(--font-mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.case-cover { width: min(1540px, calc(100vw - 24px)); aspect-ratio: 1.75; margin: 0 auto; overflow: hidden; border-radius: 34px; background: #101218; }
.case-cover img { width: 100%; height: 108%; object-fit: cover; transform: translate3d(0, var(--parallax, 0px), 0) scale(1.03); }
.case-section { width: var(--page); display: grid; grid-template-columns: .62fr 1.38fr; gap: clamp(48px, 10vw, 160px); margin: 0 auto; padding: 150px 0; border-bottom: 1px solid var(--line); }
.case-section h2 { margin: 14px 0 0; font-size: clamp(45px, 5vw, 76px); letter-spacing: -.06em; font-weight: 500; }
.case-section > div:last-child > p { max-width: 760px; margin: 0 0 22px; color: var(--muted); font-size: 15px; line-height: 1.8; }
.case-section .case-lead { color: #eef0f6 !important; font-size: clamp(24px, 2.7vw, 40px) !important; line-height: 1.35 !important; letter-spacing: -.04em; }
.case-visual { width: min(1540px, calc(100vw - 24px)); min-height: 760px; display: grid; place-items: center; margin: 0 auto; overflow: hidden; border-radius: 34px; }
.case-visual-commerce { background: radial-gradient(circle at 68% 42%, rgba(104,119,255,.42), transparent 15rem), linear-gradient(145deg, #090a10 25%, #19215e 65%, #08090d); }
.case-visual-property { background: linear-gradient(155deg, #111729, #203d5f 52%, #9a7657 150%); }
.case-visual-software { background: radial-gradient(circle at 52% 50%, rgba(74,212,255,.21), transparent 21rem), linear-gradient(145deg, #06070b, #111b49 60%, #07101d); }
.visual-frame { width: min(72%, 980px); aspect-ratio: 1.55; display: flex; flex-direction: column; justify-content: space-between; padding: 34px; border: 1px solid rgba(255,255,255,.2); border-radius: 28px; background: linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.015)); box-shadow: 0 50px 120px rgba(0,0,0,.42), inset 0 1px rgba(255,255,255,.18); backdrop-filter: blur(10px); transform: perspective(1200px) rotateX(8deg) rotateY(-12deg); }
.visual-frame span { color: rgba(255,255,255,.5); font-family: var(--font-mono); font-size: 9px; letter-spacing: .1em; }
.visual-frame strong { max-width: 700px; font-size: clamp(40px, 6vw, 90px); line-height: .94; letter-spacing: -.065em; font-weight: 500; }
.journey-list { margin: 42px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.journey-list li { display: grid; grid-template-columns: 50px 1fr; padding: 18px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.journey-list span { color: var(--accent); font-family: var(--font-mono); font-size: 9px; }
.deliverables ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 28px; }
.deliverables li { padding: 19px 0; border-bottom: 1px solid var(--line); color: #d9dbe2; font-size: 14px; }
.next-project { width: var(--page); margin: 0 auto; padding: 40px 0 150px; }
.next-project a { position: relative; display: grid; grid-template-columns: 1fr 1.5fr; gap: 38px; align-items: end; min-height: 340px; padding: 48px; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: radial-gradient(circle at 85% 50%, rgba(93,106,255,.2), transparent 26rem), rgba(255,255,255,.025); }
.next-project span { align-self: start; color: #7d818d; font-family: var(--font-mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.next-project strong { font-size: clamp(38px, 4.6vw, 66px); line-height: 1; letter-spacing: -.055em; font-weight: 500; }
.next-project b { position: absolute; right: 44px; top: 42px; color: var(--cyan); font-size: 24px; }

@keyframes orbit-pulse { from { transform: scale(.94); } to { transform: scale(1.04); } }

@media (max-width: 900px) {
  .page-hero { min-height: 720px; padding-bottom: 68px; }
  .page-hero-copy { width: 88vw; }
  .page-orbit, .work-hero-stack, .studio-sculpture { right: -12vw; opacity: .55; }
  .capability-list article { grid-template-columns: 56px 1fr; }
  .capability-list article ul { grid-column: 2; }
  .split-panel { grid-template-columns: 1fr; padding: 54px; }
  .split-panel > div:last-child { padding-top: 0; }
  .work-row > a { grid-template-columns: 1fr; }
  .work-row-copy { max-width: 700px; }
  .principle-grid, .fit-grid { grid-template-columns: 1fr; }
  .principle-grid article, .principle-grid article:not(:first-child) { min-height: 260px; padding: 30px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .principle-grid h3 { margin-top: 70px; }
  .fit-grid > div { min-height: 280px; }
  .inquiry-section { grid-template-columns: 1fr; }
  .case-cover { aspect-ratio: 1.25; }
  .case-section { grid-template-columns: 1fr; gap: 50px; }
  .case-visual { min-height: 620px; }
  .visual-frame { width: 82%; }
}

@media (max-width: 620px) {
  .page-hero { min-height: 720px; padding: 150px 12px 54px; }
  .page-hero h1, .contact-hero h1, .case-heading h1 { font-size: clamp(52px, 15vw, 72px); }
  .page-hero-copy { width: 100%; }
  .page-lede { font-size: 15px; }
  .page-orbit, .work-hero-stack, .studio-sculpture { width: 78vw; right: -34vw; top: 18%; opacity: .38; }
  .page-section { padding: 100px 0; }
  .compact-section, .faq-section { padding-top: 0; }
  .page-section h2, .page-cta h2 { font-size: 45px; }
  .capability-list article { grid-template-columns: 38px 1fr; gap: 14px; }
  .capability-list article ul { grid-column: 1 / -1; padding-left: 52px; }
  .capability-list h3 { font-size: 27px; }
  .split-panel { gap: 34px; padding: 34px 24px; border-radius: 22px; }
  .split-panel h2 { font-size: 43px; }
  .page-cta { min-height: 550px; }
  .work-list { padding-top: 45px; }
  .work-row { padding: 38px 0; }
  .work-row > a { gap: 28px; }
  .work-row-image { aspect-ratio: 1 / .86; border-radius: 20px; }
  .work-row-copy h2 { margin: 20px 0 16px; font-size: 35px; }
  .work-row-copy p { margin-bottom: 28px; }
  .honesty-note { grid-template-columns: 1fr; gap: 18px; margin-top: 44px; }
  .principle-grid h3 { margin-top: 60px; }
  .fit-grid > div { min-height: 260px; padding: 24px; }
  .contact-hero { min-height: 810px; padding: 150px 12px 90px; }
  .contact-email { font-size: 17px; }
  .contact-meta { flex-direction: column; gap: 12px; }
  .inquiry-list li { grid-template-columns: 42px 1fr; }
  .faq-list summary { min-height: 78px; font-size: 19px; }
  .case-hero { padding: 150px 12px 0; }
  .case-heading { margin-bottom: 42px; }
  .case-meta { flex-direction: column; }
  .case-cover { width: calc(100vw - 16px); aspect-ratio: .88; border-radius: 22px; }
  .case-section { padding: 95px 0; gap: 40px; }
  .case-section h2 { font-size: 46px; }
  .case-section .case-lead { font-size: 25px !important; }
  .case-visual { width: calc(100vw - 16px); min-height: 520px; border-radius: 22px; }
  .visual-frame { width: 86%; aspect-ratio: .8; padding: 24px; border-radius: 22px; transform: perspective(1000px) rotateX(6deg) rotateY(-6deg); }
  .visual-frame strong { font-size: 43px; }
  .deliverables ul { grid-template-columns: 1fr; }
  .next-project { padding: 20px 0 100px; }
  .next-project a { grid-template-columns: 1fr; min-height: 360px; padding: 28px; border-radius: 22px; }
  .next-project strong { font-size: 37px; }
  .next-project b { right: 28px; top: 26px; }
}
