/* ==========================================================================
   Take Digital Solutions — Premium homepage
   Inspired by craft of clay.global / baunfire.com · SF Pro stack
   ========================================================================== */

:root {
  --bg: #f5f5f7;
  --bg-soft: #ebe9f2;
  --bg-mist: #e4ebf4;
  --bg-warm: #f0eeeb;
  --surface: #ffffff;
  --ink: #1d1d1f;
  --ink-2: #3a3a3c;
  --mute: #6e6e73;
  --line: rgba(29, 29, 31, 0.1);
  --blue: #1a2744;
  --blue-2: #2c4066;
  --blue-soft: rgba(26, 39, 68, 0.08);
  --dark: #111111;
  --dark-2: #1a1a1a;

  --font-display: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;

  --shell: min(1180px, calc(100% - 3rem));
  --header-h: 4.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.75rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: -0.011em;
  color: var(--ink-2);
  background: var(--bg);
  overflow-x: hidden;
}

/* clip (not hidden) so sticky cover-scroll works on service pages */
html:has(body.page-service) {
  overflow-x: clip;
}

body.page-service {
  overflow-x: clip;
}

/* Custom cursor — layered ring system */
.cursor {
  --cursor-x: -120px;
  --cursor-y: -120px;
  --cursor-ax: -120px;
  --cursor-ay: -120px;
  --cursor-scale: 1;
  --cursor-stretch: 1;
  --cursor-angle: 0deg;
  --cursor-opacity: 0;
  --cursor-spin: 0deg;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  width: 1px;
  height: 1px;
  pointer-events: none;
  opacity: var(--cursor-opacity);
  transform: translate3d(var(--cursor-x), var(--cursor-y), 0);
  mix-blend-mode: difference;
  transition: opacity 0.4s ease;
}

.cursor__aura,
.cursor__ring,
.cursor__core {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  will-change: transform;
}

.cursor__aura {
  width: 3.75rem;
  height: 3.75rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), transparent 68%);
  transform:
    translate3d(calc(var(--cursor-ax) - var(--cursor-x)), calc(var(--cursor-ay) - var(--cursor-y)), 0)
    translate(-50%, -50%)
    scale(calc(var(--cursor-scale) * 1.05));
  opacity: 0.7;
  transition:
    width 0.55s var(--ease-out),
    height 0.55s var(--ease-out),
    opacity 0.4s ease,
    border-color 0.4s ease,
    background 0.4s ease;
}

.cursor__ring {
  width: 2.65rem;
  height: 2.65rem;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transform:
    translate(-50%, -50%)
    rotate(var(--cursor-angle))
    scale(var(--cursor-scale), calc(var(--cursor-scale) * var(--cursor-stretch)));
  transition:
    width 0.5s var(--ease-out),
    height 0.5s var(--ease-out),
    border-color 0.35s ease,
    background 0.4s var(--ease-out),
    box-shadow 0.4s ease;
}

.cursor__orbit {
  position: absolute;
  inset: -7px;
  width: calc(100% + 14px);
  height: calc(100% + 14px);
  opacity: 0.55;
  transform: rotate(var(--cursor-spin));
  transition: opacity 0.4s ease;
}

.cursor__orbit-track,
.cursor__orbit-arc {
  fill: none;
  stroke-width: 1.25;
  stroke-linecap: round;
}

.cursor__orbit-track {
  stroke: rgba(255, 255, 255, 0.16);
}

.cursor__orbit-arc {
  stroke: rgba(255, 255, 255, 0.95);
  stroke-dasharray: 28 110;
  transform-origin: 24px 24px;
}

.cursor__core {
  display: grid;
  place-items: center;
  min-width: 0.4rem;
  min-height: 0.4rem;
  transform: translate(-50%, -50%) scale(var(--cursor-scale));
  transition: transform 0.35s var(--ease-out);
}

.cursor__dot {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  transition:
    width 0.45s var(--ease-out),
    height 0.45s var(--ease-out),
    opacity 0.3s ease,
    box-shadow 0.45s var(--ease-out),
    transform 0.4s var(--ease-out);
}

.cursor__label {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 620;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  opacity: 0;
  transform: scale(0.7);
  transition:
    opacity 0.35s var(--ease-out),
    transform 0.45s var(--ease-out);
  pointer-events: none;
}

body.has-cursor,
body.has-cursor * {
  cursor: none !important;
}

body.has-cursor input,
body.has-cursor textarea,
body.has-cursor select,
body.has-cursor [contenteditable="true"] {
  cursor: text !important;
}

/* Hover — links / controls */
body.has-cursor .cursor.is-hover .cursor__aura {
  width: 5.5rem;
  height: 5.5rem;
  opacity: 0.9;
  border-color: rgba(255, 255, 255, 0.4);
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.14), transparent 70%);
}

body.has-cursor .cursor.is-hover .cursor__ring {
  width: 4.4rem;
  height: 4.4rem;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 1);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

body.has-cursor .cursor.is-hover .cursor__dot {
  width: 0.28rem;
  height: 0.28rem;
  opacity: 0.45;
}

body.has-cursor .cursor.is-hover .cursor__orbit {
  opacity: 1;
}

body.has-cursor .cursor.is-hover .cursor__orbit-arc {
  stroke-dasharray: 48 90;
}

/* CTA / primary actions — label reveal */
body.has-cursor .cursor.is-cta .cursor__aura {
  width: 6.75rem;
  height: 6.75rem;
  opacity: 1;
}

body.has-cursor .cursor.is-cta .cursor__ring {
  width: 5.5rem;
  height: 5.5rem;
  background: rgba(255, 255, 255, 0.16);
  border-width: 1.5px;
}

body.has-cursor .cursor.is-cta .cursor__dot {
  width: 0;
  height: 0;
  opacity: 0;
}

body.has-cursor .cursor.is-cta .cursor__label {
  opacity: 1;
  transform: scale(1);
}

body.has-cursor .cursor.is-cta .cursor__orbit-arc {
  stroke-dasharray: 70 70;
}

/* Media / visual hover */
body.has-cursor .cursor.is-view .cursor__ring {
  width: 5rem;
  height: 5rem;
  background: rgba(255, 255, 255, 0.12);
}

body.has-cursor .cursor.is-view .cursor__dot {
  width: 0;
  height: 0;
  opacity: 0;
}

body.has-cursor .cursor.is-view .cursor__label {
  opacity: 1;
  transform: scale(1);
  letter-spacing: 0.18em;
}

/* Press */
body.has-cursor .cursor.is-press {
  --cursor-scale: 0.78;
}

body.has-cursor .cursor.is-press .cursor__aura {
  width: 2.4rem;
  height: 2.4rem;
  opacity: 0.35;
}

body.has-cursor .cursor.is-press .cursor__ring {
  width: 1.85rem;
  height: 1.85rem;
  background: rgba(255, 255, 255, 0.22);
}

body.has-cursor .cursor.is-press .cursor__label {
  opacity: 0;
  transform: scale(0.6);
}

body.has-cursor .cursor.is-press .cursor__dot {
  width: 0.55rem;
  height: 0.55rem;
  opacity: 1;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.12);
}

/* Moving — subtle orbit speed cue via class */
body.has-cursor .cursor.is-moving .cursor__orbit-arc {
  stroke-dasharray: 34 104;
}

@media (pointer: coarse), (hover: none) {
  .cursor {
    display: none !important;
  }

  body.has-cursor,
  body.has-cursor * {
    cursor: auto !important;
  }

  body.has-cursor a,
  body.has-cursor button,
  body.has-cursor summary {
    cursor: pointer !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cursor__aura,
  .cursor__ring,
  .cursor__dot,
  .cursor__label,
  .cursor__orbit {
    transition-duration: 0.01ms !important;
  }
}

body.is-loading {
  overflow: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
summary {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
}

.skip-link:focus {
  top: 1rem;
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

/* Progress */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--ink);
  z-index: 80;
  pointer-events: none;
}

/* Loader */
.loader {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  background: var(--bg);
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}

.loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__inner img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  animation: breathe 1.2s ease-in-out infinite;
}

@keyframes breathe {
  50% { transform: scale(0.94); opacity: 0.7; }
}

/* Header — premium command panel */
.header {
  --spring: cubic-bezier(0.16, 1, 0.3, 1);
  --header-pad: 1rem;
  --spot-x: 42%;
  --spot-y: 40%;
  --spot-opacity: 0;
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: var(--header-pad) 0 0;
  background: transparent;
  pointer-events: none;
}

.header__veil {
  display: none;
}

.header__shell {
  position: relative;
  z-index: 1;
  pointer-events: none;
}

.header__panel {
  position: relative;
  pointer-events: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto minmax(0, 1.1fr);
  align-items: center;
  gap: 0.75rem 1rem;
  min-height: var(--header-h);
  padding: 0.6rem 0.65rem 0.8rem 0.75rem;
  border-radius: 1.45rem;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.84) 0%, rgba(255, 255, 255, 0.5) 42%, rgba(246, 247, 250, 0.68) 100%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98) inset,
    0 0 0 1px rgba(29, 29, 31, 0.04),
    0 26px 56px -30px rgba(17, 17, 17, 0.3),
    0 12px 26px -14px rgba(17, 17, 17, 0.12);
  backdrop-filter: blur(30px) saturate(1.45);
  -webkit-backdrop-filter: blur(30px) saturate(1.45);
  overflow: hidden;
  transition:
    background 0.5s ease,
    border-color 0.4s ease,
    box-shadow 0.55s var(--spring),
    transform 0.55s var(--spring);
}

.header__rim {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.35),
    inset 0 -20px 40px rgba(29, 29, 31, 0.025);
  z-index: 1;
}

.header__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(
    220px 100px at var(--spot-x) var(--spot-y),
    rgba(255, 255, 255, 0.75),
    transparent 70%
  );
  opacity: var(--spot-opacity);
  transition: opacity 0.4s ease;
  z-index: 0;
}

.header__glint {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 36%,
    rgba(255, 255, 255, 0.45) 49%,
    transparent 62%
  );
  background-size: 240% 100%;
  animation: header-glint 11s ease-in-out infinite;
  opacity: 0.4;
  mix-blend-mode: soft-light;
  z-index: 0;
}

.header.is-scrolled .header__panel {
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.78) 100%);
  border-color: rgba(255, 255, 255, 0.92);
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 0 0 1px rgba(29, 29, 31, 0.05),
    0 30px 60px -30px rgba(17, 17, 17, 0.34),
    0 14px 30px -14px rgba(17, 17, 17, 0.14);
}

.header.is-ready .logo {
  animation: header-in 0.9s var(--spring) both;
  animation-delay: 0.04s;
}

.header.is-ready .nav {
  animation: header-in 0.9s var(--spring) both;
  animation-delay: 0.12s;
}

.header.is-ready .header__end {
  animation: header-in 0.9s var(--spring) both;
  animation-delay: 0.2s;
}

.logo {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  justify-self: start;
  min-width: 0;
  padding: 0.15rem 0.45rem 0.15rem 0.15rem;
  border-radius: 1rem;
  color: var(--ink);
  transition: transform 0.4s var(--spring), background 0.3s ease;
}

.logo__mark {
  position: relative;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 0.95rem;
  background:
    linear-gradient(155deg, #fff 0%, #eef0f4 100%);
  border: 1px solid rgba(29, 29, 31, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 10px 22px rgba(17, 17, 17, 0.08);
  transition:
    transform 0.45s var(--spring),
    box-shadow 0.45s var(--spring),
    border-color 0.3s ease;
}

.logo__pulse {
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  border: 1px solid rgba(29, 29, 31, 0.12);
  opacity: 0;
  pointer-events: none;
  animation: logo-pulse 3.2s ease-out infinite;
}

.logo__mark::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.55), transparent 50%);
  pointer-events: none;
}

.logo img {
  position: relative;
  z-index: 1;
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.logo__meta {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  min-width: 0;
  line-height: 1;
}

.logo__word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.22rem;
  letter-spacing: -0.05em;
}

.logo__line {
  font-size: 0.58rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(29, 29, 31, 0.38);
  white-space: nowrap;
}

.logo:hover {
  transform: translateY(-1px);
}

.logo:hover .logo__mark {
  transform: scale(1.05);
  border-color: rgba(29, 29, 31, 0.14);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 14px 28px rgba(17, 17, 17, 0.12);
}

.nav {
  position: relative;
  z-index: 2;
  display: none;
  align-items: center;
  justify-self: center;
  gap: 0.08rem;
  padding: 0.28rem;
  border-radius: 999px;
  background: rgba(29, 29, 31, 0.04);
  border: 1px solid rgba(29, 29, 31, 0.06);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    inset 0 6px 14px rgba(17, 17, 17, 0.02);
}

.nav__pill {
  position: absolute;
  top: 0.28rem;
  left: 0;
  height: calc(100% - 0.56rem);
  width: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff, rgba(255, 255, 255, 0.9));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 10px 22px rgba(17, 17, 17, 0.08);
  transition:
    transform 0.48s var(--spring),
    width 0.48s var(--spring),
    opacity 0.25s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.nav__pill.is-on {
  opacity: 1;
}

.nav__item {
  position: static;
  z-index: 1;
}

.nav__link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  font-size: 0.875rem;
  font-weight: 520;
  letter-spacing: -0.015em;
  color: rgba(29, 29, 31, 0.5);
  padding: 0.52rem 0.95rem;
  border-radius: 999px;
  transition:
    color 0.3s ease,
    letter-spacing 0.35s var(--spring),
    transform 0.35s var(--spring);
}

.nav__link:hover,
.nav__link.is-active,
.nav__item.is-open > .nav__link {
  color: var(--ink);
}

.nav__link:hover {
  letter-spacing: -0.005em;
  transform: translateY(-0.5px);
}

.nav__chev {
  opacity: 0.45;
  transition: transform 0.35s var(--spring), opacity 0.25s ease;
}

.nav__item.is-open .nav__chev,
.nav__link[aria-expanded="true"] .nav__chev {
  transform: rotate(180deg);
  opacity: 0.75;
}

/* Solutions mega menu — richer interactive panel */
.mega {
  --mega-build: #1a2744;
  --mega-sell: #ff5c1a;
  --mega-scale: #3d5a80;
  --mega-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --mega-spot-x: 50%;
  --mega-spot-y: 35%;
  position: absolute;
  top: calc(100% + 0.65rem);
  left: 50%;
  transform: translateX(-50%) translateY(12px) scale(0.98);
  width: min(68rem, calc(100vw - 1.75rem));
  padding: 0;
  border-radius: 1.65rem;
  background:
    linear-gradient(168deg, rgba(255, 255, 255, 0.99) 0%, rgba(247, 248, 252, 0.97) 52%, rgba(242, 244, 249, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 0 0 1px rgba(29, 29, 31, 0.055),
    0 40px 90px rgba(17, 17, 17, 0.18),
    0 14px 32px rgba(17, 17, 17, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.34s ease,
    transform 0.52s var(--mega-spring),
    visibility 0.34s ease;
  z-index: 20;
  overflow: hidden;
  backdrop-filter: blur(28px) saturate(1.35);
  -webkit-backdrop-filter: blur(28px) saturate(1.35);
}

.mega[hidden] {
  display: block;
}

.mega::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 1.15rem;
}

.mega__rim {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.45),
    inset 0 -28px 50px rgba(29, 29, 31, 0.02);
  z-index: 3;
}

.mega__glow {
  position: absolute;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  filter: blur(52px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease, transform 0.6s var(--mega-spring);
  z-index: 0;
}

.mega__glow--build {
  top: -5rem;
  left: 4%;
  background: rgba(26, 39, 68, 0.2);
}

.mega__glow--sell {
  top: -4rem;
  left: 38%;
  background: rgba(255, 92, 26, 0.17);
}

.mega__glow--scale {
  top: -5rem;
  right: 4%;
  background: rgba(61, 90, 128, 0.17);
}

.mega__mesh {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(29, 29, 31, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 29, 31, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000 20%, transparent 75%);
}

.mega__grain {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.mega__spot {
  position: absolute;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  left: var(--mega-spot-x);
  top: var(--mega-spot-y);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.55) 0%, transparent 68%);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.35s ease;
}

.header.is-mega-open .mega,
.mega.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

.header.is-mega-open .mega__glow,
.mega.is-open .mega__glow {
  opacity: 1;
}

.header.is-mega-open .mega__spot,
.mega.is-open .mega__spot {
  opacity: 0.9;
}

.mega[data-focus="build"] .mega__glow--build { opacity: 1; transform: scale(1.15); }
.mega[data-focus="build"] .mega__glow--sell,
.mega[data-focus="build"] .mega__glow--scale { opacity: 0.35; }

.mega[data-focus="sell"] .mega__glow--sell { opacity: 1; transform: scale(1.15); }
.mega[data-focus="sell"] .mega__glow--build,
.mega[data-focus="sell"] .mega__glow--scale { opacity: 0.35; }

.mega[data-focus="scale"] .mega__glow--scale { opacity: 1; transform: scale(1.15); }
.mega[data-focus="scale"] .mega__glow--build,
.mega[data-focus="scale"] .mega__glow--sell { opacity: 0.35; }

.mega__head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.4rem 0.95rem;
  border-bottom: 1px solid rgba(29, 29, 31, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.2));
}

.mega__eyebrow {
  margin: 0 0 0.15rem;
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(29, 29, 31, 0.38);
}

.mega__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.mega__head-pills {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  padding: 0.22rem;
  border-radius: 999px;
  background: rgba(29, 29, 31, 0.04);
  border: 1px solid rgba(29, 29, 31, 0.05);
}

.mega__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.78rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(29, 29, 31, 0.5);
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    color 0.3s ease,
    background 0.35s var(--mega-spring),
    border-color 0.3s ease,
    transform 0.35s var(--mega-spring),
    box-shadow 0.35s ease;
}

.mega__pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  transition: box-shadow 0.3s ease, transform 0.35s var(--mega-spring);
}

.mega__pill--build i { background: var(--mega-build); }
.mega__pill--sell i { background: var(--mega-sell); }
.mega__pill--scale i { background: var(--mega-scale); }

.mega__pill:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
}

.mega__pill.is-active {
  color: var(--ink);
  background: #fff;
  border-color: rgba(29, 29, 31, 0.07);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 8px 18px rgba(17, 17, 17, 0.08);
  transform: translateY(-0.5px);
}

.mega__pill.is-active i {
  transform: scale(1.15);
}

.mega__pill--build.is-active i { box-shadow: 0 0 0 3px rgba(26, 39, 68, 0.14); }
.mega__pill--sell.is-active i { box-shadow: 0 0 0 3px rgba(255, 92, 26, 0.18); }
.mega__pill--scale.is-active i { box-shadow: 0 0 0 3px rgba(61, 90, 128, 0.16); }

.mega__stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(13.5rem, 0.92fr) minmax(0, 2.2fr);
  gap: 0;
  min-height: 0;
}

.mega__preview {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.2rem 1.25rem 1.25rem 1.35rem;
  border-right: 1px solid rgba(29, 29, 31, 0.06);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.55), rgba(245, 247, 251, 0.35));
  overflow: hidden;
}

.mega__preview::before {
  content: "";
  position: absolute;
  inset: auto -20% -30% -10%;
  height: 70%;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  transition: background 0.45s ease;
  pointer-events: none;
}

.mega[data-focus="build"] .mega__preview::before { background: rgba(26, 39, 68, 0.14); }
.mega[data-focus="sell"] .mega__preview::before { background: rgba(255, 92, 26, 0.14); }
.mega[data-focus="scale"] .mega__preview::before { background: rgba(61, 90, 128, 0.14); }

.mega__preview-visual {
  position: relative;
  width: 4.75rem;
  height: 4.75rem;
  margin-top: 0.15rem;
}

.mega__preview-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(29, 29, 31, 0.1);
  animation: mega-ring 4.5s ease-in-out infinite;
}

.mega__preview-pulse {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px solid rgba(29, 29, 31, 0.08);
  animation: mega-ring 4.5s ease-in-out infinite 0.6s;
}

.mega__preview-orb {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, #4a5f8a, var(--mega-build) 62%, #0d1526);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 14px 28px rgba(17, 17, 17, 0.18);
  transition: background 0.45s ease, box-shadow 0.45s ease, transform 0.5s var(--mega-spring);
}

.mega[data-focus="sell"] .mega__preview-orb {
  background:
    radial-gradient(circle at 32% 28%, #ffc898, var(--mega-sell) 58%, #a02e00);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 14px 28px rgba(255, 92, 26, 0.22);
}

.mega[data-focus="scale"] .mega__preview-orb {
  background:
    radial-gradient(circle at 32% 28%, #7a9bb8, var(--mega-scale) 60%, #1e334d);
}

.mega__preview.is-swap .mega__preview-copy {
  animation: mega-preview-swap 0.4s var(--mega-spring);
}

.mega__preview-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.64rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(29, 29, 31, 0.4);
}

.mega__preview-title {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.035em;
  color: var(--ink);
  line-height: 1.15;
}

.mega__preview-body {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.45;
  color: rgba(29, 29, 31, 0.55);
}

.mega__preview-tags {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.mega__preview-tags li {
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 560;
  letter-spacing: -0.01em;
  color: rgba(29, 29, 31, 0.55);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(29, 29, 31, 0.07);
}

.mega__preview-link {
  position: relative;
  z-index: 1;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.84rem;
  font-weight: 560;
  letter-spacing: -0.015em;
  color: var(--ink);
  transition: gap 0.35s var(--mega-spring), opacity 0.3s ease;
}

.mega__preview-link:hover {
  gap: 0.6rem;
  opacity: 0.7;
}

.mega__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  min-width: 0;
}

.mega__col {
  position: relative;
  padding: 0.95rem 0.9rem 1.05rem;
  border-right: 1px solid rgba(29, 29, 31, 0.05);
  transition:
    background 0.4s ease,
    opacity 0.4s ease,
    filter 0.4s ease;
}

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

.mega__col::after {
  content: "";
  position: absolute;
  inset: 0.45rem;
  border-radius: 1.05rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.mega__col--build::after {
  background: linear-gradient(165deg, rgba(26, 39, 68, 0.07), transparent 72%);
}

.mega__col--sell::after {
  background: linear-gradient(165deg, rgba(255, 92, 26, 0.08), transparent 72%);
}

.mega__col--scale::after {
  background: linear-gradient(165deg, rgba(61, 90, 128, 0.07), transparent 72%);
}

.mega__stage.has-focus .mega__col:not(.is-focus) {
  opacity: 0.42;
  filter: saturate(0.7);
}

.mega__col.is-focus::after,
.mega__col:hover::after,
.mega__col:focus-within::after {
  opacity: 1;
}

.mega__col.is-focus {
  opacity: 1;
  filter: none;
}

.mega__pillar {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto auto;
  column-gap: 0.7rem;
  row-gap: 0.06rem;
  align-items: center;
  padding: 0.65rem 0.65rem 0.7rem;
  margin: 0 0 0.5rem;
  border-radius: 1rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(29, 29, 31, 0.06);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 8px 20px rgba(17, 17, 17, 0.04);
  transition:
    transform 0.4s var(--mega-spring),
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.4s ease;
}

.mega__col.is-focus .mega__pillar,
.mega__pillar:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(29, 29, 31, 0.1);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 14px 28px rgba(17, 17, 17, 0.08);
}

.mega__orb-wrap {
  grid-row: 1 / span 3;
  position: relative;
  width: 2.45rem;
  height: 2.45rem;
}

.mega__orb-ring {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid rgba(29, 29, 31, 0.1);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.4s ease, transform 0.5s var(--mega-spring);
}

.mega__col.is-focus .mega__orb-ring,
.mega__pillar:hover .mega__orb-ring {
  opacity: 1;
  transform: scale(1);
  animation: mega-ring 3.2s ease-in-out infinite;
}

.mega__orb {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 10px 18px rgba(17, 17, 17, 0.12);
  transition: transform 0.45s var(--mega-spring);
}

.mega__orb::after {
  content: "";
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  filter: blur(2px);
}

.mega__col.is-focus .mega__orb,
.mega__pillar:hover .mega__orb {
  transform: scale(1.06);
}

.mega__col--build .mega__orb {
  background:
    radial-gradient(circle at 32% 28%, #4a5f8a, var(--mega-build) 62%, #0d1526);
}

.mega__col--sell .mega__orb {
  background:
    radial-gradient(circle at 32% 28%, #ffc898, var(--mega-sell) 58%, #a02e00);
}

.mega__col--scale .mega__orb {
  background:
    radial-gradient(circle at 32% 28%, #7a9bb8, var(--mega-scale) 60%, #1e334d);
}

.mega__pillar-meta {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.mega__pillar-num {
  font-size: 0.6rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  color: rgba(29, 29, 31, 0.32);
}

.mega__pillar-count {
  font-size: 0.6rem;
  font-weight: 550;
  letter-spacing: 0.02em;
  color: rgba(29, 29, 31, 0.38);
  padding: 0.1rem 0.38rem;
  border-radius: 999px;
  background: rgba(29, 29, 31, 0.045);
}

.mega__pillar-label {
  grid-column: 2;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.mega__pillar-note {
  grid-column: 2;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(29, 29, 31, 0.45);
}

.mega__pillar-go {
  grid-column: 3;
  grid-row: 1 / span 3;
  display: grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  font-size: 0.8rem;
  color: rgba(29, 29, 31, 0.35);
  background: rgba(29, 29, 31, 0.04);
  transition:
    transform 0.4s var(--mega-spring),
    background 0.3s ease,
    color 0.3s ease;
}

.mega__col.is-focus .mega__pillar-go,
.mega__pillar:hover .mega__pillar-go {
  transform: translateX(2px);
  color: #fff;
}

.mega__col--build.is-focus .mega__pillar-go,
.mega__col--build .mega__pillar:hover .mega__pillar-go {
  background: var(--mega-build);
}

.mega__col--sell.is-focus .mega__pillar-go,
.mega__col--sell .mega__pillar:hover .mega__pillar-go {
  background: var(--mega-sell);
}

.mega__col--scale.is-focus .mega__pillar-go,
.mega__col--scale .mega__pillar:hover .mega__pillar-go {
  background: var(--mega-scale);
}

.mega__list {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0.05rem 0.1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.02rem;
}

.mega__list a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.55rem;
  padding: 0.42rem 0.55rem;
  border-radius: 0.6rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: rgba(29, 29, 31, 0.58);
  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.35s var(--mega-spring),
    box-shadow 0.3s ease;
}

.mega__list a b {
  font-size: 0.58rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  color: rgba(29, 29, 31, 0.28);
  font-variant-numeric: tabular-nums;
  transition: color 0.25s ease;
}

.mega__list a span {
  min-width: 0;
}

.mega__list a i {
  font-style: normal;
  font-size: 0.75rem;
  opacity: 0;
  transform: translateX(-4px);
  color: inherit;
  transition:
    opacity 0.25s ease,
    transform 0.35s var(--mega-spring);
}

.mega__list a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  transform: translateX(2px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset;
}

.mega__list a:hover b {
  color: rgba(29, 29, 31, 0.45);
}

.mega__list a:hover i {
  opacity: 0.55;
  transform: translateX(0);
}

.mega__col--build .mega__list a:hover { box-shadow: inset 3px 0 0 var(--mega-build), 0 1px 0 rgba(255, 255, 255, 0.85) inset; }
.mega__col--sell .mega__list a:hover { box-shadow: inset 3px 0 0 var(--mega-sell), 0 1px 0 rgba(255, 255, 255, 0.85) inset; }
.mega__col--scale .mega__list a:hover { box-shadow: inset 3px 0 0 var(--mega-scale), 0 1px 0 rgba(255, 255, 255, 0.85) inset; }

.mega__foot {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.4rem 1.05rem;
  border-top: 1px solid rgba(29, 29, 31, 0.06);
  background:
    linear-gradient(180deg, rgba(29, 29, 31, 0.012), rgba(29, 29, 31, 0.04));
}

.mega__foot-copy {
  min-width: 0;
}

.mega__foot-copy p {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: rgba(29, 29, 31, 0.5);
  line-height: 1.35;
}

.mega__foot-copy p span {
  display: block;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.1rem;
}

.mega__foot-steps {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.55rem;
}

.mega__foot-steps span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(29, 29, 31, 0.42);
}

.mega__foot-steps span i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(29, 29, 31, 0.28);
}

.mega__foot-steps em {
  width: 1.1rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(29, 29, 31, 0.18), transparent);
  font-style: normal;
}

.mega__foot-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
  padding: 0.58rem 0.7rem 0.58rem 1.05rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 560;
  letter-spacing: -0.015em;
  color: #fff;
  background: linear-gradient(180deg, #2c2c2e 0%, #111 100%);
  border: 1px solid #0e0e0e;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.14) inset,
    0 12px 24px rgba(17, 17, 17, 0.18);
  overflow: hidden;
  transition:
    gap 0.4s var(--mega-spring),
    transform 0.4s var(--mega-spring),
    box-shadow 0.35s ease;
}

.mega__foot-cta-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.18) 48%,
    transparent 66%
  );
  background-size: 220% 100%;
  animation: mega-glint 7s ease-in-out infinite;
  pointer-events: none;
  opacity: 0.7;
}

.mega__foot-go {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  transition: transform 0.4s var(--mega-spring), background 0.3s ease;
}

.mega__foot-cta:hover {
  gap: 0.7rem;
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.16) inset,
    0 16px 32px rgba(17, 17, 17, 0.24);
}

.mega__foot-cta:hover .mega__foot-go {
  transform: translateX(2px);
  background: rgba(255, 255, 255, 0.2);
}

.header.is-mega-open .mega__col,
.mega.is-open .mega__col {
  animation: mega-col-in 0.52s var(--mega-spring) both;
}

.header.is-mega-open .mega__col:nth-child(1),
.mega.is-open .mega__col:nth-child(1) { animation-delay: 0.05s; }
.header.is-mega-open .mega__col:nth-child(2),
.mega.is-open .mega__col:nth-child(2) { animation-delay: 0.11s; }
.header.is-mega-open .mega__col:nth-child(3),
.mega.is-open .mega__col:nth-child(3) { animation-delay: 0.17s; }

.header.is-mega-open .mega__preview,
.mega.is-open .mega__preview,
.header.is-mega-open .mega__head,
.mega.is-open .mega__head,
.header.is-mega-open .mega__foot,
.mega.is-open .mega__foot {
  animation: mega-fade-in 0.45s ease both;
}

.header.is-mega-open .mega__preview,
.mega.is-open .mega__preview { animation-delay: 0.03s; }

.header.is-mega-open .mega__foot,
.mega.is-open .mega__foot { animation-delay: 0.2s; }

@keyframes mega-col-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mega-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes mega-preview-swap {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mega-ring {
  0%, 100% { transform: scale(1); opacity: 0.55; }
  50% { transform: scale(1.08); opacity: 0.2; }
}

@keyframes mega-glint {
  0%, 100% { background-position: 130% 0; }
  45%, 55% { background-position: -30% 0; }
}

@media (prefers-reduced-motion: reduce) {
  .header.is-mega-open .mega__col,
  .mega.is-open .mega__col,
  .header.is-mega-open .mega__head,
  .mega.is-open .mega__head,
  .header.is-mega-open .mega__foot,
  .mega.is-open .mega__foot,
  .header.is-mega-open .mega__preview,
  .mega.is-open .mega__preview,
  .mega__preview.is-swap .mega__preview-copy {
    animation: none;
  }

  .mega__preview-ring,
  .mega__preview-pulse,
  .mega__orb-ring,
  .mega__foot-cta-wash {
    animation: none;
  }

  .mega {
    transition-duration: 0.01ms;
  }
}

@media (max-width: 1180px) {
  .mega {
    width: min(56rem, calc(100vw - 1.75rem));
  }

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

  .mega__preview {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-right: 0;
    border-bottom: 1px solid rgba(29, 29, 31, 0.06);
  }

  .mega__preview-visual {
    width: 3.4rem;
    height: 3.4rem;
    flex-shrink: 0;
  }

  .mega__preview-body,
  .mega__preview-tags {
    display: none;
  }

  .mega__preview-link {
    margin-top: 0;
    margin-left: auto;
    flex-shrink: 0;
  }
}

@media (max-width: 1100px) {
  .mega__head-pills {
    display: none;
  }

  .mega {
    width: min(48rem, calc(100vw - 1.75rem));
  }

  .mega__foot-steps {
    display: none;
  }
}

@media (max-width: 899px) {
  .mega {
    display: none !important;
  }
}

.header__end {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  justify-self: end;
}

.header__here {
  display: none;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  min-width: 0;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(29, 29, 31, 0.45);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(29, 29, 31, 0.07);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.header__here i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 3px rgba(29, 29, 31, 0.08);
  animation: header-dot 2.2s ease-in-out infinite;
}

.header__here span {
  display: inline-block;
  transition: opacity 0.3s ease, transform 0.35s var(--spring);
}

.header__here span.is-swap {
  opacity: 0;
  transform: translateY(4px);
}

.header__divider {
  display: none;
  width: 1px;
  height: 1.35rem;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(29, 29, 31, 0.16),
    transparent
  );
}

.header__ghost {
  display: none;
  align-items: center;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 520;
  letter-spacing: -0.015em;
  color: rgba(29, 29, 31, 0.62);
  background: transparent;
  border: 1px solid transparent;
  transition:
    color 0.3s ease,
    background 0.35s var(--spring),
    border-color 0.3s ease,
    transform 0.35s var(--spring);
}

.header__ghost:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(29, 29, 31, 0.08);
  transform: translateY(-1px);
}

.header__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 0.7rem 0.6rem 1.15rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 560;
  letter-spacing: -0.015em;
  color: #fff;
  background: linear-gradient(180deg, #2c2c2e 0%, #111 100%);
  border: 1px solid #0e0e0e;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.16) inset,
    0 14px 30px rgba(17, 17, 17, 0.2);
  overflow: hidden;
  transition:
    gap 0.4s var(--spring),
    transform 0.4s var(--spring),
    box-shadow 0.4s var(--spring),
    background 0.3s ease;
}

.header__cta-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.2) 48%,
    transparent 66%
  );
  background-size: 220% 100%;
  animation: header-glint 8s ease-in-out infinite;
  pointer-events: none;
  opacity: 0.7;
}

.header__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 140% at 15% 0%, rgba(255, 255, 255, 0.22), transparent 50%);
  pointer-events: none;
}

.header__cta-text,
.header__cta-go {
  position: relative;
  z-index: 1;
}

.header__cta-go {
  display: inline-grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  transition: transform 0.4s var(--spring), background 0.3s ease;
}

.header__cta:hover {
  gap: 0.75rem;
  transform: translateY(-2px);
  background: linear-gradient(180deg, #1a1a1c 0%, #000 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 20px 40px rgba(17, 17, 17, 0.28);
}

.header__cta:hover .header__cta-go {
  transform: translateX(2px) scale(1.05);
  background: rgba(255, 255, 255, 0.22);
}

.header__cta:active {
  transform: translateY(0);
}

.header__cta--block {
  justify-content: center;
  width: 100%;
  margin-top: 1.35rem;
  padding-inline: 1.2rem;
}

.burger {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  border: 1px solid rgba(29, 29, 31, 0.1);
  display: grid;
  place-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 8px 18px rgba(17, 17, 17, 0.06);
  transition:
    transform 0.35s var(--spring),
    background 0.3s ease,
    border-color 0.3s ease;
}

.burger:hover {
  transform: translateY(-1px);
  background: #fff;
  border-color: rgba(29, 29, 31, 0.16);
}

.burger span {
  display: block;
  width: 13px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.35s var(--spring), opacity 0.25s ease;
  transform-origin: center;
}

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

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

.header__rail {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.35rem;
  height: 2px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(29, 29, 31, 0.06);
  opacity: 0;
  z-index: 3;
  transition: opacity 0.4s ease;
}

.header.is-scrolled .header__rail {
  opacity: 1;
}

.header__rail span {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(29, 29, 31, 0.35), var(--ink));
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: grid;
  place-items: end center;
  padding: 1rem;
  padding-top: calc(var(--header-h) + 1.75rem);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: header-fade 0.35s ease both;
}

.mobile-nav__sheet {
  position: relative;
  z-index: 1;
  width: min(100%, 28rem);
  padding: 1.5rem 1.35rem 1.65rem;
  border-radius: 1.6rem;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82));
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 30px 70px rgba(17, 17, 17, 0.2);
  animation: header-sheet 0.5s var(--spring) both;
}

.mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(29, 29, 31, 0.07);
}

.mobile-nav__label,
.mobile-nav__kicker {
  margin: 0;
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mobile-nav__label {
  color: rgba(29, 29, 31, 0.4);
}

.mobile-nav__kicker {
  color: rgba(29, 29, 31, 0.28);
}

.mobile-nav nav {
  display: flex;
  flex-direction: column;
}

.mobile-nav nav a {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  padding: 0.9rem 0.1rem;
  border-bottom: 1px solid rgba(29, 29, 31, 0.07);
  color: var(--ink);
  transition: transform 0.35s var(--spring), opacity 0.3s ease;
}

.mobile-nav nav a b {
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  color: rgba(29, 29, 31, 0.3);
  font-variant-numeric: tabular-nums;
}

.mobile-nav nav a span {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 5.5vw, 1.9rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.mobile-nav nav a:hover {
  transform: translateX(6px);
  opacity: 0.7;
}

/* Mobile Solutions accordion — richer */
.mobile-nav__group {
  border-bottom: 1px solid rgba(29, 29, 31, 0.07);
}

.mobile-nav__toggle {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  width: 100%;
  padding: 0.9rem 0.1rem;
  color: var(--ink);
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}

.mobile-nav__toggle b {
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  color: rgba(29, 29, 31, 0.3);
  font-variant-numeric: tabular-nums;
}

.mobile-nav__toggle span {
  flex: 1;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 5.5vw, 1.9rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.mobile-nav__chev {
  width: 0.55rem;
  height: 0.55rem;
  border-right: 1.5px solid rgba(29, 29, 31, 0.35);
  border-bottom: 1.5px solid rgba(29, 29, 31, 0.35);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.35s var(--spring);
  align-self: center;
}

.mobile-nav__toggle[aria-expanded="true"] .mobile-nav__chev {
  transform: rotate(225deg) translateY(-1px);
}

.mobile-nav__panel {
  padding: 0.25rem 0 1rem 0.15rem;
}

.mobile-nav__panel[hidden] {
  display: none;
}

.mobile-nav__pillar {
  margin-bottom: 0.45rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(29, 29, 31, 0.06);
  overflow: hidden;
}

.mobile-nav__pillar > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 0.9rem;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
}

.mobile-nav__pillar > button em {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-style: normal;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.mobile-nav__pillar > button em i {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  border: 0;
  transform: none;
}

.mobile-nav__pillar--build > button em i {
  background: #1a2744;
  box-shadow: 0 0 0 3px rgba(26, 39, 68, 0.12);
}

.mobile-nav__pillar--sell > button em i {
  background: #ff5c1a;
  box-shadow: 0 0 0 3px rgba(255, 92, 26, 0.15);
}

.mobile-nav__pillar--scale > button em i {
  background: #3d5a80;
  box-shadow: 0 0 0 3px rgba(61, 90, 128, 0.14);
}

.mobile-nav__pillar > button > span {
  width: 0.4rem;
  height: 0.4rem;
  border-right: 1.5px solid rgba(29, 29, 31, 0.3);
  border-bottom: 1.5px solid rgba(29, 29, 31, 0.3);
  transform: rotate(45deg);
  transition: transform 0.3s var(--spring);
}

.mobile-nav__pillar > button[aria-expanded="true"] > span {
  transform: rotate(225deg);
}

.mobile-nav__pillar ul {
  list-style: none;
  margin: 0;
  padding: 0 0.75rem 0.65rem 0.9rem;
}

.mobile-nav__pillar ul[hidden] {
  display: none;
}

.mobile-nav__pillar ul a {
  display: block;
  padding: 0.48rem 0.1rem;
  border-bottom: 1px solid rgba(29, 29, 31, 0.05);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: rgba(29, 29, 31, 0.62);
}

.mobile-nav__pillar ul li:last-child a {
  border-bottom: 0;
}

.mobile-nav__pillar ul a:hover {
  transform: translateX(4px);
  opacity: 1;
  color: var(--ink);
}

.mobile-nav__all {
  display: inline-flex;
  margin: 0.35rem 0 0.15rem 0.9rem;
  padding: 0.45rem 0;
  border-bottom: 0 !important;
  font-family: inherit !important;
  font-size: 0.82rem !important;
  font-weight: 560 !important;
  letter-spacing: -0.01em !important;
  color: rgba(29, 29, 31, 0.55) !important;
}

@keyframes header-in {
  from {
    opacity: 0;
    transform: translateY(-14px);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes header-glint {
  0%, 100% { background-position: 130% 0; }
  45%, 55% { background-position: -30% 0; }
}

@keyframes logo-pulse {
  0% {
    opacity: 0.45;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

@keyframes header-dot {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

@keyframes header-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes header-sheet {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 899px) {
  .mega {
    display: none !important;
  }

  .logo__line {
    display: none;
  }

  .header__panel {
    grid-template-columns: 1fr auto;
    padding: 0.45rem 0.5rem 0.65rem 0.55rem;
  }

  .header__end {
    grid-column: 2;
  }
}

@media (min-width: 1100px) {
  .header__ghost,
  .header__divider {
    display: inline-flex;
  }
}

/* Section chip needs room after Home was added — only on wide shells */
@media (min-width: 1280px) {
  .header__shell {
    width: min(1280px, calc(100% - 2.5rem));
  }

  .header__here {
    display: inline-flex;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: transform 0.35s var(--ease), background 0.3s, color 0.3s, opacity 0.3s;
}

.btn:hover {
  transform: scale(1.03);
}

.btn--pill {
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
}

.btn--pill:hover {
  background: #000;
}

.btn--soft {
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  background: rgba(29, 29, 31, 0.06);
  color: var(--ink);
}

.btn--soft:hover {
  background: rgba(29, 29, 31, 0.1);
}

.btn--light {
  width: 100%;
  padding: 0.9rem 1.25rem;
  border-radius: 980px;
  background: #fff;
  color: var(--ink);
  font-weight: 600;
}

.btn--light:hover {
  opacity: 0.9;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.1rem;
  transition: opacity 0.25s, gap 0.3s var(--ease);
}

.text-link:hover {
  opacity: 0.55;
  gap: 0.65rem;
}

.text-link--light {
  color: #fff;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 1rem;
}

.block-head {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 36rem;
}

.block-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--ink);
}

.block-head--light h2,
.block-head--light .eyebrow {
  color: rgba(255, 255, 255, 0.92);
}

.block-head--light .eyebrow {
  color: rgba(255, 255, 255, 0.45);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Mobile: no scroll-reveal — cards show immediately (avoids lazy-load feel) */
@media (max-width: 719px) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 3.5rem) clamp(1.25rem, 4vw, 2.5rem) 4.25rem;
  background:
    radial-gradient(ellipse 90% 70% at 78% 42%, rgba(255, 255, 255, 0.9), transparent 55%),
    linear-gradient(160deg, #eef1f5 0%, #f5f5f7 45%, #f3f4f6 100%);
  overflow: hidden;
  --hero-mx: 62%;
  --hero-my: 38%;
}

.hero__field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__wash {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.9;
  will-change: transform;
}

.hero__wash--cool {
  width: min(78vw, 820px);
  height: min(78vw, 820px);
  right: -12%;
  top: 0%;
  background: radial-gradient(circle, rgba(26, 39, 68, 0.12), transparent 68%);
  animation: wash-drift 14s ease-in-out infinite alternate;
}

.hero__wash--soft {
  width: min(40vw, 380px);
  height: min(40vw, 380px);
  left: 28%;
  top: 12%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.75), transparent 70%);
  filter: blur(50px);
  animation: wash-drift 16s ease-in-out infinite alternate;
}

@keyframes wash-drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(5%, -4%) scale(1.08); }
}

.hero__beam {
  position: absolute;
  right: 8%;
  top: -20%;
  width: min(42vw, 420px);
  height: 140%;
  background: linear-gradient(
    108deg,
    transparent 0%,
    rgba(255, 255, 255, 0.18) 42%,
    rgba(255, 255, 255, 0.05) 52%,
    transparent 70%
  );
  transform: rotate(-12deg);
  opacity: 0.7;
  animation: beam-sweep 9s ease-in-out infinite alternate;
}

@keyframes beam-sweep {
  from { opacity: 0.4; transform: rotate(-14deg) translateX(-2%); }
  to { opacity: 0.85; transform: rotate(-10deg) translateX(3%); }
}

.hero__vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 75% at 50% 45%, transparent 40%, rgba(26, 39, 68, 0.06) 100%);
}

.hero__grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(26, 39, 68, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 39, 68, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 65% 55% at 72% 48%, #000 15%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 65% 55% at 72% 48%, #000 15%, transparent 72%);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
  align-items: center;
  width: min(1200px, 100%);
  margin-inline: auto;
  padding-inline: clamp(0.25rem, 1.5vw, 0.75rem);
}

.hero__copy {
  padding-right: 0.5rem;
  max-width: 38rem;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 670;
  font-size: clamp(3.9rem, 12vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: -0.052em;
  color: var(--ink);
  margin-bottom: 1.4rem;
  text-wrap: balance;
}

.hero__title span {
  display: block;
  overflow: hidden;
}

.hero__title span > i {
  display: inline-block;
  font-style: normal;
  transform: translateY(110%);
}

.hero__title-accent > i {
  background: linear-gradient(120deg, #1d1d1f 0%, #1a2744 48%, #2c4066 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  max-width: 28rem;
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.52;
  color: var(--mute);
  margin-bottom: 2.25rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
}

/*
  Hero CTAs — craft inspired by react.dev / nodejs.org:
  snappy spring easing, soft elevation, monochrome only
*/
.btn--hero {
  --btn-x: 50%;
  --btn-y: 50%;
  --spring: cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.55rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 550;
  letter-spacing: -0.011em;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 1px 2px rgba(0, 0, 0, 0.06),
    0 8px 24px rgba(0, 0, 0, 0.14);
  transition:
    transform 0.35s var(--spring),
    box-shadow 0.35s var(--spring),
    background-color 0.2s ease;
}

.btn--hero__bg {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #000;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 0;
}

.btn--hero__label {
  position: relative;
  z-index: 2;
}

/* Expanding focus/hover ring — docs-site style */
.btn--hero::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  border: 1.5px solid rgba(29, 29, 31, 0.35);
  opacity: 0;
  transform: scale(0.92);
  transition:
    opacity 0.3s var(--spring),
    transform 0.4s var(--spring);
  z-index: -1;
  pointer-events: none;
}

/* Cursor-tracked highlight */
.btn--hero::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    120px circle at var(--btn-x) var(--btn-y),
    rgba(255, 255, 255, 0.22),
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: soft-light;
}

.btn--hero:hover,
.btn--hero:focus-visible,
.btn.btn--pill.btn--hero:hover {
  transform: translateY(-2px) scale(1);
  background: #000;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 2px 4px rgba(0, 0, 0, 0.08),
    0 14px 36px rgba(0, 0, 0, 0.22);
}

.btn--hero:hover .btn--hero__bg,
.btn--hero:focus-visible .btn--hero__bg {
  opacity: 1;
}

.btn--hero:hover::before,
.btn--hero:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

.btn--hero:hover::after,
.btn--hero:focus-visible::after {
  opacity: 1;
}

.btn--hero:active {
  transform: translateY(0) scale(0.985);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.16);
  transition-duration: 0.1s;
}

.btn--hero:focus-visible {
  outline: none;
}

.btn--hero:focus-visible::before {
  border-color: rgba(29, 29, 31, 0.55);
  box-shadow: 0 0 0 3px rgba(29, 29, 31, 0.12);
}

/* Secondary — ghost pill like react.dev nav / docs links */
.text-link--hero {
  --spring: cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1rem 0.7rem 1.05rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 520;
  letter-spacing: -0.011em;
  color: var(--ink);
  border-bottom: none;
  opacity: 1;
  overflow: hidden;
  transition:
    gap 0.4s var(--spring),
    color 0.2s ease,
    transform 0.35s var(--spring);
}

.text-link--hero__bg {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(29, 29, 31, 0.06);
  opacity: 0;
  transform: scale(0.94);
  transition:
    opacity 0.3s var(--spring),
    transform 0.4s var(--spring),
    background-color 0.25s ease;
  z-index: 0;
  pointer-events: none;
}

.text-link--hero__text,
.text-link--hero__arrow {
  position: relative;
  z-index: 1;
}

.text-link--hero__arrow {
  display: inline-flex;
  font-style: normal;
  font-size: 1.05em;
  line-height: 1;
  transition: transform 0.4s var(--spring);
}

.text-link--hero:hover,
.text-link--hero:focus-visible {
  opacity: 1;
  color: var(--ink);
  gap: 0.7rem;
  transform: none;
  border-bottom-color: transparent;
}

.text-link--hero:hover .text-link--hero__bg,
.text-link--hero:focus-visible .text-link--hero__bg {
  opacity: 1;
  transform: scale(1);
  background: rgba(29, 29, 31, 0.08);
}

.text-link--hero:hover .text-link--hero__arrow,
.text-link--hero:focus-visible .text-link--hero__arrow {
  transform: translateX(4px);
}

.text-link--hero:active .text-link--hero__bg {
  background: rgba(29, 29, 31, 0.12);
}

.text-link--hero:focus-visible {
  outline: none;
}

.text-link--hero:focus-visible .text-link--hero__bg {
  opacity: 1;
  transform: scale(1);
  box-shadow: inset 0 0 0 1.5px rgba(29, 29, 31, 0.2);
}

@media (prefers-reduced-motion: reduce) {
  .btn--hero,
  .text-link--hero,
  .btn--hero::before,
  .btn--hero::after,
  .btn--hero__bg,
  .text-link--hero__bg,
  .text-link--hero__arrow {
    transition: none !important;
  }

  .btn--hero:hover,
  .btn--hero:focus-visible {
    transform: none;
  }
}

.hero__visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 8% 4%;
  border-radius: 50%;
  background:
    radial-gradient(circle at var(--hero-mx) var(--hero-my), rgba(255, 255, 255, 0.9), transparent 42%),
    radial-gradient(circle at 70% 60%, rgba(26, 39, 68, 0.12), transparent 55%);
  filter: blur(28px);
  z-index: 0;
  pointer-events: none;
}

.sculpt {
  position: relative;
  width: min(540px, 96vw);
  aspect-ratio: 1;
  perspective: 760px;
  perspective-origin: 48% 40%;
  z-index: 1;
}

.sculpt__stage {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 4%;
  height: 24%;
  background:
    radial-gradient(ellipse at 50% 35%, rgba(26, 39, 68, 0.22), transparent 68%);
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
  transform: rotateX(72deg) scaleY(0.5);
  transform-origin: center bottom;
}

.sculpt__stage-ring {
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 10%;
  height: 18%;
  border: 1px solid rgba(26, 39, 68, 0.1);
  border-radius: 50%;
  transform: rotateX(76deg);
  z-index: 0;
  pointer-events: none;
  opacity: 0.7;
}

.sculpt__motion {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  will-change: transform;
  transform-origin: center center;
  animation: sculpt-drift 7s ease-in-out infinite;
  z-index: 1;
}

.sculpt__motion.is-live {
  animation: none;
}

.sculpt__motion > * {
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

@keyframes sculpt-drift {
  0%,
  100% {
    transform: rotateY(-26deg) rotateX(14deg) translate3d(-4px, 8px, 0);
  }
  40% {
    transform: rotateY(28deg) rotateX(-16deg) translate3d(8px, -18px, 0);
  }
  70% {
    transform: rotateY(10deg) rotateX(18deg) translate3d(-6px, -4px, 0);
  }
}

.sculpt__atmosphere {
  position: absolute;
  inset: -6%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.85), transparent 36%),
    radial-gradient(circle at 74% 72%, rgba(26, 39, 68, 0.12), transparent 48%);
  transform: translateZ(-90px);
  pointer-events: none;
}

.sculpt__halo {
  position: absolute;
  inset: 2%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.65), rgba(26, 39, 68, 0.1) 52%, transparent 74%);
  filter: blur(24px);
  transform: translateZ(-48px);
  animation: halo-pulse 5.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes halo-pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

.sculpt__shadow {
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 6%;
  height: 14%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.42), transparent 72%);
  filter: blur(16px);
  transform: translateZ(-130px) rotateX(74deg);
  pointer-events: none;
}

.sculpt__ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(29, 29, 31, 0.14);
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.sculpt__ring--outer {
  inset: 0%;
  border-style: dashed;
  border-color: rgba(29, 29, 31, 0.2);
  animation: ring-orbit 16s linear infinite;
}

.sculpt__ring--mid {
  inset: 6%;
  border-width: 1.75px;
  border-color: rgba(26, 39, 68, 0.26);
  animation: ring-orbit-rev 12s linear infinite;
}

.sculpt__ring--inner {
  inset: 12%;
  border-color: rgba(255, 92, 26, 0.22);
  animation: ring-orbit-inner 20s linear infinite;
}

@keyframes ring-orbit {
  from { transform: translateZ(-48px) rotateX(74deg) rotateZ(0deg); }
  to { transform: translateZ(-48px) rotateX(74deg) rotateZ(360deg); }
}

@keyframes ring-orbit-rev {
  from { transform: translateZ(-22px) rotateX(70deg) rotateZ(0deg); }
  to { transform: translateZ(-22px) rotateX(70deg) rotateZ(-360deg); }
}

@keyframes ring-orbit-inner {
  from { transform: translateZ(18px) rotateX(66deg) rotateZ(0deg); }
  to { transform: translateZ(18px) rotateX(66deg) rotateZ(360deg); }
}

.sculpt__arc {
  position: absolute;
  border-radius: 50%;
  border: 2.5px solid transparent;
  pointer-events: none;
}

.sculpt__arc--a {
  inset: 9%;
  border-top-color: rgba(26, 39, 68, 0.48);
  border-right-color: rgba(26, 39, 68, 0.12);
  animation: arc-spin 10s linear infinite;
}

.sculpt__arc--b {
  inset: 16%;
  border-bottom-color: rgba(255, 92, 26, 0.45);
  border-left-color: rgba(44, 64, 102, 0.2);
  animation: arc-spin-rev 8s linear infinite;
}

.sculpt__arc--c {
  inset: 23%;
  border-width: 1.5px;
  border-top-color: rgba(255, 255, 255, 0.55);
  border-left-color: rgba(26, 39, 68, 0.12);
  animation: arc-spin-c 14s linear infinite;
}

@keyframes arc-spin {
  from { transform: translateZ(32px) rotateX(56deg) rotateY(-22deg) rotateZ(0deg); }
  to { transform: translateZ(32px) rotateX(56deg) rotateY(-22deg) rotateZ(360deg); }
}

@keyframes arc-spin-rev {
  from { transform: translateZ(52px) rotateX(60deg) rotateY(18deg) rotateZ(0deg); }
  to { transform: translateZ(52px) rotateX(60deg) rotateY(18deg) rotateZ(-360deg); }
}

@keyframes arc-spin-c {
  from { transform: translateZ(64px) rotateX(50deg) rotateY(-8deg) rotateZ(0deg); }
  to { transform: translateZ(64px) rotateX(50deg) rotateY(-8deg) rotateZ(360deg); }
}

.sculpt__form {
  position: absolute;
  inset: 18%;
  border-radius: 50% 50% 42% 58% / 48% 42% 58% 52%;
  background:
    radial-gradient(circle at var(--sx, 28%) var(--sy, 22%), #ffffff 0%, #f6f6f9 18%, #d2d3dc 48%, #a6a8b4 74%, #858794 100%);
  box-shadow:
    inset -40px -48px 72px rgba(0, 0, 0, 0.22),
    inset 28px 34px 60px rgba(255, 255, 255, 1),
    inset -14px 18px 36px rgba(26, 39, 68, 0.1),
    26px 48px 64px rgba(0, 0, 0, 0.2),
    -14px -18px 36px rgba(255, 255, 255, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.4);
  animation: sculpt-breathe 6s ease-in-out infinite;
  overflow: hidden;
}

@keyframes sculpt-breathe {
  0%, 100% {
    border-radius: 50% 50% 42% 58% / 48% 42% 58% 52%;
    transform: scale3d(1, 1, 1) translateZ(0);
  }
  50% {
    border-radius: 54% 46% 50% 50% / 44% 56% 44% 56%;
    transform: scale3d(1.05, 1.05, 1.05) translateZ(16px);
  }
}

.sculpt__grain,
.trust__grain,
.work__grain,
.stages__grain,
.platforms__grain,
.why__grain,
.diff__grain,
.process__grain,
.industries__grain,
.testimonials__grain,
.insights__grain,
.faq__grain,
.cta__grain,
.footer__grain {
  contain: paint;
  background-size: 160px 160px;
}

.sculpt__grain {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 128 128' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.sculpt__rim {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.5),
    inset -24px -32px 52px rgba(26, 39, 68, 0.14);
  pointer-events: none;
}

.sculpt__shine {
  position: absolute;
  inset: 5% 10% auto 14%;
  height: 38%;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), transparent);
  filter: blur(10px);
  pointer-events: none;
}

.sculpt__specular {
  position: absolute;
  width: 28%;
  height: 22%;
  left: calc(var(--sx, 28%) - 10%);
  top: calc(var(--sy, 22%) - 6%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95), transparent 70%);
  filter: blur(6px);
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.85;
  transition: left 0.35s var(--ease), top 0.35s var(--ease);
}

.sculpt__facet {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  mix-blend-mode: soft-light;
}

.sculpt__facet--a {
  inset: 16% 22% auto 12%;
  height: 44%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), transparent 60%);
  filter: blur(5px);
}

.sculpt__facet--b {
  inset: auto 6% 8% 34%;
  height: 40%;
  background: linear-gradient(320deg, rgba(26, 39, 68, 0.32), transparent 65%);
  filter: blur(8px);
}

.sculpt__occlude {
  position: absolute;
  inset: auto 6% 4% 6%;
  height: 46%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 100%, rgba(0, 0, 0, 0.18), transparent 70%);
  pointer-events: none;
}

.sculpt__core {
  position: absolute;
  left: 39%;
  top: 40%;
  width: 22%;
  height: 22%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 1), rgba(210, 212, 222, 0.92) 42%, rgba(26, 39, 68, 0.22));
  box-shadow:
    inset 5px 7px 16px rgba(0, 0, 0, 0.14),
    inset -4px -5px 12px rgba(255, 255, 255, 0.75),
    0 0 36px rgba(255, 255, 255, 0.5);
  animation: core-glow 4s ease-in-out infinite;
}

@keyframes core-glow {
  0%, 100% { transform: scale(0.88); opacity: 0.5; }
  50% { transform: scale(1.16); opacity: 1; }
}

.sculpt__orb {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.sculpt__orb::before {
  content: "";
  position: absolute;
  inset: -9px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  opacity: 0.55;
  animation: orb-ring 3.2s ease-in-out infinite;
}

.sculpt__orb::after {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.7), transparent 58%);
  pointer-events: none;
}

@keyframes orb-ring {
  0%, 100% { transform: scale(0.86); opacity: 0.18; }
  50% { transform: scale(1.16); opacity: 0.8; }
}

.sculpt__orb span {
  position: relative;
  z-index: 1;
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.sculpt__orb--a {
  width: 66px;
  height: 66px;
  top: 8%;
  right: 6%;
  background:
    radial-gradient(circle at 28% 24%, #a8bddc, #1a2744 58%, #050a12);
  box-shadow:
    0 26px 46px rgba(26, 39, 68, 0.55),
    0 8px 14px rgba(0, 0, 0, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 0.5),
    inset -8px -10px 18px rgba(0, 0, 0, 0.3);
}

.sculpt__orb--b {
  width: 58px;
  height: 58px;
  bottom: 12%;
  left: 4%;
  background:
    radial-gradient(circle at 28% 24%, #ffc898, #ff5c1a 56%, #a02e00);
  box-shadow:
    0 24px 44px rgba(255, 92, 26, 0.52),
    0 8px 14px rgba(0, 0, 0, 0.16),
    inset 0 2px 0 rgba(255, 255, 255, 0.5),
    inset -8px -10px 18px rgba(160, 40, 0, 0.38);
}

.sculpt__orb--c {
  width: 54px;
  height: 54px;
  top: 46%;
  right: 2%;
  background:
    radial-gradient(circle at 28% 24%, #8fa6c4, #1a2744 58%, #050a12);
  box-shadow:
    0 22px 40px rgba(26, 39, 68, 0.56),
    0 6px 12px rgba(0, 0, 0, 0.18),
    inset 0 2px 0 rgba(255, 255, 255, 0.42),
    inset -6px -8px 16px rgba(0, 0, 0, 0.32);
}

.sculpt__node {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 0 3px rgba(29, 29, 31, 0.08),
    0 10px 18px rgba(0, 0, 0, 0.2);
}

.sculpt__node--a {
  top: 26%;
  left: 12%;
  background: #1a2744;
}

.sculpt__node--b {
  top: 14%;
  left: 44%;
  width: 6px;
  height: 6px;
  background: #2c4066;
}

.sculpt__node--c {
  bottom: 24%;
  right: 16%;
  background: #ff5c1a;
}

.sculpt__node--d {
  bottom: 16%;
  left: 34%;
  width: 7px;
  height: 7px;
  background: #2c4066;
}

.sculpt__node--e {
  top: 58%;
  left: 8%;
  width: 5px;
  height: 5px;
  background: rgba(255, 92, 26, 0.85);
  box-shadow: 0 6px 12px rgba(255, 92, 26, 0.35);
}

.scroll-cue {
  display: none;
  position: absolute;
  right: clamp(1rem, 4vw, 2.5rem);
  bottom: 2rem;
  z-index: 2;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  transition: color 0.3s;
}

.scroll-cue:hover {
  color: var(--ink);
}

.scroll-cue span {
  writing-mode: vertical-rl;
}

.scroll-cue i {
  width: 1px;
  height: 48px;
  background: linear-gradient(var(--ink), transparent);
  animation: scroll-line 2s var(--ease) infinite;
}

@keyframes scroll-line {
  0% { transform: scaleY(0); opacity: 0; transform-origin: top; }
  40% { opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; transform-origin: top; }
}

/* ========== MANIFESTO ========== */
.manifesto {
  --spring: cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  padding: clamp(6.5rem, 15vw, 11rem) 0;
  background:
    radial-gradient(ellipse 70% 55% at 8% 12%, rgba(26, 39, 68, 0.055), transparent 58%),
    radial-gradient(ellipse 50% 40% at 92% 78%, rgba(29, 29, 31, 0.035), transparent 60%),
    linear-gradient(185deg, #f3f4f6 0%, #fafafa 34%, #ffffff 100%);
  overflow: hidden;
}

.manifesto__field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.manifesto__wash {
  position: absolute;
  width: min(58vw, 560px);
  height: min(58vw, 560px);
  right: -12%;
  top: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.85), transparent 68%);
  filter: blur(40px);
  animation: manifesto-drift 16s ease-in-out infinite alternate;
}

.manifesto__grid-fade {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(29, 29, 31, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 29, 31, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 75% 60% at 70% 45%, #000 10%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 75% 60% at 70% 45%, #000 10%, transparent 72%);
}

.manifesto__watermark {
  position: absolute;
  right: -2%;
  bottom: 4%;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 12rem);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 0.85;
  color: rgba(29, 29, 31, 0.035);
  user-select: none;
  white-space: nowrap;
  transform: rotate(-6deg);
}

@keyframes manifesto-drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-4%, 3%) scale(1.06); }
}

.manifesto__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(3.25rem, 7vw, 6.5rem);
  align-items: start;
}

.manifesto__intro {
  max-width: 34rem;
}

.manifesto__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 1.65rem;
}

.manifesto__eyebrow::before {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: var(--ink);
  opacity: 0.4;
}

.manifesto__statement {
  font-family: var(--font-display);
  font-weight: 540;
  font-size: clamp(1.8rem, 3.8vw, 2.7rem);
  line-height: 1.18;
  letter-spacing: -0.038em;
  color: var(--ink);
  margin-bottom: 1.85rem;
  text-wrap: pretty;
}

.manifesto__pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1.85rem;
  padding: 0;
  list-style: none;
}

.manifesto__pillars li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem 0.45rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(29, 29, 31, 0.1);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 0.78rem;
  font-weight: 560;
  letter-spacing: 0.04em;
  color: var(--ink);
  box-shadow: 0 6px 18px rgba(17, 17, 17, 0.04);
}

.manifesto__pillars span {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--mute);
  font-variant-numeric: tabular-nums;
}

.manifesto__aside {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--mute);
  max-width: 22rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(29, 29, 31, 0.1);
}

.service-board {
  position: relative;
  border-radius: 1.5rem;
  padding: 0.35rem;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.92), rgba(245, 245, 247, 0.75));
  border: 1px solid rgba(29, 29, 31, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 24px 60px rgba(17, 17, 17, 0.06),
    0 4px 16px rgba(17, 17, 17, 0.03);
  overflow: hidden;
}

.service-board__sheen {
  position: absolute;
  inset: -40% auto auto -20%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9), transparent 65%);
  pointer-events: none;
  opacity: 0.7;
}

.service-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0.4rem 0.55rem;
  list-style: none;
}

.service-list__item {
  position: relative;
  border-radius: 1rem;
  transition: background-color 0.45s var(--spring), box-shadow 0.45s var(--spring);
}

.service-list__item + .service-list__item {
  margin-top: 0.2rem;
}

.service-list__item::before {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  top: 0;
  height: 1px;
  background: rgba(29, 29, 31, 0.08);
  pointer-events: none;
}

.service-list__item:first-child::before {
  display: none;
}

.service-list__item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  bottom: 0.55rem;
  width: 2px;
  border-radius: 2px;
  background: var(--ink);
  transform: scaleY(0);
  transform-origin: center top;
  transition: transform 0.5s var(--spring);
  opacity: 0.85;
}

.service-list__item.is-open::after {
  transform: scaleY(1);
}

.service-list__item:hover {
  background: rgba(29, 29, 31, 0.02);
}

.service-list__item.is-open {
  background: rgba(29, 29, 31, 0.035);
  box-shadow: 0 12px 36px rgba(17, 17, 17, 0.05);
}

.service-list__btn {
  width: 100%;
  display: grid;
  grid-template-columns: 2.6rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem 1.15rem;
  padding: 1.45rem 1rem 1.45rem 1.15rem;
  font: inherit;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: inherit;
  transition: padding 0.4s var(--spring);
}

.service-list__item:hover .service-list__btn,
.service-list__item.is-open .service-list__btn {
  padding-left: 1.35rem;
}

.service-list__index {
  font-variant-numeric: tabular-nums;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(29, 29, 31, 0.34);
  transition: color 0.35s ease, transform 0.4s var(--spring);
  align-self: start;
  padding-top: 0.35rem;
}

.service-list__item:hover .service-list__index,
.service-list__item.is-open .service-list__index {
  color: var(--ink);
  transform: translateY(-1px);
}

.service-list__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  min-width: 0;
}

.service-list__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.034em;
  line-height: 1.12;
  transition: transform 0.4s var(--spring), letter-spacing 0.4s var(--spring);
}

.service-list__item:hover .service-list__title {
  transform: translateX(4px);
}

.service-list__item.is-open .service-list__title {
  letter-spacing: -0.028em;
}

.service-list__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.66rem;
  font-weight: 620;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  opacity: 0;
  transform: translateY(6px);
  max-height: 0;
  overflow: hidden;
  transition:
    opacity 0.4s var(--spring),
    transform 0.45s var(--spring),
    max-height 0.45s var(--spring);
}

.service-list__tag::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink);
  opacity: 0.45;
}

.service-list__item.is-open .service-list__tag {
  opacity: 1;
  transform: none;
  max-height: 1.75rem;
}

.service-list__icon {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(29, 29, 31, 0.12);
  background: rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(17, 17, 17, 0.04);
  transition:
    border-color 0.35s var(--spring),
    background 0.35s var(--spring),
    transform 0.5s var(--spring),
    box-shadow 0.4s var(--spring),
    color 0.3s ease;
}

.service-list__icon::before,
.service-list__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.5s var(--spring), opacity 0.3s ease;
}

.service-list__icon::before {
  width: 10px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}

.service-list__icon::after {
  width: 1.5px;
  height: 10px;
  transform: translate(-50%, -50%);
}

.service-list__item:hover .service-list__icon {
  border-color: rgba(29, 29, 31, 0.28);
  transform: scale(1.05);
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.08);
}

.service-list__btn[aria-expanded="true"] .service-list__icon {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  box-shadow: 0 14px 28px rgba(17, 17, 17, 0.2);
  transform: rotate(135deg) scale(1.02);
}

.service-list__btn[aria-expanded="true"] .service-list__icon::after {
  opacity: 0;
}

.service-list__panel {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.48s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-list__panel.is-open {
  grid-template-rows: 1fr;
}

.service-list__panel-inner {
  min-height: 0;
  overflow: hidden;
  padding: 0.1rem 1.15rem 1.7rem 3.9rem;
  opacity: 0;
  transition: opacity 0.32s ease 0.05s;
}

.service-list__panel.is-open .service-list__panel-inner {
  opacity: 1;
}

.service-list__panel-inner p {
  color: var(--mute);
  margin: 0 0 1.15rem;
  font-size: 1.05rem;
  line-height: 1.62;
  max-width: 32rem;
}

.service-list__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.35rem;
  padding: 0;
  list-style: none;
}

.service-list__meta li {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 560;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  background: rgba(29, 29, 31, 0.05);
  border: 1px solid rgba(29, 29, 31, 0.06);
}

.service-list__link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.92rem;
  font-weight: 560;
  letter-spacing: -0.012em;
  color: var(--ink);
  padding: 0.65rem 1.05rem 0.65rem 1.15rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(29, 29, 31, 0.1);
  box-shadow: 0 6px 16px rgba(17, 17, 17, 0.05);
  transition:
    background 0.35s var(--spring),
    color 0.3s ease,
    gap 0.4s var(--spring),
    box-shadow 0.35s var(--spring),
    border-color 0.3s ease,
    transform 0.35s var(--spring);
}

.service-list__link:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  gap: 0.8rem;
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.18);
  transform: translateY(-1px);
}

.service-list__link-arrow {
  display: inline-block;
  transition: transform 0.4s var(--spring);
}

.service-list__link:hover .service-list__link-arrow {
  transform: translateX(4px);
}

@media (min-width: 900px) {
  .manifesto__intro {
    position: sticky;
    top: calc(var(--header-h) + 2.25rem);
  }

  .manifesto__grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 4.5rem;
  }

  .service-board {
    padding: 0.55rem;
  }
}

/* Mobile: keep smooth height, drop competing motion that reads as a jump */
@media (max-width: 719px) {
  .manifesto__wash {
    animation: none;
    filter: none;
  }

  .service-board {
    contain: layout paint;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.8) inset,
      0 12px 28px rgba(17, 17, 17, 0.05);
  }

  .service-list__panel {
    transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .service-list__panel.is-open {
    transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .service-list__panel-inner {
    transition: opacity 0.24s ease 0.04s;
  }

  .service-list__panel.is-open .service-list__panel-inner {
    opacity: 1;
  }

  .service-list__item {
    transition: background-color 0.28s ease;
  }

  .service-list__item.is-open {
    box-shadow: none;
  }

  .service-list__btn {
    transition: none;
  }

  .service-list__item:hover .service-list__btn,
  .service-list__item.is-open .service-list__btn {
    padding-left: 1.15rem;
  }

  .service-list__item:hover .service-list__title,
  .service-list__item.is-open .service-list__title {
    transform: none;
  }

  .service-list__index,
  .service-list__title,
  .service-list__tag,
  .service-list__icon,
  .service-list__item::after {
    transition-duration: 0.28s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .manifesto__wash {
    animation: none !important;
  }

  .service-list__panel,
  .service-list__panel.is-open,
  .service-list__panel-inner,
  .service-list__item,
  .service-list__btn,
  .service-list__icon,
  .service-list__title,
  .service-list__tag,
  .service-list__item::after,
  .service-list__link {
    transition: none !important;
  }
}

/* ========== TRUST (premium proof stage) ========== */
.trust {
  --spring: cubic-bezier(0.16, 1, 0.3, 1);
  --trust-px: 0;
  --trust-py: 0;
  position: relative;
  padding: clamp(5.25rem, 10vw, 8.5rem) 0;
  background: #c8ceda;
  overflow: hidden;
  isolation: isolate;
}

.trust__field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.trust__base {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 75% at 50% 40%, rgba(255, 255, 255, 0.78) 0%, transparent 58%),
    radial-gradient(ellipse 58% 52% at 8% 12%, rgba(255, 255, 255, 0.95) 0%, transparent 52%),
    radial-gradient(ellipse 52% 50% at 94% 88%, rgba(255, 255, 255, 0.5) 0%, transparent 55%),
    radial-gradient(ellipse 75% 50% at 50% 108%, rgba(26, 39, 68, 0.22) 0%, transparent 62%),
    radial-gradient(ellipse 42% 38% at 82% 8%, rgba(26, 39, 68, 0.14) 0%, transparent 58%),
    radial-gradient(ellipse 36% 40% at 18% 72%, rgba(17, 17, 17, 0.07) 0%, transparent 60%),
    linear-gradient(168deg, #e8ebf2 0%, #cfd5e2 32%, #b8c0d0 58%, #cdd3e0 78%, #e4e8f0 100%);
}

.trust__aurora {
  position: absolute;
  inset: -15% -10%;
  background:
    conic-gradient(
      from 210deg at 50% 48%,
      transparent 0deg,
      rgba(255, 255, 255, 0.45) 40deg,
      transparent 90deg,
      rgba(26, 39, 68, 0.14) 160deg,
      transparent 220deg,
      rgba(255, 255, 255, 0.3) 280deg,
      transparent 360deg
    );
  filter: blur(36px);
  opacity: 0.65;
  mix-blend-mode: soft-light;
  will-change: transform;
}

.trust__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 85% at 50% 48%, transparent 28%, rgba(17, 17, 17, 0.1) 100%),
    linear-gradient(90deg, rgba(26, 39, 68, 0.1) 0%, transparent 16%, transparent 84%, rgba(26, 39, 68, 0.11) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, transparent 28%, transparent 72%, rgba(26, 39, 68, 0.08) 100%);
}

.trust__floor {
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: 6%;
  height: 38%;
  background:
    radial-gradient(ellipse 70% 55% at 50% 100%, rgba(26, 39, 68, 0.16) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 50% 80%, rgba(255, 255, 255, 0.35) 0%, transparent 65%);
  filter: blur(8px);
  opacity: 0.9;
}

.trust__horizon {
  position: absolute;
  left: -8%;
  right: -8%;
  top: 44%;
  height: 48%;
  background:
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(255, 255, 255, 0.42) 22%,
      rgba(255, 255, 255, 0.12) 38%,
      rgba(26, 39, 68, 0.08) 55%,
      transparent 100%
    );
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  will-change: transform, opacity;
}

.trust__beam {
  position: absolute;
  top: -25%;
  width: min(46vw, 460px);
  height: 155%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.55) 32%,
    rgba(255, 255, 255, 0.18) 58%,
    transparent 86%
  );
  filter: blur(32px);
  opacity: 0.6;
  mix-blend-mode: soft-light;
}

.trust__beam--a {
  left: 14%;
  rotate: -20deg;
}

.trust__beam--b {
  right: 8%;
  width: min(32vw, 300px);
  rotate: 16deg;
  opacity: 0.4;
}

.trust__beam--c {
  left: 42%;
  width: min(22vw, 200px);
  rotate: -4deg;
  opacity: 0.28;
  filter: blur(40px);
}

.trust__flare {
  position: absolute;
  width: min(28vw, 240px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.2) 35%, transparent 68%);
  filter: blur(5px);
  mix-blend-mode: soft-light;
  will-change: transform, opacity;
}

.trust__flare--1 {
  left: 8%;
  top: 18%;
  animation-delay: -2s;
}

.trust__flare--2 {
  right: 10%;
  bottom: 20%;
  width: min(20vw, 160px);
  opacity: 0.65;
  animation-delay: -6s;
}

.trust__rings {
  position: absolute;
  left: 50%;
  top: 46%;
  width: min(98vw, 1040px);
  aspect-ratio: 1;
  translate: calc(-50% + var(--trust-px) * 10px) calc(-50% + var(--trust-py) * 8px);
}

.trust__rings i {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(29, 29, 31, 0.12);
  box-shadow:
    inset 0 0 80px rgba(255, 255, 255, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.28);
  will-change: transform;
}

.trust__rings i:nth-child(1) {
  inset: 4%;
  border-color: rgba(29, 29, 31, 0.14);
}

.trust__rings i:nth-child(2) {
  inset: 16%;
  border-color: rgba(26, 39, 68, 0.16);
  opacity: 0.95;
}

.trust__rings i:nth-child(3) {
  inset: 28%;
  border-style: dashed;
  border-color: rgba(29, 29, 31, 0.14);
  opacity: 0.85;
}

.trust__rings i:nth-child(4) {
  inset: 40%;
  border-color: rgba(255, 255, 255, 0.65);
  box-shadow:
    inset 0 0 40px rgba(255, 255, 255, 0.35),
    0 0 48px rgba(255, 255, 255, 0.2);
  opacity: 0.7;
}

.trust__arc {
  position: absolute;
  left: 50%;
  top: 46%;
  width: min(70vw, 720px);
  aspect-ratio: 1;
  translate: calc(-50% + var(--trust-px) * 14px) calc(-50% + var(--trust-py) * 10px);
}

.trust__arc span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: rgba(29, 29, 31, 0.22);
  border-right-color: rgba(26, 39, 68, 0.14);
  mask-image: linear-gradient(135deg, #000 15%, transparent 72%);
  -webkit-mask-image: linear-gradient(135deg, #000 15%, transparent 72%);
  will-change: transform;
}

.trust__wash {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  will-change: transform;
}

.trust__wash--a {
  width: min(68vw, 660px);
  height: min(50vw, 420px);
  left: -14%;
  top: -2%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.25) 52%, transparent 72%);
}

.trust__wash--b {
  width: min(60vw, 580px);
  height: min(46vw, 360px);
  right: -12%;
  bottom: -6%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.75), rgba(26, 39, 68, 0.1) 48%, transparent 72%);
}

.trust__wash--c {
  width: min(48vw, 440px);
  height: min(36vw, 280px);
  left: 50%;
  top: 52%;
  margin-left: calc(min(48vw, 440px) / -2);
  margin-top: calc(min(36vw, 280px) / -2);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6), transparent 70%);
  filter: blur(42px);
}

.trust__wash--d {
  width: min(40vw, 340px);
  height: min(30vw, 240px);
  left: 62%;
  top: 14%;
  background: radial-gradient(circle, rgba(26, 39, 68, 0.14), transparent 70%);
  filter: blur(54px);
  opacity: 0.9;
}

.trust__wash--e {
  width: min(34vw, 280px);
  height: min(26vw, 200px);
  left: 8%;
  bottom: 28%;
  background: radial-gradient(circle, rgba(44, 64, 102, 0.12), transparent 70%);
  filter: blur(46px);
  opacity: 0.8;
}

.trust__ribbon {
  position: absolute;
  left: -20%;
  right: -20%;
  top: 38%;
  height: 28%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.12) 28%,
    rgba(255, 255, 255, 0.4) 48%,
    rgba(255, 255, 255, 0.12) 68%,
    transparent 100%
  );
  filter: blur(16px);
  mix-blend-mode: soft-light;
  opacity: 0.75;
  will-change: transform, opacity;
}

.trust__streak {
  position: absolute;
  inset: -12% -22%;
  background:
    repeating-linear-gradient(
      -28deg,
      transparent 0,
      transparent 42px,
      rgba(29, 29, 31, 0.022) 42px,
      rgba(29, 29, 31, 0.022) 43px
    ),
    repeating-linear-gradient(
      62deg,
      transparent 0,
      transparent 68px,
      rgba(255, 255, 255, 0.04) 68px,
      rgba(255, 255, 255, 0.04) 69px
    );
  mask-image: radial-gradient(ellipse 68% 58% at 50% 48%, #000 8%, transparent 74%);
  -webkit-mask-image: radial-gradient(ellipse 68% 58% at 50% 48%, #000 8%, transparent 74%);
  opacity: 0.8;
}

.trust__mesh {
  position: absolute;
  inset: 0;
  opacity: 0.65;
  background-image:
    linear-gradient(rgba(29, 29, 31, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 29, 31, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 74% 64% at 50% 46%, #000 15%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 74% 64% at 50% 46%, #000 15%, transparent 80%);
  translate: calc(var(--trust-px) * 6px) calc(var(--trust-py) * 4px);
}

.trust__dots {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: radial-gradient(rgba(29, 29, 31, 0.16) 1px, transparent 1.1px);
  background-size: 20px 20px;
  mask-image: radial-gradient(ellipse 62% 52% at 50% 48%, #000 4%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 62% 52% at 50% 48%, #000 4%, transparent 72%);
}

.trust__constellation {
  position: absolute;
  inset: 0;
}

.trust__constellation i {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(29, 29, 31, 0.35);
  box-shadow:
    0 0 0 5px rgba(255, 255, 255, 0.4),
    0 0 22px rgba(255, 255, 255, 0.7);
  will-change: transform, opacity;
}

.trust__constellation i:nth-child(odd) {
  width: 3.5px;
  height: 3.5px;
  opacity: 0.75;
}

.trust__grain {
  position: absolute;
  inset: 0;
  opacity: 0.095;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 128 128' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 140px;
  mix-blend-mode: multiply;
}

.trust__orb {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(29, 29, 31, 0.12);
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.14) 46%, transparent 72%),
    radial-gradient(circle at 70% 75%, rgba(26, 39, 68, 0.16), transparent 55%);
  box-shadow:
    inset 0 0 56px rgba(255, 255, 255, 0.5),
    0 28px 60px -24px rgba(17, 17, 17, 0.28);
  will-change: transform;
}

.trust__orb--1 {
  width: min(28vw, 230px);
  height: min(28vw, 230px);
  left: 3%;
  bottom: 8%;
}

.trust__orb--2 {
  width: min(20vw, 155px);
  height: min(20vw, 155px);
  right: 5%;
  top: 10%;
  opacity: 0.9;
}

.trust__orb--3 {
  width: min(13vw, 96px);
  height: min(13vw, 96px);
  left: 74%;
  bottom: 20%;
  opacity: 0.7;
}

.trust__orb--4 {
  width: min(9vw, 64px);
  height: min(9vw, 64px);
  left: 18%;
  top: 22%;
  opacity: 0.55;
}

.trust__watermark {
  position: absolute;
  left: 50%;
  top: 45%;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(6.5rem, 24vw, 17.5rem);
  letter-spacing: -0.07em;
  line-height: 0.82;
  color: transparent;
  background: linear-gradient(
    185deg,
    rgba(29, 29, 31, 0.12) 0%,
    rgba(26, 39, 68, 0.075) 40%,
    rgba(29, 29, 31, 0.025) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  filter: drop-shadow(0 28px 56px rgba(17, 17, 17, 0.06));
  translate: calc(-50% + var(--trust-px) * 8px) calc(-50% + var(--trust-py) * 6px);
}

.trust__watermark--ghost {
  top: 47%;
  font-size: clamp(7rem, 26vw, 19rem);
  background: linear-gradient(
    200deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  filter: blur(1.5px);
  opacity: 0.55;
  translate: calc(-49.6% + var(--trust-px) * -6px) calc(-49.4% + var(--trust-py) * -4px);
}

.trust__edge {
  position: absolute;
  left: 0;
  right: 0;
  height: clamp(4.5rem, 12vw, 8rem);
  z-index: 2;
}

.trust__edge--top {
  top: 0;
  background: linear-gradient(180deg, rgba(245, 245, 247, 0.92) 0%, rgba(245, 245, 247, 0.35) 45%, transparent 100%);
}

.trust__edge--bot {
  bottom: 0;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
}

.trust > .shell {
  position: relative;
  z-index: 1;
}

.trust__stage {
  position: relative;
  z-index: 1;
  padding: clamp(1.85rem, 4.2vw, 2.9rem) clamp(1.35rem, 3.6vw, 2.65rem)
    clamp(1.35rem, 3vw, 1.85rem);
  border-radius: clamp(1.35rem, 2.8vw, 2rem);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.55) 48%, rgba(255, 255, 255, 0.68) 100%);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 0 0 1px rgba(29, 29, 31, 0.05),
    0 56px 110px -42px rgba(17, 17, 17, 0.34),
    0 28px 52px -24px rgba(26, 39, 68, 0.18),
    0 0 80px -40px rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(28px) saturate(1.3);
  -webkit-backdrop-filter: blur(28px) saturate(1.3);
  overflow: hidden;
}

.trust__stage-glow {
  position: absolute;
  left: 10%;
  right: 10%;
  top: -30%;
  height: 55%;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.75), transparent 70%);
  opacity: 0.9;
}

.trust__stage-sheen {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    112deg,
    transparent 30%,
    rgba(255, 255, 255, 0.55) 48%,
    transparent 66%
  );
  background-size: 240% 100%;
  animation: trust-sheen 11s ease-in-out infinite;
  opacity: 0.5;
  mix-blend-mode: soft-light;
}

.trust__corner {
  position: absolute;
  width: 14px;
  height: 14px;
  pointer-events: none;
  opacity: 0.35;
  z-index: 3;
}

.trust__corner::before,
.trust__corner::after {
  content: "";
  position: absolute;
  background: var(--ink);
}

.trust__corner::before {
  width: 100%;
  height: 1px;
  top: 0;
  left: 0;
}

.trust__corner::after {
  width: 1px;
  height: 100%;
  top: 0;
  left: 0;
}

.trust__corner--tl { top: 1rem; left: 1rem; }
.trust__corner--tr { top: 1rem; right: 1rem; transform: scaleX(-1); }
.trust__corner--bl { bottom: 1rem; left: 1rem; transform: scaleY(-1); }
.trust__corner--br { bottom: 1rem; right: 1rem; transform: scale(-1); }

.trust__bar {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.15rem 1.85rem;
  margin-bottom: clamp(1.5rem, 3.2vw, 2.15rem);
  padding-bottom: clamp(1.2rem, 2.6vw, 1.6rem);
  border-bottom: 1px solid rgba(29, 29, 31, 0.08);
}

.trust__bar-copy {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  max-width: 38rem;
}

.trust__label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(29, 29, 31, 0.42);
}

.trust__label::before {
  content: "";
  width: 1.65rem;
  height: 1px;
  background: linear-gradient(90deg, var(--ink), transparent);
  opacity: 0.55;
}

.trust__note {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  font-weight: 560;
  letter-spacing: -0.032em;
  line-height: 1.22;
  color: rgba(29, 29, 31, 0.68);
}

.trust__note em {
  font-style: normal;
  font-weight: 620;
  color: var(--ink);
}

.trust__bar-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.trust__badge {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(29, 29, 31, 0.48);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.45));
  border: 1px solid rgba(29, 29, 31, 0.09);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 6px 16px rgba(17, 17, 17, 0.04);
}

.trust__badge span {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 650;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.trust__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 550;
  letter-spacing: -0.01em;
  color: var(--ink);
  padding: 0.6rem 1.05rem 0.6rem 1.15rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(29, 29, 31, 0.1);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 10px 26px rgba(17, 17, 17, 0.07);
  transition:
    gap 0.35s var(--spring),
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.35s var(--spring),
    transform 0.35s var(--spring);
}

.trust__link:hover {
  gap: 0.75rem;
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  box-shadow: 0 16px 36px rgba(17, 17, 17, 0.2);
  transform: translateY(-2px);
}

.trust__link-arrow {
  display: inline-block;
  transition: transform 0.35s var(--spring);
}

.trust__link:hover .trust__link-arrow {
  transform: translateX(3px);
}

.trust__well {
  position: relative;
  z-index: 1;
  margin: 0 -0.35rem;
  padding: clamp(1rem, 2.4vw, 1.45rem) 0.35rem;
  border-radius: clamp(0.9rem, 2vw, 1.25rem);
  background:
    linear-gradient(180deg, rgba(29, 29, 31, 0.035), rgba(29, 29, 31, 0.018));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    inset 0 12px 28px rgba(17, 17, 17, 0.035),
    inset 0 -1px 0 rgba(29, 29, 31, 0.04);
  overflow: hidden;
}

.trust__well-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(2.5rem, 8vw, 5rem);
  z-index: 2;
  pointer-events: none;
}

.trust__well-fade--l {
  left: 0;
  background: linear-gradient(90deg, rgba(236, 238, 242, 0.98), transparent);
}

.trust__well-fade--r {
  right: 0;
  background: linear-gradient(270deg, rgba(236, 238, 242, 0.98), transparent);
}

.trust__rail {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.trust__marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  padding: 0.45rem 0;
}

.trust__track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.trust__set {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  flex-shrink: 0;
  gap: 0;
  margin: 0;
  padding: 0 1.75rem 0 0;
  list-style: none;
}

.trust__set > li {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 0.7rem;
  flex-shrink: 0;
  padding: 0.65rem 1.85rem;
  white-space: nowrap;
}

.trust__set > li::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  translate: 50% -50%;
  rotate: 45deg;
  background: linear-gradient(135deg, rgba(29, 29, 31, 0.28), rgba(29, 29, 31, 0.08));
  border-radius: 1px;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.35);
}

.trust__set > li i {
  font-style: normal;
  font-size: 0.6rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  font-variant-numeric: tabular-nums;
  color: rgba(29, 29, 31, 0.3);
  transform: translateY(-0.22em);
  transition: color 0.35s ease;
}

.trust__set > li b {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 4.2vw, 2.85rem);
  letter-spacing: -0.048em;
  line-height: 0.95;
  color: transparent;
  background: linear-gradient(180deg, rgba(29, 29, 31, 0.72) 0%, rgba(29, 29, 31, 0.38) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  transition:
    background 0.4s ease,
    filter 0.4s var(--spring),
    transform 0.4s var(--spring);
}

.trust__set > li:hover b {
  background: linear-gradient(180deg, #1d1d1f 0%, #3a3a3c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 12px 24px rgba(17, 17, 17, 0.12));
  transform: translateY(-2px);
}

.trust__set > li:hover i {
  color: rgba(29, 29, 31, 0.55);
}

.trust__divider {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.45rem 1.25rem 0.25rem;
}

.trust__divider span {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(29, 29, 31, 0.12),
    transparent
  );
}

.trust__divider i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(29, 29, 31, 0.22);
  box-shadow: 0 0 0 4px rgba(29, 29, 31, 0.04);
}

.trust__set--caps {
  gap: 0;
  padding-right: 1rem;
}

.trust__set--caps > li {
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(29, 29, 31, 0.26);
  padding: 0.45rem 1.45rem;
  transition: color 0.3s ease, letter-spacing 0.35s var(--spring);
}

.trust__set--caps > li::after {
  width: 3px;
  height: 3px;
  background: rgba(29, 29, 31, 0.16);
  border-radius: 50%;
  rotate: 0deg;
  box-shadow: none;
}

.trust__set--caps > li:hover {
  color: rgba(29, 29, 31, 0.55);
  letter-spacing: 0.28em;
}

.trust__foot {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1.5rem;
  margin-top: clamp(1.15rem, 2.5vw, 1.55rem);
  padding-top: clamp(1rem, 2.2vw, 1.25rem);
  border-top: 1px solid rgba(29, 29, 31, 0.07);
}

.trust__foot-line {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 520;
  letter-spacing: -0.01em;
  color: rgba(29, 29, 31, 0.5);
}

.trust__foot-meta {
  margin: 0;
  font-size: 0.64rem;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(29, 29, 31, 0.32);
}

@keyframes trust-sheen {
  0%, 100% { background-position: 130% 0; }
  45%, 55% { background-position: -30% 0; }
}

@keyframes trust-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(8px, -28px, 0); }
}

@keyframes trust-wash {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.06); opacity: 0.85; }
}

@keyframes trust-beam {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.72; }
}

@keyframes trust-horizon {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

@keyframes trust-ring {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes trust-aurora {
  0%, 100% { transform: rotate(0deg) scale(1); opacity: 0.5; }
  50% { transform: rotate(18deg) scale(1.08); opacity: 0.7; }
}

@keyframes trust-ribbon {
  0%, 100% { transform: translateX(-4%) skewX(-8deg); opacity: 0.55; }
  50% { transform: translateX(4%) skewX(-8deg); opacity: 0.85; }
}

@keyframes trust-flare {
  0%, 100% { opacity: 0.35; transform: scale(0.92); }
  50% { opacity: 0.85; transform: scale(1.08); }
}

@keyframes trust-twinkle {
  0%, 100% { opacity: 0.25; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.15); }
}

@media (max-width: 640px) {
  .trust__stage {
    padding-inline: 1.1rem;
  }

  .trust__corner {
    display: none;
  }

  .trust__set > li b {
    font-size: clamp(1.45rem, 8vw, 1.9rem);
  }

  .trust__badge {
    display: none;
  }

  .trust__orb {
    opacity: 0.35;
  }

  .trust__orb--3,
  .trust__orb--4,
  .trust__rings,
  .trust__arc,
  .trust__beam--b,
  .trust__beam--c,
  .trust__constellation,
  .trust__flare,
  .trust__ribbon,
  .trust__wash--c,
  .trust__wash--d,
  .trust__wash--e,
  .trust__grain,
  .trust__mesh,
  .trust__dots,
  .trust__streak {
    display: none;
  }

  .trust__wash,
  .trust__horizon,
  .trust__floor,
  .trust__aurora {
    filter: none !important;
    will-change: auto;
  }

  .trust__foot-meta {
    display: none;
  }
}

/* Mobile Trust — drop glass blur / sheen / field paint (biggest lag source) */
@media (max-width: 719px) {
  .trust {
    content-visibility: auto;
    contain-intrinsic-size: 680px;
  }

  .trust__stage {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(255, 255, 255, 0.94);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 1) inset,
      0 0 0 1px rgba(29, 29, 31, 0.06),
      0 18px 40px -24px rgba(17, 17, 17, 0.22);
  }

  .trust__stage-sheen,
  .trust__stage-glow,
  .trust__field,
  .trust__watermark,
  .trust__edge {
    display: none !important;
  }

  .trust__marquee {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .trust__track {
    will-change: auto;
  }

  .trust.has-css-marquee .trust__track--a {
    animation: trust-marquee-a 48s linear infinite;
  }

  .trust.has-css-marquee .trust__track--b {
    animation: trust-marquee-b 58s linear infinite;
  }
}

/* Trust marquee — CSS path (mobile / non-desktopMotion) */
.trust.has-css-marquee .trust__track {
  will-change: transform;
}

.trust.has-css-marquee .trust__track--a {
  animation: trust-marquee-a 42s linear infinite;
}

.trust.has-css-marquee .trust__track--b {
  animation: trust-marquee-b 52s linear infinite;
}

.trust.has-css-marquee .trust__marquee:hover .trust__track,
.trust.has-css-marquee .trust__marquee:active .trust__track,
.trust.has-css-marquee .trust__marquee:focus-within .trust__track {
  animation-play-state: paused;
}

@keyframes trust-marquee-a {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@keyframes trust-marquee-b {
  from { transform: translate3d(-50%, 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}

@media (max-width: 719px) {
  .trust.is-live .trust__rings i,
  .trust.is-live .trust__arc span,
  .trust.is-live .trust__flare,
  .trust.is-live .trust__beam,
  .trust.is-live .trust__ribbon,
  .trust.is-live .trust__constellation i {
    animation: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trust__stage-sheen {
    animation: none;
    opacity: 0.2;
  }
}

/* ========== WORK ========== */
.work {
  --spring: cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  padding: clamp(5.5rem, 10vw, 8.5rem) 0;
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(26, 39, 68, 0.05), transparent 55%),
    radial-gradient(ellipse 55% 45% at 0% 100%, rgba(26, 39, 68, 0.04), transparent 55%),
    var(--bg-soft);
  overflow: hidden;
  isolation: isolate;
}

.work__field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.work__base {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 0% 0%, rgba(255, 255, 255, 0.9), transparent 58%),
    radial-gradient(ellipse 60% 50% at 100% 18%, rgba(26, 39, 68, 0.05), transparent 58%),
    linear-gradient(180deg, #f6f4fa 0%, var(--bg-soft) 45%, #e6e3ee 100%);
}

.work__band {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: min(52vh, 34rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.08) 60%, transparent 100%),
    radial-gradient(ellipse 70% 80% at 72% 28%, rgba(26, 39, 68, 0.04), transparent 68%);
  border-bottom: 1px solid rgba(29, 29, 31, 0.04);
}

.work__bloom {
  position: absolute;
  border-radius: 50%;
  filter: blur(56px);
}

.work__bloom--a {
  width: min(54vw, 500px);
  height: min(40vw, 340px);
  left: -8%;
  top: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95), transparent 72%);
  opacity: 0.9;
}

.work__bloom--b {
  width: min(46vw, 420px);
  height: min(34vw, 300px);
  right: 0;
  top: 4%;
  background: radial-gradient(circle, rgba(26, 39, 68, 0.08), transparent 72%);
  opacity: 0.85;
}

.work__disk {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.75) inset,
    0 32px 64px -36px rgba(17, 17, 17, 0.16);
  filter: blur(0.5px);
}

.work__disk--build {
  left: -6%;
  top: 2%;
  width: min(44vw, 360px);
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.95), transparent 55%),
    linear-gradient(160deg, rgba(232, 238, 248, 0.85) 0%, rgba(210, 222, 240, 0.55) 100%);
  opacity: 0.65;
}

.work__disk--sell {
  right: 16%;
  top: -4%;
  width: min(38vw, 300px);
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.9), transparent 52%),
    linear-gradient(160deg, rgba(240, 240, 246, 0.8) 0%, rgba(222, 222, 232, 0.5) 100%);
  opacity: 0.55;
}

.work__disk--scale {
  right: -8%;
  top: 8%;
  width: min(42vw, 340px);
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.9), transparent 55%),
    linear-gradient(160deg, rgba(236, 232, 246, 0.8) 0%, rgba(220, 214, 238, 0.5) 100%);
  opacity: 0.6;
}

.work__words {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: min(48vh, 32rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.05em;
  padding: 4.5rem 4% 2rem;
  pointer-events: none;
}

.work__words span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(5rem, 16vw, 12rem);
  letter-spacing: -0.075em;
  line-height: 0.78;
  text-transform: uppercase;
  user-select: none;
}

.work__words span:nth-child(1) {
  color: rgba(26, 39, 68, 0.1);
  transform: translateX(-1%);
}

.work__words span:nth-child(2) {
  color: rgba(29, 29, 31, 0.08);
  transform: translateX(8%);
}

.work__words span:nth-child(3) {
  color: rgba(26, 39, 68, 0.09);
  transform: translateX(18%);
}

.work__rule {
  position: absolute;
  left: 6%;
  right: 6%;
  top: min(48vh, 32rem);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(29, 29, 31, 0.08) 10%,
    rgba(29, 29, 31, 0.12) 50%,
    rgba(29, 29, 31, 0.08) 90%,
    transparent
  );
}

.work__rule::before,
.work__rule::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgba(29, 29, 31, 0.14);
  transform: translateY(-50%);
  box-shadow: 0 0 0 6px rgba(29, 29, 31, 0.03);
}

.work__rule::before { left: 18%; }
.work__rule::after { right: 18%; }

.work__grain {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 128 128' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
  mix-blend-mode: multiply;
}

.work__edge {
  position: absolute;
  left: 0;
  right: 0;
  height: clamp(3.5rem, 9vw, 6rem);
  z-index: 2;
}

.work__edge--top {
  top: 0;
  background: linear-gradient(180deg, rgba(243, 241, 248, 0.9), transparent);
}

.work__edge--bot {
  bottom: 0;
  background: linear-gradient(0deg, rgba(224, 221, 233, 0.92), transparent);
}

@media (max-width: 719px) {
  .work__words {
    height: min(28vh, 16rem);
    padding-top: 3.5rem;
    opacity: 0.35;
  }

  .work__words span {
    font-size: clamp(2.75rem, 16vw, 4.5rem);
  }

  .work__words span:nth-child(2) {
    transform: translateX(4%);
  }

  .work__words span:nth-child(3) {
    transform: translateX(10%);
  }

  .work__disk,
  .work__bloom,
  .work__grain,
  .work__band {
    display: none;
  }

  .work__rule {
    top: min(28vh, 16rem);
  }

  .work.is-static .feature-dark__beam,
  .work.is-static .feature-dark__sheen,
  .work.is-static .feature-dark__grid,
  .work.is-static .feature-dark__noise,
  .work.is-static .feature-dark__watermark--ghost,
  .work.is-static .feature-dark__orbit,
  .work.is-static .feature-dark__arc,
  .work.is-static .feature-dark__node,
  .work.is-static .feature-dark__glow,
  .work.is-static .feature-dark__chip {
    display: none !important;
  }

  .work.is-static .feature-dark__watermark {
    opacity: 0.06;
  }

  .feature-dark {
    padding: 1.35rem 1.2rem 1.5rem;
  }

  .feature-dark h3 {
    font-size: clamp(1.55rem, 6.5vw, 2rem);
  }

  .feature-dark__copy > p:not(.feature-dark__cat) {
    font-size: 0.98rem;
  }

  .feature-dark__stats {
    gap: 0.65rem;
  }

  .feature-dark__stat {
    padding: 0.85rem 0.9rem;
  }

  .work-case__spin,
  .work-case__spin--inner,
  .work-case__orb {
    animation: none !important;
  }

  .work-case__mesh,
  .work-case__shine {
    display: none;
  }
}

.work > .shell {
  position: relative;
  z-index: 1;
}

.work__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem 2.5rem;
  margin-bottom: clamp(2.25rem, 4.5vw, 3.25rem);
}

.work__head .eyebrow {
  margin-bottom: 0.7rem;
}

.work__head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.55rem, 5.4vw, 4rem);
  letter-spacing: -0.045em;
  line-height: 1;
  color: var(--ink);
  max-width: 13ch;
  margin: 0 0 0.85rem;
}

.work__head h2 em {
  font-style: normal;
  background: linear-gradient(180deg, #1d1d1f 0%, #4a5568 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.work__head-lead {
  margin: 0;
  max-width: 34rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--mute);
}

.work__head-aside {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
}

.work__head-meter {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 22px;
  padding: 0 0.15rem;
}

.work__head-meter span {
  width: 3px;
  border-radius: 99px;
  background: rgba(29, 29, 31, 0.2);
}

.work__head-meter span:nth-child(1) { height: 40%; }
.work__head-meter span:nth-child(2) { height: 70%; background: rgba(26, 39, 68, 0.35); }
.work__head-meter span:nth-child(3) { height: 100%; background: var(--ink); }

.work__head-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(29, 29, 31, 0.12);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 550;
  letter-spacing: -0.01em;
  text-decoration: none;
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 28px -22px rgba(17, 17, 17, 0.35);
  transition:
    background 0.35s var(--spring),
    border-color 0.35s ease,
    transform 0.35s var(--spring),
    box-shadow 0.35s ease;
}

.work__head-link:hover {
  background: #fff;
  border-color: rgba(29, 29, 31, 0.22);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -20px rgba(17, 17, 17, 0.4);
}

.work__head-link span:last-child {
  transition: transform 0.35s var(--spring);
}

.work__head-link:hover span:last-child {
  transform: translateX(3px);
}

/* Feature panel */
.feature-dark {
  --mx: 72%;
  --my: 38%;
  position: relative;
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  align-items: center;
  min-height: min(520px, 88vw);
  margin-bottom: clamp(2.75rem, 5.5vw, 4rem);
  padding: clamp(2.1rem, 5vw, 3.9rem);
  border-radius: clamp(1.5rem, 3vw, 2.15rem);
  color: #fff;
  background:
    radial-gradient(720px circle at var(--mx) var(--my), rgba(90, 110, 150, 0.12), transparent 58%),
    radial-gradient(ellipse 60% 55% at 92% 85%, rgba(26, 39, 68, 0.55), transparent 55%),
    radial-gradient(ellipse 45% 40% at 8% 10%, rgba(255, 255, 255, 0.06), transparent 50%),
    linear-gradient(150deg, #1c1c22 0%, #101014 45%, #070709 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 60px 120px -50px rgba(0, 0, 0, 0.72),
    0 28px 50px -28px rgba(26, 39, 68, 0.4);
  overflow: hidden;
}

.feature-dark__atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.feature-dark__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 65% at 18% 28%, rgba(255, 255, 255, 0.06), transparent 55%),
    linear-gradient(90deg, transparent 55%, rgba(0, 0, 0, 0.3) 100%);
}

.feature-dark__floor {
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: 0;
  height: 42%;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(44, 64, 102, 0.35), transparent 70%);
  filter: blur(10px);
}

.feature-dark__beam {
  position: absolute;
  top: -35%;
  width: min(34vw, 260px);
  height: 170%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  filter: blur(26px);
  will-change: opacity, transform;
}

.feature-dark__beam--a {
  right: 10%;
  rotate: -18deg;
  opacity: 0.65;
}

.feature-dark__beam--b {
  right: 28%;
  width: min(18vw, 140px);
  rotate: 12deg;
  opacity: 0.3;
}

.feature-dark__sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    112deg,
    transparent 28%,
    rgba(255, 255, 255, 0.08) 48%,
    transparent 66%
  );
  background-size: 220% 100%;
  opacity: 0.55;
  mix-blend-mode: soft-light;
  will-change: background-position;
}

.feature-dark__grid {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 62% 72% at 78% 48%, #000 8%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 62% 72% at 78% 48%, #000 8%, transparent 78%);
}

.feature-dark__noise {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 128 128' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 130px;
  mix-blend-mode: overlay;
}

.feature-dark__watermark {
  position: absolute;
  right: -1%;
  bottom: -10%;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(6rem, 18vw, 12.5rem);
  letter-spacing: -0.07em;
  line-height: 0.8;
  color: transparent;
  background: linear-gradient(185deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  user-select: none;
}

.feature-dark__watermark--ghost {
  right: 1%;
  bottom: -8%;
  font-size: clamp(6.5rem, 19vw, 13.5rem);
  background: linear-gradient(200deg, rgba(255, 255, 255, 0.06), transparent);
  -webkit-background-clip: text;
  background-clip: text;
  filter: blur(2px);
  opacity: 0.7;
}

.feature-dark__corner {
  position: absolute;
  width: 14px;
  height: 14px;
  z-index: 2;
  opacity: 0.4;
  pointer-events: none;
}

.feature-dark__corner::before,
.feature-dark__corner::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.55);
}

.feature-dark__corner::before { width: 100%; height: 1px; top: 0; left: 0; }
.feature-dark__corner::after { width: 1px; height: 100%; top: 0; left: 0; }
.feature-dark__corner--tl { top: 1.15rem; left: 1.15rem; }
.feature-dark__corner--tr { top: 1.15rem; right: 1.15rem; transform: scaleX(-1); }
.feature-dark__corner--bl { bottom: 1.15rem; left: 1.15rem; transform: scaleY(-1); }
.feature-dark__corner--br { bottom: 1.15rem; right: 1.15rem; transform: scale(-1); }

.feature-dark__copy,
.feature-dark__visual {
  position: relative;
  z-index: 1;
}

.feature-dark__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.feature-dark__cat {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.feature-dark__cat i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.08);
}

.feature-dark__index {
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.35);
}

.feature-dark h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 3.55rem);
  line-height: 1;
  letter-spacing: -0.042em;
  margin: 0 0 1.05rem;
  max-width: 12ch;
}

.feature-dark h3 span {
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.55) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.feature-dark__copy > p:not(.feature-dark__cat) {
  color: rgba(255, 255, 255, 0.62);
  max-width: 30rem;
  margin: 0 0 1.35rem;
  font-size: 1.05rem;
  line-height: 1.55;
}

.feature-dark__phases {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.feature-dark__phases li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.feature-dark__phases b {
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
}

.feature-dark__phases span {
  font-size: 0.75rem;
  font-weight: 550;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.7);
}

.feature-dark__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0 0 1.9rem;
}

.feature-dark__stat {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  padding: 1.05rem 1rem 1rem;
  border-radius: 1.1rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 16px 32px -24px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.feature-dark__stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), transparent);
  opacity: 0.7;
}

.feature-dark__stat em {
  font-style: normal;
  font-size: 0.58rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.28);
}

.feature-dark__stat b {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.feature-dark__stat span {
  font-size: 0.76rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.42);
}

.feature-dark__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.feature-dark__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  text-decoration: none;
  box-shadow: 0 10px 24px -18px rgba(255, 255, 255, 0.3);
  transition: transform 0.35s var(--spring), box-shadow 0.35s ease;
}

.feature-dark__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -18px rgba(255, 255, 255, 0.28);
}

.feature-dark__cta span:last-child {
  transition: transform 0.35s var(--spring);
}

.feature-dark__cta:hover span:last-child {
  transform: translateX(3px);
}

.feature-dark__meta {
  margin: 0;
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
}

.feature-dark__visual {
  display: none;
  position: relative;
  min-height: 340px;
}

.feature-dark__stage {
  position: absolute;
  inset: 4% 2%;
  isolation: isolate;
}

.feature-dark__glow {
  position: absolute;
  width: 72%;
  height: 72%;
  right: 4%;
  bottom: 6%;
  background: radial-gradient(circle, rgba(90, 110, 160, 0.5), transparent 68%);
  filter: blur(30px);
  will-change: transform, opacity;
}

.feature-dark__orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  translate: -50% -50%;
  will-change: transform;
}

.feature-dark__orbit--outer {
  width: min(96%, 360px);
  aspect-ratio: 1;
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.28);
  opacity: 0.85;
  animation: work-spin 18s linear infinite;
}

.feature-dark__orbit--mid {
  width: min(74%, 275px);
  aspect-ratio: 1;
  border-color: rgba(255, 255, 255, 0.32);
  animation: work-spin-rev 14s linear infinite;
}

.feature-dark__orbit--inner {
  width: min(48%, 175px);
  aspect-ratio: 1;
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: inset 0 0 48px rgba(255, 255, 255, 0.06);
  animation: work-spin 11s linear infinite;
}

.feature-dark__arc {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(84%, 310px);
  aspect-ratio: 1;
  translate: -50% -50%;
}

.feature-dark__arc span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: rgba(255, 255, 255, 0.5);
  border-right-color: rgba(255, 255, 255, 0.18);
  mask-image: linear-gradient(140deg, #000 18%, transparent 70%);
  -webkit-mask-image: linear-gradient(140deg, #000 18%, transparent 70%);
  will-change: transform;
  animation: work-spin-rev 9s linear infinite;
}

.feature-dark__shape {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(56%, 210px);
  aspect-ratio: 1;
  translate: -50% -50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.22), transparent 42%),
    radial-gradient(circle at 72% 72%, rgba(26, 39, 68, 0.65), transparent 55%),
    linear-gradient(145deg, #34343c, #121218);
  border-radius: 42% 58% 55% 45% / 48% 42% 58% 52%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 -40px 80px rgba(26, 39, 68, 0.3),
    0 34px 70px -30px rgba(0, 0, 0, 0.65);
  overflow: hidden;
  will-change: transform;
  animation: work-shape-breathe 6s ease-in-out infinite;
}

.feature-dark__shape i {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.5;
}

.feature-dark__shape i:nth-child(1) { inset: 12%; }
.feature-dark__shape i:nth-child(2) { inset: 24%; opacity: 0.35; }
.feature-dark__shape i:nth-child(3) {
  inset: 36%;
  background: radial-gradient(circle at 40% 35%, rgba(255, 255, 255, 0.15), transparent 60%);
  opacity: 0.8;
}

.feature-dark__node {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.08), 0 0 22px rgba(255, 255, 255, 0.3);
  will-change: transform, opacity;
}

.feature-dark__node--a { left: 14%; top: 26%; }
.feature-dark__node--b { right: 12%; top: 32%; width: 7px; height: 7px; }
.feature-dark__node--c { left: 30%; bottom: 16%; width: 6px; height: 6px; opacity: 0.7; }
.feature-dark__node--d { right: 28%; bottom: 28%; width: 5px; height: 5px; opacity: 0.55; }

.feature-dark__chip {
  position: absolute;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.6rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
}

.feature-dark__chip--a { left: 10%; bottom: 24%; }
.feature-dark__chip--b { right: 8%; top: 22%; opacity: 0.75; }


.work__rail-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  margin-bottom: 1.5rem;
  padding: 0 0.15rem;
}

.work__rail-label {
  margin: 0 0 0.35rem;
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(29, 29, 31, 0.45);
}

.work__rail-sub {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.work__rail-note {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(29, 29, 31, 0.4);
}

.work__split {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 1.65rem);
  grid-template-columns: 1fr;
}

.work-case {
  --mx: 70%;
  --my: 35%;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  text-decoration: none;
  color: inherit;
  border-radius: 1.55rem;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.55) 100%);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 0 0 1px rgba(29, 29, 31, 0.04),
    0 24px 48px -32px rgba(17, 17, 17, 0.22);
  overflow: hidden;
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  transition:
    transform 0.55s var(--spring),
    box-shadow 0.55s ease,
    border-color 0.4s ease;
}

.work-case::before {
  content: "";
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 0;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, rgba(29, 29, 31, 0.18), transparent);
  transform: scaleX(0.2);
  transform-origin: left center;
  opacity: 0;
  transition: transform 0.55s var(--spring), opacity 0.4s ease;
  z-index: 4;
}

.work-case:hover,
.work-case:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 0 0 1px rgba(29, 29, 31, 0.05),
    0 28px 56px -30px rgba(17, 17, 17, 0.2),
    0 12px 36px -20px rgba(26, 39, 68, 0.12);
}

.work-case:hover::before,
.work-case:focus-visible::before {
  transform: scaleX(1);
  opacity: 1;
}

.work-case:focus-visible {
  outline: 2px solid rgba(29, 29, 31, 0.35);
  outline-offset: 3px;
}

.work-case__media {
  position: relative;
  aspect-ratio: 16 / 11;
  margin: 0.7rem 0.7rem 0;
  border-radius: 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(29, 29, 31, 0.06);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.55) inset;
}

.work-case__media--a {
  background:
    radial-gradient(420px circle at var(--mx) var(--my), rgba(255, 255, 255, 0.55), transparent 55%),
    radial-gradient(ellipse 55% 50% at 72% 28%, rgba(255, 255, 255, 0.8), transparent 58%),
    linear-gradient(160deg, rgba(26, 39, 68, 0.16), transparent 52%),
    linear-gradient(40deg, #c2d0e6, #f0f3f8 55%, #d5e0ef);
}

.work-case__media--b {
  background:
    radial-gradient(420px circle at var(--mx) var(--my), rgba(255, 255, 255, 0.45), transparent 55%),
    radial-gradient(ellipse 50% 45% at 30% 70%, rgba(255, 255, 255, 0.55), transparent 55%),
    linear-gradient(200deg, rgba(29, 29, 31, 0.08), transparent),
    linear-gradient(125deg, #e6e8ed, #f5f6f8 52%, #d4d8e0);
}

.work-case__media--c {
  background:
    radial-gradient(420px circle at var(--mx) var(--my), rgba(255, 255, 255, 0.5), transparent 55%),
    radial-gradient(ellipse 55% 50% at 65% 22%, rgba(255, 255, 255, 0.7), transparent 58%),
    linear-gradient(200deg, rgba(26, 39, 68, 0.14), transparent 55%),
    linear-gradient(40deg, #ccd8ea, #f2f4f8 58%, #c4d2e6);
}

.work-case__spot {
  position: absolute;
  inset: 0;
  background: radial-gradient(280px circle at var(--mx) var(--my), rgba(255, 255, 255, 0.28), transparent 60%);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
  z-index: 1;
}

.work-case:hover .work-case__spot,
.work-case:focus-visible .work-case__spot {
  opacity: 1;
}

.work-case__glow {
  position: absolute;
  width: 58%;
  height: 58%;
  right: 4%;
  top: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.55), transparent 70%);
  filter: blur(18px);
  will-change: transform, opacity;
}

.work-case__mesh {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(29, 29, 31, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 29, 31, 0.055) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 70% 65% at 60% 40%, #000 10%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 65% at 60% 40%, #000 10%, transparent 75%);
}

.work-case__spin {
  position: absolute;
  left: 50%;
  top: 52%;
  width: 58%;
  aspect-ratio: 1;
  translate: -50% -50%;
  border-radius: 50%;
  border: 1.5px dashed rgba(29, 29, 31, 0.2);
  border-top-color: rgba(29, 29, 31, 0.45);
  border-right-color: rgba(26, 39, 68, 0.25);
  opacity: 0.8;
  z-index: 1;
}

.work-case__spin--inner {
  width: 34%;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(29, 29, 31, 0.1);
  border-bottom-color: rgba(29, 29, 31, 0.35);
  opacity: 0.65;
}

.work-case__slab {
  position: absolute;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.1));
  box-shadow: 0 16px 32px -20px rgba(17, 17, 17, 0.28);
  z-index: 1;
  backdrop-filter: blur(6px);
}

.work-case__slab--1 {
  width: 40%;
  height: 36%;
  left: 14%;
  top: 28%;
  rotate: -8deg;
}

.work-case__slab--2 {
  width: 32%;
  height: 28%;
  right: 15%;
  bottom: 18%;
  rotate: 10deg;
  opacity: 0.8;
}

.work-case__media--b .work-case__slab {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(29, 29, 31, 0.03));
  border-color: rgba(29, 29, 31, 0.08);
}

.work-case__media--a .work-case__slab--1 { left: 12%; top: 24%; }
.work-case__media--b .work-case__slab--1 { left: 22%; top: 32%; rotate: 6deg; width: 46%; }
.work-case__media--c .work-case__slab--1 { left: 18%; top: 20%; rotate: -14deg; }

.work-case__line {
  position: absolute;
  left: 18%;
  right: 18%;
  top: 58%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(29, 29, 31, 0.14), transparent);
  z-index: 1;
  opacity: 0.7;
}

.work-case__frame {
  position: absolute;
  inset: 10px;
  border-radius: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: inset 0 0 0 1px rgba(29, 29, 31, 0.03);
  opacity: 0.5;
  z-index: 1;
}

.work-case__mark {
  position: absolute;
  left: 1rem;
  top: 1rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  color: rgba(29, 29, 31, 0.4);
  z-index: 2;
}

.work-case__tag {
  position: absolute;
  right: 0.95rem;
  top: 0.95rem;
  z-index: 2;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  background: rgba(255, 255, 255, 0.62);
  font-size: 0.58rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(29, 29, 31, 0.55);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 18px -14px rgba(17, 17, 17, 0.25);
}

.work-case__orb {
  position: absolute;
  width: 24%;
  aspect-ratio: 1;
  right: 17%;
  bottom: 18%;
  border-radius: 50%;
  border: 1px solid rgba(29, 29, 31, 0.1);
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.9), transparent 55%),
    rgba(255, 255, 255, 0.28);
  box-shadow:
    inset 0 0 28px rgba(255, 255, 255, 0.45),
    0 14px 28px -16px rgba(17, 17, 17, 0.25);
  z-index: 2;
}

.work-case__media--b .work-case__orb {
  left: 18%;
  right: auto;
  bottom: 22%;
}

.work-case__media--c .work-case__orb {
  right: 22%;
  bottom: 26%;
  width: 20%;
}

.work-case__shine {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
    115deg,
    transparent 36%,
    rgba(255, 255, 255, 0.12) 48%,
    transparent 60%
  );
  transform: translateX(-120%);
  transition: transform 1.15s var(--spring);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.work-case:hover .work-case__shine,
.work-case:focus-visible .work-case__shine {
  transform: translateX(120%);
}

.work-case__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem 1.25rem 1.3rem;
}

.work-case__cat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
}

.work-case__cat {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(29, 29, 31, 0.45);
}

.work-case__cat i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(29, 29, 31, 0.35);
  box-shadow: 0 0 0 3px rgba(29, 29, 31, 0.05);
}

.work-case__phase {
  font-size: 0.66rem;
  font-weight: 550;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(29, 29, 31, 0.32);
}

.work-case h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.1vw, 1.55rem);
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 0.5rem;
  line-height: 1.15;
  transition: letter-spacing 0.35s var(--spring);
}

.work-case:hover h3,
.work-case:focus-visible h3 {
  letter-spacing: -0.035em;
}

.work-case__body > p {
  color: var(--mute);
  margin: 0 0 1rem;
  max-width: 32rem;
  font-size: 0.94rem;
  line-height: 1.5;
  flex: 1;
}

.work-case__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
}

.work-case__chips li {
  padding: 0.32rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  background: rgba(29, 29, 31, 0.03);
  font-size: 0.72rem;
  font-weight: 550;
  letter-spacing: -0.01em;
  color: rgba(29, 29, 31, 0.55);
}

.work-case__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(29, 29, 31, 0.07);
  margin-top: auto;
}

.work-case__result {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 520;
  color: rgba(29, 29, 31, 0.5);
  letter-spacing: -0.01em;
}

.work-case__result b {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.work-case__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.work-case__cta span {
  display: inline-block;
  transition: transform 0.35s var(--spring);
}

.work-case:hover .work-case__cta span,
.work-case:focus-visible .work-case__cta span {
  transform: translateX(4px);
}

@media (min-width: 720px) {
  .feature-dark__visual {
    display: block;
    min-height: 280px;
  }

  .feature-dark {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

@media (min-width: 900px) {
  .work__head {
    grid-template-columns: 1.3fr 0.7fr;
    align-items: end;
  }

  .work__head-aside {
    justify-content: flex-end;
  }

  .feature-dark__visual {
    min-height: 360px;
  }
}

@media (max-width: 720px) {
  .feature-dark__stats {
    grid-template-columns: 1fr 1fr;
  }

  .feature-dark__stat:last-child {
    display: none;
  }

  .work__head h2 {
    max-width: none;
  }

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

  .feature-dark__corner {
    display: none;
  }
}

@media (max-width: 520px) {
  .feature-dark__watermark,
  .feature-dark__watermark--ghost {
    opacity: 0.55;
    font-size: 4.75rem;
  }

  .feature-dark__phases {
    display: none;
  }

  .work-case__orb {
    width: 32%;
  }

  .work-case__slab--2 {
    display: none;
  }

  .work-case__body {
    padding: 1.1rem 1.05rem 1.15rem;
  }

  .work-case__chips {
    display: none;
  }
}

@keyframes work-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes work-spin-rev {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

@keyframes work-orb-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-10px, -18px, 0); }
}

@keyframes work-slab-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -14px, 0); }
}

@keyframes work-shape-breathe {
  0%, 100% { transform: rotate(-16deg) scale(1); }
  50% { transform: rotate(-6deg) scale(1.06); }
}

/* ========== STAGES — Build / Sell / Scale scroll ========== */
.stages {
  --spring: cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  background: #f4f4f6;
  height: 400vh;
}

.stages__pin {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 58% 52% at 16% 40%, rgba(255, 255, 255, 0.98), transparent 62%),
    radial-gradient(ellipse 48% 48% at 90% 72%, rgba(255, 255, 255, 0.6), transparent 55%),
    radial-gradient(ellipse 40% 35% at 55% 20%, rgba(26, 39, 68, 0.035), transparent 60%),
    linear-gradient(180deg, #fbfbfc 0%, #f2f2f5 50%, #ececf0 100%);
}

.stages__atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.stages__wash {
  position: absolute;
  border-radius: 50%;
  filter: blur(56px);
}

.stages__wash--a {
  width: min(52vw, 500px);
  height: min(52vw, 500px);
  left: 6%;
  top: 26%;
  background: radial-gradient(circle, rgba(26, 39, 68, 0.09), transparent 70%);
}

.stages__wash--b {
  width: min(44vw, 400px);
  height: min(44vw, 400px);
  right: 4%;
  bottom: 8%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.85), transparent 70%);
}

.stages__wash--c {
  width: min(30vw, 280px);
  height: min(30vw, 280px);
  left: 48%;
  top: 12%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.55), transparent 70%);
  filter: blur(40px);
}

.stages__mesh {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(29, 29, 31, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 29, 31, 0.028) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 68% 58% at 38% 48%, #000 12%, transparent 74%);
  -webkit-mask-image: radial-gradient(ellipse 68% 58% at 38% 48%, #000 12%, transparent 74%);
}

.stages__grain {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 128 128' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
  mix-blend-mode: multiply;
}

.stages__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 85% 75% at 50% 50%, transparent 45%, rgba(17, 17, 17, 0.045) 100%);
}

.stages__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: min(720px, 88svh);
  display: grid;
  align-items: center;
}

.stages__chrome {
  position: absolute;
  top: clamp(1.35rem, 3.5vw, 2.25rem);
  left: clamp(1rem, 4vw, 2.5rem);
  right: clamp(1rem, 4vw, 2.5rem);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  pointer-events: none;
}

.stages__label {
  margin-bottom: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.stages__label::before {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: var(--ink);
  opacity: 0.4;
}

.stages__phase {
  margin: 0;
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(29, 29, 31, 0.38);
  font-variant-numeric: tabular-nums;
  transition:
    color 0.45s var(--spring),
    opacity 0.35s ease,
    transform 0.45s var(--spring);
}

.stages__phase.is-swap {
  opacity: 0;
  transform: translateY(6px);
}

.stages__phase.is-in {
  animation: stages-phase-in 0.45s var(--spring) both;
}

.stages__stage {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  justify-items: center;
  gap: 2rem;
  padding: 5rem clamp(1rem, 4vw, 2.5rem) 4.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1;
  will-change: opacity, transform;
  transform-origin: center center;
}

.stages__stage.is-active {
  pointer-events: auto;
  z-index: 3;
}

.stages__stage.is-active .stages__float {
  animation: stages-float 5.5s ease-in-out infinite;
}

.stages__stage.is-active .stages__spark {
  animation: stages-spark 3.8s ease-in-out infinite;
}

.stages__stage.is-active .stages__spark--b { animation-delay: 0.6s; }
.stages__stage.is-active .stages__spark--c { animation-delay: 1.2s; }

/* One-shot entrance when a stage becomes current */
.stages__stage.is-entered .stages__float {
  animation:
    stages-visual-in 1s var(--spring) both,
    stages-float 5.5s ease-in-out 1s infinite;
}

.stages__stage.is-entered .stages__pulse {
  animation: stages-pulse 1.15s var(--spring) both;
}

.stages__stage.is-entered .stages__copy > *:not(.stages__title):not(.stages__meta) {
  animation: stages-rise 0.9s var(--spring) both;
}

.stages__stage.is-entered .stages__index { animation-delay: 0.04s; }
.stages__stage.is-entered .stages__body { animation-delay: 0.2s; }
.stages__stage.is-entered .stages__cta { animation-delay: 0.4s; }

.stages__stage.is-entered .stages__title {
  animation: stages-title-in 0.95s var(--spring) both;
  animation-delay: 0.1s;
}

.stages__stage.is-entered .stages__meta li {
  animation: stages-chip-in 0.7s var(--spring) both;
}

.stages__stage.is-entered .stages__meta li:nth-child(1) { animation-delay: 0.28s; }
.stages__stage.is-entered .stages__meta li:nth-child(2) { animation-delay: 0.36s; }
.stages__stage.is-entered .stages__meta li:nth-child(3) { animation-delay: 0.44s; }

.stages__watermark {
  position: absolute;
  left: 50%;
  top: 44%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(5rem, 18vw, 13.5rem);
  letter-spacing: -0.06em;
  line-height: 0.85;
  color: transparent;
  background: linear-gradient(180deg, rgba(29, 29, 31, 0.08) 0%, rgba(29, 29, 31, 0.02) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  will-change: transform, opacity;
}

.stages__visual {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(360px, 80vw);
  height: min(360px, 80vw);
  will-change: transform, opacity;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.stages__orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(29, 29, 31, 0.08);
  pointer-events: none;
}

.stages__orbit--outer {
  width: 88%;
  height: 88%;
  border-style: dashed;
  border-color: rgba(29, 29, 31, 0.1);
  opacity: 0.7;
}

.stages__orbit--inner {
  width: 68%;
  height: 68%;
  opacity: 0.55;
  border-color: rgba(29, 29, 31, 0.07);
}

.stages__stage.is-active .stages__orbit--outer {
  animation: stages-orbit 22s linear infinite;
}

.stages__stage.is-active .stages__orbit--inner {
  animation: stages-orbit-rev 16s linear infinite;
}

.stages__orbit--outer::before,
.stages__orbit--inner::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(29, 29, 31, 0.35);
  top: 50%;
  left: 0;
  translate: -50% -50%;
  box-shadow: 0 0 0 4px rgba(29, 29, 31, 0.05);
}

.stages__orbit--inner::before {
  width: 4px;
  height: 4px;
  left: auto;
  right: 0;
  translate: 50% -50%;
  background: rgba(26, 39, 68, 0.45);
}

.stages__halo {
  position: absolute;
  width: 74%;
  height: 74%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 39, 68, 0.16), transparent 68%);
  filter: blur(24px);
}

.stages__stage.is-active .stages__halo {
  animation: stages-halo 7s ease-in-out infinite;
}

.stages__pulse {
  position: absolute;
  width: 42%;
  height: 42%;
  border-radius: 50%;
  border: 1px solid rgba(29, 29, 31, 0.2);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.stages__spark {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(29, 29, 31, 0.35);
  box-shadow: 0 0 0 4px rgba(29, 29, 31, 0.05);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}

.stages__spark--a {
  top: 18%;
  right: 22%;
}

.stages__spark--b {
  bottom: 24%;
  left: 16%;
  width: 4px;
  height: 4px;
}

.stages__spark--c {
  top: 42%;
  left: 12%;
  width: 5px;
  height: 5px;
}

.stages__floor {
  position: absolute;
  bottom: 6%;
  width: 56%;
  height: 16%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(17, 17, 17, 0.2), transparent 70%);
  filter: blur(16px);
  transform: scaleX(1.2);
}

.stages__float {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  will-change: transform;
}

.stages__frame {
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 32px 70px rgba(0, 0, 0, 0.18),
    0 10px 24px rgba(0, 0, 0, 0.1);
  background: #1a1a1c;
  transform-style: preserve-3d;
}

.stages__stage.is-active .stages__frame {
  animation: stages-breathe 6.5s ease-in-out infinite;
}

.stages__frame--diamond {
  width: min(248px, 58vw);
  height: min(248px, 58vw);
  transform: rotate(45deg);
  border-radius: 0.5rem;
}

.stages__frame--diamond .stages__photo {
  transform: rotate(-45deg) scale(1.5);
  width: 100%;
  height: 100%;
}

.stages__frame--tilt {
  width: min(228px, 52vw);
  height: min(308px, 70vw);
  transform: rotate(-18deg);
  border-radius: 0.65rem;
}

.stages__frame--skew {
  width: min(268px, 62vw);
  height: min(288px, 66vw);
  transform: rotate(14deg) skewY(-2deg);
  border-radius: 0.55rem;
}

.stages__photo {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.stages__photo--build {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.16) 0%, transparent 38%),
    linear-gradient(210deg, transparent 48%, rgba(0, 0, 0, 0.38)),
    linear-gradient(135deg, #2c4066 0%, #111318 46%, #1a2744 72%, #4a6288 100%);
}

.stages__photo--sell {
  background:
    linear-gradient(200deg, rgba(255, 255, 255, 0.12) 0%, transparent 40%),
    linear-gradient(200deg, transparent 50%, rgba(0, 0, 0, 0.32)),
    linear-gradient(160deg, #1c1c1e 8%, #1a2744 55%, #2a3550 100%);
}

.stages__photo--scale {
  background:
    linear-gradient(40deg, rgba(255, 255, 255, 0.14) 0%, transparent 42%),
    linear-gradient(40deg, transparent 45%, rgba(0, 0, 0, 0.3)),
    linear-gradient(40deg, #111 0%, #2a2a2e 38%, #5a6f88 100%);
}

.stages__facet {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.stages__facet--a {
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.24) 0%, transparent 42%);
  mix-blend-mode: soft-light;
}

.stages__facet--b {
  background: linear-gradient(300deg, rgba(0, 0, 0, 0.38) 0%, transparent 48%);
}

.stages__core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18%;
  height: 18%;
  translate: -50% -50%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.08) 55%, transparent 70%);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.15);
  pointer-events: none;
}

.stages__stage.is-active .stages__core {
  animation: stages-core 5s ease-in-out infinite;
}

.stages__shine {
  position: absolute;
  inset: -20%;
  background: linear-gradient(
    115deg,
    transparent 40%,
    rgba(255, 255, 255, 0.3) 49%,
    transparent 58%
  );
  background-size: 220% 100%;
  pointer-events: none;
  mix-blend-mode: soft-light;
}

.stages__stage.is-active .stages__shine {
  animation: stages-sheen 8s ease-in-out infinite;
}

.stages__rim {
  position: absolute;
  inset: 0;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    inset 0 18px 36px rgba(255, 255, 255, 0.07);
  pointer-events: none;
}

.stages__copy {
  position: relative;
  z-index: 2;
  max-width: 26rem;
  text-align: center;
  will-change: transform, opacity;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stages__index {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 0.9rem;
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(29, 29, 31, 0.38);
}

.stages__index span {
  font-variant-numeric: tabular-nums;
  color: rgba(29, 29, 31, 0.55);
  padding: 0.22rem 0.45rem;
  border-radius: 0.35rem;
  background: rgba(29, 29, 31, 0.05);
  border: 1px solid rgba(29, 29, 31, 0.06);
  letter-spacing: 0.08em;
}

.stages__title {
  margin: 0 0 0.95rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.95rem, 4.2vw, 2.85rem);
  line-height: 1.02;
  letter-spacing: -0.042em;
  color: var(--ink);
  max-width: 12ch;
}

.stages__body {
  margin: 0 0 1.35rem;
  font-size: clamp(1.02rem, 2vw, 1.16rem);
  color: rgba(58, 58, 60, 0.88);
  line-height: 1.52;
  letter-spacing: -0.015em;
}

.stages__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem 0.35rem;
  list-style: none;
  margin: 0 0 1.65rem;
  padding: 0;
}

.stages__meta li {
  font-size: 0.68rem;
  font-weight: 620;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(29, 29, 31, 0.42);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(29, 29, 31, 0.08);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.stages__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1.25rem 0.75rem 1.35rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 550;
  letter-spacing: -0.01em;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.58));
  border: 1px solid rgba(29, 29, 31, 0.1);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 12px 30px rgba(17, 17, 17, 0.07);
  transition:
    gap 0.35s var(--spring),
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.4s var(--spring),
    transform 0.4s var(--spring);
}

.stages__cta:hover {
  gap: 0.78rem;
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.2);
  transform: translateY(-2px);
}

.stages__cta-mark {
  display: inline-grid;
  place-items: center;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  font-size: 0.95rem;
  line-height: 1;
  background: rgba(29, 29, 31, 0.06);
  transition: background 0.3s ease, transform 0.35s var(--spring);
}

.stages__cta:hover .stages__cta-mark {
  background: rgba(255, 255, 255, 0.14);
  transform: rotate(90deg);
}

.stages__rail {
  position: absolute;
  left: 50%;
  bottom: clamp(1.25rem, 3.5vw, 2.25rem);
  translate: -50% 0;
  z-index: 6;
  width: min(420px, calc(100% - 4rem));
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  pointer-events: none;
}

.stages__rail-track {
  height: 2px;
  border-radius: 999px;
  background: rgba(29, 29, 31, 0.08);
  overflow: hidden;
}

.stages__rail-fill {
  display: block;
  height: 100%;
  width: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(29, 29, 31, 0.35), var(--ink));
  transform: scaleX(0.12);
  transform-origin: left center;
  will-change: transform;
}

.stages__rail-labels {
  display: flex;
  justify-content: space-between;
  pointer-events: auto;
}

.stages__rail-labels button {
  font-size: 0.64rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(29, 29, 31, 0.32);
  padding: 0.25rem 0.15rem;
  transition: color 0.35s ease, transform 0.35s var(--spring);
}

.stages__rail-labels button:hover {
  color: rgba(29, 29, 31, 0.65);
}

.stages__rail-labels button.is-active {
  color: var(--ink);
  transform: translateY(-1px);
}

.stages__dots {
  display: none;
  position: absolute;
  right: clamp(1rem, 3vw, 2rem);
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 6;
}

.stages__dots button {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(29, 29, 31, 0.18);
  border: 0;
  padding: 0;
  transition:
    background 0.45s var(--spring),
    height 0.45s var(--spring),
    box-shadow 0.45s var(--spring);
}

.stages__dots button.is-active {
  height: 22px;
  background: var(--ink);
  box-shadow: 0 0 0 4px rgba(29, 29, 31, 0.07);
}

.stages__scroll {
  display: none;
  position: absolute;
  right: clamp(0.85rem, 2.5vw, 1.75rem);
  bottom: 1.75rem;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  z-index: 6;
  color: var(--mute);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.stages__scroll span {
  writing-mode: vertical-rl;
}

.stages__scroll i {
  width: 1px;
  height: 42px;
  background: linear-gradient(var(--ink), transparent);
  animation: scroll-line 2s var(--ease) infinite;
}

@keyframes stages-breathe {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.07); }
}

@keyframes stages-halo {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.07); }
}

@keyframes stages-sheen {
  0%, 100% { background-position: 130% 0; }
  45%, 55% { background-position: -30% 0; }
}

@keyframes stages-orbit {
  to { transform: rotate(360deg); }
}

@keyframes stages-orbit-rev {
  to { transform: rotate(-360deg); }
}

@keyframes stages-core {
  0%, 100% { opacity: 0.55; scale: 1; }
  50% { opacity: 0.9; scale: 1.12; }
}

@keyframes stages-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes stages-pulse {
  0% {
    opacity: 0.55;
    transform: scale(0.55);
  }
  100% {
    opacity: 0;
    transform: scale(2.1);
  }
}

@keyframes stages-spark {
  0%, 100% {
    opacity: 0.15;
    transform: translateY(0) scale(0.85);
  }
  40% {
    opacity: 0.85;
    transform: translateY(-10px) scale(1.15);
  }
  70% {
    opacity: 0.4;
    transform: translateY(-4px) scale(1);
  }
}

/* Mobile stages — compact layout, no expensive atmosphere / infinite motion */
@media (max-width: 719px) {
  .stages {
    height: 260vh;
  }

  .stages.is-light .stages__wash,
  .stages.is-light .stages__mesh,
  .stages.is-light .stages__grain,
  .stages.is-light .stages__vignette,
  .stages.is-light .stages__watermark,
  .stages.is-light .stages__orbit,
  .stages.is-light .stages__spark,
  .stages.is-light .stages__halo,
  .stages.is-light .stages__pulse,
  .stages.is-light .stages__floor {
    display: none !important;
  }

  .stages__pin {
    background:
      radial-gradient(ellipse 70% 50% at 50% 20%, rgba(255, 255, 255, 0.95), transparent 60%),
      linear-gradient(180deg, #fbfbfc 0%, #f2f2f5 100%);
  }

  .stages__inner {
    min-height: 100svh;
    align-items: stretch;
  }

  .stages__chrome {
    top: max(0.85rem, env(safe-area-inset-top));
    left: 1rem;
    right: 1rem;
  }

  .stages__stage {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    align-content: center;
    justify-items: center;
    gap: 1.1rem;
    padding: 4.25rem 1.1rem 5.75rem;
    will-change: auto;
    transition: opacity 0.28s ease;
  }

  .stages__visual {
    width: min(200px, 52vw);
    height: min(200px, 52vw);
    perspective: none;
    transform-style: flat;
    will-change: auto;
  }

  .stages__frame {
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.2) inset,
      0 16px 36px rgba(0, 0, 0, 0.14);
  }

  .stages__frame--diamond {
    width: min(132px, 36vw);
    height: min(132px, 36vw);
  }

  .stages__frame--tilt {
    width: min(118px, 32vw);
    height: min(158px, 42vw);
  }

  .stages__frame--skew {
    width: min(140px, 38vw);
    height: min(150px, 40vw);
  }

  .stages__copy {
    max-width: 22.5rem;
    width: 100%;
    padding-inline: 0.25rem;
    will-change: auto;
  }

  .stages__title {
    font-size: clamp(1.55rem, 6.5vw, 2rem);
    max-width: none;
    margin-bottom: 0.7rem;
  }

  .stages__body {
    font-size: 0.98rem;
    line-height: 1.48;
    margin-bottom: 1rem;
  }

  .stages__meta {
    margin-bottom: 1.15rem;
    gap: 0.35rem;
  }

  .stages__meta li {
    font-size: 0.62rem;
    padding: 0.35rem 0.65rem;
  }

  .stages__cta {
    padding: 0.7rem 1.15rem 0.7rem 1.2rem;
    font-size: 0.88rem;
  }

  .stages__rail {
    bottom: max(0.85rem, env(safe-area-inset-bottom));
    width: min(360px, calc(100% - 2rem));
    gap: 0.55rem;
  }

  .stages__rail-labels button {
    font-size: 0.6rem;
    min-height: 2rem;
    padding: 0.35rem 0.4rem;
  }

  .stages.is-light .stages__stage.is-active .stages__float,
  .stages.is-light .stages__stage.is-active .stages__frame,
  .stages.is-light .stages__stage.is-active .stages__core,
  .stages.is-light .stages__stage.is-active .stages__shine,
  .stages.is-light .stages__stage.is-entered .stages__float,
  .stages.is-light .stages__stage.is-entered .stages__copy > *,
  .stages.is-light .stages__stage.is-entered .stages__title,
  .stages.is-light .stages__stage.is-entered .stages__meta li {
    animation: none !important;
  }

  .stages.is-light .stages__facet--a {
    mix-blend-mode: normal;
  }
}

@keyframes stages-visual-in {
  from {
    opacity: 0.45;
    transform: translateY(28px) scale(0.9);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes stages-title-in {
  from {
    opacity: 0;
    transform: translateY(22px);
    clip-path: inset(0 0 100% 0);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
  }
}

@keyframes stages-chip-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes stages-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes stages-phase-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== PLATFORMS ========== */
.platforms {
  --spring: cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  padding: clamp(5.5rem, 11vw, 8.5rem) 0;
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(26, 39, 68, 0.07), transparent 55%),
    var(--bg-soft);
  overflow: hidden;
  isolation: isolate;
}

.platforms__field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.platforms__base {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(244, 242, 250, 0.65) 0%, transparent 38%),
    radial-gradient(ellipse 80% 40% at 50% 100%, rgba(26, 39, 68, 0.06), transparent 60%);
}

/* Soft “sky” wash above the aisle horizon */
.platforms__sky {
  position: absolute;
  inset: 0 0 42%;
  background:
    radial-gradient(ellipse 90% 80% at 50% 100%, rgba(255, 255, 255, 0.85), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), transparent);
}

/* Marketplace aisle — perspective depth */
.platforms__aisle {
  position: absolute;
  left: 50%;
  top: 38%;
  bottom: -5%;
  width: 160%;
  transform: translateX(-50%) perspective(700px) rotateX(62deg);
  transform-origin: center top;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 11%,
      rgba(29, 29, 31, 0.055) 11% calc(11% + 1px),
      transparent calc(11% + 1px) 14%
    ),
    repeating-linear-gradient(
      180deg,
      transparent 0 48px,
      rgba(29, 29, 31, 0.04) 48px 49px
    );
  mask-image: linear-gradient(180deg, #000 0%, transparent 88%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 88%);
  opacity: 0.85;
}

.platforms__floor {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48%;
  background:
    linear-gradient(180deg, transparent 0%, rgba(226, 224, 236, 0.55) 100%),
    radial-gradient(ellipse 55% 35% at 50% 0%, rgba(255, 255, 255, 0.7), transparent 70%);
}

.platforms__beam {
  position: absolute;
  top: 18%;
  bottom: 0;
  width: min(28vw, 260px);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.45) 35%,
    rgba(255, 255, 255, 0.08) 100%
  );
  filter: blur(20px);
  opacity: 0.7;
}

.platforms__beam--l {
  left: 18%;
  transform: skewX(12deg);
}

.platforms__beam--r {
  right: 18%;
  transform: skewX(-12deg);
  opacity: 0.5;
}

.platforms__vanishing {
  position: absolute;
  left: 50%;
  top: 36%;
  width: min(40vw, 360px);
  height: min(18vw, 160px);
  transform: translate(-50%, -40%);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.95), transparent 70%);
  filter: blur(6px);
  opacity: 0.9;
}

.platforms__names {
  position: absolute;
  inset: 12% 6% 20%;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  opacity: 0.55;
}

.platforms__names span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.35rem, 3.2vw, 2.4rem);
  letter-spacing: -0.04em;
  color: rgba(29, 29, 31, 0.07);
  user-select: none;
}

.platforms__names span:nth-child(2) { margin-left: 12%; }
.platforms__names span:nth-child(3) { margin-right: 8%; align-self: center; }
.platforms__names span:nth-child(4) { margin-left: 4%; }
.platforms__names span:nth-child(5) { margin-left: auto; }

.platforms__grain {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 128 128' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
  mix-blend-mode: multiply;
}

.platforms__edge {
  position: absolute;
  left: 0;
  right: 0;
  height: clamp(3.25rem, 8.5vw, 6rem);
  z-index: 2;
}

.platforms__edge--top {
  top: 0;
  background: linear-gradient(180deg, rgba(235, 233, 242, 0.96), transparent);
}

.platforms__edge--bot {
  bottom: 0;
  background: linear-gradient(0deg, rgba(235, 233, 242, 0.9), transparent);
}

@media (max-width: 719px) {
  .platforms__aisle {
    top: 48%;
    opacity: 0.65;
  }

  .platforms__names {
    inset: 16% 4% 24%;
    opacity: 0.4;
  }

  .platforms__names span:nth-child(n + 4) {
    display: none;
  }

  .platforms__beam {
    width: 34vw;
  }
}

.platforms > .shell {
  position: relative;
  z-index: 1;
}

.platforms__top {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: clamp(2.5rem, 5.5vw, 3.75rem);
}

.platforms__intro h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.35rem, 5vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 0 0 0.9rem;
}

.platforms__intro h2 em {
  font-style: normal;
  background: linear-gradient(180deg, #1d1d1f 0%, #5a5a62 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.platforms__lead {
  margin: 0;
  color: var(--mute);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 32rem;
}

.platforms__aside {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.1rem;
}

.platforms__aside-note {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(29, 29, 31, 0.35);
}

.platforms__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(29, 29, 31, 0.1);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 550;
  letter-spacing: -0.01em;
  text-decoration: none;
  backdrop-filter: blur(12px);
  transition:
    background 0.35s var(--spring),
    border-color 0.35s ease,
    transform 0.35s var(--spring),
    box-shadow 0.35s ease;
}

.platforms__link:hover {
  background: #fff;
  border-color: rgba(29, 29, 31, 0.16);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -20px rgba(17, 17, 17, 0.22);
}

.platforms__link span:last-child {
  transition: transform 0.35s var(--spring);
}

.platforms__link:hover span:last-child {
  transform: translateX(3px);
}

.platforms__groups {
  display: grid;
  gap: 1.15rem;
}

.platforms__group {
  --mx: 30%;
  --my: 40%;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.2rem, 2.6vw, 1.55rem);
  border-radius: 1.45rem;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.42) 100%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 0 0 1px rgba(29, 29, 31, 0.03),
    0 20px 44px -34px rgba(17, 17, 17, 0.18);
  backdrop-filter: blur(16px) saturate(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  overflow: hidden;
  transition:
    transform 0.45s var(--spring),
    box-shadow 0.45s ease;
}

.platforms__group:hover {
  transform: translateY(-3px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 0 0 1px rgba(29, 29, 31, 0.04),
    0 26px 52px -34px rgba(17, 17, 17, 0.18);
}

.platforms__group-sheen {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    280px circle at var(--mx) var(--my),
    rgba(255, 255, 255, 0.45),
    transparent 62%
  );
  opacity: 0;
  transition: opacity 0.45s ease;
}

.platforms__group:hover .platforms__group-sheen,
.platforms__group:focus-within .platforms__group-sheen {
  opacity: 1;
}

.platforms__phase {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.05rem;
  padding: 0 0.2rem 0.85rem;
  border-bottom: 1px solid rgba(29, 29, 31, 0.06);
}

.platforms__phase-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(29, 29, 31, 0.35);
  box-shadow: 0 0 0 4px rgba(29, 29, 31, 0.04);
}

.platforms__phase-num {
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  color: rgba(29, 29, 31, 0.3);
}

.platforms__phase-label {
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(29, 29, 31, 0.5);
}

.platforms__phase-count {
  margin-left: auto;
  min-width: 1.4rem;
  height: 1.4rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(29, 29, 31, 0.05);
  border: 1px solid rgba(29, 29, 31, 0.06);
  font-size: 0.64rem;
  font-weight: 650;
  color: rgba(29, 29, 31, 0.45);
}

.platforms__list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.platforms__list li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.platforms__item {
  --ix: 70%;
  --iy: 40%;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem 1rem;
  padding: 1.05rem 1rem 1.05rem 0.95rem;
  border-radius: 1.05rem;
  border: 1px solid transparent;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition:
    background 0.4s var(--spring),
    box-shadow 0.4s ease,
    border-color 0.35s ease,
    transform 0.4s var(--spring);
}

.platforms__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24%;
  bottom: 24%;
  width: 2px;
  border-radius: 2px;
  background: rgba(29, 29, 31, 0.22);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.4s var(--spring);
}

.platforms__spot {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    180px circle at var(--ix) var(--iy),
    rgba(255, 255, 255, 0.55),
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.platforms__index {
  position: relative;
  z-index: 1;
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  color: rgba(29, 29, 31, 0.28);
  transition: color 0.35s ease;
}

.platforms__copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.25rem;
  min-width: 0;
}

.platforms__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  letter-spacing: -0.03em;
  color: var(--ink);
  transition: letter-spacing 0.4s var(--spring);
}

.platforms__meta {
  font-size: 0.82rem;
  color: rgba(29, 29, 31, 0.42);
  letter-spacing: -0.01em;
  transition: color 0.35s ease;
}

.platforms__go {
  position: relative;
  z-index: 1;
  width: 1.7rem;
  height: 1.7rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(29, 29, 31, 0.08);
  background: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
  color: rgba(29, 29, 31, 0.35);
  opacity: 0;
  transform: translateX(-6px) scale(0.92);
  transition:
    opacity 0.35s ease,
    transform 0.4s var(--spring),
    color 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease;
}

.platforms__item:hover,
.platforms__item:focus-visible {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.98);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 12px 28px -20px rgba(17, 17, 17, 0.12);
  transform: translateY(-2px);
}

.platforms__item:hover::before,
.platforms__item:focus-visible::before {
  transform: scaleY(1);
}

.platforms__item:hover .platforms__spot,
.platforms__item:focus-visible .platforms__spot {
  opacity: 1;
}

.platforms__item:hover .platforms__index,
.platforms__item:focus-visible .platforms__index {
  color: rgba(29, 29, 31, 0.45);
}

.platforms__item:hover .platforms__name,
.platforms__item:focus-visible .platforms__name {
  letter-spacing: -0.035em;
}

.platforms__item:hover .platforms__meta,
.platforms__item:focus-visible .platforms__meta {
  color: rgba(29, 29, 31, 0.55);
}

.platforms__item:hover .platforms__go,
.platforms__item:focus-visible .platforms__go {
  opacity: 1;
  transform: translateX(0) scale(1);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(29, 29, 31, 0.1);
}

.platforms__item:focus-visible {
  outline: 2px solid rgba(29, 29, 31, 0.28);
  outline-offset: 2px;
}

.platforms__group-foot {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 0.85rem 0.2rem 0.1rem;
  border-top: 1px solid rgba(29, 29, 31, 0.06);
  font-size: 0.72rem;
  font-weight: 550;
  letter-spacing: 0.02em;
  color: rgba(29, 29, 31, 0.38);
  text-decoration: none;
  transition: color 0.3s ease;
}

.platforms__group-foot span:last-child {
  letter-spacing: -0.01em;
  color: rgba(29, 29, 31, 0.48);
  transition: transform 0.35s var(--spring), color 0.3s ease;
}

.platforms__group:hover .platforms__group-foot span:last-child,
.platforms__group-foot:hover span:last-child,
.platforms__group-foot:focus-visible span:last-child {
  color: var(--ink);
  transform: translateX(2px);
}

.platforms__group-foot:focus-visible {
  outline: 2px solid rgba(29, 29, 31, 0.28);
  outline-offset: 3px;
  border-radius: 0.35rem;
}


@media (max-width: 640px) {
  .platforms__index {
    display: none;
  }

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

  .platforms__aside-note {
    display: none;
  }
}

/* ========== WHY ========== */
.why {
  position: relative;
  padding: clamp(5.5rem, 11vw, 9rem) 0;
  background:
    linear-gradient(180deg, #f4f1ec 0%, var(--bg-warm) 42%, #e8e4dd 100%);
  overflow: hidden;
  isolation: isolate;
}

.why__field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.why__base {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 48% at 28% 62%, rgba(255, 255, 255, 0.55), transparent 62%),
    radial-gradient(ellipse 40% 36% at 88% 18%, rgba(26, 39, 68, 0.05), transparent 65%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.45) 0%, transparent 35%);
}

/* Soft stage spotlight behind the dark display card */
.why__spot {
  position: absolute;
  left: 4%;
  top: 34%;
  width: min(62vw, 720px);
  height: min(52vw, 520px);
  border-radius: 50%;
  background:
    radial-gradient(ellipse 70% 60% at 45% 45%, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.35) 38%, transparent 70%),
    radial-gradient(ellipse 50% 45% at 50% 55%, rgba(26, 39, 68, 0.06), transparent 68%);
  filter: blur(8px);
  opacity: 0.9;
}

/* Tall studio light columns */
.why__column {
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(18vw, 160px);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.55) 22%,
    rgba(255, 255, 255, 0.22) 55%,
    rgba(255, 255, 255, 0) 100%
  );
  filter: blur(18px);
  opacity: 0.65;
}

.why__column--1 {
  left: 12%;
  width: min(14vw, 120px);
  opacity: 0.55;
}

.why__column--2 {
  left: 34%;
  width: min(22vw, 200px);
  opacity: 0.8;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.7) 18%,
    rgba(255, 255, 255, 0.28) 52%,
    rgba(255, 255, 255, 0) 100%
  );
}

.why__column--3 {
  right: 14%;
  width: min(12vw, 100px);
  opacity: 0.4;
  background: linear-gradient(
    180deg,
    rgba(26, 39, 68, 0) 0%,
    rgba(26, 39, 68, 0.05) 30%,
    rgba(26, 39, 68, 0.03) 60%,
    rgba(26, 39, 68, 0) 100%
  );
  filter: blur(22px);
}

/* Static connection rings — “connected growth partner” */
.why__ring {
  position: absolute;
  left: 58%;
  top: 48%;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.why__ring--outer {
  width: min(58vw, 520px);
  height: min(58vw, 520px);
  border-color: rgba(29, 29, 31, 0.07);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35) inset;
}

.why__ring--mid {
  width: min(40vw, 360px);
  height: min(40vw, 360px);
  border-color: rgba(29, 29, 31, 0.09);
}

.why__ring--inner {
  width: min(22vw, 200px);
  height: min(22vw, 200px);
  border-color: rgba(29, 29, 31, 0.11);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35), transparent 70%);
}

.why__links {
  position: absolute;
  left: 42%;
  right: 8%;
  top: 36%;
  bottom: 18%;
  background:
    radial-gradient(circle at 12% 30%, rgba(29, 29, 31, 0.16) 0 2px, transparent 2.5px),
    radial-gradient(circle at 48% 18%, rgba(29, 29, 31, 0.14) 0 2px, transparent 2.5px),
    radial-gradient(circle at 78% 42%, rgba(29, 29, 31, 0.16) 0 2.5px, transparent 3px),
    radial-gradient(circle at 62% 72%, rgba(29, 29, 31, 0.12) 0 2px, transparent 2.5px),
    radial-gradient(circle at 28% 68%, rgba(29, 29, 31, 0.12) 0 2px, transparent 2.5px),
    linear-gradient(118deg, transparent 0 42%, rgba(29, 29, 31, 0.08) 42% 42.15%, transparent 42.15%),
    linear-gradient(28deg, transparent 0 48%, rgba(29, 29, 31, 0.07) 48% 48.15%, transparent 48.15%),
    linear-gradient(160deg, transparent 0 55%, rgba(29, 29, 31, 0.06) 55% 55.15%, transparent 55.15%);
  opacity: 0.75;
  mask-image: radial-gradient(ellipse 70% 65% at 55% 45%, #000 10%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 65% at 55% 45%, #000 10%, transparent 75%);
}

.why__mark {
  position: absolute;
  right: 4%;
  bottom: 10%;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(4.5rem, 14vw, 9.5rem);
  letter-spacing: -0.06em;
  line-height: 0.85;
  color: rgba(29, 29, 31, 0.045);
  text-transform: lowercase;
  user-select: none;
  white-space: nowrap;
}

.why__floor {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  background:
    linear-gradient(180deg, transparent 0%, rgba(26, 39, 68, 0.03) 45%, rgba(26, 39, 68, 0.06) 100%),
    radial-gradient(ellipse 70% 40% at 30% 100%, rgba(17, 17, 17, 0.05), transparent 65%);
}

.why__grain {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 128 128' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
  mix-blend-mode: multiply;
}

.why__edge {
  position: absolute;
  left: 0;
  right: 0;
  height: clamp(3rem, 8vw, 5.5rem);
  z-index: 2;
}

.why__edge--top {
  top: 0;
  background: linear-gradient(180deg, rgba(244, 241, 236, 0.95), transparent);
}

.why__edge--bot {
  bottom: 0;
  background: linear-gradient(0deg, rgba(232, 228, 221, 0.9), transparent);
}

.why > .shell {
  position: relative;
  z-index: 1;
}

@media (max-width: 719px) {
  .why__ring,
  .why__links {
    opacity: 0.45;
  }

  .why__mark {
    right: 2%;
    bottom: 6%;
    opacity: 0.85;
  }

  .why__column--3 {
    display: none;
  }
}

.why__head {
  display: grid;
  gap: 1.25rem;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
  max-width: 52rem;
}

.why__head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.35rem, 5vw, 3.75rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.why__lead {
  color: var(--mute);
  font-size: 1.1rem;
  line-height: 1.55;
  max-width: 28rem;
}

.why__studio {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

.why__display {
  position: relative;
  min-height: 22rem;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border-radius: 1.75rem;
  background:
    radial-gradient(ellipse 80% 70% at 100% 0%, rgba(255, 255, 255, 0.08), transparent 50%),
    linear-gradient(155deg, #171717 0%, #0c0c0c 50%, #141a22 100%);
  color: #fff;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(11, 13, 18, 0.2);
}

.why__display::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -20%;
  width: 55%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 68%);
  pointer-events: none;
}

.why__display-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.9;
  color: rgba(255, 255, 255, 0.12);
  margin-bottom: 1.25rem;
  transition: opacity 0.35s, transform 0.45s var(--ease);
}

.why__display-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.75rem;
  transition: opacity 0.35s;
}

.why__display h3 {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 1rem;
  max-width: 12ch;
  transition: opacity 0.35s, transform 0.45s var(--ease);
}

.why__display > p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 28rem;
  margin-bottom: 1.75rem;
  transition: opacity 0.35s, transform 0.45s var(--ease);
}

.why__display-cta {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.why__display-cta:hover {
  background: rgba(255, 255, 255, 0.16);
}

.why__display.is-switching .why__display-num,
.why__display.is-switching h3,
.why__display.is-switching > p,
.why__display.is-switching .why__display-tag {
  opacity: 0;
  transform: translateY(12px);
}

.why__rail {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(29, 29, 31, 0.12);
}

.why__rail-btn {
  width: 100%;
  display: grid;
  grid-template-columns: 2.5rem 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 1.25rem 0.35rem;
  border-bottom: 1px solid rgba(29, 29, 31, 0.12);
  text-align: left;
  cursor: pointer;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.35s, padding 0.4s var(--ease), box-shadow 0.35s;
  border-radius: 0.75rem;
}

.why__display-num,
.why__display-tag,
.why__display h3,
.why__display > p {
  transition: opacity 0.35s var(--ease), transform 0.45s var(--ease);
}

.why__rail-btn:hover,
.why__rail-btn.is-active {
  background: rgba(255, 255, 255, 0.55);
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.why__rail-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--mute);
  transition: color 0.3s;
}

.why__rail-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  letter-spacing: -0.025em;
  color: var(--ink);
  transition: color 0.3s;
}

.why__rail-arrow {
  color: var(--mute);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.35s, transform 0.4s var(--ease), color 0.3s;
}

.why__rail-btn:hover .why__rail-arrow,
.why__rail-btn.is-active .why__rail-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--ink);
}

.why__rail-btn.is-active .why__rail-num,
.why__rail-btn.is-active .why__rail-label {
  color: var(--ink);
}

.why__rail-btn.is-active {
  box-shadow: inset 3px 0 0 var(--ink);
}

/* ========== DIFF ========== */
.diff {
  position: relative;
  padding: clamp(6rem, 12vw, 10rem) 0;
  background: #080808;
  color: #fff;
  overflow: hidden;
}

.diff__atmosphere {
  position: absolute;
  inset: -10% 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 48% 42% at 82% 38%, rgba(255, 255, 255, 0.1), transparent 62%),
    radial-gradient(ellipse 38% 48% at 8% 78%, rgba(26, 39, 68, 0.45), transparent 65%),
    radial-gradient(ellipse 30% 30% at 50% 0%, rgba(255, 255, 255, 0.04), transparent 70%),
    linear-gradient(180deg, #151515 0%, #080808 48%, #0c1016 100%);
  will-change: transform;
}

.diff__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.07;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 128 128' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.diff__head {
  position: relative;
  z-index: 1;
  max-width: 34rem;
  margin-bottom: clamp(2.75rem, 6vw, 4.5rem);
}

.diff__head .eyebrow {
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 0.9rem;
}

.diff__head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.5rem, 5.4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin-bottom: 1rem;
}

.diff__lead {
  color: rgba(255, 255, 255, 0.5);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.5;
  max-width: 28rem;
}

.diff__board {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  border-radius: 1.5rem;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.55),
    0 12px 32px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.diff__watermark {
  position: absolute;
  left: 50%;
  top: 42%;
  z-index: 0;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(5rem, 16vw, 11rem);
  letter-spacing: -0.06em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.diff__sheen {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(255, 255, 255, 0.045) 48%,
    transparent 62%
  );
  transform: translateX(-120%);
  animation: diff-sheen 7s var(--ease) 1.2s infinite;
}

@keyframes diff-sheen {
  0%,
  55% {
    transform: translateX(-120%);
  }
  80%,
  100% {
    transform: translateX(120%);
  }
}

.diff__vs {
  display: none;
}

.diff__panel {
  position: relative;
  z-index: 1;
  padding: clamp(1.85rem, 4vw, 3rem);
}

.diff__panel--before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.38));
}

.diff__panel--after {
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.11) 0%, rgba(255, 255, 255, 0.035) 42%, rgba(255, 255, 255, 0.02) 100%);
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.07);
}

.diff__panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.55rem;
}

.diff__kicker {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.diff__panel--before .diff__kicker {
  color: rgba(255, 255, 255, 0.32);
}

.diff__panel--after .diff__kicker {
  color: rgba(255, 255, 255, 0.58);
}

.diff__index {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.22);
}

.diff__panel--after .diff__index {
  color: rgba(255, 255, 255, 0.4);
}

.diff__panel h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.55rem, 3vw, 2rem);
  letter-spacing: -0.04em;
  margin-bottom: 1.85rem;
  line-height: 1.12;
}

.diff__panel--before h3 {
  color: rgba(255, 255, 255, 0.4);
}

.diff__panel--after h3 {
  color: #fff;
}

.diff__panel li {
  display: grid;
  grid-template-columns: 1.75rem 1fr;
  gap: 0.85rem;
  align-items: baseline;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.02rem, 1.95vw, 1.18rem);
  letter-spacing: -0.022em;
  line-height: 1.4;
  padding: 1.1rem 0.35rem 1.1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.45s var(--ease), padding-left 0.45s var(--ease), color 0.35s;
}

.diff__panel li:last-of-type {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.diff__panel li span {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.25);
}

.diff__panel--before li {
  color: rgba(255, 255, 255, 0.38);
}

.diff__panel--after li {
  color: rgba(255, 255, 255, 0.9);
  border-top-color: rgba(255, 255, 255, 0.11);
}

.diff__panel--after li:last-of-type {
  border-bottom-color: rgba(255, 255, 255, 0.11);
}

.diff__panel--after li span {
  color: rgba(255, 255, 255, 0.42);
}

.diff__panel--after li:hover {
  background: rgba(255, 255, 255, 0.04);
  padding-left: 0.45rem;
  color: #fff;
  border-radius: 0.35rem;
}

.diff__note {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.48);
  letter-spacing: -0.01em;
}

.diff__board .diff__panel li {
  opacity: 0;
}

.diff__board.is-in .diff__panel li {
  animation: diff-item-in 0.7s var(--ease) both;
}

.diff__panel--before li:nth-child(1) { animation-delay: 0.08s; }
.diff__panel--before li:nth-child(2) { animation-delay: 0.14s; }
.diff__panel--before li:nth-child(3) { animation-delay: 0.2s; }
.diff__panel--before li:nth-child(4) { animation-delay: 0.26s; }
.diff__panel--after li:nth-child(1) { animation-delay: 0.18s; }
.diff__panel--after li:nth-child(2) { animation-delay: 0.26s; }
.diff__panel--after li:nth-child(3) { animation-delay: 0.34s; }
.diff__panel--after li:nth-child(4) { animation-delay: 0.42s; }

@keyframes diff-item-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .diff__sheen {
    animation: none;
  }

  .diff__board .diff__panel li,
  .diff__board.is-in .diff__panel li {
    opacity: 1;
    animation: none;
  }
}

/* ========== PROCESS ========== */
.process {
  position: relative;
  padding: clamp(5.5rem, 11vw, 9.5rem) 0;
  background:
    linear-gradient(165deg, #f3f0ea 0%, var(--bg-warm) 45%, #e6e1d8 100%);
  overflow: hidden;
  isolation: isolate;
}

.process__field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.process__base {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 12%, rgba(255, 255, 255, 0.7), transparent 58%),
    radial-gradient(ellipse 45% 40% at 8% 85%, rgba(26, 39, 68, 0.05), transparent 60%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.4) 0%, transparent 42%);
}

/* Stacked briefing sheets — engagement docs behind the steps */
.process__sheet {
  position: absolute;
  border-radius: clamp(1.25rem, 2.5vw, 2rem);
  border: 1px solid rgba(29, 29, 31, 0.06);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.72) 0%, rgba(248, 245, 240, 0.55) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 28px 60px -36px rgba(17, 17, 17, 0.22);
}

.process__sheet--back {
  left: 4%;
  right: 10%;
  top: 16%;
  bottom: 10%;
  transform: rotate(-2.4deg);
  opacity: 0.55;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.45) 0%, rgba(236, 232, 224, 0.5) 100%);
}

.process__sheet--mid {
  left: 7%;
  right: 7%;
  top: 14%;
  bottom: 12%;
  transform: rotate(1.6deg);
  opacity: 0.7;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.65) 0%, rgba(242, 238, 232, 0.55) 100%);
}

.process__sheet--front {
  left: 9%;
  right: 5%;
  top: 12%;
  bottom: 14%;
  transform: rotate(-0.6deg);
  opacity: 0.85;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.88) 0%, rgba(250, 247, 242, 0.62) 55%, rgba(238, 234, 226, 0.5) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 36px 70px -40px rgba(17, 17, 17, 0.2);
}

.process__crease {
  position: absolute;
  left: 14%;
  right: 12%;
  top: 34%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(29, 29, 31, 0.08) 15%,
    rgba(29, 29, 31, 0.12) 50%,
    rgba(29, 29, 31, 0.08) 85%,
    transparent
  );
  opacity: 0.7;
  transform: rotate(-0.6deg);
}

.process__stamp {
  position: absolute;
  right: 8%;
  top: 18%;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(29, 29, 31, 0.1);
  border: 1.5px solid rgba(29, 29, 31, 0.1);
  border-radius: 0.35rem;
  padding: 0.55rem 0.85rem 0.45rem;
  transform: rotate(12deg);
  user-select: none;
}

.process__rule {
  position: absolute;
  left: 12%;
  right: 10%;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    rgba(29, 29, 31, 0.1) 0 8px,
    transparent 8px 16px
  );
  opacity: 0.35;
  transform: rotate(-0.6deg);
}

.process__rule--top {
  top: 22%;
}

.process__rule--bot {
  bottom: 20%;
  opacity: 0.28;
}

.process__corner {
  position: absolute;
  width: 2.25rem;
  height: 2.25rem;
  border-color: rgba(29, 29, 31, 0.12);
  border-style: solid;
  border-width: 0;
}

.process__corner--tl {
  left: 11%;
  top: 14%;
  border-top-width: 1.5px;
  border-left-width: 1.5px;
  transform: rotate(-0.6deg);
}

.process__corner--br {
  right: 7%;
  bottom: 16%;
  border-right-width: 1.5px;
  border-bottom-width: 1.5px;
  transform: rotate(-0.6deg);
}

.process__grain {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 128 128' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
  mix-blend-mode: multiply;
}

.process__edge {
  position: absolute;
  left: 0;
  right: 0;
  height: clamp(3rem, 8vw, 5.5rem);
  z-index: 2;
}

.process__edge--top {
  top: 0;
  background: linear-gradient(180deg, rgba(243, 240, 234, 0.96), transparent);
}

.process__edge--bot {
  bottom: 0;
  background: linear-gradient(0deg, rgba(230, 225, 216, 0.92), transparent);
}

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

@media (max-width: 719px) {
  .process__sheet--back {
    left: 2%;
    right: 6%;
  }

  .process__stamp {
    right: 5%;
    top: 14%;
    letter-spacing: 0.2em;
  }

  .process__rule {
    display: none;
  }
}

.process__head {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  margin-bottom: clamp(3rem, 7vw, 5rem);
}

.process__head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 5.2vw, 3.75rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 1rem;
}

.process__lead {
  color: var(--mute);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.55;
  max-width: 32rem;
}

.process__track {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  list-style: none;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border-radius: 1.5rem;
  background:
    radial-gradient(ellipse 70% 55% at 0% 0%, rgba(255, 255, 255, 0.95), transparent 55%),
    radial-gradient(ellipse 55% 50% at 100% 100%, rgba(245, 242, 237, 0.85), transparent 55%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.58) 100%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 0 0 1px rgba(29, 29, 31, 0.04),
    0 30px 60px rgba(29, 29, 31, 0.07);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  overflow: hidden;
}

.process__track::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.35) 52%, transparent 64%),
    repeating-linear-gradient(
      90deg,
      transparent 0 20%,
      rgba(29, 29, 31, 0.025) 20% calc(20% + 1px),
      transparent calc(20% + 1px) 25%
    );
  opacity: 0.7;
  border-radius: inherit;
}

.process__track::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: calc(1.75rem + 0.55rem);
  top: 3.5rem;
  bottom: 3.5rem;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(29, 29, 31, 0.08),
    rgba(29, 29, 31, 0.18) 20%,
    rgba(29, 29, 31, 0.18) 80%,
    rgba(29, 29, 31, 0.06)
  );
  pointer-events: none;
}

.process__track > li {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 1.15rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(29, 29, 31, 0.06);
  transition: background 0.4s var(--ease);
}

.process__track > li:first-child {
  padding-top: 0.35rem;
}

.process__track > li:last-child {
  padding-bottom: 0.35rem;
  border-bottom: none;
}

.process__node {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding-top: 0.2rem;
}

.process__num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--mute);
  transition: color 0.35s;
}

.process__dot {
  display: block;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid rgba(29, 29, 31, 0.28);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.9);
  transition: background 0.4s var(--ease), border-color 0.4s, transform 0.4s var(--ease), box-shadow 0.4s;
}

.process__body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.35rem, 2.6vw, 1.7rem);
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 0.4rem;
  transition: letter-spacing 0.4s var(--ease);
}

.process__body p {
  color: var(--mute);
  font-size: 1.02rem;
  line-height: 1.5;
  max-width: 28rem;
}

.process__track > li:hover .process__dot {
  background: var(--ink);
  border-color: var(--ink);
  transform: scale(1.15);
  box-shadow: 0 0 0 5px rgba(29, 29, 31, 0.06);
}

.process__track > li:hover .process__num {
  color: var(--ink);
}

.process__track > li:hover .process__body h3 {
  letter-spacing: -0.02em;
}

/* ========== INDUSTRIES ========== */
.industries {
  position: relative;
  padding: clamp(5.5rem, 11vw, 9.5rem) 0;
  background: #f4f4f6;
  overflow: hidden;
}

.industries__atmosphere {
  position: absolute;
  inset: -8% 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 45% at 85% 15%, rgba(255, 255, 255, 0.95), transparent 58%),
    radial-gradient(ellipse 42% 50% at 8% 85%, rgba(26, 39, 68, 0.07), transparent 62%),
    linear-gradient(165deg, #fafafa 0%, #f1f1f4 48%, #e8ebf1 100%);
  will-change: transform;
}

.industries__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 128 128' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.industries__head {
  position: relative;
  z-index: 1;
  max-width: 38rem;
  margin-bottom: clamp(2.75rem, 6vw, 4.5rem);
}

.industries__head-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  max-width: 38rem;
  margin-bottom: 0.9rem;
}

.industries__head-top .eyebrow {
  margin-bottom: 0;
}

.industries__count {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(29, 29, 31, 0.35);
}

.industries__head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 5.2vw, 3.75rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: var(--ink);
  margin-bottom: 1rem;
}

.industries__lead {
  color: var(--mute);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.55;
  max-width: 32rem;
}

.industries__board {
  position: relative;
  z-index: 1;
  isolation: isolate;
  overflow: hidden;
  border-radius: 1.5rem;
  padding: clamp(0.35rem, 1vw, 0.5rem);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.62));
  border: 1px solid rgba(29, 29, 31, 0.08);
  box-shadow:
    0 40px 80px rgba(29, 29, 31, 0.07),
    0 8px 24px rgba(29, 29, 31, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.industries__watermark {
  position: absolute;
  right: -2%;
  top: 50%;
  z-index: 0;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(5rem, 14vw, 10rem);
  letter-spacing: -0.06em;
  line-height: 1;
  color: rgba(29, 29, 31, 0.035);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.industries__list {
  position: relative;
  z-index: 1;
  list-style: none;
  display: grid;
  gap: 0;
}

.industries__list > li {
  position: relative;
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  align-items: baseline;
  padding: 1.35rem 1.35rem 1.35rem 1.5rem;
  border-bottom: 1px solid rgba(29, 29, 31, 0.07);
  transition: background 0.45s var(--ease), padding-left 0.45s var(--ease);
}

.industries__list > li:last-child {
  border-bottom: none;
}

.industries__list > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 2px;
  border-radius: 2px;
  background: var(--ink);
  opacity: 0;
  transform: scaleY(0.4);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.industries__num {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(29, 29, 31, 0.3);
  transition: color 0.35s;
}

.industries__copy {
  display: grid;
  gap: 0.3rem;
  min-width: 0;
}

.industries__copy strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  letter-spacing: -0.035em;
  color: var(--ink);
  transition: letter-spacing 0.4s var(--ease);
}

.industries__copy span {
  color: var(--mute);
  font-size: 0.98rem;
  line-height: 1.45;
  max-width: 26rem;
}

.industries__list > li:hover {
  background: rgba(255, 255, 255, 0.72);
  padding-left: 1.85rem;
}

.industries__list > li:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

.industries__list > li:hover .industries__num {
  color: var(--ink);
}

.industries__list > li:hover .industries__copy strong {
  letter-spacing: -0.02em;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  position: relative;
  padding: clamp(5.5rem, 11vw, 9.5rem) 0;
  background:
    linear-gradient(180deg, #eaf0f6 0%, #e4ebf3 48%, #dce4ef 100%);
  overflow: hidden;
  isolation: isolate;
}

.testimonials__field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.testimonials__base {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 90% 12%, rgba(255, 255, 255, 0.9), transparent 58%),
    radial-gradient(ellipse 45% 42% at 8% 80%, rgba(26, 39, 68, 0.08), transparent 60%),
    linear-gradient(180deg, rgba(245, 249, 252, 0.55) 0%, transparent 40%);
}

/* Soft quote chorus */
.testimonials__quotes {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.testimonials__quotes span {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 0.75;
  letter-spacing: -0.08em;
  color: rgba(26, 39, 68, 0.055);
  user-select: none;
}

.testimonials__quotes span:nth-child(1) {
  left: 2%;
  top: 8%;
  font-size: clamp(8rem, 22vw, 16rem);
}

.testimonials__quotes span:nth-child(2) {
  right: 4%;
  top: 28%;
  font-size: clamp(5rem, 14vw, 10rem);
  color: rgba(26, 39, 68, 0.04);
}

.testimonials__quotes span:nth-child(3) {
  left: 18%;
  bottom: 6%;
  font-size: clamp(6rem, 16vw, 12rem);
  color: rgba(26, 39, 68, 0.035);
}

/* Static voice bars — partner voices */
.testimonials__bars {
  position: absolute;
  right: 6%;
  top: 14%;
  display: flex;
  align-items: flex-end;
  gap: 0.45rem;
  height: min(28vw, 220px);
  opacity: 0.45;
}

.testimonials__bars i {
  display: block;
  width: 0.35rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(26, 39, 68, 0.22), rgba(26, 39, 68, 0.06));
}

.testimonials__bars i:nth-child(1) { height: 28%; }
.testimonials__bars i:nth-child(2) { height: 52%; }
.testimonials__bars i:nth-child(3) { height: 38%; }
.testimonials__bars i:nth-child(4) { height: 72%; }
.testimonials__bars i:nth-child(5) { height: 46%; }
.testimonials__bars i:nth-child(6) { height: 88%; }
.testimonials__bars i:nth-child(7) { height: 58%; }
.testimonials__bars i:nth-child(8) { height: 34%; }
.testimonials__bars i:nth-child(9) { height: 66%; }
.testimonials__bars i:nth-child(10) { height: 42%; }
.testimonials__bars i:nth-child(11) { height: 76%; }
.testimonials__bars i:nth-child(12) { height: 30%; }

.testimonials__thread {
  position: absolute;
  left: 8%;
  right: 28%;
  top: 42%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(26, 39, 68, 0.1) 12%,
    rgba(26, 39, 68, 0.16) 50%,
    rgba(26, 39, 68, 0.1) 88%,
    transparent
  );
  opacity: 0.7;
}

.testimonials__thread::before,
.testimonials__thread::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: rgba(26, 39, 68, 0.18);
  transform: translateY(-50%);
}

.testimonials__thread::before { left: 18%; }
.testimonials__thread::after { right: 22%; }

.testimonials__glow {
  position: absolute;
  left: 50%;
  top: 48%;
  width: min(70vw, 680px);
  height: min(40vw, 360px);
  transform: translate(-50%, -40%);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.75), transparent 68%);
  filter: blur(8px);
  opacity: 0.7;
}

.testimonials__mark {
  position: absolute;
  right: 5%;
  bottom: 10%;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(3.5rem, 11vw, 7.5rem);
  letter-spacing: -0.06em;
  line-height: 0.85;
  color: rgba(26, 39, 68, 0.045);
  text-transform: lowercase;
  user-select: none;
  white-space: nowrap;
}

.testimonials__grain {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 128 128' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

.testimonials__edge {
  position: absolute;
  left: 0;
  right: 0;
  height: clamp(3rem, 8vw, 5.5rem);
  z-index: 2;
}

.testimonials__edge--top {
  top: 0;
  background: linear-gradient(180deg, rgba(234, 240, 246, 0.95), transparent);
}

.testimonials__edge--bot {
  bottom: 0;
  background: linear-gradient(0deg, rgba(220, 228, 239, 0.9), transparent);
}

.testimonials > .shell {
  position: relative;
  z-index: 1;
}

@media (max-width: 719px) {
  .testimonials__bars {
    right: 4%;
    top: 10%;
    height: 22vw;
    opacity: 0.35;
  }

  .testimonials__quotes span:nth-child(3) {
    display: none;
  }
}

.testimonials__head {
  position: relative;
  z-index: 1;
  max-width: 34rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

.testimonials__head-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.testimonials__head-top .eyebrow {
  margin-bottom: 0;
}

.testimonials__count {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(29, 29, 31, 0.35);
}

.testimonials__head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 5.2vw, 3.75rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: var(--ink);
}

.quote--lead {
  position: relative;
  z-index: 1;
  display: grid;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(2.25rem, 5vw, 3.75rem);
  border-radius: 1.6rem;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(ellipse 60% 70% at 85% 15%, rgba(255, 255, 255, 0.1), transparent 55%),
    linear-gradient(155deg, #1a1d24 0%, #0e1014 48%, #141820 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 50px 100px rgba(14, 16, 20, 0.35),
    0 12px 32px rgba(14, 16, 20, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.quote__sheen {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(255, 255, 255, 0.05) 48%,
    transparent 62%
  );
  transform: translateX(-120%);
  animation: quote-sheen 8s var(--ease) 1s infinite;
}

@keyframes quote-sheen {
  0%,
  60% {
    transform: translateX(-120%);
  }
  85%,
  100% {
    transform: translateX(120%);
  }
}

.quote__mark {
  position: absolute;
  top: -0.08em;
  left: 0.2rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(7rem, 18vw, 13rem);
  line-height: 0.75;
  letter-spacing: -0.06em;
  color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
  user-select: none;
}

.quote__lead-body {
  position: relative;
  z-index: 1;
  max-width: 34rem;
}

.quote__kicker {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.15rem;
}

.quote--lead .quote__text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.65rem, 3.8vw, 2.55rem);
  line-height: 1.18;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 2.25rem;
}

.quote--lead footer {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.quote footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.quote__avatar {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #fff;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.quote__meta {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

.quote__meta strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: #fff;
}

.quote__meta span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.testimonials__rail {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  border-radius: 1.45rem;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.48));
  border: 1px solid rgba(29, 29, 31, 0.08);
  box-shadow:
    0 30px 60px rgba(29, 29, 31, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.testimonials__rail .quote {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.55rem 1.65rem;
  border-bottom: 1px solid rgba(29, 29, 31, 0.07);
  transition: background 0.45s var(--ease);
}

.testimonials__rail .quote:last-child {
  border-bottom: none;
}

.testimonials__rail .quote:hover {
  background: rgba(255, 255, 255, 0.78);
}

.quote__index {
  position: absolute;
  top: 1.35rem;
  right: 1.35rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(29, 29, 31, 0.28);
}

.quote__tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(29, 29, 31, 0.4);
  margin-bottom: 0.85rem;
}

.testimonials__rail .quote__text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.08rem, 2vw, 1.2rem);
  letter-spacing: -0.025em;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 1.5rem;
  flex: 1;
}

.testimonials__rail .quote__avatar {
  width: 2.35rem;
  height: 2.35rem;
  font-size: 0.65rem;
  color: #fff;
  background: linear-gradient(145deg, #2f3a4d, #1a2744);
  border: none;
  box-shadow: 0 4px 12px rgba(26, 39, 68, 0.18);
}

.testimonials__rail .quote__meta strong {
  color: var(--ink);
}

.testimonials__rail .quote__meta span {
  color: var(--mute);
}

@media (prefers-reduced-motion: reduce) {
  .quote__sheen {
    animation: none;
  }
}

/* ========== INSIGHTS ========== */
.insights {
  position: relative;
  padding: clamp(5.5rem, 11vw, 9.5rem) 0;
  background:
    linear-gradient(180deg, #faf8f4 0%, #f5f4f1 48%, #ebe8e2 100%);
  overflow: hidden;
  isolation: isolate;
}

.insights__field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.insights__base {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 58% 50% at 92% 10%, rgba(255, 255, 255, 0.85), transparent 58%),
    radial-gradient(ellipse 42% 45% at 6% 88%, rgba(26, 39, 68, 0.05), transparent 60%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.55) 0%, transparent 40%);
}

/* Soft manuscript lines — editorial desk */
.insights__lines {
  position: absolute;
  inset: 16% 8% 14% 12%;
  opacity: 0.4;
  background-image: repeating-linear-gradient(
    180deg,
    transparent 0 2.15rem,
    rgba(29, 29, 31, 0.055) 2.15rem calc(2.15rem + 1px)
  );
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 78%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 12%, #000 78%, transparent);
}

.insights__margin {
  position: absolute;
  top: 14%;
  bottom: 12%;
  left: 10%;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(26, 39, 68, 0.14) 15%,
    rgba(26, 39, 68, 0.2) 50%,
    rgba(26, 39, 68, 0.14) 85%,
    transparent
  );
  opacity: 0.75;
}

.insights__folio {
  position: absolute;
  right: 7%;
  top: 14%;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(29, 29, 31, 0.22);
  user-select: none;
}

.insights__ink {
  position: absolute;
  left: 14%;
  top: 36%;
  width: min(42vw, 380px);
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    rgba(29, 29, 31, 0.14),
    rgba(29, 29, 31, 0.05) 70%,
    transparent
  );
  transform: rotate(-1.5deg);
  opacity: 0.65;
}

.insights__ink::after {
  content: "";
  position: absolute;
  left: 8%;
  top: 1.6rem;
  width: 55%;
  height: 1.5px;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    rgba(29, 29, 31, 0.08),
    transparent
  );
  transform: rotate(0.8deg);
}

.insights__ribbon {
  position: absolute;
  right: 12%;
  top: 0;
  width: 1.15rem;
  height: 22%;
  background: linear-gradient(
    180deg,
    rgba(26, 39, 68, 0.14) 0%,
    rgba(26, 39, 68, 0.08) 70%,
    rgba(26, 39, 68, 0.02) 100%
  );
  clip-path: polygon(0 0, 100% 0, 100% 88%, 50% 100%, 0 88%);
  opacity: 0.55;
}

.insights__mark {
  position: absolute;
  left: 6%;
  bottom: 8%;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(4rem, 12vw, 8rem);
  letter-spacing: -0.06em;
  line-height: 0.85;
  color: rgba(29, 29, 31, 0.04);
  text-transform: lowercase;
  user-select: none;
  white-space: nowrap;
}

.insights__grain {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 128 128' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

.insights__edge {
  position: absolute;
  left: 0;
  right: 0;
  height: clamp(3rem, 8vw, 5.5rem);
  z-index: 2;
}

.insights__edge--top {
  top: 0;
  background: linear-gradient(180deg, rgba(250, 248, 244, 0.95), transparent);
}

.insights__edge--bot {
  bottom: 0;
  background: linear-gradient(0deg, rgba(235, 232, 226, 0.9), transparent);
}

.insights > .shell {
  position: relative;
  z-index: 1;
}

@media (max-width: 719px) {
  .insights__folio {
    right: 5%;
    top: 12%;
  }

  .insights__ribbon {
    right: 8%;
    height: 16%;
  }

  .insights__lines {
    inset: 18% 5% 16% 8%;
    opacity: 0.3;
  }
}

.insights__head {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  margin-bottom: clamp(2.5rem, 5.5vw, 4rem);
}

.insights__head-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.insights__head-top .eyebrow {
  margin-bottom: 0;
}

.insights__all {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--mute);
  transition: color 0.3s;
}

.insights__all span {
  display: inline-block;
  transition: transform 0.35s var(--ease);
}

.insights__all:hover {
  color: var(--ink);
}

.insights__all:hover span {
  transform: translateX(3px);
}

.insights__head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 5.2vw, 3.75rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: var(--ink);
  margin-bottom: 1rem;
}

.insights__lead {
  color: var(--mute);
  font-size: clamp(1.05rem, 2vw, 1.18rem);
  line-height: 1.55;
  max-width: 32rem;
}

.insights__magazine {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.25rem;
}

.insight-feature {
  display: grid;
  gap: 0;
  border-radius: 1.55rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(29, 29, 31, 0.08);
  box-shadow:
    0 40px 80px rgba(29, 29, 31, 0.07),
    0 8px 24px rgba(29, 29, 31, 0.04);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.insight-feature:hover {
  transform: translateY(-4px);
  box-shadow:
    0 48px 96px rgba(29, 29, 31, 0.1),
    0 12px 28px rgba(29, 29, 31, 0.06);
}

.insight-feature__media {
  display: block;
  min-height: 14rem;
  background: #12151b;
  overflow: hidden;
}

.insight-feature__visual {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 14rem;
  background:
    radial-gradient(ellipse 70% 80% at 70% 30%, rgba(255, 255, 255, 0.12), transparent 55%),
    linear-gradient(145deg, #1c2230 0%, #0d1016 55%, #182030 100%);
}

.insight-feature__visual span {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.7s var(--ease), opacity 0.7s;
}

.insight-feature__visual span:nth-child(1) {
  width: 42%;
  height: 58%;
  left: 12%;
  top: 18%;
  border-radius: 1.25rem;
  transform: rotate(-8deg);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), transparent);
}

.insight-feature__visual span:nth-child(2) {
  width: 28%;
  height: 28%;
  right: 16%;
  top: 22%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.insight-feature__visual span:nth-child(3) {
  width: 34%;
  height: 18%;
  right: 12%;
  bottom: 18%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  transform: rotate(12deg);
}

.insight-feature:hover .insight-feature__visual span:nth-child(1) {
  transform: rotate(-4deg) translateY(-6px);
}

.insight-feature:hover .insight-feature__visual span:nth-child(2) {
  transform: scale(1.08);
}

.insight-feature:hover .insight-feature__visual span:nth-child(3) {
  transform: rotate(6deg) translateX(-8px);
}

.insight-feature__copy {
  display: grid;
  gap: 1rem;
  padding: clamp(1.75rem, 4vw, 2.5rem);
}

.insight-feature__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.insight-feature__meta em {
  font-style: normal;
  font-size: 0.82rem;
  color: var(--mute);
}

.insight__tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(29, 29, 31, 0.42);
}

.insight-feature__copy h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.55rem, 3.2vw, 2.25rem);
  letter-spacing: -0.04em;
  line-height: 1.15;
  max-width: 18ch;
}

.insight-feature__copy h3 a {
  color: var(--ink);
  transition: opacity 0.3s;
}

.insight-feature__copy h3 a:hover {
  opacity: 0.7;
}

.insight-feature__copy > p {
  color: var(--mute);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 34rem;
}

.insight-feature__link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.35rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
}

.insight-feature__link span {
  display: inline-grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 0.85rem;
  transition: transform 0.4s var(--ease);
}

.insight-feature:hover .insight-feature__link span {
  transform: translateX(3px);
}

.insights__side {
  display: grid;
  gap: 0;
  border-radius: 1.45rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(29, 29, 31, 0.08);
  box-shadow:
    0 28px 56px rgba(29, 29, 31, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.insight-mini {
  display: grid;
  grid-template-columns: 2.75rem 1fr;
  gap: 1rem;
  padding: 1.55rem 1.45rem;
  border-bottom: 1px solid rgba(29, 29, 31, 0.07);
  transition: background 0.4s var(--ease), padding-left 0.45s var(--ease);
}

.insight-mini:last-child {
  border-bottom: none;
}

.insight-mini:hover {
  background: rgba(255, 255, 255, 0.9);
  padding-left: 1.75rem;
}

.insight-mini__num {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(29, 29, 31, 0.3);
  padding-top: 0.15rem;
  transition: color 0.35s;
}

.insight-mini:hover .insight-mini__num {
  color: var(--ink);
}

.insight-mini .insight__tag {
  display: block;
  margin-bottom: 0.4rem;
}

.insight-mini h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  letter-spacing: -0.03em;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 0.55rem;
}

.insight-mini em {
  font-style: normal;
  font-size: 0.82rem;
  color: var(--mute);
}

@media (prefers-reduced-motion: reduce) {
  .insight-feature:hover {
    transform: none;
  }
}

/* ========== FAQ ========== */
.faq {
  position: relative;
  padding: clamp(5.5rem, 11vw, 9.5rem) 0;
  background:
    linear-gradient(180deg, #f1eff7 0%, #e8e6f0 48%, #dddbe8 100%);
  overflow: hidden;
  isolation: isolate;
}

.faq__field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.faq__base {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 12% 20%, rgba(255, 255, 255, 0.8), transparent 58%),
    radial-gradient(ellipse 48% 45% at 88% 78%, rgba(26, 39, 68, 0.07), transparent 60%),
    linear-gradient(180deg, rgba(250, 249, 253, 0.5) 0%, transparent 42%);
}

/* Soft doorway — “before the first call” threshold */
.faq__portal {
  position: absolute;
  left: 6%;
  top: 18%;
  width: min(28vw, 260px);
  height: min(58vw, 480px);
  border: 1.5px solid rgba(29, 29, 31, 0.08);
  border-bottom: none;
  border-radius: 9rem 9rem 0 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.05) 55%, transparent 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
  opacity: 0.75;
}

.faq__portal::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  top: 14%;
  bottom: 0;
  border: 1px solid rgba(29, 29, 31, 0.05);
  border-bottom: none;
  border-radius: 7rem 7rem 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.25), transparent 70%);
}

/* Soft call rings */
.faq__ring {
  position: absolute;
  left: 14%;
  top: 42%;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.faq__ring--a {
  width: min(22vw, 180px);
  height: min(22vw, 180px);
  opacity: 0.7;
}

.faq__ring--b {
  width: min(34vw, 280px);
  height: min(34vw, 280px);
  opacity: 0.45;
  border-style: dashed;
}

.faq__ring--c {
  width: min(48vw, 400px);
  height: min(48vw, 400px);
  opacity: 0.28;
}

/* Soft dial pad */
.faq__dial {
  position: absolute;
  right: 8%;
  bottom: 14%;
  width: min(22vw, 160px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem 1rem;
  opacity: 0.4;
}

.faq__dial i {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: rgba(29, 29, 31, 0.16);
  justify-self: center;
}

.faq__dial i:nth-child(5) {
  background: rgba(29, 29, 31, 0.28);
  box-shadow: 0 0 0 5px rgba(29, 29, 31, 0.04);
}

.faq__marks {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.faq__marks span {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: rgba(29, 29, 31, 0.05);
  user-select: none;
}

.faq__marks span:nth-child(1) {
  right: 18%;
  top: 12%;
  font-size: clamp(6rem, 16vw, 11rem);
}

.faq__marks span:nth-child(2) {
  left: 32%;
  bottom: 18%;
  font-size: clamp(4rem, 11vw, 7.5rem);
  color: rgba(29, 29, 31, 0.035);
}

.faq__marks span:nth-child(3) {
  right: 6%;
  top: 48%;
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: rgba(29, 29, 31, 0.04);
}

.faq__mark {
  position: absolute;
  left: 5%;
  bottom: 8%;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(3.5rem, 11vw, 7.5rem);
  letter-spacing: -0.06em;
  line-height: 0.85;
  color: rgba(29, 29, 31, 0.045);
  text-transform: lowercase;
  user-select: none;
  white-space: nowrap;
}

.faq__grain {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 128 128' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

.faq__edge {
  position: absolute;
  left: 0;
  right: 0;
  height: clamp(3rem, 8vw, 5.5rem);
  z-index: 2;
}

.faq__edge--top {
  top: 0;
  background: linear-gradient(180deg, rgba(241, 239, 247, 0.95), transparent);
}

.faq__edge--bot {
  bottom: 0;
  background: linear-gradient(0deg, rgba(221, 219, 232, 0.9), transparent);
}

@media (max-width: 719px) {
  .faq__portal {
    width: 42vw;
    height: 52vw;
    left: 2%;
    top: 12%;
    opacity: 0.5;
  }

  .faq__dial {
    right: 5%;
    bottom: 10%;
    opacity: 0.3;
  }

  .faq__ring--c {
    display: none;
  }
}

.faq__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.75rem;
}

.faq__head {
  max-width: 24rem;
}

.faq__head-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.faq__head-top .eyebrow {
  margin-bottom: 0;
}

.faq__count {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(29, 29, 31, 0.35);
}

.faq__head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 5.2vw, 3.65rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: var(--ink);
  margin-bottom: 1rem;
}

.faq__lead {
  color: var(--mute);
  font-size: 1.08rem;
  line-height: 1.55;
  margin-bottom: 1.75rem;
}

.faq__aside {
  padding-top: 1.35rem;
  border-top: 1px solid rgba(29, 29, 31, 0.1);
}

.faq__aside > p {
  font-size: 0.9rem;
  color: var(--mute);
  margin-bottom: 0.55rem;
}

.faq__contact {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--ink);
  transition: opacity 0.3s;
}

.faq__contact span {
  display: inline-block;
  transition: transform 0.35s var(--ease);
}

.faq__contact:hover {
  opacity: 0.7;
}

.faq__contact:hover span {
  transform: translateX(3px);
}

.faq__panel {
  position: relative;
  isolation: isolate;
  border-radius: 1.55rem;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.64));
  border: 1px solid rgba(29, 29, 31, 0.08);
  box-shadow:
    0 42px 84px rgba(29, 29, 31, 0.08),
    0 10px 28px rgba(29, 29, 31, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.faq__watermark {
  position: absolute;
  right: -2%;
  bottom: -0.18em;
  z-index: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(6rem, 16vw, 11rem);
  line-height: 0.8;
  letter-spacing: -0.06em;
  color: rgba(29, 29, 31, 0.035);
  pointer-events: none;
  user-select: none;
}

.faq__item {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid rgba(29, 29, 31, 0.07);
}

.faq__item:last-child {
  border-bottom: none;
}

.faq__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--ink);
  opacity: 0;
  transform: scaleY(0.35);
  transition: opacity 0.4s var(--ease), transform 0.45s var(--ease);
}

.faq__item[open]::before,
.faq__item.is-open::before {
  opacity: 1;
  transform: scaleY(1);
}

.faq__item summary {
  display: grid;
  grid-template-columns: 2.5rem 1fr auto;
  gap: 0.85rem 1rem;
  align-items: center;
  padding: 1.4rem 1.4rem;
  font-family: var(--font-display);
  list-style: none;
  cursor: pointer;
  transition: background 0.4s var(--ease);
}

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

.faq__item summary:hover {
  background: rgba(255, 255, 255, 0.55);
}

.faq__num {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(29, 29, 31, 0.3);
  transition: color 0.35s;
}

.faq__main {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
}

.faq__tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(29, 29, 31, 0.38);
}

.faq__q {
  font-weight: 600;
  font-size: clamp(1.08rem, 2.1vw, 1.28rem);
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.28;
}

.faq__icon {
  position: relative;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid rgba(29, 29, 31, 0.14);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 4px 12px rgba(29, 29, 31, 0.04);
  transition: background 0.35s, border-color 0.35s, transform 0.45s var(--ease), box-shadow 0.35s;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--ink);
  transition: transform 0.35s var(--ease), opacity 0.35s, background 0.35s;
}

.faq__icon::before {
  width: 0.6rem;
  height: 1.5px;
  transform: translate(-50%, -50%);
}

.faq__icon::after {
  width: 1.5px;
  height: 0.6rem;
  transform: translate(-50%, -50%);
}

.faq__item[open] summary,
.faq__item.is-open summary {
  background: rgba(255, 255, 255, 0.78);
  padding-bottom: 0.85rem;
}

.faq__item[open] .faq__num,
.faq__item[open] .faq__tag,
.faq__item.is-open .faq__num,
.faq__item.is-open .faq__tag {
  color: var(--ink);
}

.faq__item[open] .faq__icon,
.faq__item.is-open .faq__icon {
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 8px 18px rgba(29, 29, 31, 0.18);
  transform: rotate(90deg);
}

.faq__item[open] .faq__icon::before,
.faq__item[open] .faq__icon::after,
.faq__item.is-open .faq__icon::before,
.faq__item.is-open .faq__icon::after {
  background: #fff;
}

.faq__item[open] .faq__icon::after,
.faq__item.is-open .faq__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0 1.4rem;
  overflow: hidden;
  transition: grid-template-rows 0.48s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq__item.is-open .faq__a {
  grid-template-rows: 1fr;
}

.faq__a-inner {
  overflow: hidden;
  min-height: 0;
  opacity: 0;
  transition: opacity 0.3s ease 0.05s;
}

.faq__item.is-open .faq__a-inner {
  opacity: 1;
}

.faq__a p {
  color: var(--mute);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 34rem;
  margin: 0;
  padding: 0 0 1.55rem 3.1rem;
}

@media (max-width: 719px) {
  .faq__panel {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow:
      0 18px 40px rgba(29, 29, 31, 0.06),
      inset 0 1px 0 rgba(255, 255, 255, 0.95);
  }

  .faq__watermark,
  .faq__portal,
  .faq__dial,
  .faq__ring,
  .faq__marks,
  .faq__grain {
    display: none;
  }

  .faq__a {
    transition: grid-template-rows 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    padding: 0 1.1rem;
  }

  .faq__a-inner {
    transform: none;
    transition: opacity 0.2s ease 0.03s;
  }

  .faq__item.is-open .faq__a-inner {
    transform: none;
  }

  .faq__item summary {
    padding: 1.15rem 1.1rem;
    gap: 0.65rem 0.75rem;
    grid-template-columns: 2.1rem 1fr auto;
  }

  .faq__a p {
    font-size: 0.98rem;
    padding: 0 0 1.25rem 0;
    max-width: none;
  }

  .faq__q {
    font-size: 1.02rem;
  }
}

/* ========== CTA ========== */
.cta {
  position: relative;
  padding: clamp(5.5rem, 11vw, 9.5rem) 0;
  background: #080808;
  color: #fff;
  overflow: hidden;
}

.cta__atmosphere {
  position: absolute;
  inset: -12% 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 52% 55% at 88% 18%, rgba(255, 255, 255, 0.1), transparent 58%),
    radial-gradient(ellipse 42% 48% at 8% 88%, rgba(26, 39, 68, 0.5), transparent 62%),
    radial-gradient(ellipse 28% 30% at 45% 40%, rgba(255, 255, 255, 0.04), transparent 70%),
    linear-gradient(165deg, #151515 0%, #080808 48%, #0c1018 100%);
  will-change: transform;
}

.cta__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.055;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 128 128' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cta__watermark {
  position: absolute;
  left: -2%;
  bottom: -0.2em;
  z-index: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(7rem, 22vw, 16rem);
  line-height: 0.8;
  letter-spacing: -0.06em;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  user-select: none;
}

.cta__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
}

.cta__copy .eyebrow {
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 0.9rem;
}

.cta__copy h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 6.2vw, 4.25rem);
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin-bottom: 1.1rem;
}

.cta__lead {
  color: rgba(255, 255, 255, 0.55);
  max-width: 28rem;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.55;
}

.cta__points {
  list-style: none;
  display: grid;
  gap: 0;
  margin-bottom: 2rem;
  max-width: 26rem;
  border-radius: 1.15rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta__points li {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cta__points li:last-child {
  border-bottom: none;
}

.cta__points span {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.32);
  padding-top: 0.2rem;
}

.cta__points strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.15rem;
}

.cta__points em {
  font-style: normal;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.4;
}

.cta__direct {
  padding-top: 0.25rem;
}

.cta__direct > p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0.45rem;
}

.cta__mail {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  padding-bottom: 0.2rem;
  transition: border-color 0.3s, opacity 0.3s;
}

.cta__mail:hover {
  border-color: #fff;
}

.consult {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
  padding: clamp(1.65rem, 3.5vw, 2.25rem);
  border-radius: 1.55rem;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 48px 96px rgba(0, 0, 0, 0.4),
    0 12px 32px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: border-color 0.4s, transform 0.45s var(--ease), background 0.4s, box-shadow 0.45s;
}

.consult:focus-within {
  border-color: rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
  transform: translateY(-4px);
  box-shadow:
    0 56px 110px rgba(0, 0, 0, 0.45),
    0 16px 36px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.consult__sheen {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(255, 255, 255, 0.05) 48%,
    transparent 62%
  );
  transform: translateX(-120%);
  animation: consult-sheen 8s var(--ease) 1.4s infinite;
}

@keyframes consult-sheen {
  0%,
  58% {
    transform: translateX(-120%);
  }
  82%,
  100% {
    transform: translateX(120%);
  }
}

.consult__head,
.consult__chips,
.consult__row,
.consult .field,
.consult .btn,
.consult__note {
  position: relative;
  z-index: 1;
}

.consult__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.2rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.consult__head h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.35rem;
}

.consult__head p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.42);
}

.consult__status {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.7rem;
  border-radius: 0.55rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.consult__status::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #7ddea0;
  box-shadow: 0 0 0 3px rgba(125, 222, 160, 0.18);
}

.consult__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.consult__chip {
  padding: 0.5rem 0.85rem;
  border-radius: 0.55rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s var(--ease);
}

.consult__chip:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

.consult__chip.is-active {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.consult__row {
  display: grid;
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.field span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.field input,
.field select,
.field textarea {
  font: inherit;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.9rem;
  padding: 0.95rem 1.1rem;
  outline: none;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.45) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.45) 50%, transparent 50%);
  background-position:
    calc(100% - 1.15rem) calc(50% - 0.15rem),
    calc(100% - 0.85rem) calc(50% - 0.15rem);
  background-size: 0.35rem 0.35rem, 0.35rem 0.35rem;
  background-repeat: no-repeat;
  padding-right: 2.25rem;
}

.field select option {
  color: var(--ink);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06);
}

.consult .btn--light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 0.2rem;
  transition: transform 0.35s var(--ease), background 0.3s, box-shadow 0.35s;
}

.consult .btn--light span {
  transition: transform 0.35s var(--ease);
}

.consult .btn--light:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(255, 255, 255, 0.14);
}

.consult .btn--light:hover span {
  transform: translateX(3px);
}

.consult__note {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.4;
}

@media (prefers-reduced-motion: reduce) {
  .consult__sheen {
    animation: none;
  }

  .consult:focus-within {
    transform: none;
  }
}

/* ========== FOOTER ========== */
.footer {
  position: relative;
  padding: clamp(4.5rem, 9vw, 6.5rem) 0 2.25rem;
  background: #050505;
  color: rgba(255, 255, 255, 0.55);
  overflow: hidden;
}

.footer__atmosphere {
  position: absolute;
  inset: -8% 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 55% at 5% 0%, rgba(255, 255, 255, 0.07), transparent 55%),
    radial-gradient(ellipse 42% 50% at 95% 100%, rgba(26, 39, 68, 0.35), transparent 60%),
    linear-gradient(180deg, #101010 0%, #050505 55%, #07090e 100%);
}

.footer__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 128 128' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.footer__watermark {
  position: absolute;
  right: -4%;
  bottom: -0.22em;
  z-index: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(8rem, 24vw, 18rem);
  line-height: 0.75;
  letter-spacing: -0.07em;
  color: rgba(255, 255, 255, 0.028);
  pointer-events: none;
  user-select: none;
}

.footer .shell {
  position: relative;
  z-index: 1;
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.75rem;
  margin-bottom: clamp(2.75rem, 5.5vw, 4rem);
  padding: clamp(1.5rem, 3.5vw, 2rem);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.footer__kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0.65rem;
}

.footer__tagline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.85rem, 4.2vw, 2.75rem);
  letter-spacing: -0.045em;
  line-height: 1.1;
  color: #fff;
}

.footer__tagline a {
  color: inherit;
  transition: opacity 0.3s;
}

.footer__tagline a:hover {
  opacity: 0.55;
}

.footer__tagline i {
  font-style: normal;
  color: rgba(255, 255, 255, 0.28);
  margin: 0 0.12em;
}

.footer__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1.3rem;
  border-radius: 0.8rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.footer__cta span {
  transition: transform 0.35s var(--ease);
}

.footer__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(255, 255, 255, 0.14);
}

.footer__cta:hover span {
  transform: translateX(3px);
}

.footer__grid {
  display: grid;
  gap: 2.75rem;
  margin-bottom: clamp(2.75rem, 5.5vw, 4rem);
}

.footer__logo {
  display: grid;
  place-items: center;
  width: 4.25rem;
  height: 4.25rem;
  margin-bottom: 1.15rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.footer__logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.footer__brand strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 0.6rem;
}

.footer__brand > p {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 19rem;
  margin-bottom: 1.15rem;
}

.footer__divisions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.footer__divisions span {
  padding: 0.4rem 0.65rem;
  border-radius: 0.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer__col h4,
.footer__contact h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
  margin-bottom: 0.5rem;
}

.footer__col a {
  position: relative;
  width: fit-content;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.58);
  transition: color 0.3s, transform 0.35s var(--ease);
}

.footer__col a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.footer__col a:hover {
  color: #fff;
  transform: translateX(2px);
}

.footer__col a:hover::after {
  transform: scaleX(1);
}

.footer__contact {
  padding: 1.35rem 1.4rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__mail {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  word-break: break-word;
  color: #fff;
  margin-bottom: 0.55rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  padding-bottom: 0.1rem;
  transition: border-color 0.3s;
}

.footer__mail:hover {
  border-color: #fff;
}

.footer__reply {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 1.15rem;
  line-height: 1.4;
}

.footer__contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
}

.footer__contact-actions a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.62);
  transition: color 0.3s;
}

.footer__contact-actions a:hover {
  color: #fff;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer__bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer__bottom a {
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.3s;
}

.footer__bottom a:hover {
  color: #fff;
}

.footer__bottom a span {
  display: inline-block;
  margin-left: 0.2rem;
  transition: transform 0.35s var(--ease);
}

.footer__bottom a:hover span {
  transform: translateY(-2px);
}

/* ========== RESPONSIVE ========== */
@media (min-width: 720px) {
  .work__split {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem 1.35rem;
  }

  .platforms__top {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    max-width: none;
    gap: 2rem;
  }

  .platforms__aside {
    flex-direction: column;
    align-items: flex-end;
    gap: 0.85rem;
  }

  .platforms__groups {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem 1.15rem;
    align-items: stretch;
  }

  .platforms__group {
    min-height: 100%;
  }

  .why__head {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
    gap: 3rem;
    max-width: none;
  }

  .why__studio {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
    min-height: 28rem;
  }

  .why__display {
    min-height: 100%;
  }

  .why__rail {
    justify-content: center;
  }

  .process__track {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 2rem;
    padding: 2.25rem;
  }

  .process__track::before {
    display: none;
  }

  .process__track > li {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem 0.5rem;
    border-bottom: none;
    border-top: 1px solid rgba(29, 29, 31, 0.07);
  }

  .process__track > li:nth-child(-n + 2) {
    border-top: none;
    padding-top: 0.5rem;
  }

  .process__node {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .process__dot {
    order: -1;
  }

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

  .industries__list > li {
    padding: 1.55rem 1.75rem;
    border-bottom: 1px solid rgba(29, 29, 31, 0.07);
  }

  .industries__list > li:nth-child(odd) {
    border-right: 1px solid rgba(29, 29, 31, 0.07);
  }

  .industries__list > li:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  .industries__list > li:hover {
    padding-left: 2.1rem;
  }

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

  .testimonials__rail .quote {
    padding: 2rem 1.75rem 1.85rem;
    border-bottom: none;
    border-right: 1px solid rgba(29, 29, 31, 0.07);
    min-height: 100%;
  }

  .testimonials__rail .quote:last-child {
    border-right: none;
  }

  .quote--lead {
    padding: clamp(2.75rem, 5vw, 4rem) clamp(2.5rem, 5vw, 4.25rem);
  }

  .quote--lead .quote__text {
    max-width: 22ch;
  }

  .footer__grid {
    grid-template-columns: 1.45fr 1fr 1fr 1.15fr;
    gap: 2rem 3rem;
  }

  .footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 900px) {
  .nav {
    display: flex;
  }

  .burger {
    display: none;
  }

  .header__cta {
    margin-left: 0;
  }

  .scroll-cue {
    display: flex;
  }

  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1.5rem;
  }

  .hero__visual {
    justify-content: flex-end;
  }

  .sculpt {
    width: min(560px, 46vw);
  }

  .manifesto__grid {
    /* columns defined in manifesto section media query */
    gap: 4.5rem;
  }

  .feature-dark {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem 1.5rem;
  }

  .feature-dark__visual {
    display: block;
    min-height: 360px;
  }

  .work__split {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem 1.5rem;
  }

  .stages__dots,
  .stages__scroll {
    display: flex;
  }

  .stages__inner {
    min-height: 100svh;
  }

  .stages__stage {
    grid-template-columns: 1.05fr 0.95fr;
    justify-items: stretch;
    align-items: center;
    padding: 5.5rem clamp(1.5rem, 4vw, 3.5rem) 5.5rem;
  }

  .stages__visual {
    justify-self: center;
    width: min(440px, 40vw);
    height: min(440px, 40vw);
  }

  .stages__frame--diamond {
    width: min(290px, 26vw);
    height: min(290px, 26vw);
  }

  .stages__frame--tilt {
    width: min(255px, 22vw);
    height: min(350px, 32vw);
  }

  .stages__frame--skew {
    width: min(310px, 28vw);
    height: min(330px, 30vw);
  }

  .stages__copy {
    justify-self: end;
    text-align: left;
    align-items: flex-start;
    max-width: 27rem;
    padding-right: clamp(1.5rem, 3vw, 3rem);
  }

  .stages__meta {
    justify-content: flex-start;
  }

  .stages__title {
    max-width: 11ch;
  }

  .stages__rail {
    width: min(460px, 42vw);
    left: clamp(1.5rem, 4vw, 3.5rem);
    translate: 0 0;
  }

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

  .diff__vs {
    display: grid;
    place-items: center;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 4;
    width: 3.1rem;
    height: 3.1rem;
    margin: -1.55rem 0 0 -1.55rem;
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: lowercase;
    color: rgba(255, 255, 255, 0.78);
    background: linear-gradient(160deg, #1c1c1c, #101010);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow:
      0 12px 28px rgba(0, 0, 0, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }

  .diff__panel {
    padding: clamp(2.4rem, 4.2vw, 3.5rem);
  }

  .diff__panel--after:hover {
    background:
      linear-gradient(165deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.05) 42%, rgba(255, 255, 255, 0.03) 100%);
  }

  .process__track {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: clamp(2.5rem, 4vw, 3.25rem) clamp(1.75rem, 3vw, 2.5rem) 2.75rem;
  }

  .process__track::before {
    display: block;
    left: 8%;
    right: 8%;
    top: calc(2.5rem + 1.55rem);
    bottom: auto;
    width: auto;
    height: 1px;
    background: linear-gradient(
      90deg,
      rgba(29, 29, 31, 0.05),
      rgba(29, 29, 31, 0.18) 15%,
      rgba(29, 29, 31, 0.18) 85%,
      rgba(29, 29, 31, 0.05)
    );
  }

  .process__track > li {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    padding: 0 1rem;
    border: none;
    text-align: left;
  }

  .process__track > li:first-child,
  .process__track > li:nth-child(2),
  .process__track > li:last-child {
    padding-top: 0;
    border-top: none;
  }

  .process__node {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.1rem;
    width: auto;
  }

  .process__dot {
    order: 0;
  }

  .process__num {
    font-size: 0.72rem;
  }

  .process__body h3 {
    font-size: clamp(1.4rem, 1.8vw, 1.65rem);
  }

  .process__body p {
    font-size: 0.98rem;
    max-width: 16rem;
  }

  .process__track > li:hover .process__body h3 {
    transform: translateX(2px);
  }

  .faq__grid {
    grid-template-columns: 0.85fr 1.25fr;
    gap: 4.75rem;
    align-items: start;
  }

  .faq__head {
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
  }

  .faq__item summary {
    padding: 1.55rem 1.75rem;
    gap: 1rem 1.15rem;
  }

  .faq__a {
    padding: 0 1.75rem;
  }

  .faq__a p {
    padding: 0 0 1.75rem 3.25rem;
  }

  .insights__magazine {
    grid-template-columns: 1.45fr 0.85fr;
    gap: 1.35rem;
    align-items: stretch;
  }

  .insight-feature {
    grid-template-columns: 0.95fr 1.05fr;
    grid-template-rows: 1fr;
    min-height: 100%;
  }

  .insight-feature__media,
  .insight-feature__visual {
    min-height: 100%;
    height: 100%;
  }

  .insight-feature__copy {
    align-content: center;
    padding: clamp(2rem, 3.5vw, 2.75rem);
  }

  .insights__side {
    display: flex;
    flex-direction: column;
  }

  .insight-mini {
    flex: 1;
    align-content: start;
    padding: 1.85rem 1.65rem;
  }

  .cta__grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 4.5rem;
  }

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

  .consult {
    padding: 2.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  /* Keep accordion height transitions — otherwise expand/collapse snaps (feels like a jump) */
  .service-list__panel,
  .service-list__panel.is-open,
  .faq__a,
  .faq__item.is-open .faq__a {
    transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  .service-list__panel-inner,
  .service-list__panel.is-open .service-list__panel-inner,
  .faq__a-inner,
  .faq__item.is-open .faq__a-inner {
    transition: opacity 0.28s ease !important;
  }

  /* Trust atmosphere is JS-driven (.trust.is-live) — keep ambient CSS fallbacks if JS fails */
  .trust:not(.is-live) .trust__orb--1 {
    animation: trust-float 8s ease-in-out infinite !important;
  }

  .trust:not(.is-live) .trust__orb--2 {
    animation: trust-float 10s ease-in-out infinite reverse !important;
  }

  .trust:not(.is-live) .trust__rings i:nth-child(1) {
    animation: trust-ring 18s linear infinite !important;
  }

  .trust:not(.is-live) .trust__rings i:nth-child(3) {
    animation: trust-ring 26s linear infinite reverse !important;
  }

  .feature-dark__orbit--outer {
    animation: work-spin 18s linear infinite !important;
  }

  .feature-dark__orbit--mid {
    animation: work-spin-rev 14s linear infinite !important;
  }

  .feature-dark__orbit--inner {
    animation: work-spin 11s linear infinite !important;
  }

  .feature-dark__arc span {
    animation: work-spin-rev 9s linear infinite !important;
  }

  .feature-dark__shape {
    animation: work-shape-breathe 6s ease-in-out infinite !important;
  }

  /* Hero sculpt stays in motion (explicit brand request) */
  .sculpt__motion:not(.is-live) {
    animation: sculpt-drift 7s ease-in-out infinite !important;
  }

  .sculpt__form {
    animation: sculpt-breathe 6s ease-in-out infinite !important;
  }

  .sculpt__halo {
    animation: halo-pulse 5.5s ease-in-out infinite !important;
  }

  .sculpt__core {
    animation: core-glow 4s ease-in-out infinite !important;
  }

  .sculpt__ring--outer {
    animation: ring-orbit 18s linear infinite !important;
  }

  .sculpt__ring--mid {
    animation: ring-orbit-rev 14s linear infinite !important;
  }

  .sculpt__ring--inner {
    animation: ring-orbit-inner 22s linear infinite !important;
  }

  .sculpt__arc--a {
    animation: arc-spin 11s linear infinite !important;
  }

  .sculpt__arc--b {
    animation: arc-spin-rev 9s linear infinite !important;
  }

  .sculpt__arc--c {
    animation: arc-spin-c 14s linear infinite !important;
  }

  .sculpt__orb::before {
    animation: orb-ring 3.5s ease-in-out infinite !important;
  }

  .hero__kicker-dot {
    animation: kicker-pulse 3.5s ease-in-out infinite !important;
  }

  .hero__beam {
    animation: beam-sweep 9s ease-in-out infinite alternate !important;
  }

  .sculpt__motion.is-live .sculpt__orb,
  .sculpt__motion.is-live .sculpt__node {
    animation: none !important;
  }

  .reveal,
  .hero__title span > i {
    opacity: 1 !important;
    transform: none !important;
  }
}

html.lenis,
html.lenis body,
html.has-lenis,
html.has-lenis body {
  height: auto;
}

html.lenis,
html.has-lenis {
  scroll-behavior: auto !important;
}

/* ==========================================================================
   Enhancement layer — depth, craft, motion
   ========================================================================== */

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 70;
  opacity: 0.035;
  mix-blend-mode: multiply;
  contain: strict;
  /* Smaller tile + fewer octaves — same look, far cheaper paint */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 128 128' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

.hero__glow {
  position: absolute;
  inset: 2% -8% auto auto;
  width: min(62vw, 680px);
  height: min(62vw, 680px);
  background:
    radial-gradient(circle at 42% 38%, rgba(255, 255, 255, 0.85), transparent 50%),
    radial-gradient(circle, rgba(26, 39, 68, 0.2), transparent 70%);
  filter: blur(32px);
  pointer-events: none;
  animation: glow-drift 10s ease-in-out infinite alternate;
}

@keyframes glow-drift {
  from { transform: translate(-3%, 2%) scale(1); opacity: 0.75; }
  to { transform: translate(5%, -4%) scale(1.06); opacity: 1; }
}

.hero__kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 1.45rem;
}

.hero__kicker-sep {
  color: var(--mute);
  letter-spacing: 0;
  margin-inline: 0.15rem;
}

.hero__kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
  animation: kicker-pulse 3.5s ease-in-out infinite;
}

.hero__kicker-dot--build,
.hero__kicker-dot--scale {
  background: linear-gradient(145deg, #5a76a0, #1a2744);
}

.hero__kicker-dot--sell {
  background: linear-gradient(145deg, #ff9a5c, #ff5c1a);
  animation-delay: -1.2s;
}

.hero__kicker-dot--scale {
  animation-delay: -2.2s;
}

@keyframes kicker-pulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.2); opacity: 1; }
}

/* Richer sculpt polish */
.sculpt {
  transform-style: preserve-3d;
}

.sculpt__motion {
  transform-style: preserve-3d;
}

.sculpt__motion.is-live {
  will-change: transform;
}

.sculpt__motion.is-live .sculpt__orb,
.sculpt__motion.is-live .sculpt__node,
.sculpt__motion.is-live .sculpt__ring,
.sculpt__motion.is-live .sculpt__arc,
.sculpt__motion.is-live .sculpt__halo,
.sculpt__motion.is-live .sculpt__form,
.sculpt__motion.is-live .sculpt__core {
  animation: none;
}

/* Trust: CSS owns ambient spin/pulse; JS only drives pointer parallax */
.trust.is-live .trust__rings i:nth-child(odd) {
  animation: trust-ring 20s linear infinite;
}

.trust.is-live .trust__rings i:nth-child(even) {
  animation: trust-ring 26s linear infinite reverse;
}

.trust.is-live .trust__arc span {
  animation: trust-ring 30s linear infinite reverse;
}

.trust.is-live .trust__flare--1 {
  animation: trust-flare 5.5s ease-in-out infinite;
}

.trust.is-live .trust__flare--2 {
  animation: trust-flare 7s ease-in-out infinite 0.8s;
}

.trust.is-live .trust__beam--a {
  animation: trust-beam 6s ease-in-out infinite;
}

.trust.is-live .trust__beam--b {
  animation: trust-beam 7.5s ease-in-out infinite 0.4s;
}

.trust.is-live .trust__beam--c {
  animation: trust-beam 8.5s ease-in-out infinite 1s;
}

.trust.is-live .trust__ribbon {
  animation: trust-ribbon 9s ease-in-out infinite;
}

.trust.is-live .trust__constellation i {
  animation: trust-twinkle 3.8s ease-in-out infinite;
}

.trust.is-live .trust__constellation i:nth-child(odd) {
  animation-duration: 4.6s;
  animation-delay: 0.5s;
}

.trust.is-live .trust__constellation i:nth-child(3n) {
  animation-duration: 5.2s;
  animation-delay: 1.1s;
}

/* Work orbits only spin while section is live */
.feature-dark__orbit--outer,
.feature-dark__orbit--mid,
.feature-dark__orbit--inner,
.feature-dark__arc span {
  animation-play-state: paused;
}

.work.is-live .feature-dark__orbit--outer,
.work.is-live .feature-dark__orbit--mid,
.work.is-live .feature-dark__orbit--inner,
.work.is-live .feature-dark__arc span {
  animation-play-state: running;
}

/* Service accordion polish — styles live in manifesto section */

/* Trust interactions live in base trust styles */

/* Quote lead */
.quote--lead .quote__text {
  position: relative;
}

/* Mobile nav polish */
.mobile-nav {
  animation: nav-in 0.4s var(--ease);
}

@keyframes nav-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}

/* Process node polish */
.process__track > li {
  border-radius: 0.75rem;
}

.process__body h3 {
  transition: letter-spacing 0.4s var(--ease), transform 0.4s var(--ease);
}

/* Smooth section color edges */
.manifesto,
.trust,
.work,
.stages,
.platforms,
.why,
.diff,
.process,
.industries,
.testimonials,
.insights,
.faq,
.cta {
  position: relative;
}

/* Promote magnetic layers only while interacting */
.magnetic {
  will-change: auto;
}

.magnetic:hover,
.magnetic:focus-visible {
  will-change: transform;
}

.insight-feature__link span,
.consult .btn--light {
  will-change: auto;
}

@media (max-width: 719px) {
  .grain {
    display: none;
  }

  /* Keep shapes/gradients; drop expensive live blurs on small GPUs */
  .hero__glow,
  .trust__aurora,
  .trust__flare,
  .feature-dark__glow,
  .work__bloom,
  .platforms__beam,
  .why__spot {
    filter: none !important;
  }

  .header__panel {
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
  }
}

/* Selection */
::selection {
  background: rgba(26, 39, 68, 0.14);
  color: var(--ink);
}

@media (prefers-reduced-motion: reduce) {
  .grain,
  .hero__glow,
  .hero__wash,
  .hero__beam,
  .feature-dark__glow {
    animation: none !important;
  }

  /* Keep sculpt motion — brand visual explicitly requested to animate */
  .sculpt__ring,
  .sculpt__form,
  .sculpt__halo,
  .sculpt__arc,
  .sculpt__core,
  .sculpt__orb::before {
    animation-duration: 9s;
  }

  .work-case:hover,
  .work-case:focus-visible,
  .process__steps li:hover {
    transform: none;
  }

  .work-case__media {
    transform: none !important;
  }

  .stages__stage,
  .stages__watermark,
  .stages__visual,
  .stages__copy {
    transition: none !important;
  }

  .stages__frame,
  .stages__halo,
  .stages__shine,
  .stages__orbit,
  .stages__core,
  .stages__float,
  .stages__pulse,
  .stages__spark,
  .stages__stage.is-entered .stages__copy > *,
  .stages__stage.is-entered .stages__meta li,
  .stages__stage.is-entered .stages__title,
  .stages__stage.is-entered .stages__float,
  .header.is-ready .logo,
  .header.is-ready .nav,
  .header.is-ready .header__end,
  .header.is-ready .header__cta,
  .header.is-ready .burger,
  .header__glint,
  .header__cta-wash,
  .logo__pulse,
  .header__here i,
  .mobile-nav__backdrop,
  .mobile-nav__sheet {
    animation: none !important;
  }
}

/* ==========================================================================
   Awwwards polish layer — refine without rewriting brand system
   ========================================================================== */

:root {
  --space-section: clamp(7rem, 16vw, 12.5rem);
  --glass: rgba(255, 255, 255, 0.62);
  --glass-border: rgba(255, 255, 255, 0.55);
  --depth-1: 0 1px 2px rgba(29, 29, 31, 0.04), 0 8px 24px rgba(29, 29, 31, 0.06);
  --depth-2: 0 2px 4px rgba(29, 29, 31, 0.04), 0 18px 48px rgba(29, 29, 31, 0.1);
  --depth-3: 0 4px 8px rgba(29, 29, 31, 0.05), 0 32px 72px rgba(29, 29, 31, 0.14);
}

/* Stronger section rhythm */
.manifesto,
.trust,
.work,
.platforms,
.why,
.diff,
.process,
.industries,
.testimonials,
.insights,
.faq {
  padding-block: var(--space-section);
}

.proof {
  position: relative;
  padding: clamp(2.25rem, 5vw, 3.5rem) 0;
  background:
    linear-gradient(180deg, rgba(243, 244, 246, 0.9), rgba(255, 255, 255, 0.95)),
    radial-gradient(ellipse 80% 120% at 50% 0%, rgba(26, 39, 68, 0.05), transparent 70%);
  border-block: 1px solid rgba(29, 29, 31, 0.06);
  overflow: hidden;
}

.proof::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 50%, rgba(255, 255, 255, 0.8), transparent 40%),
    radial-gradient(circle at 82% 40%, rgba(26, 39, 68, 0.04), transparent 45%);
  pointer-events: none;
}

.proof__inner {
  position: relative;
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
}

@media (min-width: 900px) {
  .proof__inner {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
  }
}

.proof__label {
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 0.85rem;
}

.proof__marks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.7rem;
  list-style: none;
}

.proof__marks li {
  position: relative;
}

.proof__marks span {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  box-shadow: var(--depth-1);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(29, 29, 31, 0.72);
  transition:
    transform 0.45s var(--ease-out),
    color 0.3s ease,
    box-shadow 0.45s var(--ease-out),
    border-color 0.3s ease;
}

.proof__marks li:hover span {
  transform: translateY(-2px);
  color: var(--ink);
  border-color: rgba(29, 29, 31, 0.14);
  box-shadow: var(--depth-2);
}

.proof__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

@media (min-width: 1100px) {
  .proof__stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.proof__stat {
  position: relative;
  padding: 1rem 1.05rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(29, 29, 31, 0.07);
  box-shadow: var(--depth-1);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}

.proof__stat::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.55), transparent 55%);
  pointer-events: none;
}

.proof__stat:hover {
  transform: translateY(-3px);
  box-shadow: var(--depth-2);
}

.proof__stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 670;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.proof__stat > span {
  font-size: 0.78rem;
  line-height: 1.3;
  color: var(--mute);
}

/* Hero kicker — premium staggered type motion */
.hero__kicker {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem 0.55rem;
  margin-bottom: 1.35rem;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}

.hero__kicker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero__kicker-word {
  display: inline-block;
  transform-origin: left center;
}

.hero.is-ready .hero__kicker-item {
  animation: kicker-rise 0.9s var(--ease-out) both;
}

.hero.is-ready .hero__kicker-item:nth-child(1) { animation-delay: 0.05s; }
.hero.is-ready .hero__kicker-item:nth-child(3) { animation-delay: 0.18s; }
.hero.is-ready .hero__kicker-item:nth-child(5) { animation-delay: 0.31s; }

@keyframes kicker-rise {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

/* Scroll cue — richer explore prompt */
.scroll-cue {
  display: none;
  gap: 0.75rem;
}

@media (min-width: 960px) {
  .scroll-cue {
    display: flex;
  }
}

.scroll-cue__label {
  writing-mode: vertical-rl;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
}

.scroll-cue__track {
  position: relative;
  width: 1px;
  height: 56px;
  background: rgba(29, 29, 31, 0.12);
  overflow: hidden;
}

.scroll-cue__track i {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(var(--ink), transparent);
  animation: scroll-line 2.2s var(--ease) infinite;
}

.scroll-cue:hover .scroll-cue__track {
  background: rgba(29, 29, 31, 0.22);
}

/* Navbar glass refinement */
.header__panel {
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 10px 40px rgba(29, 29, 31, 0.08);
}

.header.is-scrolled .header__panel {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(22px) saturate(1.35);
  -webkit-backdrop-filter: blur(22px) saturate(1.35);
}

/* Typographic hierarchy lift */
.work__head h2,
.platforms__intro h2,
.why__head h2,
.diff__head h2,
.process__head h2,
.industries__head h2,
.testimonials__head h2,
.insights__head h2,
.faq__head h2,
.cta__copy h2 {
  font-size: clamp(2.55rem, 5.6vw, 4.15rem);
  letter-spacing: -0.042em;
  line-height: 1.02;
}

.manifesto__statement {
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  line-height: 1.22;
  letter-spacing: -0.03em;
}

/* Button ripple */
[data-ripple] {
  position: relative;
  overflow: hidden;
}

.btn-ripple {
  position: absolute;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  margin-top: -6px;
  background: rgba(255, 255, 255, 0.45);
  transform: scale(0);
  opacity: 0.85;
  pointer-events: none;
  animation: btn-ripple 0.7s var(--ease-out) forwards;
  z-index: 3;
}

.btn--light .btn-ripple,
.header__cta .btn-ripple {
  background: rgba(29, 29, 31, 0.12);
}

@keyframes btn-ripple {
  to {
    transform: scale(28);
    opacity: 0;
  }
}

/* Work cases — large case-study cards + device mockups */
.work-case {
  --mx: 70%;
  --my: 35%;
  border-radius: 1.5rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--depth-1);
  transition:
    transform 0.55s var(--ease-out),
    box-shadow 0.55s var(--ease-out),
    border-color 0.35s ease;
}

.work-case:hover,
.work-case:focus-visible {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--depth-3);
  border-color: rgba(255, 255, 255, 0.8);
}

.work-case__media {
  position: relative;
  min-height: clamp(15rem, 28vw, 20rem);
  overflow: hidden;
  isolation: isolate;
}

.work-case__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.28), transparent 42%),
    linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.28));
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
  z-index: 4;
  pointer-events: none;
}

.work-case:hover .work-case__media::after,
.work-case:focus-visible .work-case__media::after {
  opacity: 1;
}

.work-case__preview-label {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  translate: -50% -50%;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.72);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 620;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.4s var(--ease-out), transform 0.45s var(--ease-out);
  pointer-events: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.work-case:hover .work-case__preview-label,
.work-case:focus-visible .work-case__preview-label {
  opacity: 1;
  transform: scale(1);
}

.work-case__device {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 8%;
  translate: -50% 18%;
  opacity: 0;
  filter: blur(8px);
  transition:
    opacity 0.65s var(--ease-out),
    transform 0.75s var(--ease-out),
    translate 0.75s var(--ease-out),
    filter 0.65s var(--ease-out);
  pointer-events: none;
}

.work-case.is-in .work-case__device,
.work-case:hover .work-case__device {
  opacity: 1;
  filter: none;
  translate: -50% 0;
}

.work-case__device--laptop {
  width: min(78%, 17.5rem);
  aspect-ratio: 16 / 10;
}

.work-case__device--phone {
  width: min(34%, 5.8rem);
  aspect-ratio: 9 / 17;
  left: 58%;
}

.work-case__device--tablet {
  width: min(58%, 12rem);
  aspect-ratio: 4 / 3;
}

.work-case__device-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0.55rem 0.55rem 0.35rem 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.2), transparent 40%),
    linear-gradient(180deg, #1a2744, #111827);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  overflow: hidden;
}

.work-case__device--phone .work-case__device-screen {
  border-radius: 1rem;
}

.work-case__device--tablet .work-case__device-screen {
  border-radius: 0.7rem;
}

.work-case__device-base {
  height: 0.45rem;
  margin: 0.2rem auto 0;
  width: 118%;
  margin-left: -9%;
  border-radius: 0 0 0.4rem 0.4rem;
  background: linear-gradient(180deg, #c8cad3, #9ea1ad);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.18);
}

.work-case__ba {
  position: absolute;
  inset: 0;
  --ba: 52%;
}

.work-case__ba-before,
.work-case__ba-after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: end start;
  padding: 0.55rem;
}

.work-case__ba-before {
  background:
    linear-gradient(135deg, #4b5563, #1f2937 60%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 10px);
}

.work-case__ba-after {
  width: var(--ba);
  overflow: hidden;
  background:
    linear-gradient(145deg, #2c4066, #1a2744 45%, #0f172a),
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.2), transparent 40%);
  border-right: 1px solid rgba(255, 255, 255, 0.45);
}

.work-case__ba-before span,
.work-case__ba-after span {
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 620;
}

.work-case__ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--ba);
  width: 2px;
  translate: -50% 0;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
}

.work-case__ba-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  translate: -50% -50%;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.work-case__device-bar {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 12%;
  height: 8%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.work-case__device-card {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 28%;
  height: 28%;
  border-radius: 0.55rem;
  background: linear-gradient(160deg, rgba(255, 140, 66, 0.85), rgba(26, 39, 68, 0.9));
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.work-case__device-card--sm {
  top: 62%;
  height: 16%;
  background: rgba(255, 255, 255, 0.14);
}

.work-case__device-chart {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 14%;
  height: 42%;
  border-radius: 0.4rem;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(255, 255, 255, 0.2) 8% 12%, transparent 12% 22%, rgba(255, 255, 255, 0.28) 22% 26%, transparent 26% 38%, rgba(255, 255, 255, 0.35) 38% 42%, transparent 42% 55%, rgba(255, 255, 255, 0.45) 55% 59%, transparent 59% 72%, rgba(255, 255, 255, 0.55) 72% 76%, transparent 76% 88%, rgba(255, 255, 255, 0.7) 88% 92%, transparent 92%);
  mask-image: linear-gradient(180deg, transparent, #000 30%);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%);
}

.work-case__device-pulse {
  position: absolute;
  width: 18%;
  aspect-ratio: 1;
  right: 12%;
  top: 14%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.55), transparent 70%);
  animation: device-pulse 2.8s ease-in-out infinite;
}

@keyframes device-pulse {
  0%, 100% { transform: scale(0.9); opacity: 0.55; }
  50% { transform: scale(1.15); opacity: 1; }
}

.work-case__body {
  padding: 1.35rem 1.35rem 1.45rem;
}

.work-case__body h3 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  letter-spacing: -0.03em;
}

/* Clip-path media reveal */
.work-case__media {
  clip-path: inset(12% 8% 12% 8% round 1.2rem);
  transition: clip-path 0.9s var(--ease-out), transform 0.7s var(--ease-out);
}

.work-case.is-in .work-case__media,
.work-case:hover .work-case__media {
  clip-path: inset(0 0 0 0 round 0);
}

/* Testimonials — metrics + carousel */
.testimonials__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 0 0 clamp(1.75rem, 4vw, 2.75rem);
}

@media (max-width: 719px) {
  .testimonials__metrics {
    grid-template-columns: 1fr;
  }
}

.testimonials__metric {
  padding: 1.15rem 1.2rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(29, 29, 31, 0.07);
  box-shadow: var(--depth-1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.testimonials__metric b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 670;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.testimonials__metric > span {
  font-size: 0.82rem;
  color: var(--mute);
}

.quote__logo {
  margin-left: auto;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: rgba(29, 29, 31, 0.45);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  background: rgba(255, 255, 255, 0.55);
}

.quote--lead footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.testimonials__carousel {
  position: relative;
}

.testimonials__rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(min(100%, 22rem), 1fr);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 0.25rem;
  -webkit-overflow-scrolling: touch;
}

.testimonials__rail::-webkit-scrollbar {
  display: none;
}

.testimonials__rail .quote {
  scroll-snap-align: start;
  min-height: 100%;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(29, 29, 31, 0.07);
  box-shadow: var(--depth-1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    transform 0.45s var(--ease-out),
    box-shadow 0.45s var(--ease-out),
    border-color 0.35s ease;
}

.testimonials__rail .quote.is-active,
.testimonials__rail .quote:hover {
  transform: translateY(-4px);
  box-shadow: var(--depth-2);
  border-color: rgba(26, 39, 68, 0.14);
}

.testimonials__rail .quote footer {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.35rem;
}

.testimonials__nav {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid rgba(29, 29, 31, 0.1);
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--depth-1);
  transition: transform 0.35s var(--ease-out), background 0.3s ease, box-shadow 0.35s var(--ease-out);
}

.testimonials__nav:hover {
  transform: scale(1.06);
  background: #fff;
  box-shadow: var(--depth-2);
}

.testimonials__dots {
  display: flex;
  gap: 0.45rem;
}

.testimonials__dots button {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  border: 0;
  background: rgba(29, 29, 31, 0.18);
  cursor: pointer;
  transition: width 0.35s var(--ease-out), background 0.3s ease;
}

.testimonials__dots button.is-active {
  width: 1.35rem;
  background: var(--ink);
}

/* Soft ambient section lighting */
.manifesto__field,
.why__field,
.insights__field,
.faq__field {
  opacity: 0.95;
}

/* Section entrance helpers used by GSAP */
[data-enter] {
  will-change: transform, opacity, filter;
}

/* Mobile nav — elegant sheet */
.mobile-nav__sheet {
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--depth-3);
}

.nav-open .mobile-nav__sheet {
  animation: sheet-rise 0.55s var(--ease-out) both;
}

@keyframes sheet-rise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Animated underline links */
.text-link--hero,
.work__head-link,
.platforms__link,
.trust__link,
.faq__contact,
.insights__all {
  position: relative;
  text-decoration: none;
  border-bottom: none;
}

.text-link--hero::after,
.work__head-link::after,
.platforms__link::after,
.trust__link::after,
.faq__contact::after,
.insights__all::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.1rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.28);
  transform-origin: left;
  transition: transform 0.45s var(--ease-out);
  opacity: 0.55;
}

.text-link--hero:hover::after,
.work__head-link:hover::after,
.platforms__link:hover::after,
.trust__link:hover::after,
.faq__contact:hover::after,
.insights__all:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

/* Soft glow on interactive cards */
.service-board,
.platforms__group,
.feature-dark,
.diff__board,
.consult {
  transition: box-shadow 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}

.platforms__group:hover,
.service-board:hover {
  box-shadow: var(--depth-2);
}

/* Performance: GPU-friendly transforms */
.proof__stat,
.work-case,
.testimonials__rail .quote,
.hero__kicker-item,
.work-case__device {
  transform: translateZ(0);
}

@media (max-width: 719px) {
  .work-case__preview-label {
    display: none;
  }

  .work-case__media {
    clip-path: none;
    min-height: 13.5rem;
  }

  .work-case__device {
    opacity: 1;
    filter: none;
    translate: -50% 0;
  }

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

@media (prefers-reduced-motion: reduce) {
  .hero__kicker-item,
  .scroll-cue__track i,
  .work-case__device-pulse,
  .btn-ripple,
  .nav-open .mobile-nav__sheet {
    animation: none !important;
  }

  .work-case,
  .work-case__media,
  .work-case__device,
  .proof__marks span,
  .proof__stat,
  .testimonials__rail .quote {
    transition: none !important;
  }

  .work-case__media {
    clip-path: none;
  }
}

/* ==========================================================================
   Build pillar page — homepage-parity craft
   ========================================================================== */

.page-build {
  --build: #1a2744;
  --build-soft: #2c4066;
  --build-glow: rgba(26, 39, 68, 0.18);
}

.page-sell {
  --sell: #ff5c1a;
  --sell-soft: #ff8a4c;
  --sell-glow: rgba(255, 92, 26, 0.18);
  --build: var(--sell);
  --build-soft: var(--sell-soft);
  --build-glow: var(--sell-glow);
}
.page-scale {
  --scale: #3d5a80;
  --scale-soft: #5a7aa0;
  --scale-glow: rgba(61, 90, 128, 0.2);
  --build: var(--scale);
  --build-soft: var(--scale-soft);
  --build-glow: var(--scale-glow);
}


.page-build .header.is-ready .nav,
.page-build .header.is-ready .header__end,
.page-sell .header.is-ready .nav,
.page-sell .header.is-ready .header__end,
.page-scale .header.is-ready .nav,
.page-scale .header.is-ready .header__end,
.page-service .header.is-ready .nav,
.page-service .header.is-ready .header__end {
  opacity: 1;
  transform: none;
  filter: none;
}

.page-sell .pillar-hero {
  background:
    radial-gradient(ellipse 90% 70% at 78% 42%, rgba(255, 255, 255, 0.92), transparent 55%),
    linear-gradient(160deg, #fff4ec 0%, #f7f5f3 42%, #f3ebe4 100%);
}

.page-sell .pillar-hero__wash--cool {
  background: radial-gradient(circle, rgba(255, 92, 26, 0.18), transparent 68%);
}

.page-sell .pillar-hero__wash--accent {
  background: radial-gradient(circle, rgba(255, 140, 70, 0.22), transparent 70%);
}

.page-sell .pillar-hero__glow {
  background: radial-gradient(circle, rgba(255, 92, 26, 0.2), transparent 65%);
}

.page-sell .pillar-hero__title-accent {
  color: var(--sell);
}

.page-sell .pillar-hero__dot {
  background: var(--sell);
  box-shadow: 0 0 0 4px rgba(255, 92, 26, 0.16);
}

.page-sell .pillar-services__head h2 em {
  color: var(--sell);
}

.page-sell .pillar-practice__body header span {
  color: rgba(255, 92, 26, 0.7);
}

.page-sell .pillar-practice__body li a:hover b {
  color: var(--sell);
}

.page-sell .pillar-approach__glow {
  background: radial-gradient(circle, rgba(255, 92, 26, 0.28), transparent 68%);
}

.page-sell .pillar-cta-panel {
  border-color: rgba(255, 92, 26, 0.18);
}

.page-scale .pillar-hero {
  background:
    radial-gradient(ellipse 90% 70% at 78% 42%, rgba(255, 255, 255, 0.92), transparent 55%),
    linear-gradient(160deg, #eef3f8 0%, #f4f6f8 42%, #e8eef4 100%);
}

.page-scale .pillar-hero__wash--cool {
  background: radial-gradient(circle, rgba(61, 90, 128, 0.18), transparent 68%);
}

.page-scale .pillar-hero__wash--accent {
  background: radial-gradient(circle, rgba(90, 122, 160, 0.2), transparent 70%);
}

.page-scale .pillar-hero__glow {
  background: radial-gradient(circle, rgba(61, 90, 128, 0.22), transparent 65%);
}

.page-scale .pillar-hero__title-accent {
  color: var(--scale);
}

.page-scale .pillar-hero__dot {
  background: var(--scale);
  box-shadow: 0 0 0 4px rgba(61, 90, 128, 0.16);
}

.page-scale .pillar-services__head h2 em {
  color: var(--scale);
}

.page-scale .pillar-practice__body header span {
  color: rgba(61, 90, 128, 0.72);
}

.page-scale .pillar-practice__body li a:hover b {
  color: var(--scale);
}

.page-scale .pillar-approach__glow {
  background: radial-gradient(circle, rgba(61, 90, 128, 0.3), transparent 68%);
}

.page-scale .pillar-cta-panel {
  border-color: rgba(61, 90, 128, 0.2);
}

/* Hero — homepage-parity atmosphere + sculpt */
.pillar-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + 3.75rem) clamp(1.25rem, 4vw, 2.5rem) 4.5rem;
  overflow: hidden;
  --hero-mx: 72%;
  --hero-my: 38%;
  background:
    radial-gradient(ellipse 90% 70% at 78% 42%, rgba(255, 255, 255, 0.92), transparent 55%),
    linear-gradient(160deg, #eef1f7 0%, #f5f5f7 42%, #ebeff5 100%);
}

.pillar-hero__field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.pillar-hero__wash {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.92;
  will-change: transform;
}

.pillar-hero__wash--cool {
  width: min(78vw, 820px);
  height: min(78vw, 820px);
  right: -14%;
  top: -4%;
  background: radial-gradient(circle, rgba(26, 39, 68, 0.16), transparent 68%);
  animation: wash-drift 14s ease-in-out infinite alternate;
}

.pillar-hero__wash--soft {
  width: min(42vw, 400px);
  height: min(42vw, 400px);
  left: 22%;
  top: 10%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8), transparent 70%);
  filter: blur(50px);
  animation: wash-drift 16s ease-in-out infinite alternate;
}

.pillar-hero__wash--accent {
  width: min(32vw, 300px);
  height: min(32vw, 300px);
  left: -4%;
  bottom: 8%;
  background: radial-gradient(circle, rgba(61, 90, 128, 0.14), transparent 70%);
  filter: blur(60px);
  animation: wash-drift 18s ease-in-out infinite alternate-reverse;
}

.pillar-hero__glow {
  position: absolute;
  width: min(48rem, 90vw);
  height: min(48rem, 90vw);
  right: -10%;
  top: -8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 40%, rgba(74, 95, 138, 0.22), rgba(26, 39, 68, 0.06) 45%, transparent 68%);
  filter: blur(22px);
  animation: pillar-breathe 8s ease-in-out infinite;
}

.pillar-hero__beam {
  position: absolute;
  right: 6%;
  top: -20%;
  width: min(42vw, 420px);
  height: 140%;
  background: linear-gradient(
    108deg,
    transparent 0%,
    rgba(255, 255, 255, 0.22) 42%,
    rgba(255, 255, 255, 0.05) 52%,
    transparent 70%
  );
  transform: rotate(-12deg);
  opacity: 0.72;
  animation: beam-sweep 9s ease-in-out infinite alternate;
}

.pillar-hero__grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(26, 39, 68, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 39, 68, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 65% 55% at 74% 42%, #000 12%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 65% 55% at 74% 42%, #000 12%, transparent 72%);
}

.pillar-hero__vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 75% at 50% 45%, transparent 38%, rgba(26, 39, 68, 0.055) 100%);
}

.pillar-hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.pillar-hero__watermark {
  position: absolute;
  right: -3%;
  top: 6%;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(8rem, 24vw, 17rem);
  font-weight: 600;
  letter-spacing: -0.07em;
  color: transparent;
  background: linear-gradient(165deg, rgba(26, 39, 68, 0.09), rgba(26, 39, 68, 0.015));
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 0.82;
  user-select: none;
  pointer-events: none;
}

.pillar-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem 3rem;
  align-items: center;
  width: min(1200px, 100%);
  margin-inline: auto;
  padding-inline: clamp(0.25rem, 1.5vw, 0.75rem);
}

.pillar-hero__copy {
  max-width: 36rem;
  padding-right: 0.5rem;
}

.pillar-hero__crumb {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.2rem;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 550;
  letter-spacing: 0.02em;
  color: rgba(29, 29, 31, 0.42);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 10px 28px rgba(17, 17, 17, 0.05);
  backdrop-filter: blur(12px);
  width: fit-content;
}

.pillar-hero__crumb a {
  color: rgba(29, 29, 31, 0.52);
  transition: color 0.25s ease;
}

.pillar-hero__crumb a:hover { color: var(--ink); }

.pillar-hero__crumb em {
  font-style: normal;
  font-weight: 650;
  color: var(--build);
}

.pillar-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(29, 29, 31, 0.48);
}

.pillar-hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--build);
  box-shadow: 0 0 0 4px rgba(26, 39, 68, 0.14);
  animation: header-dot 2.2s ease-in-out infinite;
}

.pillar-hero__title {
  margin: 0 0 1.2rem;
  font-family: var(--font-display);
  font-size: clamp(3.35rem, 8.5vw, 5.6rem);
  font-weight: 650;
  letter-spacing: -0.052em;
  line-height: 0.92;
  color: var(--ink);
  text-wrap: balance;
}

.pillar-hero__title span {
  display: block;
  overflow: hidden;
}

.pillar-hero__title span > i {
  display: block;
  font-style: normal;
  transform: translateY(110%);
}

.pillar-hero__title-accent > i,
.pillar-hero__title-accent {
  background: linear-gradient(120deg, #1d1d1f 0%, #1a2744 48%, #2c4066 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pillar-hero__lead {
  margin: 0 0 1.75rem;
  max-width: 32rem;
  font-size: clamp(1.08rem, 2vw, 1.24rem);
  font-weight: 450;
  letter-spacing: -0.018em;
  line-height: 1.55;
  color: rgba(29, 29, 31, 0.58);
}

.pillar-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.2rem;
  margin-bottom: 1.35rem;
}

.pillar-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.pillar-hero__tags li {
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(29, 29, 31, 0.62);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(29, 29, 31, 0.07);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.95) inset;
}

.pillar-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  width: 100%;
  max-width: 28rem;
}

.pillar-hero__meta div {
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem 0.9rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 12px 28px rgba(17, 17, 17, 0.05);
  backdrop-filter: blur(10px);
}

.pillar-hero__meta b {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.pillar-hero__meta span {
  font-size: 0.64rem;
  font-weight: 560;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(29, 29, 31, 0.42);
  line-height: 1.3;
}

.pillar-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 28rem;
}

.pillar-hero__visual::before {
  content: "";
  position: absolute;
  inset: 6% 2%;
  border-radius: 50%;
  background:
    radial-gradient(circle at var(--hero-mx) var(--hero-my), rgba(255, 255, 255, 0.95), transparent 42%),
    radial-gradient(circle at 70% 60%, rgba(26, 39, 68, 0.14), transparent 55%);
  filter: blur(28px);
  z-index: 0;
  pointer-events: none;
}

.sculpt--build {
  width: min(520px, 94vw);
}

.sculpt--build .sculpt__badge {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-content: center;
  text-align: center;
  pointer-events: none;
  color: rgba(26, 39, 68, 0.78);
}

.sculpt--build .sculpt__badge b {
  display: block;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.2em;
  opacity: 0.55;
  margin-bottom: 0.15rem;
}

.sculpt--build .sculpt__badge span {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 650;
  letter-spacing: -0.03em;
  color: var(--build);
}

.sculpt--build .sculpt__orb--b {
  background:
    radial-gradient(circle at 28% 24%, #a8bddc, #2c4066 56%, #0a101c);
  box-shadow:
    0 24px 44px rgba(26, 39, 68, 0.48),
    0 8px 14px rgba(0, 0, 0, 0.16),
    inset 0 2px 0 rgba(255, 255, 255, 0.5),
    inset -8px -10px 18px rgba(0, 0, 0, 0.3);
}

.sculpt--sell {
  width: min(520px, 94vw);
}

.sculpt--sell .sculpt__badge {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-content: center;
  text-align: center;
  pointer-events: none;
  color: rgba(160, 46, 0, 0.78);
}

.sculpt--sell .sculpt__badge b {
  display: block;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.2em;
  opacity: 0.55;
  margin-bottom: 0.15rem;
}

.sculpt--sell .sculpt__badge span {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 650;
  letter-spacing: -0.03em;
  color: #c44710;
}

.sculpt--sell .sculpt__orb--a {
  background:
    radial-gradient(circle at 28% 24%, #ffd2b0, #ff5c1a 56%, #8a2800);
  box-shadow:
    0 24px 44px rgba(255, 92, 26, 0.42),
    0 8px 14px rgba(0, 0, 0, 0.16),
    inset 0 2px 0 rgba(255, 255, 255, 0.5),
    inset -8px -10px 18px rgba(0, 0, 0, 0.28);
}

.sculpt--sell .sculpt__orb--b {
  background:
    radial-gradient(circle at 28% 24%, #ffc898, #e04810 56%, #7a2200);
  box-shadow:
    0 24px 44px rgba(255, 92, 26, 0.4),
    0 8px 14px rgba(0, 0, 0, 0.16),
    inset 0 2px 0 rgba(255, 255, 255, 0.5),
    inset -8px -10px 18px rgba(0, 0, 0, 0.3);
}

.sculpt--sell .sculpt__orb--c {
  background:
    radial-gradient(circle at 28% 24%, #ffe0c4, #ff7a35 56%, #9a3008);
  box-shadow:
    0 24px 44px rgba(255, 92, 26, 0.38),
    0 8px 14px rgba(0, 0, 0, 0.16),
    inset 0 2px 0 rgba(255, 255, 255, 0.5),
    inset -8px -10px 18px rgba(0, 0, 0, 0.28);
}

.sculpt--scale {
  width: min(520px, 94vw);
}

.sculpt--scale .sculpt__badge {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-content: center;
  text-align: center;
  pointer-events: none;
  color: rgba(30, 51, 77, 0.78);
}

.sculpt--scale .sculpt__badge b {
  display: block;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.2em;
  opacity: 0.55;
  margin-bottom: 0.15rem;
}

.sculpt--scale .sculpt__badge span {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 650;
  letter-spacing: -0.03em;
  color: #2c4664;
}

.sculpt--scale .sculpt__orb--a {
  background:
    radial-gradient(circle at 28% 24%, #b7cce0, #3d5a80 56%, #1a2f46);
  box-shadow:
    0 24px 44px rgba(61, 90, 128, 0.45),
    0 8px 14px rgba(0, 0, 0, 0.16),
    inset 0 2px 0 rgba(255, 255, 255, 0.5),
    inset -8px -10px 18px rgba(0, 0, 0, 0.28);
}

.sculpt--scale .sculpt__orb--b {
  background:
    radial-gradient(circle at 28% 24%, #9eb8d0, #3d5a80 56%, #15283c);
  box-shadow:
    0 24px 44px rgba(61, 90, 128, 0.42),
    0 8px 14px rgba(0, 0, 0, 0.16),
    inset 0 2px 0 rgba(255, 255, 255, 0.5),
    inset -8px -10px 18px rgba(0, 0, 0, 0.3);
}

.sculpt--scale .sculpt__orb--c {
  background:
    radial-gradient(circle at 28% 24%, #c5d6e6, #4a6a90 56%, #1e334d);
  box-shadow:
    0 24px 44px rgba(61, 90, 128, 0.4),
    0 8px 14px rgba(0, 0, 0, 0.16),
    inset 0 2px 0 rgba(255, 255, 255, 0.5),
    inset -8px -10px 18px rgba(0, 0, 0, 0.28);
}

.pillar-next__card--build .pillar-next__orb {
  background:
    radial-gradient(circle at 32% 28%, #a8bddc, #1a2744 58%, #0a101c);
}

.pillar-hero__scroll.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  z-index: 2;
}

/* Services — TDS practice bands (imagery + hierarchy, not a clone layout) */
.pillar-services {
  position: relative;
  padding: 6rem 0 5.75rem;
  overflow: hidden;
}

.pillar-services__field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 36% at 12% 18%, rgba(26, 39, 68, 0.07), transparent 60%),
    radial-gradient(ellipse 42% 30% at 88% 72%, rgba(61, 90, 128, 0.06), transparent 58%),
    linear-gradient(180deg, #f3f4f7 0%, #fafafb 48%, #f1f3f6 100%);
}

.pillar-services .shell {
  position: relative;
  z-index: 1;
  width: var(--shell);
}

.pillar-services__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem 3rem;
  margin-bottom: 3.25rem;
}

.pillar-services__head h2 {
  margin: 0.45rem 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.2vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  color: var(--ink);
  max-width: 14ch;
}

.pillar-services__head h2 em {
  font-style: normal;
  color: var(--build);
}

.pillar-services__lead {
  margin: 0;
  max-width: 34rem;
  font-size: 1.08rem;
  line-height: 1.55;
  color: rgba(29, 29, 31, 0.55);
}

.pillar-services__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 560;
  letter-spacing: -0.01em;
  color: #fff;
  background: var(--ink);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 10px 28px rgba(17, 17, 17, 0.14);
  transition: transform 0.35s var(--ease-out), gap 0.35s var(--ease-out), background 0.25s ease;
}

.pillar-services__cta:hover {
  transform: translateY(-2px);
  gap: 0.7rem;
  background: #000;
}

.pillar-practices {
  display: grid;
  gap: 4.5rem;
}

.pillar-practice {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
  gap: 2rem 2.75rem;
  align-items: center;
}

.pillar-practice--flip .pillar-practice__visual {
  order: 2;
}

.pillar-practice--flip .pillar-practice__body {
  order: 1;
}

.pillar-practice__visual {
  position: relative;
  border-radius: 1.55rem;
  overflow: hidden;
  min-height: min(52vh, 28rem);
  background: #12141a;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 28px 60px rgba(17, 17, 17, 0.16);
}

.pillar-practice__visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 1.1s var(--ease-out);
}

.pillar-practice:hover .pillar-practice__visual img {
  transform: scale(1.08);
}

.pillar-practice__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 12, 18, 0.08) 0%, transparent 40%, rgba(10, 12, 18, 0.72) 100%);
  pointer-events: none;
}

.pillar-practice__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 1.5rem 1.6rem 1.55rem;
  color: #fff;
}

.pillar-practice__caption span {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.pillar-practice__caption strong {
  display: block;
  max-width: 18ch;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.pillar-practice__body header {
  margin-bottom: 1.5rem;
}

.pillar-practice__body header span {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(26, 39, 68, 0.55);
}

.pillar-practice__body header h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.pillar-practice__body header p {
  margin: 0;
  max-width: 30rem;
  font-size: 1.02rem;
  line-height: 1.55;
  color: rgba(29, 29, 31, 0.55);
}

.pillar-practice__body ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(29, 29, 31, 0.08);
}

.pillar-practice__body li a {
  display: grid;
  grid-template-columns: 2.1rem minmax(0, 1fr) auto;
  gap: 0.85rem 1rem;
  align-items: start;
  padding: 1.05rem 0.15rem;
  border-bottom: 1px solid rgba(29, 29, 31, 0.08);
  color: inherit;
  transition: background 0.25s ease, padding-left 0.35s var(--ease-out);
}

.pillar-practice__body li a:hover {
  padding-left: 0.45rem;
}

.pillar-practice__body li em {
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  color: rgba(29, 29, 31, 0.35);
  padding-top: 0.28rem;
  font-variant-numeric: tabular-nums;
}

.pillar-practice__body li span {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.pillar-practice__body li strong {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.pillar-practice__body li i {
  font-style: normal;
  font-size: 0.88rem;
  line-height: 1.4;
  color: rgba(29, 29, 31, 0.5);
}

.pillar-practice__body li b {
  font-weight: 500;
  font-size: 1rem;
  color: rgba(29, 29, 31, 0.28);
  padding-top: 0.15rem;
  transition: color 0.3s ease, transform 0.35s var(--ease-out);
}

.pillar-practice__body li a:hover b {
  color: var(--build);
  transform: translateX(3px);
}

/* Approach */
.pillar-approach {
  position: relative;
  padding: 5.5rem 0;
  overflow: hidden;
}

.pillar-approach__field {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pillar-approach__base {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 0%, rgba(74, 95, 138, 0.22), transparent 55%),
    linear-gradient(180deg, #0e0e10 0%, #151518 45%, #101012 100%);
}

.pillar-approach__mesh {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000, transparent 75%);
}

.pillar-approach__glow {
  position: absolute;
  width: 42rem;
  height: 42rem;
  left: 50%;
  top: -25%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 95, 138, 0.32), transparent 65%);
}

.pillar-approach__grain {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.pillar-approach .shell { position: relative; z-index: 1; }

.pillar-approach__head {
  max-width: 38rem;
  margin-bottom: 2.75rem;
  color: #fff;
}

.pillar-approach__head .eyebrow { color: rgba(255, 255, 255, 0.42); }

.pillar-approach__head h2 {
  margin: 0.4rem 0 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 4.8vw, 3.1rem);
  font-weight: 600;
  letter-spacing: -0.042em;
}

.pillar-approach__head p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
}

.pillar-approach__track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.pillar-approach__track li {
  position: relative;
  padding: 1.4rem 1.25rem 1.5rem;
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset;
  overflow: hidden;
  transition: background 0.35s ease, transform 0.4s var(--ease-out), border-color 0.3s ease;
}

.pillar-approach__track li::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.35), transparent);
  opacity: 0.5;
}

.pillar-approach__track li:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
}

.pillar-approach__track span {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.32);
}

.pillar-approach__track h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff;
}

.pillar-approach__track p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
}

/* Next pillars */
.pillar-next {
  position: relative;
  padding: 5rem 0 2.5rem;
  overflow: hidden;
}

.pillar-next__field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 40% 40% at 20% 60%, rgba(255, 92, 26, 0.06), transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 40%, rgba(61, 90, 128, 0.07), transparent 60%);
}

.pillar-next .shell { position: relative; z-index: 1; }

.pillar-next__head {
  max-width: 36rem;
  margin-bottom: 2.25rem;
}

.pillar-next__head h2 {
  margin: 0.4rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 2.7rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.pillar-next__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.pillar-next__card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto auto;
  column-gap: 1rem;
  row-gap: 0.15rem;
  align-items: center;
  padding: 1.55rem 1.45rem 1.5rem;
  border-radius: 1.5rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(248, 249, 252, 0.8));
  border: 1px solid rgba(29, 29, 31, 0.07);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 18px 40px rgba(17, 17, 17, 0.06);
  overflow: hidden;
  color: var(--ink);
  transition: transform 0.45s var(--ease-out), box-shadow 0.4s ease;
}

.pillar-next__card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 28px 56px rgba(17, 17, 17, 0.12);
}

.pillar-next__orb {
  grid-row: 1 / span 3;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 50%;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 12px 24px rgba(17, 17, 17, 0.16);
}

.pillar-next__card--sell .pillar-next__orb {
  background: radial-gradient(circle at 32% 28%, #ffc898, #ff5c1a 58%, #a02e00);
}

.pillar-next__card--scale .pillar-next__orb {
  background: radial-gradient(circle at 32% 28%, #7a9bb8, #3d5a80 60%, #1e334d);
}

.pillar-next__num {
  grid-column: 2;
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  color: rgba(29, 29, 31, 0.35);
}

.pillar-next__card strong {
  grid-column: 2;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.pillar-next__card em {
  grid-column: 2;
  font-style: normal;
  font-size: 0.9rem;
  color: rgba(29, 29, 31, 0.5);
}

.pillar-next__go {
  grid-column: 3;
  grid-row: 1 / span 3;
  font-size: 0.88rem;
  font-weight: 560;
  color: rgba(29, 29, 31, 0.45);
  transition: color 0.3s ease, transform 0.35s var(--ease-out);
}

.pillar-next__card:hover .pillar-next__go {
  color: var(--ink);
  transform: translateX(3px);
}

.pillar-cta-panel {
  position: relative;
  padding: 1.9rem 1.7rem;
  border-radius: 1.55rem;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset;
  color: #fff;
  overflow: hidden;
}

.pillar-cta-panel::before {
  content: "";
  position: absolute;
  width: 12rem;
  height: 12rem;
  right: -3rem;
  top: -4rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 95, 138, 0.35), transparent 65%);
}

.pillar-cta-panel__label {
  position: relative;
  margin: 0 0 0.55rem;
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.pillar-cta-panel h3 {
  position: relative;
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.pillar-cta-panel p {
  position: relative;
  margin: 0 0 1.45rem;
  color: rgba(255, 255, 255, 0.55);
}

.pillar-cta-panel .btn {
  position: relative;
}

@keyframes pillar-breathe {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.06); opacity: 1; }
}

@keyframes pillar-beam {
  0%, 100% { opacity: 0.35; transform: rotate(-12deg) translateX(0); }
  50% { opacity: 0.65; transform: rotate(-12deg) translateX(4%); }
}

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

@keyframes pillar-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes pillar-scroll {
  0%, 100% { transform: scaleY(0.5); opacity: 0.35; transform-origin: top; }
  50% { transform: scaleY(1); opacity: 1; transform-origin: top; }
}

@media (max-width: 980px) {
  .pillar-hero__grid {
    grid-template-columns: 1fr;
  }

  .pillar-hero__visual {
    order: -1;
    min-height: 20rem;
  }

  .sculpt--build,
  .sculpt--sell,
  .sculpt--scale {
    width: min(100%, 22rem);
  }

  .pillar-services__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .pillar-practice,
  .pillar-practice--flip {
    grid-template-columns: 1fr;
  }

  .pillar-practice--flip .pillar-practice__visual,
  .pillar-practice--flip .pillar-practice__body {
    order: initial;
  }

  .pillar-practice__visual {
    min-height: 18rem;
  }

  .pillar-approach__track {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .pillar-approach__track,
  .pillar-next__grid {
    grid-template-columns: 1fr;
  }

  .pillar-practices {
    gap: 3.25rem;
  }

  .pillar-hero {
    padding-top: calc(var(--header-h) + 2.5rem);
    min-height: auto;
  }

  .pillar-hero__meta {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .pillar-hero__tags {
    margin-bottom: 1.15rem;
  }

  .pillar-next__card {
    grid-template-columns: auto 1fr;
  }

  .pillar-next__go {
    grid-column: 2;
    grid-row: auto;
    margin-top: 0.65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pillar-hero__glow,
  .pillar-hero__beam,
  .pillar-hero__wash,
  .pillar-hero__dot {
    animation: none !important;
  }

  .pillar-hero__title span > i {
    transform: none !important;
  }
}


/* ==========================================================================
   Service page — Web Design & Build services
   ========================================================================== */

.page-service {
  --build: #1a2744;
  --build-soft: #2c4066;
  --build-glow: rgba(26, 39, 68, 0.18);
  overflow-x: clip;
}

.page-service--build {
  --svc: var(--build);
}

/*
  Cover-scroll:
  sticky hero stays locked to the viewport while .svc-cover__sheet
  scrolls up over it (higher z-index). No JS / no Lenis.
  Classes toggled by main.js:
    .is-covering — sheet overlapping hero (pause heavy FX)
    .is-covered  — sheet fully over hero (hide sticky paint layer)
*/
.svc-cover {
  position: relative;
  display: block;
  isolation: isolate;
}

.svc-cover__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  height: 100dvh;
  z-index: 1;
  overflow: hidden;
  contain: paint;
  backface-visibility: hidden;
}

.svc-cover__sticky .svc-hero {
  height: 100%;
  min-height: 100%;
}

/* Tall enough that sticky lasts until the sheet fully covers the hero */
.svc-cover__sheet {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  min-height: 100dvh;
  margin-top: -3.25rem;
  border-radius: 2rem 2rem 0 0;
  overflow: clip;
  background: #e8eaef;
  box-shadow: 0 -28px 64px rgba(8, 11, 18, 0.22);
  isolation: isolate;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Sheet overlapping: stop hero animations that thrash the GPU every frame */
.svc-cover.is-covering .svc-hero__wash,
.svc-cover.is-covering .svc-hero__glow,
.svc-cover.is-covering .svc-hero__float {
  animation: none !important;
}

.svc-cover.is-covering .svc-hero__media img,
.svc-cover.is-covering .svc-hero__wash,
.svc-cover.is-covering .svc-hero__glow {
  will-change: auto;
}

/* Fully covered: drop sticky from the paint tree (fixes bleed + zoom tear) */
.svc-cover.is-covered .svc-cover__sticky {
  visibility: hidden;
  pointer-events: none;
}


.svc-hero {
  position: relative;
  min-height: min(96svh, 54rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--header-h) + 3.5rem) clamp(1.25rem, 4vw, 2.5rem) 4.5rem;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.svc-hero__field {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.svc-hero__media {
  position: absolute;
  inset: 0;
}

.svc-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.06);
}

.svc-hero__wash {
  position: absolute;
  border-radius: 50%;
  /* Soft radial only — live filter:blur on sticky layers causes scroll lag */
  opacity: 0.88;
  pointer-events: none;
}

.svc-hero__wash--cool {
  width: min(72vw, 760px);
  height: min(72vw, 760px);
  right: -8%;
  top: -6%;
  background: radial-gradient(circle, rgba(61, 90, 128, 0.5), rgba(61, 90, 128, 0.12) 42%, transparent 70%);
}

.svc-hero__wash--warm {
  width: min(48vw, 480px);
  height: min(48vw, 480px);
  left: 8%;
  bottom: 4%;
  background: radial-gradient(circle, rgba(255, 180, 90, 0.22), rgba(255, 180, 90, 0.06) 45%, transparent 72%);
}

.svc-hero__glow {
  position: absolute;
  width: min(44rem, 88vw);
  height: min(44rem, 88vw);
  right: -6%;
  top: 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 38%, rgba(255, 255, 255, 0.14), rgba(26, 39, 68, 0.08) 42%, transparent 68%);
  pointer-events: none;
}

.svc-hero__mesh {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 60% at 72% 42%, #000 8%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 72% 42%, #000 8%, transparent 72%);
}

.svc-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(108deg, rgba(8, 11, 18, 0.88) 0%, rgba(8, 11, 18, 0.62) 38%, rgba(8, 11, 18, 0.32) 62%, rgba(8, 11, 18, 0.48) 100%),
    linear-gradient(180deg, rgba(8, 11, 18, 0.42) 0%, transparent 32%, rgba(8, 11, 18, 0.78) 100%);
}

.svc-hero__vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 80% at 50% 45%, transparent 32%, rgba(8, 11, 18, 0.55) 100%);
}

.svc-hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.26;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  pointer-events: none;
}

.svc-hero__watermark {
  position: absolute;
  right: -2%;
  top: 8%;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(7rem, 22vw, 15rem);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.85;
  color: transparent;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.015));
  -webkit-background-clip: text;
  background-clip: text;
  pointer-events: none;
  user-select: none;
}

.svc-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  grid-template-areas:
    "copy stage"
    "meta stage";
  gap: clamp(1.25rem, 3vw, 2rem) clamp(2rem, 5vw, 4rem);
  align-items: center;
  width: min(1180px, 100%);
  margin-inline: auto;
}

.svc-hero__copy {
  grid-area: copy;
  max-width: 36rem;
}

.svc-hero__meta {
  grid-area: meta;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  max-width: 28rem;
  align-self: start;
}

.svc-hero__crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1.15rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}

.svc-hero__crumb a {
  color: rgba(255, 255, 255, 0.7);
}

.svc-hero__crumb a:hover {
  color: #fff;
}

.svc-hero__crumb em {
  font-style: normal;
  color: #fff;
  font-weight: 560;
}

.svc-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.svc-hero__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.14);
}

.svc-hero__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.svc-hero__title span {
  display: block;
  overflow: hidden;
}

.svc-hero__title span > i {
  display: block;
  transform: translateY(110%);
}

.svc-hero__title-accent {
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.72) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.svc-hero__lead {
  margin: 0 0 1.75rem;
  max-width: 32rem;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.svc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.1rem;
  margin-bottom: 1.35rem;
}

.svc-hero .btn--hero {
  background: #fff;
  color: var(--ink);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 1px 2px rgba(0, 0, 0, 0.08),
    0 14px 36px rgba(0, 0, 0, 0.22);
}

.svc-hero .btn--hero__bg {
  background: rgba(26, 39, 68, 0.08);
}

.svc-hero .btn--hero:hover,
.svc-hero .btn--hero:focus-visible {
  background: #fff;
  color: var(--ink);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 2px 4px rgba(0, 0, 0, 0.1),
    0 18px 42px rgba(0, 0, 0, 0.28);
}

.svc-hero .text-link--hero {
  color: rgba(255, 255, 255, 0.88);
}

.svc-hero .text-link--hero__bg {
  background: rgba(255, 255, 255, 0.1);
}

.svc-hero .text-link--hero:hover,
.svc-hero .text-link--hero:focus-visible {
  color: #fff;
}

.svc-hero .text-link--hero:hover .text-link--hero__bg,
.svc-hero .text-link--hero:focus-visible .text-link--hero__bg {
  background: rgba(255, 255, 255, 0.16);
}

.svc-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
}

.svc-hero__tags li {
  padding: 0.42rem 0.82rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset;
}

.svc-hero__meta div {
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem 0.9rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 12px 28px rgba(0, 0, 0, 0.18);
}

.svc-hero__meta b {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff;
}

.svc-hero__meta span {
  font-size: 0.64rem;
  font-weight: 560;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
}

.svc-hero__stage {
  grid-area: stage;
  position: relative;
  min-height: clamp(18rem, 38vw, 26rem);
  perspective: 1200px;
}

.svc-hero__frame {
  position: relative;
  border-radius: 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 28px 64px rgba(0, 0, 0, 0.42),
    0 8px 24px rgba(0, 0, 0, 0.24);
  transform: rotateY(-6deg) rotateX(4deg);
  transform-origin: center left;
  transition: transform 0.6s var(--ease-out);
}

.svc-hero__stage:hover .svc-hero__frame {
  transform: rotateY(-2deg) rotateX(2deg) translateY(-4px);
}

.svc-hero__frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.svc-hero__frame-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(8, 11, 18, 0.72) 100%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 42%);
  pointer-events: none;
}

.svc-hero__frame-meta {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.25rem;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.svc-hero__frame-meta span {
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.svc-hero__frame-meta strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 560;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: #fff;
}

.svc-hero__frame-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(8, 11, 18, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.svc-hero__float {
  position: absolute;
  display: grid;
  gap: 0.12rem;
  padding: 0.72rem 0.9rem;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 16px 36px rgba(0, 0, 0, 0.22);
}

.svc-hero__float em {
  font-style: normal;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--build);
}

.svc-hero__float span {
  font-size: 0.68rem;
  font-weight: 560;
  letter-spacing: 0.02em;
  color: rgba(29, 29, 31, 0.52);
}

.svc-hero__float--a {
  left: -4%;
  top: 8%;
}

.svc-hero__float--b {
  right: -2%;
  top: 38%;
}

.svc-hero__float--c {
  left: 10%;
  bottom: -2%;
}

.svc-hero__scroll.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  z-index: 2;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.55);
}

.svc-hero__scroll.scroll-cue:hover {
  color: rgba(255, 255, 255, 0.85);
}

.svc-hero__scroll .scroll-cue__track {
  border-color: rgba(255, 255, 255, 0.22);
}

.svc-hero__scroll .scroll-cue__track i {
  background: rgba(255, 255, 255, 0.72);
}

.svc-promise {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  margin-top: 0;
  padding: clamp(3rem, 6vw, 4.25rem) 0 clamp(2.5rem, 5vw, 3.25rem);
  color: var(--ink);
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(255, 255, 255, 0.75), transparent 58%),
    linear-gradient(180deg, #eef0f4 0%, #e8eaef 100%);
}

.svc-promise__bridge {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.svc-promise__wash {
  position: absolute;
  border-radius: 50%;
  opacity: 0.85;
}

.svc-promise__wash--cool {
  width: min(52vw, 520px);
  height: min(52vw, 520px);
  left: -8%;
  top: -12%;
  background: radial-gradient(circle, rgba(26, 39, 68, 0.1), rgba(26, 39, 68, 0.03) 45%, transparent 70%);
}

.svc-promise__wash--warm {
  width: min(38vw, 380px);
  height: min(38vw, 380px);
  right: -4%;
  top: 18%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.35) 45%, transparent 72%);
}

.svc-promise__grain {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.svc-promise .shell {
  position: relative;
  z-index: 1;
}

.svc-promise__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
}

.svc-promise__head .eyebrow {
  margin: 0 0 1rem;
}

.svc-promise__head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5.2vw, 3.85rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.02;
  max-width: 12ch;
  color: var(--ink);
}

.svc-promise__head h2 span {
  display: block;
}

.svc-promise__accent {
  color: rgba(29, 29, 31, 0.46);
}

.svc-promise__body {
  display: grid;
  gap: 1rem;
}

.svc-promise__copy {
  padding: clamp(1.35rem, 3vw, 1.75rem);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(29, 29, 31, 0.07);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 18px 40px rgba(17, 17, 17, 0.06);
  backdrop-filter: blur(12px);
}

.svc-promise__copy > p {
  margin: 0 0 1.25rem;
  font-size: clamp(1.05rem, 2vw, 1.18rem);
  line-height: 1.62;
  color: rgba(29, 29, 31, 0.58);
}

.svc-promise__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.svc-promise__signals li {
  padding: 0.48rem 0.9rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(26, 39, 68, 0.72);
  background: rgba(26, 39, 68, 0.05);
  border: 1px solid rgba(26, 39, 68, 0.08);
}

.svc-promise__pull {
  position: relative;
  margin: 0;
  padding: clamp(1.35rem, 3vw, 1.65rem) clamp(1.35rem, 3vw, 1.75rem) clamp(1.35rem, 3vw, 1.5rem);
  border-radius: 1.35rem;
  background:
    linear-gradient(140deg, rgba(26, 39, 68, 0.04) 0%, rgba(255, 255, 255, 0.72) 100%);
  border: 1px solid rgba(26, 39, 68, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 14px 32px rgba(17, 17, 17, 0.05);
  overflow: hidden;
}

.svc-promise__pull::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--build), rgba(26, 39, 68, 0.2));
  border-radius: 1.35rem 0 0 1.35rem;
}

.svc-promise__pull-mark {
  position: absolute;
  top: 0.35rem;
  right: 1.25rem;
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.06em;
  color: rgba(26, 39, 68, 0.06);
  pointer-events: none;
}

.svc-promise__pull p {
  position: relative;
  z-index: 1;
  margin: 0 0 0.85rem;
  padding-right: 2rem;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 520;
  letter-spacing: -0.025em;
  line-height: 1.42;
  color: rgba(29, 29, 31, 0.78);
}

.svc-promise__pull cite {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(29, 29, 31, 0.42);
}

.svc-promise__pull cite::before {
  content: "";
  width: 1.25rem;
  height: 1px;
  background: rgba(26, 39, 68, 0.18);
}

.svc-deliver {
  position: relative;
  flex: 1 0 auto;
  padding: clamp(2.75rem, 5vw, 3.5rem) 0 4.5rem;
  background: #fff;
  border-top: 1px solid rgba(26, 39, 68, 0.1);
  box-shadow: 0 -18px 40px rgba(17, 17, 17, 0.04);
}

.svc-deliver::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(4.5rem, 18vw);
  height: 3px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: var(--build);
}

.svc-deliver__intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  margin-bottom: 2.5rem;
}

.svc-deliver__head {
  max-width: 30rem;
}

.svc-deliver__head h2 {
  margin: 0.45rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 4.5vw, 3.15rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.svc-deliver__head h2 em {
  font-style: normal;
  color: var(--build);
}

.svc-deliver__count {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 1.2rem;
  min-width: 7.5rem;
  border-radius: 1.15rem;
  text-align: right;
  background: #f5f5f7;
  border: 1px solid rgba(29, 29, 31, 0.07);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 16px 36px rgba(17, 17, 17, 0.05);
}

.svc-deliver__count b {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.05em;
  color: var(--build);
  line-height: 1;
}

.svc-deliver__count span {
  font-size: 0.64rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(29, 29, 31, 0.45);
}

.svc-deliver__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.svc-deliver__card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 13.5rem;
  padding: 1.55rem 1.5rem 1.5rem;
  border-radius: 1.35rem;
  background: #f5f5f7;
  border: 1px solid rgba(29, 29, 31, 0.07);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 18px 40px rgba(17, 17, 17, 0.05);
  overflow: hidden;
  transition:
    border-color 0.35s ease,
    box-shadow 0.45s var(--ease-out);
}

.svc-deliver__card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26, 39, 68, 0.18), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.svc-deliver__card:hover {
  border-color: rgba(26, 39, 68, 0.12);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 28px 56px rgba(17, 17, 17, 0.11);
}

.svc-deliver__card:hover::before {
  opacity: 1;
}

.svc-deliver__index {
  position: absolute;
  top: 0.85rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.25rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1;
  color: rgba(26, 39, 68, 0.06);
  pointer-events: none;
  transition: color 0.35s ease;
}

.svc-deliver__card:hover .svc-deliver__index {
  color: rgba(26, 39, 68, 0.1);
}

.svc-deliver__card-body {
  position: relative;
  z-index: 1;
  max-width: 18rem;
}

.svc-deliver__card-body h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.svc-deliver__card-body p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.58;
  color: rgba(29, 29, 31, 0.54);
}


.svc-stage {
  --rise: 0;
  position: relative;
  padding: clamp(5rem, 10vw, 8.5rem) 0;
  background:
    radial-gradient(ellipse 55% 40% at 8% 8%, rgba(26, 39, 68, 0.08), transparent 55%),
    radial-gradient(ellipse 50% 45% at 92% 78%, rgba(26, 39, 68, 0.06), transparent 55%),
    linear-gradient(180deg, #f8f9fb 0%, #eef1f5 45%, #e6e9ef 100%);
  color: var(--ink);
  overflow: clip;
}

.svc-stage__glow {
  position: absolute;
  width: min(46rem, 80vw);
  height: min(46rem, 80vw);
  left: -14%;
  top: -20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.75), transparent 68%);
  pointer-events: none;
}

.svc-stage__top {
  --rise: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) auto;
  gap: clamp(1.25rem, 3vw, 2.75rem);
  align-items: end;
  margin-bottom: clamp(2.25rem, 4.5vw, 3.5rem);
  opacity: calc(0.2 + var(--rise) * 0.8);
  transform: translate3d(0, calc((1 - var(--rise)) * 2.25rem), 0);
  will-change: transform, opacity;
}

.svc-stage__head {
  max-width: 40rem;
}

.svc-stage__head h2 {
  margin: 0.45rem 0 0.95rem;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.8vw, 3.45rem);
  font-weight: 600;
  letter-spacing: -0.048em;
  line-height: 1.02;
  text-wrap: balance;
}

.svc-stage__lead {
  margin: 0;
  max-width: 36rem;
  font-size: 1.08rem;
  line-height: 1.58;
  color: rgba(29, 29, 31, 0.58);
}

.svc-stage__path {
  --path: 1;
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  padding: 0.7rem 1.15rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(29, 29, 31, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 14px 32px rgba(17, 17, 17, 0.06);
}

.svc-stage__path-fill {
  position: absolute;
  left: 1.55rem;
  right: 1.55rem;
  top: auto;
  bottom: calc(0.8rem + 0.24rem);
  height: 2px;
  margin: 0;
  border-radius: 999px;
  background: rgba(29, 29, 31, 0.1);
  z-index: 0;
  pointer-events: none;
  transform: translateY(50%);
}

.svc-stage__path-fill::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: calc(var(--path) * 100%);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--build), #ff5c1a 55%, #3d5a80);
}

.svc-stage__path span,
.svc-stage__path em {
  position: relative;
  z-index: 2;
}

.svc-stage__path span {
  display: inline-flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 0.42rem;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(29, 29, 31, 0.38);
  background: rgba(255, 255, 255, 0.96);
  padding: 0.1rem 0.2rem;
  transition: color 0.45s ease, transform 0.45s var(--ease-out);
}

.svc-stage__path span i {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: rgba(29, 29, 31, 0.22);
  box-shadow: 0 0 0 3px rgba(29, 29, 31, 0.06);
  transition: background 0.45s ease, box-shadow 0.45s ease, transform 0.45s var(--ease-out);
}

.svc-stage__path span.is-on {
  color: rgba(29, 29, 31, 0.78);
}

.svc-stage__path span[data-step="0"].is-on i {
  background: var(--build);
  box-shadow: 0 0 0 4px rgba(26, 39, 68, 0.14);
  transform: scale(1.15);
}

.svc-stage__path span[data-step="1"].is-on i {
  background: #ff5c1a;
  box-shadow: 0 0 0 4px rgba(255, 92, 26, 0.16);
  transform: scale(1.15);
}

.svc-stage__path span[data-step="2"].is-on i {
  background: #3d5a80;
  box-shadow: 0 0 0 4px rgba(61, 90, 128, 0.16);
  transform: scale(1.15);
}

.svc-stage__path em {
  width: 0.85rem;
  height: 0.48rem;
  background: transparent;
  align-self: flex-end;
}

.svc-stage__board {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: repeat(2, minmax(12.5rem, 1fr));
  gap: clamp(1rem, 2vw, 1.4rem);
  min-height: min(64svh, 36rem);
  margin-bottom: clamp(1.5rem, 3.2vw, 2.35rem);
}

.svc-stage__surface {
  --rise: 1;
  position: relative;
  display: grid;
  grid-template: 1fr / 1fr;
  margin: 0;
  min-width: 0;
  min-height: 0;
  width: 100%;
  max-width: 100%;
}

.svc-stage__surface--hero {
  grid-row: 1 / -1;
}

.svc-stage__frame {
  grid-area: 1 / 1;
  position: relative;
  height: 100%;
  min-height: 15rem;
  border-radius: clamp(1.35rem, 2.6vw, 1.9rem);
  overflow: hidden;
  background: #1a2744;
  border: 1px solid rgba(29, 29, 31, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 28px 58px rgba(17, 17, 17, 0.12);
  opacity: calc(0.28 + var(--rise) * 0.72);
  transform:
    translate3d(0, calc((1 - var(--rise)) * 4.25rem), 0)
    scale(calc(0.92 + var(--rise) * 0.08));
  transform-origin: 50% 80%;
  will-change: transform, opacity;
}

.svc-stage__surface--hero .svc-stage__frame {
  transform-origin: 30% 70%;
}

.svc-stage__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform:
    scale(calc(1.2 - var(--rise) * 0.16))
    translate3d(0, calc((1 - var(--rise)) * 3%), 0);
  will-change: transform;
  transition: filter 0.55s ease;
}

.svc-stage__surface--hero .svc-stage__frame img {
  object-position: 28% center;
}

.svc-stage__surface:nth-child(2) .svc-stage__frame img {
  object-position: 50% 40%;
}

.svc-stage__surface:nth-child(3) .svc-stage__frame img {
  object-position: 50% 28%;
}

.svc-stage__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 12, 20, 0.06) 0%, rgba(8, 12, 20, 0.2) 40%, rgba(8, 12, 20, 0.86) 100%),
    linear-gradient(105deg, rgba(8, 12, 20, 0.28), transparent 50%);
  pointer-events: none;
}

.svc-stage__surface--hero .svc-stage__shade {
  background:
    linear-gradient(180deg, rgba(8, 12, 20, 0.08) 0%, rgba(8, 12, 20, 0.22) 45%, rgba(8, 12, 20, 0.9) 100%),
    linear-gradient(120deg, rgba(8, 12, 20, 0.4) 0%, transparent 52%),
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(255, 255, 255, 0.1), transparent 55%);
}

.svc-stage__caption {
  grid-area: 1 / 1;
  align-self: end;
  justify-self: stretch;
  position: sticky;
  z-index: 2;
  bottom: 1rem;
  margin: 0 0.85rem 0.85rem;
  display: grid;
  gap: 0.45rem;
  padding: 1rem 1.05rem 1.1rem;
  border-radius: 1.05rem;
  color: #fff;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04) 45%, rgba(8, 12, 20, 0.3)),
    rgba(10, 14, 22, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 16px 36px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px) saturate(1.12);
  -webkit-backdrop-filter: blur(16px) saturate(1.12);
  /* Keep copy readable even mid-scroll; motion lives on the frame */
  opacity: 1;
  transform: translate3d(0, calc((1 - var(--rise)) * 0.75rem), 0);
  will-change: transform;
}

.svc-stage__surface--hero .svc-stage__caption {
  margin: 0 1rem 1rem;
  padding: 1.2rem 1.25rem 1.3rem;
  gap: 0.55rem;
  max-width: 28rem;
}

.svc-stage__kicker {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.svc-stage__kicker em {
  font-style: normal;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.45);
}

.svc-stage__chip {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.svc-stage__caption strong {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.svc-stage__surface--hero .svc-stage__caption strong {
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  letter-spacing: -0.042em;
}

.svc-stage__caption > p {
  margin: 0;
  max-width: 26rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

.svc-stage__surface--hero .svc-stage__caption > p {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.78);
}

.svc-stage__meta {
  margin-top: 0.15rem;
  font-size: 0.78rem;
  font-weight: 520;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.5);
}

.svc-stage__surface:hover .svc-stage__frame img,
.svc-stage__surface:focus-within .svc-stage__frame img {
  filter: brightness(1.06) saturate(1.05);
}

.svc-stage__bar {
  --rise: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding: 1.15rem 1.25rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(29, 29, 31, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 16px 36px rgba(17, 17, 17, 0.05);
  opacity: calc(0.25 + var(--rise) * 0.75);
  transform: translate3d(0, calc((1 - var(--rise)) * 1.75rem), 0);
  will-change: transform, opacity;
}

.svc-stage__bar > p {
  margin: 0;
  font-size: 0.98rem;
  color: rgba(29, 29, 31, 0.55);
}

.svc-stage__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
  margin: 0;
}

.svc-stage__links a:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 560;
  color: #fff;
  background: var(--build);
  box-shadow: 0 14px 30px rgba(26, 39, 68, 0.24);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}

.svc-stage__links a:first-child:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(26, 39, 68, 0.3);
}

.svc-stage__links a:last-child {
  font-size: 0.92rem;
  font-weight: 560;
  color: rgba(29, 29, 31, 0.72);
  transition: color 0.25s ease, transform 0.3s var(--ease-out);
}

.svc-stage__links a:last-child:hover {
  color: var(--ink);
  transform: translateX(3px);
}

@media (max-width: 980px) {
  .svc-stage__top {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .svc-stage__path {
    border-radius: 1.15rem;
    width: 100%;
    max-width: 100%;
    justify-content: space-between;
  }

  .svc-stage__path-fill {
    left: 1.35rem;
    right: 1.35rem;
  }

  .svc-stage__board {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 0.9rem;
    min-height: 0;
    width: 100%;
    max-width: 100%;
  }

  .svc-stage__surface,
  .svc-stage__surface--hero {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    max-width: 100%;
  }

  .svc-stage__frame {
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 11;
    max-height: min(58vw, 18rem);
    width: 100%;
    transform: none;
    opacity: 1;
    will-change: auto;
  }

  .svc-stage__frame img {
    transform: none;
    will-change: auto;
  }

  .svc-stage__top,
  .svc-stage__bar {
    transform: none;
    opacity: 1;
    will-change: auto;
  }

  .svc-stage__caption {
    position: absolute;
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.7rem;
    margin: 0;
    max-width: none;
    grid-area: unset;
    align-self: auto;
    justify-self: auto;
    transform: none;
    will-change: auto;
  }

  .svc-stage__surface--hero .svc-stage__caption {
    margin: 0;
    max-width: none;
  }

  .svc-stage__surface:not(.svc-stage__surface--hero) .svc-stage__caption > p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
}

@media (max-width: 640px) {
  .svc-stage {
    padding: clamp(3.5rem, 12vw, 5rem) 0;
    overflow-x: clip;
  }

  .svc-stage__board {
    gap: 0.75rem;
  }

  .svc-stage__frame {
    aspect-ratio: 5 / 4;
    max-height: min(62vw, 16.5rem);
    border-radius: 1.2rem;
  }

  .svc-stage__bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    max-width: 100%;
  }

  .svc-stage__caption {
    left: 0.55rem;
    right: 0.55rem;
    bottom: 0.55rem;
    padding: 0.8rem 0.85rem 0.9rem;
    gap: 0.35rem;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(10, 14, 22, 0.78);
  }

  .svc-stage__surface--hero .svc-stage__caption {
    padding: 0.85rem 0.9rem 0.95rem;
  }

  .svc-stage__caption strong {
    font-size: 1.2rem;
  }

  .svc-stage__surface--hero .svc-stage__caption strong {
    font-size: 1.35rem;
  }

  .svc-stage__caption > p {
    font-size: 0.86rem;
    line-height: 1.4;
  }

  .svc-stage__path {
    gap: 0.45rem 0.65rem;
    padding: 0.65rem 0.85rem 0.75rem;
  }

  .svc-stage__path-fill {
    display: none;
  }

  .svc-stage__head h2 {
    font-size: clamp(1.55rem, 6.8vw, 1.95rem);
    line-height: 1.12;
  }

  .svc-stage__lead {
    font-size: 0.98rem;
  }
}







/* Selected work — dark editorial cases (distinct from Surfaces board) */

/* Selected work — interactive case theatre (distinct from Surfaces) */

/* Selected work — enhanced case theatre */

/* Selected work — deeper case theatre */
.svc-proof {
  --proof-accent: #9eb0d4;
  --proof-glow: rgba(158, 176, 212, 0.35);
  position: relative;
  padding: clamp(5.5rem, 11vw, 8.75rem) 0;
  color: rgba(245, 245, 247, 0.92);
  background:
    radial-gradient(ellipse 55% 45% at 12% 18%, color-mix(in srgb, var(--proof-accent) 28%, transparent), transparent 58%),
    radial-gradient(ellipse 45% 50% at 88% 82%, rgba(26, 39, 68, 0.55), transparent 55%),
    linear-gradient(180deg, #152038 0%, #1a2744 48%, #121a2c 100%);
  overflow: clip;
  transition: background 0.6s ease;
}

.svc-proof__field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.svc-proof__orb {
  position: absolute;
  border-radius: 50%;
  transition: background 0.6s ease;
}

.svc-proof__orb--a {
  width: min(42rem, 78vw);
  height: min(42rem, 78vw);
  left: -18%;
  top: -8%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.09), transparent 68%);
}

.svc-proof__orb--b {
  width: min(34rem, 62vw);
  height: min(34rem, 62vw);
  right: -12%;
  bottom: 8%;
  background: radial-gradient(circle, var(--proof-glow), transparent 70%);
}

.svc-proof__mesh {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
}

.svc-proof__grain {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: soft-light;
}

.svc-proof__marks {
  position: absolute;
  right: max(0.5rem, calc((100% - var(--shell)) / 2 - 0.5rem));
  top: 8%;
  width: min(18rem, 40vw);
  height: 0.85em;
}

.svc-proof__watermark {
  position: absolute;
  right: 0;
  top: 0;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(7rem, 18vw, 14rem);
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 0.75;
  color: rgba(255, 255, 255, 0.035);
  user-select: none;
  opacity: 0;
  transform: translate3d(0, 0.35rem, 0);
  transition: opacity 0.38s ease, transform 0.45s var(--ease-out);
}

.svc-proof__watermark.is-on {
  opacity: 1;
  transform: none;
}

.svc-proof .eyebrow {
  color: rgba(255, 255, 255, 0.45);
}

.svc-proof__top {
  --rise: 0;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) auto;
  gap: 1.25rem 2.5rem;
  align-items: end;
  margin-bottom: clamp(2.25rem, 4.5vw, 3.25rem);
  opacity: calc(0.15 + var(--rise) * 0.85);
  transform: translate3d(0, calc((1 - var(--rise)) * 1.75rem), 0);
  will-change: transform, opacity;
  transition: opacity 0.55s ease;
}

.svc-proof__head {
  max-width: 38rem;
}

.svc-proof__head h2 {
  margin: 0.45rem 0 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4.8vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.02;
  color: #f5f5f7;
  text-wrap: balance;
}

.svc-proof__head h2 em {
  font-style: normal;
  color: var(--proof-accent);
  transition: color 0.45s ease;
}

.svc-proof__lead {
  margin: 0;
  max-width: 32rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(245, 245, 247, 0.58);
}

.svc-proof__top-aside {
  display: grid;
  gap: 0.85rem;
  justify-items: end;
  text-align: right;
}

.svc-proof__count {
  margin: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  font-family: var(--font-display);
  line-height: 1;
}

.svc-proof__count b {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.05em;
  color: #f5f5f7;
  transition: color 0.35s ease, transform 0.4s var(--ease-out);
  display: inline-block;
}

.svc-proof__count b.is-tick {
  animation: proof-tick 0.45s var(--ease-out);
}

@keyframes proof-tick {
  0% { transform: translateY(0.35em); opacity: 0.35; }
  100% { transform: none; opacity: 1; }
}

.svc-proof__count span {
  font-size: 0.95rem;
  font-weight: 520;
  color: rgba(245, 245, 247, 0.4);
}

.svc-proof__all {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.95rem;
  font-weight: 560;
  color: rgba(245, 245, 247, 0.78);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.25s ease, transform 0.3s var(--ease-out);
}

.svc-proof__all:hover {
  color: #fff;
  transform: translateX(3px);
}

.svc-proof__theatre {
  --rise: 0;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(15rem, 19rem) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: stretch;
  min-height: min(70vh, 44rem);
  perspective: 1400px;
}

.svc-proof__rail {
  --rise: 0;
  position: relative;
  display: grid;
  align-content: start;
  gap: 0.65rem;
  padding-left: 0.35rem;
  opacity: calc(0.12 + var(--rise) * 0.88);
  transform: translate3d(calc((1 - var(--rise)) * -1.5rem), 0, 0);
  will-change: transform, opacity;
  transition: opacity 0.55s ease;
}

.svc-proof__rail-beam {
  position: absolute;
  left: 0;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--proof-accent), rgba(255, 255, 255, 0.75));
  box-shadow: 0 0 18px var(--proof-glow);
  transition:
    top 0.45s var(--ease-out),
    height 0.45s var(--ease-out),
    background 0.45s ease,
    box-shadow 0.45s ease;
  pointer-events: none;
}

.svc-proof__tab {
  --rise: 0;
  appearance: none;
  position: relative;
  display: grid;
  grid-template-columns: 3.6rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0.7rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  text-align: left;
  cursor: pointer;
  opacity: calc(0.2 + var(--rise) * 0.8);
  transform: translate3d(0, calc((1 - var(--rise)) * 1.5rem), 0);
  will-change: transform, opacity;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    transform 0.4s var(--ease-out),
    box-shadow 0.35s ease,
    opacity 0.4s ease;
}

.svc-proof__tab:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translate3d(6px, calc((1 - var(--rise)) * 1.5rem - 2px), 0);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.svc-proof__tab.is-on {
  background: rgba(255, 255, 255, 0.1);
  border-color: color-mix(in srgb, var(--proof-accent) 55%, rgba(255, 255, 255, 0.28));
  transform: translate3d(8px, calc((1 - var(--rise)) * 1.5rem), 0);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.22),
    0 0 0 1px color-mix(in srgb, var(--proof-accent) 25%, transparent);
}

.svc-proof__tab.is-on:hover {
  transform: translate3d(10px, calc((1 - var(--rise)) * 1.5rem - 2px), 0);
}

.svc-proof__tab-thumb {
  display: block;
  overflow: hidden;
  border-radius: 0.7rem;
  aspect-ratio: 5 / 4;
  background: #0c1220;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.45s var(--ease-out), box-shadow 0.35s ease;
}

.svc-proof__tab:hover .svc-proof__tab-thumb,
.svc-proof__tab.is-on .svc-proof__tab-thumb {
  transform: scale(1.03);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.svc-proof__tab-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.9);
  transition: transform 0.7s var(--ease-out), filter 0.4s ease;
}

.svc-proof__tab.is-on .svc-proof__tab-thumb img,
.svc-proof__tab:hover .svc-proof__tab-thumb img {
  transform: scale(1.12);
  filter: none;
}

.svc-proof__tab-copy {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}

.svc-proof__tab-copy b {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.32);
}

.svc-proof__tab.is-on .svc-proof__tab-copy b {
  color: var(--proof-accent);
}

.svc-proof__tab-copy em {
  font-style: normal;
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.svc-proof__tab-copy strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: rgba(245, 245, 247, 0.7);
}

.svc-proof__tab.is-on .svc-proof__tab-copy strong {
  color: #f5f5f7;
}

.svc-proof__viewport {
  --rise: 0;
  --spot-x: 50%;
  --spot-y: 40%;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  border-radius: clamp(1.35rem, 2.5vw, 1.9rem);
  overflow: hidden;
  background: #0c1220;
  box-shadow:
    0 32px 70px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  min-height: min(70vh, 44rem);
  isolation: isolate;
  opacity: calc(0.15 + var(--rise) * 0.85);
  transform:
    perspective(1400px)
    rotateX(var(--tilt-x))
    rotateY(var(--tilt-y))
    translate3d(0, calc((1 - var(--rise)) * 2.5rem), 0)
    scale(calc(0.94 + var(--rise) * 0.06));
  transform-style: preserve-3d;
  transform-origin: 50% 70%;
  will-change: transform, opacity;
  transition: box-shadow 0.4s ease, opacity 0.55s ease, border-color 0.4s ease;
  touch-action: pan-y;
}

.svc-proof__viewport.is-hot {
  box-shadow:
    0 40px 84px rgba(0, 0, 0, 0.48),
    0 0 0 1px color-mix(in srgb, var(--proof-accent) 40%, rgba(255, 255, 255, 0.08)),
    0 0 48px color-mix(in srgb, var(--proof-glow) 55%, transparent);
}

.svc-proof__viewport.is-flash::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 30%, color-mix(in srgb, var(--proof-accent) 22%, transparent), transparent 70%);
  animation: proof-flash 0.7s var(--ease-out) both;
}

@keyframes proof-flash {
  from { opacity: 0.85; transform: translateX(-18%); }
  to { opacity: 0; transform: translateX(28%); }
}

.svc-proof__slides {
  position: absolute;
  inset: 0;
}

.svc-proof__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  clip-path: inset(0 22% 0 0);
  transform: scale(1.06) translate3d(2.5%, 0, 0);
  transition:
    opacity 0.65s ease,
    visibility 0.65s ease,
    clip-path 0.85s var(--ease-out),
    transform 0.85s var(--ease-out);
}

.svc-proof__theatre[data-dir="prev"] .svc-proof__slide {
  clip-path: inset(0 0 0 22%);
  transform: scale(1.06) translate3d(-2.5%, 0, 0);
}

.svc-proof__slide.is-on {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  clip-path: inset(0 0 0 0);
  transform: none;
}

.svc-proof__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 7s linear;
  will-change: transform;
}

.svc-proof__slide.is-on img {
  transform: scale(1);
}

.svc-proof__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8, 12, 20, 0.42), transparent 30%),
    linear-gradient(180deg, rgba(8, 12, 20, 0.18), transparent 35%, rgba(8, 12, 20, 0.62));
}

.svc-proof__spot {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(
    560px circle at var(--spot-x) var(--spot-y),
    color-mix(in srgb, var(--proof-accent) 35%, rgba(255, 255, 255, 0.12)),
    transparent 55%
  );
  opacity: 0;
  mix-blend-mode: soft-light;
  transition: opacity 0.4s ease;
}

.svc-proof__viewport.is-hot .svc-proof__spot {
  opacity: 1;
}

.svc-proof__glint {
  position: absolute;
  inset: -20% -30%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 40%,
    rgba(255, 255, 255, 0.08) 48%,
    transparent 56%
  );
  transform: translateX(-30%);
  opacity: 0;
}

.svc-proof__viewport.is-hot .svc-proof__glint {
  opacity: 1;
  animation: proof-glint 1.1s var(--ease-out) both;
}

@keyframes proof-glint {
  to { transform: translateX(35%); opacity: 0; }
}

.svc-proof__detail {
  --rise: 0;
  --par-x: 0px;
  --par-y: 0px;
  position: absolute;
  left: 1.15rem;
  bottom: 1.45rem;
  z-index: 4;
  width: min(9.5rem, 28%);
  display: grid;
  gap: 0.45rem;
  opacity: calc(0.15 + var(--rise) * 0.85);
  transform:
    translate3d(
      calc(var(--par-x) + (1 - var(--rise)) * -1.25rem),
      calc(var(--par-y) + (1 - var(--rise)) * 1.5rem),
      0
    )
    scale(calc(0.9 + var(--rise) * 0.1));
  will-change: transform, opacity;
  transition: opacity 0.55s ease;
}

.svc-proof__viewport.is-hot .svc-proof__detail {
  transform:
    translate3d(var(--par-x), calc(var(--par-y) - 4px), 0)
    scale(1.03);
}

.svc-proof__detail-media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 1rem;
  overflow: hidden;
  background: #0c1220;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
  transition: transform 0.45s var(--ease-out), box-shadow 0.4s ease, border-color 0.3s ease;
}

.svc-proof__viewport.is-hot .svc-proof__detail-media {
  box-shadow:
    0 22px 42px rgba(0, 0, 0, 0.4),
    0 0 0 1px color-mix(in srgb, var(--proof-accent) 30%, rgba(255, 255, 255, 0.18));
}

.svc-proof__detail-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.45s ease, transform 0.7s var(--ease-out);
}

.svc-proof__detail-media img.is-on {
  opacity: 1;
  transform: scale(1);
}

.svc-proof__detail p {
  margin: 0;
  font-size: 0.64rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.svc-proof__chrome {
  --rise: 0;
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  right: 1.1rem;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  pointer-events: none;
  opacity: calc(0.1 + var(--rise) * 0.9);
  transform: translate3d(0, calc((1 - var(--rise)) * -0.85rem), 0);
  transition: opacity 0.55s ease;
}

.svc-proof__chrome-index {
  margin: 0;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(10, 14, 22, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.3s ease, transform 0.35s var(--ease-out);
}

.svc-proof__viewport.is-hot .svc-proof__chrome-index {
  border-color: color-mix(in srgb, var(--proof-accent) 40%, rgba(255, 255, 255, 0.14));
}

.svc-proof__controls {
  display: inline-flex;
  gap: 0.45rem;
  pointer-events: auto;
}

.svc-proof__navbtn {
  appearance: none;
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(10, 14, 22, 0.45);
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    background 0.3s ease,
    transform 0.35s var(--ease-out),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.svc-proof__navbtn:hover {
  background: color-mix(in srgb, var(--proof-accent) 28%, rgba(255, 255, 255, 0.12));
  border-color: color-mix(in srgb, var(--proof-accent) 45%, rgba(255, 255, 255, 0.3));
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

.svc-proof__navbtn:active {
  transform: translateY(-1px) scale(0.98);
}

.svc-proof__dossier {
  --rise: 0;
  --par-x: 0px;
  --par-y: 0px;
  position: absolute;
  right: 1.15rem;
  bottom: 1.55rem;
  z-index: 4;
  width: min(23.5rem, calc(100% - 2.3rem));
  display: grid;
  opacity: calc(0.12 + var(--rise) * 0.88);
  transform:
    translate3d(
      calc(var(--par-x) + (1 - var(--rise)) * 1.75rem),
      calc(var(--par-y) + (1 - var(--rise)) * 1.75rem),
      0
    )
    scale(calc(0.94 + var(--rise) * 0.06));
  will-change: transform, opacity;
  transition: opacity 0.55s ease;
}

.svc-proof__viewport.is-hot .svc-proof__dossier {
  transform: translate3d(var(--par-x), calc(var(--par-y) - 5px), 0) scale(1.015);
}

.svc-proof__dossier.is-swap .svc-proof__card.is-on {
  animation: proof-dossier-in 0.55s var(--ease-out);
}

.svc-proof__dossier.is-swap .svc-proof__tags li {
  animation: proof-tag-in 0.45s var(--ease-out) both;
}

.svc-proof__dossier.is-swap .svc-proof__tags li:nth-child(1) { animation-delay: 0.05s; }
.svc-proof__dossier.is-swap .svc-proof__tags li:nth-child(2) { animation-delay: 0.1s; }
.svc-proof__dossier.is-swap .svc-proof__tags li:nth-child(3) { animation-delay: 0.15s; }
.svc-proof__dossier.is-swap .svc-proof__tags li:nth-child(4) { animation-delay: 0.2s; }

@keyframes proof-dossier-in {
  from {
    opacity: 0;
    transform: translate3d(0, 1rem, 0) scale(0.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes proof-tag-in {
  from {
    opacity: 0;
    transform: translateY(0.4rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.svc-proof__card {
  grid-area: 1 / 1;
  display: grid;
  gap: 0.5rem;
  align-content: start;
  margin: 0;
  padding: 1.3rem 1.35rem 1.35rem;
  border-radius: 1.25rem;
  color: #f5f5f7;
  background:
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.14),
      rgba(255, 255, 255, 0.04) 42%,
      rgba(8, 12, 22, 0.2)
    ),
    rgba(8, 12, 22, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.16) inset,
    0 22px 48px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(42px) saturate(1.2);
  -webkit-backdrop-filter: blur(42px) saturate(1.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 1rem, 0);
  transition:
    opacity 0.45s ease,
    visibility 0.45s ease,
    transform 0.5s var(--ease-out),
    border-color 0.35s ease,
    box-shadow 0.4s ease;
}

.svc-proof__card.is-on {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  z-index: 1;
}

.svc-proof__viewport.is-hot .svc-proof__card.is-on {
  border-color: color-mix(in srgb, var(--proof-accent) 35%, rgba(255, 255, 255, 0.28));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.24) inset,
    0 24px 48px rgba(0, 0, 0, 0.34);
}

.svc-proof__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.svc-proof__card-top span {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.42);
}

.svc-proof__kind {
  margin: 0;
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--proof-accent) 75%, #fff);
}

.svc-proof__card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: #fff;
}

.svc-proof__card > p:not(.svc-proof__kind):not(.svc-proof__outcome) {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.5;
  color: rgba(245, 245, 247, 0.86);
}

.svc-proof__outcome {
  margin: 0.1rem 0 0;
  padding: 0.55rem 0.7rem;
  border-radius: 0.75rem;
  font-size: 0.8rem;
  line-height: 1.4;
  color: rgba(245, 245, 247, 0.78);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.svc-proof__outcome b {
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.68rem;
  margin-right: 0.45rem;
  color: var(--proof-accent);
}

.svc-proof__tags {
  list-style: none;
  margin: 0.25rem 0 0.15rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.svc-proof__tags li {
  padding: 0.32rem 0.58rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 620;
  letter-spacing: 0.04em;
  color: rgba(245, 245, 247, 0.82);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform 0.3s var(--ease-out), background 0.25s ease, border-color 0.25s ease;
}

.svc-proof__card:hover .svc-proof__tags li:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
}

.svc-proof__card a {
  margin-top: 0.35rem;
  width: fit-content;
  font-size: 0.92rem;
  font-weight: 560;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 0.1rem;
  transition:
    transform 0.35s var(--ease-out),
    border-color 0.25s ease,
    color 0.25s ease,
    letter-spacing 0.35s ease;
}

.svc-proof__card a:hover {
  color: #fff;
  border-color: #fff;
  transform: translateX(5px);
  letter-spacing: 0.01em;
}

.svc-proof__dots {
  position: absolute;
  left: 50%;
  bottom: 0.85rem;
  z-index: 4;
  display: inline-flex;
  gap: 0.4rem;
  transform: translateX(-50%);
}

.svc-proof__dots button {
  appearance: none;
  width: 0.45rem;
  height: 0.45rem;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition:
    width 0.35s var(--ease-out),
    background 0.3s ease,
    transform 0.3s var(--ease-out),
    box-shadow 0.3s ease;
}

.svc-proof__dots button:hover {
  transform: scale(1.25);
  background: rgba(255, 255, 255, 0.55);
}

.svc-proof__dots button.is-on {
  width: 1.35rem;
  background: var(--proof-accent);
  box-shadow: 0 0 12px var(--proof-glow);
}

.svc-proof__progress {
  position: absolute;
  left: 1.15rem;
  right: 1.15rem;
  bottom: 0.4rem;
  z-index: 4;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
  pointer-events: none;
}

.svc-proof__progress i {
  display: block;
  height: 100%;
  width: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--proof-accent), #fff);
  transition: background 0.4s ease;
}

.svc-proof__progress i.is-running {
  animation-name: proof-progress-run;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

@keyframes proof-progress-run {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/*
  ≤980px: single-column theatre. Image + dossier stack —
  never overlay dossier on the frame (that was the mobile glitch).
*/
@media (max-width: 980px) {
  .svc-proof {
    overflow-x: clip;
    --rise: 1;
  }

  .svc-proof__top {
    grid-template-columns: 1fr;
    align-items: start;
    opacity: 1;
    transform: none;
    will-change: auto;
  }

  .svc-proof__top-aside {
    justify-items: start;
    text-align: left;
    grid-auto-flow: column;
    grid-template-columns: auto auto;
    align-items: center;
    gap: 1rem 1.5rem;
  }

  .svc-proof__theatre {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 0;
    perspective: none;
    transform: none;
    will-change: auto;
  }

  .svc-proof__rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
    padding-left: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    transform: none;
    opacity: 1;
    will-change: auto;
  }

  .svc-proof__rail-beam {
    display: none;
  }

  .svc-proof__tab {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    padding: 0.65rem;
    min-height: 100%;
    min-width: 0;
    max-width: 100%;
    opacity: 1;
    transform: none;
    will-change: auto;
  }

  .svc-proof__tab.is-on,
  .svc-proof__tab:hover,
  .svc-proof__tab.is-on:hover {
    transform: none;
  }

  .svc-proof__tab-thumb {
    aspect-ratio: 16 / 10;
    overflow: hidden;
  }

  /* Column stack: slides → dossier (shade only over slides) */
  .svc-proof__viewport {
    --rise: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: relative;
    min-height: 0;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    aspect-ratio: auto;
    height: auto;
    overflow: visible;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    opacity: 1;
    transform: none;
    will-change: auto;
    contain: none;
    isolation: isolate;
  }

  .svc-proof__slides {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    border-radius: clamp(1.1rem, 2.2vw, 1.35rem);
    overflow: hidden;
    background: #0c1220;
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.34);
  }

  .svc-proof__shade {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    border-radius: inherit;
    border-top-left-radius: clamp(1.1rem, 2.2vw, 1.35rem);
    border-top-right-radius: clamp(1.1rem, 2.2vw, 1.35rem);
    border-bottom-left-radius: clamp(1.1rem, 2.2vw, 1.35rem);
    border-bottom-right-radius: clamp(1.1rem, 2.2vw, 1.35rem);
    pointer-events: none;
  }

  .svc-proof__chrome {
    position: absolute;
    z-index: 4;
    top: 0.85rem;
    left: 0.85rem;
    right: 0.85rem;
    width: auto;
    pointer-events: none;
    opacity: 1;
    transform: none;
    will-change: auto;
  }

  .svc-proof__chrome .svc-proof__controls,
  .svc-proof__chrome .svc-proof__navbtn {
    pointer-events: auto;
  }

  .svc-proof__detail {
    display: none !important;
  }

  .svc-proof__dossier {
    --rise: 1;
    position: relative;
    z-index: 5;
    display: block;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    max-width: 100%;
    margin-top: 0.95rem;
    opacity: 1;
    transform: none;
    will-change: auto;
  }

  .svc-proof__card {
    grid-area: auto;
    position: relative;
    width: 100%;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background:
      linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)),
      rgba(12, 18, 32, 0.92);
    transition:
      opacity 0.4s ease,
      visibility 0.4s ease;
  }

  .svc-proof__card:not(.is-on) {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  .svc-proof__dots {
    position: relative;
    z-index: 5;
    left: auto;
    bottom: auto;
    transform: none;
    justify-content: center;
    margin: 0.85rem 0 0;
  }

  .svc-proof__progress {
    position: relative;
    z-index: 5;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 0.55rem 0 0;
  }

  /* Keep case-switch fades; drop expensive continuous paint */
  .svc-proof__grain,
  .svc-proof__mesh,
  .svc-proof__spot,
  .svc-proof__glint,
  .svc-proof__orb,
  .svc-proof__marks {
    display: none;
  }

  .svc-proof__slide {
    clip-path: none !important;
    transform: none !important;
    transition:
      opacity 0.45s ease,
      visibility 0.45s ease;
  }

  .svc-proof__theatre[data-dir="prev"] .svc-proof__slide {
    clip-path: none !important;
    transform: none !important;
  }

  .svc-proof__slide.is-on {
    clip-path: none !important;
    transform: none !important;
  }

  .svc-proof__slide img {
    transform: none !important;
    transition: none !important;
    will-change: auto;
  }

  .svc-proof__slide.is-on img {
    transform: none !important;
  }

  .svc-proof__viewport.is-flash::before {
    animation: none;
    opacity: 0;
  }

  .svc-proof__viewport.is-hot .svc-proof__dossier {
    transform: none;
  }
}

@media (max-width: 640px) {
  .svc-proof {
    padding: clamp(3.75rem, 12vw, 5.25rem) 0;
  }

  .svc-proof__watermark {
    font-size: 5.5rem;
  }

  .svc-proof__head h2 {
    font-size: clamp(1.55rem, 6.8vw, 1.95rem);
    line-height: 1.12;
  }

  .svc-proof__lead {
    font-size: 0.98rem;
  }

  .svc-proof__top-aside {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .svc-proof__rail {
    gap: 0.4rem;
  }

  .svc-proof__tab {
    gap: 0.35rem;
    padding: 0.45rem;
    align-items: start;
  }

  .svc-proof__tab-thumb {
    border-radius: 0.55rem;
  }

  .svc-proof__tab-copy b {
    font-size: 0.68rem;
  }

  .svc-proof__tab-copy em {
    font-size: 0.58rem;
    letter-spacing: 0.06em;
  }

  .svc-proof__tab-copy strong {
    font-size: 0.68rem;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .svc-proof__chrome {
    top: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
  }

  .svc-proof__dossier {
    margin-top: 0.85rem;
  }

  .svc-proof__dots {
    margin: 0.75rem 0 0;
  }
}

/* Soft reduce: keep case-switch + hover feedback; drop continuous motion only */
@media (prefers-reduced-motion: reduce) {
  .svc-proof__slide img {
    transition: none !important;
    transform: none !important;
  }

  .svc-proof__slide {
    clip-path: none !important;
    transform: none !important;
    transition: opacity 0.4s ease, visibility 0.4s ease !important;
  }

  .svc-proof__viewport.is-flash::before,
  .svc-proof__viewport.is-hot .svc-proof__glint {
    animation: none !important;
    opacity: 0 !important;
  }

  .svc-proof__top,
  .svc-proof__rail,
  .svc-proof__tab,
  .svc-proof__viewport,
  .svc-proof__chrome,
  .svc-proof__detail,
  .svc-proof__dossier {
    transform: none !important;
  }

  .svc-proof__dossier.is-swap .svc-proof__card.is-on {
    animation: proof-card-in-soft 0.4s ease both;
  }

  .svc-proof__count b.is-tick {
    animation: proof-tick-soft 0.35s ease both;
  }
}

@keyframes proof-card-in-soft {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes proof-tick-soft {
  from { opacity: 0.35; }
  to { opacity: 1; }
}


.svc-process {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) 0;
  background:
    radial-gradient(ellipse 50% 40% at 8% 18%, rgba(26, 39, 68, 0.09), transparent 58%),
    radial-gradient(ellipse 45% 50% at 92% 70%, rgba(26, 39, 68, 0.06), transparent 55%),
    linear-gradient(180deg, #eaedf2 0%, #f4f5f8 42%, #eef0f4 100%);
  overflow: clip;
}

.svc-process__glow {
  position: absolute;
  width: min(40rem, 75vw);
  height: min(40rem, 75vw);
  right: -10%;
  top: -14%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6), transparent 68%);
  pointer-events: none;
}

.svc-process__top {
  --rise: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(14rem, 0.7fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  opacity: calc(0.25 + var(--rise) * 0.75);
  transform: translate3d(0, calc((1 - var(--rise)) * 1.75rem), 0);
  will-change: transform, opacity;
}

.svc-process__head {
  max-width: 36rem;
}

.svc-process__head h2 {
  margin: 0.45rem 0 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.048em;
  line-height: 1.02;
}

.svc-process__lead {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.55;
  color: rgba(29, 29, 31, 0.58);
}

.svc-process__meta {
  display: grid;
  gap: 0.85rem;
  padding: 1.2rem 1.25rem 1.3rem;
  border-radius: 1.3rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(247, 248, 251, 0.9));
  border: 1px solid rgba(29, 29, 31, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 18px 40px rgba(17, 17, 17, 0.06);
}

.svc-process__meta > div {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
}

.svc-process__meta b {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.05em;
  color: var(--build);
  line-height: 1;
}

.svc-process__meta span {
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(29, 29, 31, 0.45);
}

.svc-process__meta > p {
  margin: 0;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(29, 29, 31, 0.08);
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(29, 29, 31, 0.55);
}

.svc-process__board {
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  border-radius: clamp(1.5rem, 3vw, 2rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.32));
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 30px 64px rgba(17, 17, 17, 0.08);
}

.svc-process__progress {
  --beam: 1;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
  margin: 0 0.35rem 1.35rem;
  padding: 0.15rem 0.5rem 0.35rem;
}

.svc-process__progress-line {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: calc(0.35rem + 0.45rem - 1px);
  height: 2px;
  border-radius: 999px;
  background: rgba(26, 39, 68, 0.12);
  z-index: 0;
  pointer-events: none;
}

.svc-process__progress-line::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: calc(var(--beam) * 100%);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--build), rgba(26, 39, 68, 0.55));
}

.svc-process__progress span {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 0.4rem;
}

.svc-process__progress span i {
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(26, 39, 68, 0.28);
  box-shadow: 0 0 0 5px rgba(26, 39, 68, 0.06);
  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    transform 0.4s var(--ease-out);
}

.svc-process__progress span em {
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  color: rgba(29, 29, 31, 0.35);
  background: rgba(255, 255, 255, 0.96);
  padding: 0.1rem 0.35rem;
  border-radius: 999px;
  transition: color 0.35s ease;
}

.svc-process__progress span.is-on i {
  background: var(--build);
  border-color: var(--build);
  box-shadow: 0 0 0 6px rgba(26, 39, 68, 0.12);
  transform: scale(1.12);
}

.svc-process__progress span.is-on em {
  color: var(--build);
}

.svc-process__track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.svc-process__track > li {
  --on: 1;
  min-width: 0;
  opacity: calc(0.35 + var(--on) * 0.65);
  transform: translate3d(0, calc((1 - var(--on)) * 2.25rem), 0);
  will-change: transform, opacity;
}

.svc-process__card {
  position: relative;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  border-radius: 1.35rem;
  background: linear-gradient(165deg, #fff 0%, #f5f6f9 100%);
  border: 1px solid rgba(29, 29, 31, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 16px 36px rgba(17, 17, 17, 0.06);
  overflow: hidden;
  --spot-x: 50%;
  --spot-y: 40%;
  transition:
    transform 0.45s var(--ease-out),
    box-shadow 0.45s ease,
    border-color 0.35s ease;
}

.svc-process__card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, var(--build), rgba(26, 39, 68, 0.12), transparent);
  opacity: calc(var(--on) * 0.85);
  transform: scaleX(calc(0.4 + var(--on) * 0.6));
  transform-origin: left center;
  z-index: 2;
}

.svc-process__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    520px circle at var(--spot-x) var(--spot-y),
    rgba(26, 39, 68, 0.09),
    transparent 55%
  );
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.4s ease;
}

.svc-process__card.is-hot::after {
  opacity: 1;
}

.svc-process__media {
  position: relative;
  aspect-ratio: 5 / 4;
  margin: 0.8rem 0.8rem 0;
  border-radius: 1.05rem;
  overflow: hidden;
  background: #d5dae4;
  border: 1px solid rgba(26, 39, 68, 0.1);
  z-index: 0;
}

.svc-process__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8, 12, 20, 0.28));
  pointer-events: none;
  opacity: 0.8;
}

.svc-process__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(calc(1.08 - var(--on) * 0.04));
  will-change: transform;
  transition: filter 0.45s ease;
}

.svc-process__track > li:nth-child(1) .svc-process__media img {
  object-position: 50% 35%;
}

.svc-process__track > li:nth-child(2) .svc-process__media img {
  object-position: 50% 40%;
}

.svc-process__track > li:nth-child(3) .svc-process__media img {
  object-position: 45% 40%;
}

.svc-process__track > li:nth-child(4) .svc-process__media img {
  object-position: 50% 45%;
}

.svc-process__body {
  position: relative;
  z-index: 2;
  padding: 1.05rem 1.15rem 1.2rem;
  display: grid;
  align-content: start;
  gap: 0.35rem;
}

.svc-process__num {
  position: absolute;
  top: 0.85rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1;
  color: rgba(26, 39, 68, 0.12);
}

.svc-process__out {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(26, 39, 68, 0.55);
}

.svc-process__body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.svc-process__body > p:not(.svc-process__out) {
  margin: 0;
  max-width: 16.5rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(29, 29, 31, 0.55);
}

.svc-process__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.45rem 0 0;
  padding: 0;
  list-style: none;
}

.svc-process__tags li {
  padding: 0.28rem 0.5rem;
  border-radius: 0.45rem;
  font-size: 0.72rem;
  font-weight: 520;
  color: rgba(26, 39, 68, 0.72);
  background: rgba(26, 39, 68, 0.06);
  border: 1px solid rgba(26, 39, 68, 0.08);
}

.svc-process__track > li:hover .svc-process__card,
.svc-process__track > li:focus-within .svc-process__card {
  transform: translateY(-5px);
  border-color: rgba(26, 39, 68, 0.16);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 26px 54px rgba(17, 17, 17, 0.12);
}

.svc-process__track > li:hover .svc-process__media img,
.svc-process__track > li:focus-within .svc-process__media img {
  filter: brightness(1.05) saturate(1.04);
}

.svc-process__foot {
  --rise: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  margin: 1.35rem 0 0;
  padding: 1.05rem 1.2rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(29, 29, 31, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 14px 32px rgba(17, 17, 17, 0.05);
  font-size: 0.94rem;
  opacity: calc(0.3 + var(--rise) * 0.7);
  transform: translate3d(0, calc((1 - var(--rise)) * 1.25rem), 0);
  will-change: transform, opacity;
}

.svc-process__foot span {
  color: rgba(29, 29, 31, 0.5);
}

.svc-process__foot a {
  font-weight: 560;
  color: var(--build);
  transition: transform 0.3s var(--ease-out), color 0.25s ease;
}

.svc-process__foot a:hover {
  transform: translateX(3px);
}

@media (max-width: 980px) {
  .svc-process__top {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .svc-process__meta {
    max-width: 22rem;
  }

  .svc-process__progress {
    display: none;
  }

  .svc-process__track {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .svc-process {
    padding: clamp(3.5rem, 12vw, 5rem) 0;
  }

  .svc-process__track {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .svc-process__board {
    padding: 0.85rem;
    border-radius: 1.25rem;
  }

  .svc-process__media {
    aspect-ratio: 16 / 11;
  }

  .svc-process__body {
    padding: 0.95rem 1rem 1.05rem;
  }

  .svc-process__head h2 {
    font-size: clamp(1.55rem, 6.8vw, 1.95rem);
    line-height: 1.12;
  }

  .svc-process__lead {
    font-size: 0.98rem;
  }

  .svc-process__foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
    padding: 0.95rem 1rem;
  }

  .svc-process__track > li {
    transform: none;
    opacity: 1;
    will-change: auto;
  }

  .svc-process__top,
  .svc-process__foot {
    transform: none;
    opacity: 1;
    will-change: auto;
  }
}


.svc-related {
  position: relative;
  padding: clamp(4.5rem, 8vw, 6.5rem) 0;
  background:
    radial-gradient(ellipse 50% 45% at 85% 15%, rgba(26, 39, 68, 0.06), transparent 55%),
    linear-gradient(180deg, #f3f4f7 0%, #fafafb 55%, #f5f6f8 100%);
  overflow: clip;
}

.svc-related__glow {
  position: absolute;
  width: min(34rem, 70vw);
  height: min(34rem, 70vw);
  left: -10%;
  bottom: -20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.75), transparent 68%);
  pointer-events: none;
}

.svc-related__top {
  --reveal: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  gap: 1.25rem 2rem;
  align-items: end;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.svc-related__top > * {
  opacity: calc(0.12 + var(--reveal) * 0.88);
  transform: translate3d(0, calc((1 - var(--reveal)) * 1.5rem), 0);
  will-change: transform, opacity;
}

.svc-related__head {
  max-width: 34rem;
}

.svc-related__head h2 {
  margin: 0.45rem 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.2vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.svc-related__lead {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.55;
  color: rgba(29, 29, 31, 0.58);
}

.svc-related__all {
  font-size: 0.92rem;
  font-weight: 560;
  color: var(--build);
  transition: transform 0.3s var(--ease-out), color 0.25s ease;
}

.svc-related__all:hover {
  transform: translateX(3px);
}


.svc-related__board {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: repeat(2, minmax(12.5rem, 1fr));
  gap: clamp(0.9rem, 1.8vw, 1.25rem);
  min-height: min(68svh, 38rem);
}


.svc-related__card {
  --reveal: 0;
  --spot-x: 52%;
  --spot-y: 58%;
  --spot-a: 0;
  --pan-x: 0;
  --pan-y: 0;
  --zoom: 0;
  --glow: 0;
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 0;
  border-radius: clamp(1.25rem, 2.4vw, 1.75rem);
  overflow: hidden;
  color: #fff;
  background: #1a2744;
  border: 1px solid rgba(29, 29, 31, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.14) inset,
    0 24px 52px rgba(17, 17, 17, 0.12);
  clip-path: inset(calc((1 - var(--reveal)) * 100%) 0 0 0);
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: clip-path;
  text-decoration: none;
  isolation: isolate;
}

.svc-related__card--hero {
  grid-row: 1 / -1;
  clip-path: inset(0 calc((1 - var(--reveal)) * 100%) 0 0);
}

.svc-related__card:nth-child(2),
.svc-related__card:nth-child(3) {
  clip-path: inset(0 0 0 calc((1 - var(--reveal)) * 100%));
}

.svc-related__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.svc-related__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform:
    scale(calc(1.16 - var(--reveal) * 0.16 + var(--zoom)))
    translate3d(calc(var(--pan-x) * 1%), calc(var(--pan-y) * 1%), 0);
  backface-visibility: hidden;
  will-change: transform;
  filter: saturate(calc(1 + var(--glow) * 0.06)) brightness(calc(1 + var(--glow) * 0.04));
}

.svc-related__card--hero .svc-related__media img {
  object-position: 40% center;
}

.svc-related__card:nth-child(2) .svc-related__media img {
  object-position: 50% 35%;
}

.svc-related__card:nth-child(3) .svc-related__media img {
  object-position: 50% 40%;
}

.svc-related__shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8, 12, 20, 0.08) 0%, rgba(8, 12, 20, 0.18) 38%, rgba(8, 12, 20, 0.88) 100%),
    linear-gradient(90deg, rgba(8, 12, 20, 0.28), transparent 55%),
    radial-gradient(ellipse 70% 50% at 80% 0%, rgba(26, 39, 68, 0.35), transparent 60%);
}

.svc-related__card--hero .svc-related__shade {
  background:
    linear-gradient(180deg, rgba(8, 12, 20, 0.1) 0%, rgba(8, 12, 20, 0.2) 42%, rgba(8, 12, 20, 0.9) 100%),
    linear-gradient(115deg, rgba(8, 12, 20, 0.45) 0%, transparent 48%),
    radial-gradient(ellipse 55% 40% at 100% 0%, rgba(255, 255, 255, 0.08), transparent 55%);
}

/* Soft pointer spotlight — follows cursor via --spot-* */
.svc-related__shade::after {
  content: "";
  position: absolute;
  inset: -10%;
  background: radial-gradient(
    circle 36% at var(--spot-x) var(--spot-y),
    rgba(255, 255, 255, calc(0.28 * var(--spot-a))) 0%,
    rgba(255, 255, 255, calc(0.08 * var(--spot-a))) 38%,
    transparent 68%
  );
  mix-blend-mode: soft-light;
  opacity: 1;
  pointer-events: none;
}

.svc-related__body {
  position: relative;
  z-index: 3;
  align-self: end;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto auto;
  gap: 0.55rem 1rem;
  margin: 0.85rem;
  padding: 1.05rem 1.1rem 1.15rem;
  border-radius: 1.05rem;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04) 45%, rgba(8, 12, 20, 0.28)),
    rgba(10, 14, 22, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 18px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  opacity: calc(var(--reveal) * var(--reveal) * (3 - 2 * var(--reveal)));
  transform: translate3d(0, calc((1 - var(--reveal)) * 1.15rem), 0);
  will-change: transform, opacity;
  transition:
    background 0.6s var(--ease-out),
    border-color 0.55s ease,
    box-shadow 0.6s var(--ease-out);
}

.svc-related__card--hero .svc-related__body {
  margin: 1rem;
  padding: 1.25rem 1.3rem 1.35rem;
  gap: 0.7rem 1.1rem;
}

.svc-related__kicker {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.svc-related__kicker em {
  font-style: normal;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.48);
}

.svc-related__chip {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 560;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: background 0.55s ease, border-color 0.55s ease;
}

.svc-related__body strong {
  grid-column: 1;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.1vw, 1.55rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.svc-related__card--hero .svc-related__body strong {
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  letter-spacing: -0.04em;
}

.svc-related__copy {
  grid-column: 1;
  margin: 0;
  max-width: 28rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.55s ease;
}

.svc-related__card--hero .svc-related__copy {
  font-size: 0.98rem;
  max-width: 26rem;
  color: rgba(255, 255, 255, 0.78);
}

.svc-related__tags {
  grid-column: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.15rem 0 0;
  padding: 0;
  list-style: none;
}

.svc-related__tags li {
  padding: 0.28rem 0.55rem;
  border-radius: 0.45rem;
  font-size: 0.74rem;
  font-weight: 520;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.55s ease, border-color 0.55s ease, color 0.55s ease;
}

.svc-related__go {
  grid-column: 2;
  grid-row: 2 / span 2;
  align-self: center;
  justify-self: end;
  width: 2.55rem;
  height: 2.55rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  font-size: 1.05rem;
  font-weight: 500;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.65s var(--ease-out),
    background 0.5s ease,
    color 0.5s ease,
    box-shadow 0.55s var(--ease-out),
    border-color 0.5s ease;
}

.svc-related__card--hero .svc-related__go {
  width: 2.85rem;
  height: 2.85rem;
  font-size: 1.15rem;
}

.svc-related__card.is-hot,
.svc-related__card:focus-visible {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 30px 68px rgba(17, 17, 17, 0.2);
}

.svc-related__card.is-hot .svc-related__body,
.svc-related__card:focus-visible .svc-related__body {
  border-color: rgba(255, 255, 255, 0.26);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06) 45%, rgba(8, 12, 20, 0.34)),
    rgba(10, 14, 22, 0.48);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.14) inset,
    0 20px 44px rgba(0, 0, 0, 0.26);
}

.svc-related__card.is-hot .svc-related__chip,
.svc-related__card:focus-visible .svc-related__chip {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.24);
}

.svc-related__card.is-hot .svc-related__copy,
.svc-related__card:focus-visible .svc-related__copy {
  color: rgba(255, 255, 255, 0.86);
}

.svc-related__card.is-hot .svc-related__tags li,
.svc-related__card:focus-visible .svc-related__tags li {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.svc-related__card.is-hot .svc-related__go,
.svc-related__card:focus-visible .svc-related__go {
  background: #fff;
  color: var(--build);
  border-color: #fff;
  transform: translateX(4px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
}

.svc-related__card:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  /* Keep spotlight; skip only the strongest filter kicks */
  .svc-related__media img {
    filter: none;
  }
}


@media (max-width: 980px) {
  .svc-related__top {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .svc-related__board {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(17rem, 40vw) minmax(14rem, 32vw);
    min-height: 0;
  }

  .svc-related__card--hero {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 18.5rem;
    clip-path: inset(calc((1 - var(--reveal)) * 100%) 0 0 0);
  }

  .svc-related__card:nth-child(2),
  .svc-related__card:nth-child(3) {
    clip-path: inset(calc((1 - var(--reveal)) * 100%) 0 0 0);
  }

  .svc-related__body {
    margin: 0.7rem;
    padding: 0.9rem 0.95rem 1rem;
    gap: 0.45rem 0.75rem;
  }

  .svc-related__card--hero .svc-related__body {
    margin: 0.85rem;
    padding: 1.1rem 1.15rem 1.2rem;
  }

  .svc-related__card:not(.svc-related__card--hero) .svc-related__copy {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .svc-related__go {
    grid-row: 2;
    width: 2.35rem;
    height: 2.35rem;
  }
}

@media (max-width: 640px) {
  .svc-related {
    padding: clamp(3.5rem, 12vw, 5rem) 0;
  }

  .svc-related__board {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 0.85rem;
  }

  .svc-related__card,
  .svc-related__card--hero {
    min-height: 16.5rem;
  }

  .svc-related__card:not(.svc-related__card--hero) .svc-related__copy {
    -webkit-line-clamp: 3;
  }

  .svc-related__head h2 {
    font-size: clamp(1.55rem, 6.8vw, 1.95rem);
    line-height: 1.12;
  }

  .svc-related__lead {
    font-size: 0.98rem;
  }

  .svc-related__top > * {
    transform: none;
    opacity: 1;
    will-change: auto;
  }
}

@media (max-width: 980px) {
  /*
    Mobile cover-scroll: sticky pin, content-height (keeps current
    hero UI intact). Sheet peeks and scrolls up over the hero.
  */
  .svc-cover__sticky {
    position: sticky;
    top: 0;
    height: auto;
    overflow: hidden;
    contain: paint;
    backface-visibility: hidden;
  }

  .svc-cover__sticky .svc-hero {
    height: auto;
    min-height: 0;
  }

  .svc-cover__sheet {
    min-height: 0;
    margin-top: -1.15rem;
    border-radius: 1.5rem 1.5rem 0 0;
  }

  .svc-hero {
    height: auto;
    min-height: 0;
    justify-content: flex-start;
    padding:
      calc(var(--header-pad, 1rem) + var(--header-h) + 0.85rem)
      clamp(1.1rem, 3.5vw, 1.6rem)
      calc(1.75rem + 1.15rem);
    overflow: hidden;
  }

  .svc-hero__grid {
    flex: 0 1 auto;
    width: 100%;
    min-height: 0;
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
      "copy"
      "stage";
    gap: 1.25rem;
    align-items: start;
    align-content: start;
  }

  .svc-hero__copy {
    max-width: none;
  }

  .svc-hero__crumb,
  .svc-hero__meta,
  .svc-hero__frame-meta,
  .svc-hero__float,
  .svc-hero__watermark,
  .svc-hero__scroll.scroll-cue {
    display: none;
  }

  .svc-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 1rem 0 0;
  }

  .svc-hero__tags li {
    padding: 0.35rem 0.65rem;
    font-size: 0.68rem;
  }

  .svc-hero__kicker {
    margin-bottom: 0.55rem;
  }

  .svc-hero__title span {
    overflow: visible;
  }

  .svc-hero__title span > i {
    transform: none !important;
  }

  .svc-hero__title {
    margin-bottom: 0.55rem;
    font-size: clamp(1.85rem, 7.2vw, 2.35rem);
    line-height: 1.02;
  }

  .svc-hero__lead {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.45;
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
    max-width: none;
  }

  .svc-hero__actions {
    margin-bottom: 0;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 0.85rem;
  }

  .svc-hero__stage {
    max-width: none;
    margin-inline: 0;
    width: 100%;
    min-height: 0;
    height: auto;
  }

  .svc-hero__frame {
    transform: none;
    border-radius: 1.15rem;
    height: auto;
    min-height: 0;
  }

  .svc-hero__stage:hover .svc-hero__frame {
    transform: none;
  }

  .svc-hero__frame img {
    aspect-ratio: 16 / 10;
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: cover;
    object-position: 50% 38%;
  }

  .svc-hero__frame-badge {
    top: 0.7rem;
    right: 0.7rem;
    font-size: 0.62rem;
    padding: 0.32rem 0.58rem;
  }

  .svc-promise {
    padding: clamp(2.25rem, 5vw, 3.25rem) 0 clamp(1.75rem, 4vw, 2.5rem);
  }

  .svc-promise__layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .svc-promise__head h2 {
    max-width: none;
    font-size: clamp(1.9rem, 5.5vw, 2.85rem);
  }

  .svc-promise__pull {
    padding: 1.2rem 1.2rem 1.25rem;
  }

  .svc-promise__pull-mark {
    font-size: 3.25rem;
  }

  .svc-deliver {
    padding: clamp(2rem, 4.5vw, 2.75rem) 0 3.25rem;
  }

  .svc-deliver__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .svc-deliver__intro {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .svc-deliver__count {
    display: inline-flex;
    align-items: baseline;
    gap: 0.55rem;
    min-width: 0;
    padding: 0.65rem 0.9rem;
    text-align: left;
  }

  .svc-deliver__count b {
    font-size: 1.45rem;
  }

  .svc-deliver__count span {
    font-size: 0.6rem;
  }

  .svc-deliver__card {
    min-height: 0;
    justify-content: flex-start;
    padding: 1.2rem 1.15rem 1.15rem;
    border-radius: 1.2rem;
  }

  .svc-deliver__index {
    font-size: clamp(2.4rem, 5vw, 3.1rem);
    top: 0.7rem;
    right: 0.8rem;
  }

  .svc-deliver__card-body {
    max-width: none;
    padding-right: 2.4rem;
  }

  .page-service .cta {
    padding-inline: clamp(1rem, 4vw, 1.5rem);
  }

  .page-service .pillar-cta-panel {
    width: 100%;
  }
}


/* Short landscape tablets only — portrait phones use content-height sticky */
@media (max-width: 980px) and (max-height: 520px) and (orientation: landscape) {
  .svc-hero__kicker,
  .svc-hero__meta,
  .svc-hero__frame-meta,
  .svc-hero__frame-badge,
  .svc-hero__tags {
    display: none;
  }

  .svc-hero__grid {
    gap: 0.75rem;
  }

  .svc-hero__lead {
    margin-bottom: 0.65rem;
  }

  .svc-hero__frame img {
    max-height: min(42vh, 11rem);
  }
}

@media (max-width: 640px) {
  :root {
    --shell: min(1180px, calc(100% - 2rem));
    --header-h: 4.25rem;
    --header-pad: 0.75rem;
  }

  .svc-cover__sheet {
    border-radius: 1.35rem 1.35rem 0 0;
    margin-top: -1rem;
  }

  .svc-hero {
    padding:
      calc(var(--header-pad) + var(--header-h) + 0.75rem)
      1.05rem
      calc(1.55rem + 1rem);
  }

  .svc-hero__grid {
    gap: 1.15rem;
    grid-template-rows: auto auto;
    grid-template-areas:
      "copy"
      "stage";
  }

  .svc-hero__kicker {
    margin-bottom: 0.5rem;
    font-size: 0.68rem;
  }

  .svc-hero__title {
    font-size: clamp(1.95rem, 7.2vw, 2.35rem);
    letter-spacing: -0.045em;
    margin-bottom: 0.5rem;
  }

  .svc-hero__lead {
    font-size: 0.9rem;
    max-width: none;
    margin-bottom: 0.9rem;
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
  }

  .svc-hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem 0.7rem;
  }

  .svc-hero__actions .btn--hero,
  .svc-hero__actions .text-link--hero {
    width: auto;
    flex: 0 1 auto;
    justify-content: center;
  }

  .svc-hero .btn--hero {
    padding-inline: 1rem;
    min-height: 2.5rem;
    font-size: 0.88rem;
  }

  .svc-hero .text-link--hero {
    display: inline-flex;
    padding: 0.55rem 0.75rem;
    font-size: 0.86rem;
  }

  .svc-hero__frame img {
    aspect-ratio: 16 / 10;
    max-height: none;
  }

  .svc-hero__meta {
    display: none;
  }

  .svc-hero__frame-badge {
    top: 0.65rem;
    right: 0.65rem;
  }

  .svc-promise {
    padding: 1.85rem 0 1.35rem;
  }

  .svc-promise__head .eyebrow {
    margin-bottom: 0.65rem;
  }

  .svc-promise__head h2 {
    font-size: clamp(1.55rem, 6.8vw, 1.95rem);
    line-height: 1.12;
  }

  .svc-promise__copy > p {
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .svc-promise__signals {
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .svc-promise__signals li {
    padding: 0.4rem 0.7rem;
    font-size: 0.68rem;
  }

  .svc-promise__pull {
    padding: 1.05rem 1.05rem 1.1rem;
    border-radius: 1.15rem;
  }

  .svc-promise__pull-mark {
    top: 0.55rem;
    right: 0.75rem;
    font-size: 2.6rem;
  }

  .svc-promise__pull p {
    font-size: 1rem;
    line-height: 1.4;
    padding-right: 1.5rem;
  }

  .svc-promise__pull cite {
    margin-top: 0.85rem;
  }

  .svc-deliver {
    padding: 1.75rem 0 2.75rem;
  }

  .svc-deliver::before {
    width: 2.75rem;
    height: 2px;
  }

  .svc-deliver__intro {
    gap: 0.75rem;
    margin-bottom: 1.2rem;
  }

  .svc-deliver__head h2 {
    font-size: clamp(1.55rem, 6.8vw, 1.95rem);
    line-height: 1.12;
  }

  .svc-deliver__count {
    padding: 0.55rem 0.8rem;
    border-radius: 0.9rem;
  }

  .svc-deliver__count b {
    font-size: 1.25rem;
  }

  .svc-deliver__count span {
    font-size: 0.56rem;
  }

  .svc-deliver__grid {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .svc-deliver__card {
    min-height: 0;
    justify-content: flex-start;
    padding: 1.05rem 1rem 1.05rem;
    border-radius: 1.05rem;
  }

  .svc-deliver__index {
    top: 0.6rem;
    right: 0.7rem;
    font-size: 2.15rem;
  }

  .svc-deliver__card-body {
    max-width: none;
    padding-right: 2rem;
  }

  .svc-deliver__card-body h3 {
    margin-bottom: 0.4rem;
    font-size: 1.08rem;
  }

  .svc-deliver__card-body p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .page-service .cta__watermark {
    font-size: clamp(4rem, 22vw, 7rem);
  }

  .page-service .cta__copy h2,
  .cta__copy h2 {
    font-size: clamp(1.4rem, 5.8vw, 1.75rem);
    line-height: 1.14;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
  }

  .page-service .cta__lead,
  .cta__lead {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.35rem;
  }

  .page-service .pillar-cta-panel h3 {
    font-size: 1.2rem;
  }
}

/* Landscape phones only — keep portrait content fully visible */
@media (max-width: 640px) and (max-height: 430px) and (orientation: landscape) {
  .svc-hero__kicker,
  .svc-hero__frame-badge,
  .svc-hero__tags {
    display: none;
  }

  .svc-hero__frame img {
    max-height: min(38vh, 9.5rem);
  }
}

