:root {
  --hero-height-desktop: clamp(550px, 100svh, 1050px);
  --arttina-visible-viewport-height: 100dvh;
  --arttina-visible-viewport-width: 100vw;
  --hero-height-mobile: clamp(550px, var(--arttina-visible-viewport-height), 1050px);
  --hero-band-surface-gradient: linear-gradient(180deg, #303030 0%, #262629 20%, #1a1a1d 46%, #131317 100%);
}

/* --- Act I: Hero --- */
.hero-cinematic {
  position: relative;
  isolation: isolate;
  --hero-height: var(--hero-height-desktop);
  --hero-photo-height: clamp(440px, 80svh, 800px);
  --hero-photo-left: 39%;
  --hero-main-surface: #ffffff;
  --hero-band-surface: var(--hero-band-surface-gradient);
  --hero-band-copy: #ffffff;
  --hero-band-dot: #ffffff;
  --hero-band-stroke: rgba(0, 124, 235, 0.82);
  --hero-copy-text: #41454a;
  --hero-copy-muted: #2f3238;
  --hero-blue-top-shadow: 0 -8px 16px rgba(10, 18, 28, 0.07);
  --hero-band-top-shadow: 0 -10px 18px rgba(0, 0, 0, 0.1);
  --hero-band-height: clamp(110px, 13vh, 182px);
  --hero-backplate-shift: clamp(520px, 42vw, 780px);
  --hero-backplate-left: calc(-1 * var(--hero-backplate-shift));
  --hero-backplate-top: 20%;
  --hero-backplate-width: calc(100vw + 900px);
  --hero-backplate-height: 312px;
  --hero-backplate-angle: 14deg;
  --hero-backplate-angle-neg: -14deg;
  --hero-story-desktop-x: 50.5%;
  --hero-story-size: clamp(112px, 8.2vw, 148px);
  --hero-band-angle: -6deg;
  --hero-band-plane-height: 340%;
  --hero-band-plane-width: 142%;
  --hero-band-plane-left: -12%;
  --hero-band-plane-bottom: -268%;
  --hero-band-offset-y: clamp(-52px, calc((100vw - 1900px) * 0.05), 0px);
  --hero-actions-offset-y: clamp(-8px, calc((100vw - 1900px) * 0.008), 0px);
  --hero-services-top: clamp(16px, 1.8vw, 26px);
  --hero-actions-bottom: clamp(36px, calc(2.2vh + 20px), 48px);
  min-height: var(--hero-height);
  overflow: hidden;
  background: var(--hero-main-surface);
}

.hero-cinematic::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    135deg,
    rgba(20, 50, 80, 0.045) 0 1px,
    transparent 1px 16px
  );
}

.hero-stage {
  position: relative;
  z-index: 1;
  min-height: var(--hero-height);
  padding-top: max(
    clamp(112px, 14vh, 148px),
    calc(var(--floating-header-clearance, 108px) + 20px)
  );
  padding-bottom: calc(var(--hero-band-height) + clamp(32px, 4vh, 52px));
  box-sizing: border-box;
}
.hero-copy {
  position: absolute;
  z-index: 2;
  right: clamp(8px, 2.5vw, 30px);
  top: clamp(166px, 31vh, 288px);
  width: min(52vw, 860px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, 0.9vw, 16px);
  color: var(--hero-copy-text);
  text-align: center;
  isolation: isolate;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: -56px -84px -46px;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 52%, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 42%, rgba(255, 255, 255, 0.48) 64%, rgba(255, 255, 255, 0) 82%),
    radial-gradient(ellipse at 18% 30%, rgba(255, 255, 255, 0.68) 0%, rgba(255, 255, 255, 0) 58%),
    radial-gradient(ellipse at 84% 70%, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0) 56%);
}

.hero-copy-intro,
.hero-copy-headline,
.hero-copy-body {
  margin: 0;
  position: relative;
  z-index: 1;
}
.hero-copy-intro {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: clamp(16px, 1.2vw, 24px);
  transform: translateX(-7%);
}
.hero-copy-mark {
  position: absolute;
  left: clamp(110px, 9vw, 190px);
  top: clamp(-58px, -4.5vw, -20px);
  width: clamp(72px, 6.8vw, 118px);
  height: auto;
  z-index: 0;
  transform: none;
  pointer-events: none;
}
.hero-copy-hello {
  display: inline-block;
  font-size: clamp(1.7rem, 2.35vw, 3rem);
  font-weight: 400;
  font-style: italic;
  line-height: 0.98;
  transform: translateX(clamp(36px, 2.5vw, 52px));
}
.hero-copy-headline {
  display: block;
  width: 100%;
  white-space: nowrap;
  font-size: clamp(2.35rem, 3.15vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.hero-copy-muted-part {
  font-weight: 400;
  font-style: italic;
  color: var(--hero-copy-text);
}
.hero-copy-brand {
  display: inline-flex;
  align-items: baseline;
}
.hero-copy-accent,
.hero-copy-amp {
  font-family: "Outfit", sans-serif;
  font-style: normal;
}
.hero-copy-accent {
  font-weight: 800;
  color: var(--accent-color);
  letter-spacing: -0.06em;
}
.hero-copy-amp {
  font-weight: 700;
  color: var(--hero-copy-text);
  letter-spacing: -0.04em;
}
.hero-copy-body {
  width: 100%;
  font-size: clamp(1.06rem, 1.1vw, 1.38rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.22;
  color: var(--hero-copy-muted);
  white-space: nowrap;
}
.hero-photo-zone {
  position: absolute;
  z-index: 0;
  left: 0;
  bottom: clamp(92px, 12vh, 152px);
  width: clamp(360px, 33vw, 560px);
  height: var(--hero-photo-height);
  display: block;
  pointer-events: none;
}
.hero-photo-backplate {
  position: absolute;
  z-index: 1;
  left: var(--hero-backplate-left);
  top: var(--hero-backplate-top);
  width: var(--hero-backplate-width);
  height: var(--hero-backplate-height);
  pointer-events: none;
  border-radius: 0;
  background: linear-gradient(90deg, #1f86ee 0%, #58B0FF 48%, #2e91ef 100%);
  box-shadow: var(--hero-blue-top-shadow);
  transform: translateY(calc(-50% + var(--hero-intro-blue-y, 0px))) rotate(var(--hero-backplate-angle));
  transform-origin: left center;
}

.hero-cinematic-desktop .hero-photo-backplate::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% - 1px);
  height: var(--hero-backplate-bottom-extension, 0px);
  background: inherit;
  pointer-events: none;
}
.hero-photo-picture,
.hero-mobile-photo-picture {
  display: contents;
}
.hero-photo {
  position: absolute;
  z-index: 3;
  left: var(--hero-photo-left);
  bottom: calc(var(--hero-band-height) * -0.08);
  width: auto;
  height: 100%;
  max-width: none;
  transform: translateX(-50%) translateY(var(--hero-intro-photo-y, 0px));
  object-fit: contain;
}
.hero-story-rail {
  position: absolute;
  z-index: 3;
  overflow: visible;
  pointer-events: none;
}
.hero-story-rail::before {
  content: none;
  display: none;
}
.hero-story-rail-desktop {
  left: var(--hero-backplate-left);
  top: var(--hero-backplate-top);
  width: var(--hero-backplate-width);
  height: var(--hero-backplate-height);
  --hero-story-x: var(--hero-story-desktop-x);
  transform: translateY(-50%) rotate(var(--hero-backplate-angle));
  transform-origin: left center;
}
.hero-story {
  position: absolute;
  --hero-story-ring-size: 140%;
  --hero-story-gradient-width: clamp(4px, 0.34vw, 6px);
  --hero-story-inner-gap: clamp(3px, 0.24vw, 5px);
  --hero-story-gradient-border: conic-gradient(
    from -42deg,
    #feda75 0deg,
    #fa7e1e 58deg,
    #f13b58 112deg,
    #d62976 168deg,
    #962fbf 236deg,
    #4f5bd5 306deg,
    #feda75 360deg
  );
  width: var(--hero-story-size, clamp(112px, 8.2vw, 148px));
  aspect-ratio: 1;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: none;
  overflow: visible;
  cursor: pointer;
  transform-origin: center center;
}
.hero-story-bubble {
  position: absolute;
  inset: 0;
  display: block;
  border-radius: 50%;
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: center center;
  transition: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform, opacity;
}
.hero-story-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  width: var(--hero-story-ring-size);
  height: var(--hero-story-ring-size);
  display: block;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transform-origin: center center;
}
.hero-story-ring svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}
.hero-story-ring text {
  fill: rgba(55, 64, 76, 0.72);
  font-family: var(--font-ui-accent), var(--font-headings), Arial, sans-serif;
  font-size: 9.2px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-rendering: geometricPrecision;
}
.hero-story-gradient,
.hero-story-bubble::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-story-gradient {
  inset: 0;
  z-index: 1;
  display: block;
  background: var(--hero-story-gradient-border);
  box-shadow: 0 18px 34px rgba(20, 32, 53, 0.14);
  opacity: 0;
  transform: rotate(0deg);
  transform-origin: center center;
  animation: none;
  transition: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

.hero-story-ring-live .hero-story-gradient {
  opacity: 1;
}

.hero-story-ring-css .hero-story-gradient {
  animation: hero-story-gradient-spin 6.8s linear infinite;
}
.hero-story-bubble::after {
  inset: var(--hero-story-gradient-width);
  z-index: 2;
  background: #ffffff;
}
.hero-story-frame {
  position: absolute;
  inset: calc(var(--hero-story-gradient-width) + var(--hero-story-inner-gap));
  z-index: 3;
  display: block;
  overflow: hidden;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 18%, #d5dce2 0%, #c8d0d7 56%, #b6bec7 100%);
}
.hero-story-picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-story-thumb {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.02);
}
.hero-story-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: clamp(36px, 2.8vw, 48px);
  height: clamp(36px, 2.8vw, 48px);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: rgba(16, 24, 36, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 18px rgba(16, 24, 36, 0.12);
  transition: transform 0.22s ease;
}
.hero-story-play::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-34%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 14px;
  border-color: transparent transparent transparent #ffffff;
}
.hero-story-desktop {
  z-index: 1;
  left: var(--hero-story-desktop-x);
  top: var(--hero-story-rail-y, 50%);
  bottom: auto;
  transform: translate(-50%, -50%) rotate(var(--hero-backplate-angle-neg));
  pointer-events: auto;
}
.hero-story-mobile {
  --hero-story-ring-size: 144%;
  --hero-story-gradient-width: 4px;
  --hero-story-inner-gap: 4px;
  z-index: 1;
  left: var(--hero-story-x);
  top: var(--hero-story-rail-y, 50%);
  display: block;
  bottom: auto;
  transform: translate(-50%, -50%) rotate(var(--hero-mobile-backplate-angle-neg));
  pointer-events: auto;
}
.hero-story-mobile .hero-story-ring text {
  fill: rgba(255, 255, 255, 0.96);
  font-size: 8.8px;
  letter-spacing: 0.18em;
}
@keyframes hero-story-gradient-spin {
  to {
    transform: rotate(1turn);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-story-ring-css .hero-story-gradient {
    animation: none;
  }
}
.hero-band {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: var(--hero-band-offset-y);
  height: var(--hero-band-height);
  overflow: visible;
  pointer-events: none;
  transform: translateY(var(--hero-intro-band-y, 0px));
}
.hero-band-plane {
  position: absolute;
  left: var(--hero-band-plane-left);
  bottom: var(--hero-band-plane-bottom);
  width: var(--hero-band-plane-width);
  height: var(--hero-band-plane-height);
  background: var(--hero-band-surface);
  box-shadow: var(--hero-band-top-shadow);
  transform: rotate(var(--hero-band-angle));
  transform-origin: left top;
}

.hero-band-content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
.hero-services-marquee {
  position: absolute;
  left: 0;
  right: 0;
  top: var(--hero-services-top);
  overflow: hidden;
  pointer-events: none;
}
.hero-services-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  animation: hero-services-marquee 34s linear infinite;
  -webkit-animation: hero-services-marquee 34s linear infinite;
}
.hero-services {
  position: static;
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.1vw, 42px);
  list-style: none;
  margin: 0;
  padding: 0 clamp(20px, 2vw, 34px) 0 0;
  width: max-content;
  max-width: none;
  flex: 0 0 auto;
  flex-wrap: nowrap;
}
.hero-services li {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.4vw, 24px);
  font-family: "Unbounded", var(--font-headings);
  font-size: clamp(1.08rem, 1.7vw, 1.96rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: var(--hero-band-copy);
  white-space: nowrap;
  opacity: 0.94;
}
.hero-services li + li::before {
  content: "";
  width: clamp(8px, 0.58vw, 11px);
  height: clamp(8px, 0.58vw, 11px);
  border-radius: 999px;
  flex-shrink: 0;
  background: var(--hero-band-dot);
  opacity: 0.64;
}
.hero-services li:last-child::after {
  content: "";
  width: clamp(8px, 0.58vw, 11px);
  height: clamp(8px, 0.58vw, 11px);
  border-radius: 999px;
  flex-shrink: 0;
  background: var(--hero-band-dot);
  opacity: 0.64;
}
@keyframes hero-services-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-1 * var(--hero-marquee-distance, 50%)), 0, 0);
  }
}
@-webkit-keyframes hero-services-marquee {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(calc(-1 * var(--hero-marquee-distance, 50%)), 0, 0);
            transform: translate3d(calc(-1 * var(--hero-marquee-distance, 50%)), 0, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-services-track,
  .hero-mobile-services-track {
    animation: none;
  }

  html.hero-motion-override .hero-services-track {
    animation: hero-services-marquee 34s linear infinite;
    -webkit-animation: hero-services-marquee 34s linear infinite;
  }

  html.hero-motion-override .hero-mobile-services-track {
    animation: hero-services-marquee 28s linear infinite;
    -webkit-animation: hero-services-marquee 28s linear infinite;
  }
}
.hero-actions-overlay {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: calc(var(--hero-actions-bottom) + var(--hero-actions-offset-y) - 15px);
  pointer-events: none;
  transform: translateY(var(--hero-intro-band-y, 0px));
}
.hero-actions-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
}

.hero-scroll-cue {
  --hero-scroll-cue-opacity: 0.58;
  position: absolute;
  z-index: 14;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #007CEB;
  pointer-events: none;
  user-select: none;
  opacity: var(--hero-scroll-cue-opacity);
}

.hero-scroll-cue-desktop {
  left: 50%;
  bottom: clamp(42px, 5vh, 74px);
  transform: translateX(-50%) translateY(var(--hero-scroll-cue-y, var(--hero-intro-band-y, 0px)));
  color: #ffffff;
}

.hero-scroll-cue-mobile {
  display: none;
}

body.home-hero-intro-pending {
  --hero-intro-band-y: 280px;
  --hero-intro-photo-y: 118px;
  --hero-intro-blue-y: 118px;
  --hero-intro-nav-y: -118px;
}

body.home-hero-intro-pending .glass-nav,
body.home-hero-intro-pending .hero-band,
body.home-hero-intro-pending .hero-actions-overlay,
body.home-hero-intro-pending .hero-mobile-band,
body.home-hero-intro-pending .hero-mobile-actions,
body.home-hero-intro-pending .hero-scroll-cue,
body.home-hero-intro-pending .hero-photo,
body.home-hero-intro-pending .hero-mobile-photo,
body.home-hero-intro-pending .hero-photo-backplate,
body.home-hero-intro-pending .hero-mobile-backplate,
body.home-hero-intro-pending .hero-story,
body.home-hero-intro-pending .hero-intro-word,
body.home-hero-intro-pending .hero-copy-mark,
body.home-hero-intro-pending .hero-mobile-copy-mark,
body.home-hero-intro-pending .hero-mobile-copy-image,
body.home-hero-intro-running .glass-nav,
body.home-hero-intro-running .hero-band,
body.home-hero-intro-running .hero-actions-overlay,
body.home-hero-intro-running .hero-mobile-band,
body.home-hero-intro-running .hero-mobile-actions,
body.home-hero-intro-running .hero-scroll-cue,
body.home-hero-intro-running .hero-photo,
body.home-hero-intro-running .hero-mobile-photo,
body.home-hero-intro-running .hero-photo-backplate,
body.home-hero-intro-running .hero-mobile-backplate,
body.home-hero-intro-running .hero-story,
body.home-hero-intro-running .hero-intro-word,
body.home-hero-intro-running .hero-copy-mark,
body.home-hero-intro-running .hero-mobile-copy-mark,
body.home-hero-intro-running .hero-mobile-copy-image {
  will-change: transform, opacity;
}

body.home-hero-intro-pending .glass-nav,
body.home-hero-intro-pending .hero-photo,
body.home-hero-intro-pending .hero-mobile-photo,
body.home-hero-intro-pending .hero-photo-backplate,
body.home-hero-intro-pending .hero-mobile-backplate,
body.home-hero-intro-pending .hero-intro-word,
body.home-hero-intro-pending .hero-copy-mark,
body.home-hero-intro-pending .hero-mobile-copy-mark,
body.home-hero-intro-pending .hero-mobile-copy-image {
  opacity: 0;
}

body.home-hero-intro-pending .hero-story-bubble {
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(0.72);
}

body.home-hero-intro-pending .hero-story,
body.home-hero-intro-running .hero-story {
  pointer-events: none;
}

.hero-mobile-actions {
  transform: translateY(var(--hero-intro-band-y, 0px));
}

@media (max-width: 950px) {
  body.home-hero-intro-pending {
    --hero-intro-band-y: 240px;
    --hero-intro-photo-y: 104px;
    --hero-intro-blue-y: 104px;
    --hero-intro-nav-y: -82px;
  }

  body.home-hero-intro-pending,
  body.home-hero-intro-running {
    overflow: hidden;
  }

  body.home-hero-intro-pending .duality-section,
  body.home-hero-intro-running .duality-section {
    display: none;
  }
}
.hero-scroll-cue .scrolldown {
  --color: currentColor;
  --sizeX: clamp(24px, 1.7vw, 30px);
  --sizeY: clamp(40px, 2.85vw, 50px);
  position: relative;
  width: var(--sizeX);
  height: var(--sizeY);
  border: calc(var(--sizeX) / 10) solid var(--color);
  border-radius: 50px;
  box-sizing: border-box;
  cursor: default;
}

.hero-scroll-cue .scrolldown::before {
  content: "";
  position: absolute;
  bottom: calc(var(--sizeY) * 0.6);
  left: 50%;
  width: calc(var(--sizeX) / 5);
  height: calc(var(--sizeX) / 5);
  margin-left: calc(var(--sizeX) / -10);
  background-color: var(--color);
  border-radius: 100%;
  animation: scrolldown-anim 2s infinite;
  box-sizing: border-box;
  box-shadow: 0 -5px 3px 1px rgba(42, 84, 112, 0.4);
}

.hero-scroll-cue .chevrons {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: var(--sizeX);
  margin-top: calc(var(--sizeY) - 2px);
  margin-left: calc(var(--sizeX) / -10);
  padding: 6px 0 0;
}

.hero-scroll-cue .chevrondown {
  position: relative;
  display: inline-block;
  width: calc(var(--sizeX) / 3);
  height: calc(var(--sizeX) / 3);
  margin-top: calc(var(--sizeX) / -5);
  border: solid var(--color);
  border-width: 0 calc(var(--sizeX) / 10) calc(var(--sizeX) / 10) 0;
  transform: rotate(45deg);
}

.hero-scroll-cue .chevrondown:nth-child(odd) {
  animation: hero-scroll-cue-pulse 500ms ease infinite alternate;
}

.hero-scroll-cue .chevrondown:nth-child(even) {
  animation: hero-scroll-cue-pulse 500ms ease infinite alternate 250ms;
}

@keyframes scrolldown-anim {
  0% {
    opacity: 0;
    height: calc(var(--sizeX) / 5);
  }
  40% {
    opacity: 1;
    height: calc(var(--sizeX) / 3);
  }
  80% {
    transform: translate(0, calc(var(--sizeY) * 0.4));
    height: calc(var(--sizeX) / 3);
    opacity: 0;
  }
  100% {
    height: calc(var(--sizeX) / 10);
    opacity: 0;
  }
}

@keyframes hero-scroll-cue-pulse {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.5;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll-cue .scrolldown::before,
  .hero-scroll-cue .chevrondown {
    animation: none;
  }

  .hero-scroll-cue .scrolldown::before {
    opacity: 1;
    transform: translate(0, calc(var(--sizeY) * 0.22));
  }

  .hero-scroll-cue .chevrondown {
    opacity: 0.5;
  }
}

.hero-band-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
  pointer-events: auto;
}
.hero-band-primary,
.hero-band-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 28px;
  border: none;
  box-sizing: border-box;
  border-radius: 999px;
  font-family: var(--font-ui-accent);
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  appearance: none;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}
.hero-band-primary {
  position: relative;
  overflow: hidden;
  min-width: 0;
  gap: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  background: linear-gradient(135deg, #58B0FF 0%, #007CEB 100%);
  color: #ffffff;
  box-shadow: none;
}
.hero-band-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255, 255, 255, 0.42) 50%,
    transparent 80%
  );
  z-index: 1;
  pointer-events: none;
  transform: skewX(-20deg);
}
.hero-band-primary > span,
.hero-band-secondary > span,
.hero-band-primary .hero-band-icon {
  position: relative;
  display: block;
  line-height: 1;
}
.hero-band-primary > span,
.hero-band-secondary > span {
  transform: translateY(0.04em);
}
.hero-band-primary > span,
.hero-band-primary .hero-band-icon {
  z-index: 2;
}
.hero-band-secondary {
  display: inline-flex;
  gap: 12px;
  min-width: 0;
  border: 2px solid var(--hero-band-stroke);
  background: transparent;
  color: #007CEB;
  font-weight: 500;
}
.hero-band-icon {
  display: block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.hero-band-primary .hero-band-icon {
  filter: brightness(0) invert(1);
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  transform-origin: 55% 45%;
  backface-visibility: hidden;
  will-change: transform;
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-story-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 3vw, 36px);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 16% 18%, rgba(33, 150, 255, 0.12), transparent 28%),
    radial-gradient(circle at 84% 12%, rgba(120, 218, 255, 0.15), transparent 26%),
    radial-gradient(circle at 74% 84%, rgba(33, 150, 255, 0.09), transparent 30%),
    linear-gradient(135deg, #fbfdff 0%, #edf8ff 48%, #ffffff 100%);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.32s ease, visibility 0.32s ease;
}
.hero-story-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.hero-story-modal.is-closing {
  opacity: 0;
  pointer-events: none;
}
.hero-story-modal-dialog {
  --story-modal-start-x: 0px;
  --story-modal-start-y: 0px;
  --story-modal-start-scale: 0.22;
  --story-modal-offset-y: 0px;
  --story-ring-inset: -4px;
  --story-modal-size: min(900px, calc(100vw - 160px), calc(100vh - 132px));
  --story-capsules-offset: clamp(32px, calc(((100vh - var(--story-modal-size)) / 2 - var(--story-modal-offset-y)) / 2), 82px);
  --story-side-controls-gap: clamp(18px, 3vw, 38px);
  --story-side-button-gap: clamp(14px, 1.5vw, 22px);
  --story-side-upper-shift: 24px;
  --story-side-button-size: 58px;
  position: relative;
  box-sizing: border-box;
  width: var(--story-modal-size);
  aspect-ratio: 1 / 1;
  overflow: visible;
  z-index: 2;
  opacity: 0;
  transform:
    translate3d(var(--story-modal-start-x), var(--story-modal-start-y), 0)
    scale(var(--story-modal-start-scale));
  transform-origin: 50% 50%;
  will-change: transform, opacity;
}
.hero-story-modal.is-opening .hero-story-modal-dialog {
  animation: hero-story-dialog-open 0.58s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-story-modal.is-open:not(.is-opening) .hero-story-modal-dialog {
  opacity: 1;
  transform: translate3d(0, var(--story-modal-offset-y), 0) scale(1);
}
.hero-story-modal.is-closing .hero-story-modal-dialog {
  animation: hero-story-dialog-close 0.32s cubic-bezier(0.7, 0, 0.84, 0) both;
}
.hero-story-modal-frame {
  position: absolute;
  inset: 0;
  box-sizing: border-box;
  overflow: hidden;
  contain: paint;
  border: 0;
  border-radius: 50%;
  background: #000000;
  box-shadow: none;
  cursor: pointer;
}
.hero-story-modal-frame::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 7;
  width: clamp(44px, 5.2vw, 62px);
  height: clamp(44px, 5.2vw, 62px);
  box-sizing: border-box;
  border: 4px solid rgba(255, 255, 255, 0.52);
  border-top-color: #2296f3;
  border-right-color: rgba(150, 47, 191, 0.72);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.88) rotate(0deg);
  pointer-events: none;
  transition: opacity 0.16s ease, transform 0.16s ease;
}
.hero-story-modal.is-story-loading .hero-story-modal-frame::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1) rotate(0deg);
  animation: hero-story-loader-spin 0.82s linear infinite;
}
.hero-story-modal.is-story-loading .hero-story-modal-center-toggle {
  opacity: 0 !important;
  pointer-events: none !important;
}
.hero-story-modal-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #000000;
  pointer-events: none;
}
.hero-story-modal-progress-ring {
  position: absolute;
  inset: var(--story-ring-inset);
  z-index: 3;
  display: block;
  overflow: visible;
  pointer-events: none;
}
.hero-story-modal-progress-track,
.hero-story-modal-progress-value {
  fill: none;
  stroke-linecap: round;
}
.hero-story-modal-progress-track {
  stroke: rgba(126, 142, 156, 0.34);
  stroke-width: 0.62;
}
.hero-story-modal-progress-value {
  stroke: url("#hero-story-modal-progress-gradient");
  stroke-width: 0.62;
  stroke-dasharray: 302;
  stroke-dashoffset: 302;
  filter: none;
  will-change: stroke-dashoffset;
}
html.is-story-modal-open .hero-services-track,
html.is-story-modal-open .hero-mobile-services-track,
html.is-story-modal-open .hero-story-gradient,
body.is-story-modal-open .hero-services-track,
body.is-story-modal-open .hero-mobile-services-track,
body.is-story-modal-open .hero-story-gradient {
  animation-play-state: paused !important;
}
.hero-story-modal-close {
  position: absolute;
  box-sizing: border-box;
  top: calc(50% - var(--story-side-button-size) - var(--story-side-button-size) - var(--story-side-button-gap) - var(--story-side-button-gap) - var(--story-side-upper-shift));
  left: calc(100% + var(--story-side-controls-gap));
  z-index: 6;
  width: var(--story-side-button-size);
  height: var(--story-side-button-size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(103, 122, 139, 0.18);
  border-radius: 50%;
  background: rgba(126, 142, 156, 0.16);
  color: #6f7f8d;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.hero-story-modal-close svg {
  width: 23px;
  height: 23px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-story-modal-sound {
  position: absolute;
  box-sizing: border-box;
  top: calc(50% - var(--story-side-button-size) - var(--story-side-button-gap) - var(--story-side-upper-shift));
  left: calc(100% + var(--story-side-controls-gap));
  z-index: 5;
  width: var(--story-side-button-size);
  height: var(--story-side-button-size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(103, 122, 139, 0.18);
  border-radius: 50%;
  background: rgba(126, 142, 156, 0.16);
  color: #6f7f8d;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.hero-story-modal-center-toggle {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  box-sizing: border-box;
  width: clamp(78px, 8vw, 108px);
  height: clamp(78px, 8vw, 108px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(95, 112, 128, 0.18);
  color: #ffffff;
  cursor: pointer;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  pointer-events: auto;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.hero-story-modal-frame:hover .hero-story-modal-center-toggle,
.hero-story-modal-frame:focus-within .hero-story-modal-center-toggle {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.hero-story-modal-center-toggle svg {
  width: clamp(34px, 3.6vw, 46px);
  height: clamp(34px, 3.6vw, 46px);
}
.hero-story-modal-control-icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  overflow: visible;
}
.hero-story-modal-sound svg {
  width: 25px;
  height: 25px;
  display: block;
}
.hero-story-modal-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: var(--story-side-button-size);
  height: var(--story-side-button-size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(103, 122, 139, 0.18);
  border-radius: 50%;
  background: rgba(126, 142, 156, 0.16);
  color: #6f7f8d;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: none;
  transition: opacity 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.hero-story-modal-arrow-prev {
  right: calc(100% + var(--story-side-controls-gap));
}
.hero-story-modal-arrow-next {
  left: calc(100% + var(--story-side-controls-gap));
}
.hero-story-modal-arrow svg {
  width: 26px;
  height: 26px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-story-modal-arrow:disabled {
  opacity: 0.26;
  cursor: default;
  pointer-events: none;
}
.hero-story-modal-capsules {
  position: absolute;
  top: calc(100% + var(--story-capsules-offset));
  left: 50%;
  z-index: 4;
  width: min(520px, calc(100vw - 48px));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: translate(-50%, -50%);
}
.hero-story-modal-capsule {
  --story-capsule-fill: 0%;
  position: relative;
  box-sizing: border-box;
  width: clamp(38px, 4.2vw, 58px);
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(123, 154, 180, 0.24);
  cursor: pointer;
}
.hero-story-modal-capsule::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #feda75 0%, #fa7e1e 16%, #f13b58 33%, #d62976 51%, #962fbf 72%, #4f5bd5 100%);
  transform: scaleX(var(--story-capsule-progress, 0));
  transform-origin: left center;
  transition: transform 0.18s linear, background 0.18s ease;
}
.hero-story-modal-capsule.is-complete::before {
  transform: scaleX(1);
}
.hero-story-modal-capsule.is-active {
  background: rgba(123, 154, 180, 0.28);
}
.hero-story-modal-capsule.is-active::before {
  box-shadow: none;
}
@media (min-width: 768px) {
  .hero-story-modal-dialog {
    --story-modal-offset-y: clamp(-56px, -5vh, -36px);
  }
}
@media (max-width: 520px) {
  .hero-story-modal {
    align-items: center;
    justify-content: center;
    padding:
      calc(env(safe-area-inset-top, 0px) + 9px)
      calc(env(safe-area-inset-right, 0px) + 9px)
      calc(env(safe-area-inset-bottom, 0px) + 9px)
      calc(env(safe-area-inset-left, 0px) + 9px);
    touch-action: none;
    overscroll-behavior: contain;
  }

  .hero-story-modal-dialog {
    --story-modal-offset-y: 0px;
    --story-modal-size: min(calc(100vw - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px) - 18px), 430px);
    --story-side-button-size: 42px;
    width: var(--story-modal-size);
    height: calc(100vh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 18px);
    height: calc(100svh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 18px);
    max-height: 880px;
    aspect-ratio: auto;
    border-radius: clamp(24px, 7.2vw, 34px);
    touch-action: none;
  }

  @supports (height: 100dvh) {
    .hero-story-modal-dialog {
      height: calc(100dvh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 18px);
    }
  }

  .hero-story-modal-frame {
    inset: 0;
    border-radius: inherit;
    background: #0c1219;
    touch-action: none;
    -webkit-user-select: none;
    user-select: none;
  }

  .hero-story-modal-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: inherit;
    pointer-events: none;
    background:
      linear-gradient(180deg, rgba(4, 9, 15, 0.38) 0%, rgba(4, 9, 15, 0) 18%),
      linear-gradient(0deg, rgba(4, 9, 15, 0.32) 0%, rgba(4, 9, 15, 0) 22%);
  }

  .hero-story-modal-video {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
  }

  .hero-story-modal-progress-ring {
    display: none;
  }

  .hero-story-modal-capsules {
    top: auto;
    bottom: 14px;
    left: 13px;
    right: 13px;
    z-index: 8;
    width: auto;
    gap: 4px;
    transform: none;
  }

  .hero-story-modal-capsule {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.36);
  }

  .hero-story-modal-capsule.is-active,
  .hero-story-modal-capsule.is-complete {
    background: rgba(255, 255, 255, 0.42);
  }

  .hero-story-modal-close,
  .hero-story-modal-sound {
    top: 28px;
    z-index: 9;
    width: var(--story-side-button-size);
    height: var(--story-side-button-size);
    border-color: rgba(162, 178, 192, 0.24);
    background: rgba(236, 244, 250, 0.78);
    color: #657684;
    transform: none;
  }

  .hero-story-modal-close {
    right: 13px;
    left: auto;
  }

  .hero-story-modal-sound {
    right: auto;
    left: 13px;
  }

  .hero-story-modal-close svg,
  .hero-story-modal-sound svg {
    width: 22px;
    height: 22px;
  }

  .hero-story-modal-arrow {
    display: none;
  }

  .hero-story-modal-center-toggle {
    z-index: 9;
    width: 72px;
    height: 72px;
    background: rgba(18, 27, 38, 0.32);
  }

  .hero-story-modal-center-toggle svg {
    width: 32px;
    height: 32px;
  }
}
@media (hover: none) {
  .hero-story-modal.is-video-paused .hero-story-modal-center-toggle {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
@media (hover: hover) and (pointer: fine) {
  .hero-story-modal.is-video-paused .hero-story-modal-center-toggle {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }

  .hero-story-modal-frame:hover .hero-story-modal-center-toggle,
  .hero-story-modal-frame:focus-within .hero-story-modal-center-toggle,
  .hero-story-modal-center-toggle:focus-visible {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes hero-story-dialog-open {
  0% {
    opacity: 0.16;
    transform:
      translate3d(var(--story-modal-start-x), var(--story-modal-start-y), 0)
      scale(var(--story-modal-start-scale));
  }
  58% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translate3d(0, var(--story-modal-offset-y), 0) scale(1);
  }
}
@keyframes hero-story-dialog-close {
  0% {
    opacity: 1;
    transform: translate3d(0, var(--story-modal-offset-y), 0) scale(1);
  }
  100% {
    opacity: 0;
    transform:
      translate3d(var(--story-modal-start-x), var(--story-modal-start-y), 0)
      scale(var(--story-modal-start-scale));
  }
}
@keyframes hero-story-loader-spin {
  to {
    transform: translate(-50%, -50%) scale(1) rotate(1turn);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-story-modal.is-story-loading .hero-story-modal-frame::before {
    animation: none;
  }
}
@media (hover: hover) and (pointer: fine) {
  .hero-story {
    transition: filter 0.22s ease;
  }

  .hero-story:hover {
    filter: saturate(1.06) brightness(1.02);
  }

  .hero-story:hover .hero-story-play {
    transform: translate(-50%, -50%) scale(1.08);
  }

  .hero-band-primary:hover::before {
    animation: shimmer 0.6s ease-out forwards;
  }
  .hero-band-primary:hover .hero-band-icon {
    transform: translate3d(8px, -6px, 0) rotate(14deg) scale(1.04);
  }
  .hero-band-secondary:hover {
    border-color: rgba(88, 176, 255, 0.9);
    background: rgba(88, 176, 255, 0.08);
    color: #58B0FF;
  }
  .hero-story-modal-close:hover,
  .hero-story-modal-sound:hover,
  .hero-story-modal-arrow:hover:not(:disabled) {
    border-color: rgba(103, 122, 139, 0.28);
    background: rgba(126, 142, 156, 0.24);
    color: #4f6170;
  }
}
@media (min-width: 1440px) {
  .hero-band-actions {
    gap: 20px;
  }
  .hero-band-primary,
  .hero-band-secondary {
    height: 48px;
    padding: 0 34px;
    font-size: 16px;
  }
  .hero-band-primary,
  .hero-band-secondary {
    gap: 14px;
  }
  .hero-band-icon {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 1280px) {
  .hero-cinematic {
    --hero-photo-height: clamp(470px, 82svh, 820px);
  }
  .hero-photo-zone {
    bottom: clamp(56px, 6.2vw, 88px);
    width: clamp(390px, 38vw, 510px);
  }
}

@media (max-width: 1700px) and (min-width: 951px) {
  .hero-cinematic {
    --hero-backplate-top: 18%;
    --hero-backplate-height: 200px;
    --hero-story-desktop-x: 46.1%;
    --hero-story-size: clamp(102px, 8vw, 128px);
  }

  .hero-copy-mark {
    left: clamp(154px, 12vw, 244px);
  }

  .hero-copy {
    right: -56px;
  }

  .hero-copy-hello {
    font-size: clamp(1.18rem, 1.9vw, 1.9rem);
  }

  .hero-copy-headline {
    font-size: clamp(1.72rem, 2.38vw, 2.78rem);
  }

  .hero-copy-body {
    font-size: clamp(0.84rem, 0.96vw, 1rem);
  }
}

@media (max-width: 1500px) and (min-width: 951px) {
  .hero-cinematic {
    --hero-photo-height: clamp(510px, 86svh, 860px);
  }

  .hero-photo-zone {
    bottom: clamp(32px, 4.4vw, 58px);
  }

  .hero-copy-headline {
    font-size: clamp(2.14rem, 2.96vw, 3.18rem);
  }
}

@media (max-width: 1280px) and (min-width: 951px) {
  .hero-cinematic {
    --hero-band-offset-y: -46px;
    --hero-actions-offset-y: 10px;
    --hero-services-top: 10px;
  }

  .hero-photo-zone {
    bottom: clamp(10px, 2.4vw, 28px);
  }

  .hero-services {
    gap: clamp(14px, 1.2vw, 22px);
  }

  .hero-services li {
    gap: clamp(10px, 0.9vw, 16px);
    font-size: clamp(0.92rem, 1.22vw, 1.24rem);
  }

  .hero-services li + li::before,
  .hero-services li:last-child::after {
    width: 8px;
    height: 8px;
  }
}

@media (max-width: 1700px) and (min-width: 1501px) {
  .hero-cinematic {
    --hero-backplate-top: 18%;
    --hero-backplate-height: 240px;
    --hero-story-desktop-x: 49.1%;
    --hero-story-size: clamp(108px, 7.8vw, 136px);
  }

  .hero-copy-hello {
    font-size: clamp(1.34rem, 2.08vw, 2.08rem);
  }

  .hero-copy-headline {
    font-size: clamp(1.96rem, 2.62vw, 3.08rem);
  }

  .hero-copy-body {
    font-size: clamp(0.94rem, 1.02vw, 1.08rem);
  }
}

@media (min-width: 951px) and (max-width: 1700px) and (min-aspect-ratio: 1/1) and (max-aspect-ratio: 3/2) {
  .hero-cinematic {
    --hero-story-desktop-x: calc(var(--hero-backplate-shift) + 50vw);
  }
}

@media (min-width: 951px) and (max-width: 1700px) and (orientation: landscape) and (max-height: 900px) {
  .hero-cinematic {
    --hero-story-desktop-x: calc(var(--hero-backplate-shift) + 50vw);
  }
}

@media (min-width: 951px) and (max-width: 1366px) and (orientation: landscape) and (max-height: 820px) {
  .hero-cinematic {
    --hero-story-desktop-x: calc(var(--hero-backplate-shift) + 50vw - 176px);
  }
}

@media (min-width: 1367px) and (max-width: 1700px) and (orientation: landscape) and (max-height: 900px) {
  .hero-cinematic {
    --hero-story-desktop-x: calc(var(--hero-backplate-shift) + 50vw - 212px);
  }
}

@media (min-width: 1701px) {
  .hero-cinematic {
    --hero-band-offset-y: -18px;
  }

  .hero-copy {
    top: clamp(146px, 28.5vh, 264px);
  }

  .hero-copy-mark {
    left: clamp(74px, 6.2vw, 136px);
    top: clamp(-56px, -4.2vw, -18px);
  }
}

/* --- Hero desktop concept refresh --- */
@media (min-width: 951px) {
  .hero-cinematic {
    --hero-photo-height: clamp(620px, 89svh, 960px);
    --hero-photo-left: 45%;
    --hero-band-height: clamp(180px, 20vh, 240px);
    --hero-band-offset-y: clamp(-138px, -12.8vh, -108px);
    --hero-actions-offset-y: 0px;
    --hero-actions-bottom: clamp(58px, 7.4vh, 86px);
    --hero-services-top: clamp(26px, 3.8vh, 42px);
    --hero-backplate-shift: clamp(560px, 39vw, 760px);
    --hero-backplate-top: 53%;
    --hero-backplate-height: clamp(500px, 54vh, 620px);
    --hero-backplate-bottom-extension: clamp(110px, 12vh, 150px);
    --hero-container-inset-x: calc((100vw - min(90vw, var(--content-max-width))) / 2);
    --hero-story-target-x-local: calc((50vw - var(--hero-container-inset-x) - var(--hero-backplate-left) - (var(--hero-backplate-height) / 2 * sin(var(--hero-backplate-angle)))) / cos(var(--hero-backplate-angle)));
    --hero-story-target-y: calc(var(--hero-backplate-top) + (var(--hero-story-target-x-local) * sin(var(--hero-backplate-angle))) - (var(--hero-backplate-height) / 2 * cos(var(--hero-backplate-angle))));
    --hero-story-desktop-x: 50vw;
    --hero-story-rail-y: var(--hero-story-target-y);
    --hero-story-size: clamp(148px, 17.4svh, 164px);
    --hero-band-angle: -7.5deg;
    --hero-band-plane-height: 372%;
    --hero-band-plane-width: 146%;
    --hero-band-plane-left: -14%;
    --hero-band-plane-bottom: -286%;
  }

  .hero-stage {
    padding-top: max(
      clamp(96px, 12vh, 132px),
      calc(var(--floating-header-clearance, 108px) + 24px)
    );
  }

  .hero-photo-zone {
    bottom: clamp(54px, 6.9vh, 82px);
    width: clamp(560px, 36vw, 700px);
  }

  .hero-story-rail-desktop {
    left: calc(-1 * var(--hero-container-inset-x));
    top: 0;
    width: 100vw;
    height: 100%;
    transform: none;
  }

  .hero-story-desktop {
    left: 50vw;
    top: var(--hero-story-target-y);
    transform: translate(-50%, -50%);
  }

  .hero-copy {
    right: clamp(58px, 5vw, 112px);
    top: clamp(224px, 27vh, 292px);
    width: min(34vw, 610px);
    gap: clamp(8px, 0.7vw, 12px);
  }

  .hero-copy-intro {
    transform: translateX(-9%);
  }

  .hero-copy-mark {
    left: clamp(0px, 0.6vw, 12px);
    top: clamp(-76px, -5vw, -42px);
    width: clamp(96px, 6.8vw, 128px);
  }

  .hero-copy-hello {
    font-size: clamp(2rem, 2.36vw, 3rem);
    transform: translateX(clamp(16px, 1.4vw, 26px));
  }

  .hero-copy-headline {
    font-size: clamp(2.24rem, 2.38vw, 3.28rem);
    letter-spacing: -0.03em;
  }

  .hero-copy-accent {
    letter-spacing: -0.045em;
  }

  .hero-copy-body {
    font-size: clamp(0.92rem, 0.9vw, 1.04rem);
  }

  .hero-band-plane {
    background: linear-gradient(180deg, #27272a 0%, #18181b 42%, #101012 100%);
  }

  .hero-services {
    gap: clamp(28px, 2.7vw, 50px);
  }

  .hero-services li {
    gap: clamp(22px, 1.9vw, 36px);
    font-size: clamp(1.36rem, 1.72vw, 2.14rem);
    font-weight: 700;
    letter-spacing: 0.01em;
  }

  .hero-services li + li::before,
  .hero-services li:last-child::after {
    width: clamp(15px, 1.08vw, 22px);
    height: clamp(15px, 1.08vw, 22px);
    opacity: 1;
  }

  .hero-scroll-cue-desktop {
    display: none;
  }

  .hero-band-actions {
    gap: clamp(18px, 1.35vw, 24px);
  }

  .hero-band-primary,
  .hero-band-secondary {
    height: clamp(52px, 5.2vh, 60px);
    min-width: clamp(224px, 14.4vw, 270px);
    padding: 0 clamp(26px, 1.9vw, 36px);
    font-size: clamp(16px, 1.04vw, 20px);
  }

  .hero-band-primary {
    gap: 0;
  }

  .hero-band-secondary {
    min-width: clamp(244px, 14.8vw, 280px);
    gap: 16px;
    border-width: 1px;
    color: #1898ff;
  }

  .hero-band-secondary .hero-band-icon {
    width: clamp(20px, 1.2vw, 23px);
    height: clamp(20px, 1.2vw, 23px);
  }
}

@media (min-width: 1800px) {
  .hero-cinematic {
    --hero-backplate-top: 49%;
    --hero-story-size: clamp(168px, 8.9vw, 176px);
  }
}

@media (min-width: 1501px) and (max-width: 1799px) {
  .hero-cinematic {
    --hero-backplate-top: 54.5%;
  }
}

@media (min-width: 951px) and (max-width: 1500px) {
  .hero-cinematic {
    --hero-backplate-top: 57%;
  }
}

@media (min-width: 951px) and (max-width: 1366px) and (orientation: landscape) and (max-height: 820px) {
  .hero-cinematic {
    --hero-photo-height: clamp(528px, 86svh, 590px);
    --hero-photo-left: 43%;
    --hero-band-height: clamp(126px, 17vh, 146px);
    --hero-band-offset-y: clamp(-92px, calc(-9vh - 20px), -74px);
    --hero-band-angle: -6deg;
    --hero-actions-bottom: clamp(40px, 6.6vh, 50px);
    --hero-services-top: clamp(20px, 3.2vh, 28px);
    --hero-backplate-top: 55.5%;
    --hero-backplate-height: clamp(430px, 52vh, 480px);
    --hero-backplate-bottom-extension: clamp(76px, 9vh, 110px);
    --hero-backplate-angle: 13deg;
    --hero-backplate-angle-neg: -13deg;
    --hero-story-size: clamp(124px, 9.8vw, 134px);
    --hero-band-plane-height: 286%;
    --hero-band-plane-width: 144%;
    --hero-band-plane-left: -13%;
    --hero-band-plane-bottom: -198%;
  }

  .hero-stage {
    padding-top: max(
      clamp(74px, 10vh, 104px),
      calc(var(--floating-header-clearance, 98px) + 14px)
    );
    padding-bottom: calc(var(--hero-band-height) + clamp(22px, 3vh, 34px));
  }

  .hero-photo-zone {
    bottom: clamp(34px, 5.4vh, 48px);
    width: clamp(460px, 34vw, 540px);
  }

  .hero-story-desktop {
    top: var(--hero-story-target-y);
  }

  .hero-copy {
    right: clamp(34px, 4.5vw, 72px);
    top: clamp(164px, 30vh, 202px);
    width: min(38vw, 500px);
    gap: 6px;
  }

  .hero-copy-intro {
    transform: translateX(-7%);
  }

  .hero-copy-mark {
    left: clamp(8px, 0.8vw, 18px);
    top: clamp(-58px, -4vw, -34px);
    width: clamp(74px, 5.6vw, 90px);
  }

  .hero-copy-hello {
    font-size: clamp(1.34rem, 1.8vw, 1.72rem);
  }

  .hero-copy-headline {
    font-size: clamp(1.58rem, 2.05vw, 2.1rem);
    letter-spacing: -0.025em;
  }

  .hero-copy-accent {
    letter-spacing: -0.035em;
  }

  .hero-copy-body {
    font-size: clamp(0.76rem, 0.82vw, 0.86rem);
  }

  .hero-services {
    gap: clamp(20px, 2.2vw, 32px);
  }

  .hero-services li {
    gap: clamp(16px, 1.55vw, 24px);
    font-size: clamp(1.1rem, 1.42vw, 1.38rem);
  }

  .hero-services li + li::before,
  .hero-services li:last-child::after {
    width: clamp(12px, 0.95vw, 15px);
    height: clamp(12px, 0.95vw, 15px);
  }

  .hero-band-actions {
    gap: clamp(16px, 1.4vw, 20px);
  }

  .hero-band-primary,
  .hero-band-secondary {
    height: clamp(44px, 6.8vh, 48px);
    min-width: clamp(206px, 16vw, 230px);
    padding: 0 clamp(22px, 1.8vw, 28px);
    font-size: clamp(14px, 1.08vw, 16px);
  }

  .hero-band-secondary {
    min-width: clamp(238px, 18vw, 260px);
    gap: 14px;
  }

  .hero-band-secondary .hero-band-icon {
    width: clamp(18px, 1.35vw, 20px);
    height: clamp(18px, 1.35vw, 20px);
  }
}

@media (min-width: 951px) and (min-aspect-ratio: 1/1) and (max-aspect-ratio: 7/4) {
  .hero-cinematic {
    --hero-band-offset-y: clamp(-84px, -8vh, -64px);
    --hero-story-size: clamp(176px, 21svh, 204px);
  }
}

.hero-cinematic-desktop {
  display: block;
}

.hero-cinematic-mobile {
  display: none;
}

/* Responsive hero breakpoints live in responsive.css. */

.home-shared-story-band {
  --home-story-band-background: #f3f3f3;
  --home-faq-surface-start: #f6fbfd;
  --home-faq-surface-mid: #edf7fb;
  --home-faq-surface-end: #f7fbff;
  --home-info-light-surface: #f7fbff;
  position: relative;
  isolation: isolate;
  background: var(--home-story-band-background);
}


/* --- Act II: Duality (Tandem) --- */
.duality-section {
  position: relative;
  /* min-height is removed so GSAP can calculate the pinSpacing distance. */
}

html.hero-duality-single-scene .duality-section {
  display: none;
}
.hero-duality-transition-stage {
  position: absolute;
  inset: 0;
  height: 100%;
  display: flex;
  overflow: hidden;
  isolation: isolate;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  z-index: 8;
  background: #F3F3F3;
}
.hero-duality-transition-stage .duality-pane {
  --duality-pane-top-safe: var(--duality-stage-top-safe, calc(var(--floating-header-clearance, 108px) + 24px));
  --duality-pane-bottom-safe: var(--duality-stage-bottom-safe, 28px);
  height: 100%;
  min-height: 0;
  align-items: stretch;
  justify-content: center;
  --duality-card-width: min(100%, 648px);
  --duality-card-height: min(calc(100vh - var(--duality-pane-top-safe) - var(--duality-pane-bottom-safe)), 820px);
  padding: var(--duality-pane-top-safe) clamp(38px, 4vw, 56px) var(--duality-pane-bottom-safe);
  box-sizing: border-box;
}
.hero-duality-transition-stage .duality-divider {
  position: absolute;
  left: 50%;
  top: 50%;
  height: auto;
  padding: 0;
  background: none;
  transform: translate(-50%, -50%);
  z-index: 12;
}
.hero-duality-transition-stage .divider-line {
  display: none;
}
.hero-duality-transition-stage .divider-icon {
  width: 24px;
  height: 24px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 50%;
  box-shadow: none;
}
.hero-duality-transition-stage .divider-icon svg {
  display: none;
}
.duality-sticky-container {
  height: 100vh;
  position: sticky;
  top: 0;
  display: flex;
  overflow: hidden;
  background: #F3F3F3;
}
.duality-pane {
  flex: 1;
  --duality-pane-top-safe: calc(var(--floating-header-clearance, 108px) + 24px);
  --duality-pane-bottom-safe: clamp(28px, 3vw, 40px);
  --duality-card-width: min(100%, 708px);
  --duality-card-height: min(
    calc(100svh - var(--duality-pane-top-safe) - var(--duality-pane-bottom-safe)),
    860px
  );
  --duality-card-radius: 38px;
  --duality-media-radius: 30px;
  --duality-card-padding: 16px;
  --duality-title-size: clamp(1.52rem, 2.2vw, 2.86rem);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--duality-pane-top-safe) clamp(38px, 4vw, 56px) var(--duality-pane-bottom-safe);
  position: relative;
}
.pane-light {
  background: linear-gradient(180deg, #53a5f2 0%, #4497e8 100%);
  color: #ffffff;
}
.pane-dark {
  background: linear-gradient(180deg, #202020 0%, #191919 100%);
  color: #FFF;
}
.pane-content {
  position: relative;
  width: var(--duality-card-width);
  max-width: var(--duality-card-width);
  height: var(--duality-card-height);
  min-height: 0;
  padding: 0;
  box-sizing: border-box;
  display: grid;
  grid-template-rows: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 0;
  align-items: stretch;
  justify-items: stretch;
  text-align: left;
  border-radius: var(--duality-card-radius);
  overflow: hidden;
  isolation: isolate;
  opacity: 1;
  transform: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.pane-content::before,
.pane-content::after {
  display: none;
}
.pane-light .pane-content {
  --duality-glass-border: rgba(255, 255, 255, 0.36);
  --duality-glass-inner-line: rgba(255, 255, 255, 0.28);
  --duality-glass-shadow: rgba(0, 124, 235, 0.22);
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0) 30%),
    radial-gradient(circle at 86% 88%, rgba(0, 124, 235, 0.34) 0%, rgba(0, 124, 235, 0) 34%),
    linear-gradient(145deg, rgba(91, 180, 255, 0.88) 0%, rgba(45, 153, 239, 0.92) 46%, rgba(0, 124, 235, 0.86) 100%);
  border: 1px solid var(--duality-glass-border);
  box-shadow:
    inset 0 1px 0 var(--duality-glass-inner-line),
    inset 0 -1px 0 rgba(0, 72, 142, 0.18),
    0 28px 70px var(--duality-glass-shadow);
}
.pane-dark .pane-content {
  --duality-glass-border: rgba(255, 255, 255, 0.12);
  --duality-glass-inner-line: rgba(255, 255, 255, 0.13);
  --duality-glass-shadow: rgba(0, 0, 0, 0.32);
  background:
    radial-gradient(circle at 16% 10%, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 34%),
    radial-gradient(circle at 82% 86%, rgba(88, 176, 255, 0.1) 0%, rgba(88, 176, 255, 0) 36%),
    linear-gradient(145deg, rgba(42, 42, 42, 0.94) 0%, rgba(25, 25, 25, 0.98) 52%, rgba(14, 14, 14, 0.94) 100%);
  border: 1px solid var(--duality-glass-border);
  box-shadow:
    inset 0 1px 0 var(--duality-glass-inner-line),
    inset 0 -1px 0 rgba(0, 0, 0, 0.44),
    0 30px 76px var(--duality-glass-shadow);
}

.duality-section .pane-content,
.hero-duality-transition-stage .pane-content {
  backdrop-filter: blur(18px) saturate(1.22);
  -webkit-backdrop-filter: blur(18px) saturate(1.22);
}

.duality-section .pane-content::after,
.hero-duality-transition-stage .pane-content::after {
  content: "";
  display: block;
  position: absolute;
  inset: 1px;
  z-index: 4;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.08) 22%, rgba(255, 255, 255, 0) 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.11) 0%, rgba(255, 255, 255, 0) 48%, rgba(255, 255, 255, 0.08) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 18px 42px rgba(255, 255, 255, 0.1);
  mix-blend-mode: screen;
}

.duality-section .pane-content > *,
.hero-duality-transition-stage .pane-content > * {
  position: relative;
  z-index: 2;
}

.pane-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: none;
  aspect-ratio: auto;
  display: block;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  isolation: isolate;
  padding: var(--duality-card-padding) var(--duality-card-padding) 0;
  box-sizing: border-box;
}
.pane-img-wrap::before {
  display: none;
}
.pane-img-wrap::after {
  display: none;
}
.pane-img-picture {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: var(--duality-media-radius);
}
.duality-photo {
  width: 100%;
  height: 100%;
  border-radius: var(--duality-media-radius);
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 0;
}
.pane-body {
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  align-items: start;
  gap: clamp(18px, 2.1vh, 24px);
  padding: clamp(28px, 2.8vw, 38px) clamp(34px, 3vw, 46px) clamp(34px, 3.2vw, 44px);
  box-sizing: border-box;
}
.duality-photo-light {
  border: none;
  box-shadow: none;
  object-position: center 28%;
}
.duality-photo-dark {
  border: none;
  box-shadow: none;
  object-position: center 22%;
}
.pane-title {
  position: absolute;
  top: calc(var(--duality-card-padding) + clamp(20px, 2.2vw, 28px));
  right: calc(var(--duality-card-padding) + clamp(18px, 2.2vw, 28px));
  z-index: 3;
  font-size: var(--duality-title-size);
  line-height: 0.96;
  letter-spacing: -0.045em;
  margin: 0;
  color: #ffffff;
  text-align: right;
  white-space: nowrap;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
}
.pane-dark .pane-title {
  left: auto;
  right: calc(var(--duality-card-padding) + clamp(18px, 2.2vw, 28px));
  text-align: right;
}



.pane-role {
  max-width: none;
  font-family: var(--font-ui-accent);
  font-size: clamp(2.1rem, 2.5vw, 3.45rem);
  color: rgba(255, 255, 255, 0.98);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0;
  text-align: left;
  line-height: 0.92;
}
.pane-quote {
  max-width: none;
  margin: 0;
  align-self: center;
  display: block;
  font-family: var(--font-body);
  font-size: clamp(1.04rem, 1.08vw, 1.26rem);
  line-height: 1.6;
  font-style: italic;
  color: rgba(255, 255, 255, 0.94);
  text-align: left;
  text-wrap: pretty;
}

.pane-proof {
  display: grid;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.pane-proof-group {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
}

.pane-proof-label {
  font-family: var(--font-ui-accent);
  font-size: clamp(0.62rem, 0.64vw, 0.74rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.58);
  text-transform: uppercase;
}

.pane-proof-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  min-width: 0;
}

.pane-proof-item {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  min-width: 0;
}

.pane-proof-value {
  font-family: var(--font-headings);
  font-size: clamp(1.42rem, 1.55vw, 2rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.pane-proof-caption {
  font-family: var(--font-body);
  font-size: clamp(0.62rem, 0.64vw, 0.74rem);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.7);
}
.pane-mobile-layout {
  display: none;
}

@media (min-width: 951px) {
  .duality-sticky-container,
  .hero-duality-transition-stage {
    gap: clamp(28px, 4vw, 84px);
    padding-inline: clamp(42px, 5vw, 86px);
    box-sizing: border-box;
    background: #F3F3F3;
  }

  .duality-pane,
  .hero-duality-transition-stage .duality-pane {
    --duality-card-radius: clamp(38px, 3.4vw, 58px);
    --duality-media-radius: clamp(30px, 2.7vw, 46px);
    --duality-card-width: min(100%, 900px);
    background: transparent;
    padding-left: 0;
    padding-right: 0;
  }

  .pane-light .pane-content,
  .hero-duality-transition-stage .pane-light .pane-content {
    background:
      radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0) 30%),
      radial-gradient(circle at 86% 88%, rgba(0, 124, 235, 0.34) 0%, rgba(0, 124, 235, 0) 34%),
      linear-gradient(145deg, rgba(91, 180, 255, 0.88) 0%, rgba(45, 153, 239, 0.92) 46%, rgba(0, 124, 235, 0.86) 100%);
    border: 1px solid rgba(255, 255, 255, 0.36);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.28),
      inset 0 -1px 0 rgba(0, 72, 142, 0.18),
      0 28px 70px rgba(0, 124, 235, 0.22);
  }

  .pane-dark .pane-content,
  .hero-duality-transition-stage .pane-dark .pane-content {
    background:
      radial-gradient(circle at 16% 10%, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 34%),
      radial-gradient(circle at 82% 86%, rgba(88, 176, 255, 0.1) 0%, rgba(88, 176, 255, 0) 36%),
      linear-gradient(145deg, rgba(42, 42, 42, 0.94) 0%, rgba(25, 25, 25, 0.98) 52%, rgba(14, 14, 14, 0.94) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.13),
      inset 0 -1px 0 rgba(0, 0, 0, 0.44),
      0 30px 76px rgba(0, 0, 0, 0.32);
  }

  .pane-content,
  .hero-duality-transition-stage .pane-content {
    overflow: hidden;
    border-radius: var(--duality-card-radius);
  }

  .pane-img-wrap,
  .hero-duality-transition-stage .pane-img-wrap {
    padding: clamp(14px, 1vw, 18px) clamp(14px, 1vw, 18px) 0;
  }

  .duality-photo,
  .hero-duality-transition-stage .duality-photo {
    border-radius: var(--duality-media-radius);
  }

  .pane-body,
  .hero-duality-transition-stage .pane-body {
    padding-inline: clamp(34px, 3vw, 50px);
    padding-bottom: clamp(34px, 3.2vw, 48px);
  }
}

.hero-duality-transition-stage {
  perspective: clamp(900px, 72vw, 1500px);
  -webkit-perspective: clamp(900px, 72vw, 1500px);
  perspective-origin: 50% 50%;
  -webkit-perspective-origin: 50% 50%;
}

.hero-duality-transition-stage .duality-pane {
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
}

.hero-duality-transition-stage .pane-content {
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform, filter;
}

.hero-duality-transition-stage .pane-content::before {
  display: none;
}

.hero-duality-transition-stage .pane-content > * {
  position: relative;
  z-index: 2;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(1px);
  -webkit-transform: translateZ(1px);
}

.duality-divider {
  position: absolute; left: 50%; top: 50%; height: auto;
  transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  z-index: 10;
  pointer-events: none;
}
.divider-line { display: none; }
.divider-icon {
  width: 28px;
  height: 28px;
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: transparent;
  border: none;
  box-shadow: none;
}
.divider-icon::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.08);
}
.divider-icon svg {
  display: none;
}
.duality-convergence {
  position: absolute; inset: 0;
  background: #F3F3F3; color: var(--text-main);
  --convergence-brand-gradient: linear-gradient(135deg, #58B0FF 0%, #007CEB 100%);
  display: grid;
  grid-template-columns:
    minmax(0, var(--home-desktop-scene-shell-inset))
    minmax(0, var(--home-desktop-scene-shell-width))
    minmax(0, var(--home-desktop-scene-shell-inset));
  grid-template-rows: minmax(0, 1fr) auto minmax(0, 1fr);
  justify-items: stretch;
  align-items: center;
  padding: clamp(40px, 5vw, 72px) 0;
  box-sizing: border-box;
  z-index: 20;
  clip-path: circle(0% at center);
  overflow: hidden;
  isolation: isolate;
}
.convergence-model-shell {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(340px, 40vw, 680px);
  height: clamp(340px, 40vw, 680px);
  transform: translate(-50%, -44%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.45s ease;
}
.convergence-model-shell.is-ready {
  opacity: 1;
}
.convergence-model-viewer {
  width: 100%;
  height: 100%;
  display: block;
  background: transparent;
  --poster-color: transparent;
  --progress-bar-height: 0px;
  --progress-bar-color: transparent;
  opacity: 0.92;
  filter: saturate(1.04) contrast(1.02);
}
.convergence-model-viewer::part(default-progress-bar) {
  display: none;
  opacity: 0;
}
.convergence-copy {
  margin: 0;
  max-width: min(92vw, 760px);
  position: relative;
  z-index: 2;
}
.convergence-copy-top {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  justify-self: start;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding-top: 0;
  text-align: left;
}
.convergence-eyebrow,
.convergence-highlight {
  margin: 0;
  font-family: "Montserrat", var(--font-body);
  font-size: clamp(0.9rem, 1.1vw, 1.18rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.convergence-highlight {
  padding: 4px 10px 4px 20px;
  border-radius: 0;
  background: var(--convergence-brand-gradient);
  color: #ffffff;
}
.convergence-text {
  grid-column: 2;
  grid-row: 2;
  justify-self: stretch;
  font-family: var(--font-headings);
  font-weight: 800;
  width: 100%;
  max-width: 100%;
  text-align: center;
  font-size: 15vw;
  line-height: 0.9;
  letter-spacing: -0.05em;
  white-space: nowrap;
  color: rgba(28, 31, 36, 0.78);
  opacity: 1;
  position: relative;
  z-index: 3;
  mix-blend-mode: normal;
  -webkit-text-fill-color: currentColor;
  text-shadow: none;
}
.convergence-copy-bottom {
  grid-column: 2;
  grid-row: 3;
  align-self: end;
  justify-self: end;
  max-width: min(48vw, 620px);
  padding-bottom: clamp(8px, 1.4vw, 16px);
  font-family: "Montserrat", var(--font-body);
  font-size: clamp(1rem, 1.28vw, 1.42rem);
  font-weight: 500;
  line-height: 1.36;
  letter-spacing: -0.01em;
  color: transparent;
  background: var(--convergence-brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: right;
  text-transform: none;
  position: relative;
  z-index: 2;
}

:root {
  --home-scene-inline-gutter: clamp(38px, 4vw, 56px);
  --home-desktop-scene-shell-width: min(90vw, var(--screen-shell-width));
  --home-desktop-scene-shell-inset: max(calc((100vw - var(--home-desktop-scene-shell-width)) / 2), 0px);
}

.home-scene-shell {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-inline: var(--home-scene-inline-gutter);
  box-sizing: border-box;
}

#tandem,
#services_section,
#home_faq_section,
#home_pricing_policy_section {
  scroll-margin-top: 0;
}

.home-info-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    var(--home-faq-surface-start, #f6fbfd) 0,
    #f6fbfd 116px,
    var(--home-faq-surface-mid, #edf7fb) 52%,
    var(--home-faq-surface-end, #f7fbff) 100%
  );
  color: var(--text-main, #2c323b);
}

.home-info-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    repeating-linear-gradient(135deg, rgba(20, 50, 80, 0.045) 0 1px, transparent 1px 16px),
    radial-gradient(circle at 76% 18%, rgba(40, 151, 242, 0.14) 0%, rgba(40, 151, 242, 0) 28%);
  opacity: 0.8;
  -webkit-mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    #000000 12%,
    #000000 88%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    #000000 12%,
    #000000 88%,
    rgba(0, 0, 0, 0) 100%
  );
}

.home-info-section--pricing {
  background: linear-gradient(
    180deg,
    var(--home-faq-surface-end, #f7fbff) 0,
    #f3fbfe 112px,
    #edf7fb 48%,
    #f7fbff 100%
  );
  color: var(--text-main, #2c323b);
}

.home-info-section--pricing::before {
  background:
    repeating-linear-gradient(135deg, rgba(20, 50, 80, 0.045) 0 1px, transparent 1px 16px),
    radial-gradient(circle at 76% 18%, rgba(40, 151, 242, 0.12) 0%, rgba(40, 151, 242, 0) 28%);
  opacity: 0.72;
}

.home-info-screen.home-scene-shell {
  position: relative;
  z-index: 1;
  width: var(--home-desktop-scene-shell-width);
  max-width: var(--screen-shell-width);
  margin-right: auto;
  margin-left: auto;
  padding: 118px 0 126px;
}

.home-info-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.home-info-layout--faq {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
}

.home-info-layout--faq .home-info-header {
  grid-column: 2;
  justify-self: end;
  text-align: right;
}

.home-info-layout--faq .home-info-title {
  margin-left: auto;
  text-align: right;
}

.home-info-layout--faq .home-info-note {
  margin-left: auto;
}

.home-info-layout--faq .home-faq-list {
  grid-column: 1;
  grid-row: 1;
}

.home-info-header {
  position: sticky;
  top: 108px;
  min-width: 0;
}

.home-info-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  min-height: 36px;
  margin-bottom: 20px;
  border: 1px solid rgba(31, 151, 247, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 18px 36px rgba(255, 255, 255, 0.5), 0 12px 28px rgba(30, 126, 206, 0.08);
  color: #168df2;
  font-family: var(--font-headings, inherit);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.home-info-kicker--dark {
  border-color: rgba(112, 198, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
  color: #5bc8ff;
}

.home-info-title {
  max-width: 8.5em;
  margin: 0;
  color: #2b333d;
  font-family: var(--font-headings, inherit);
  font-size: clamp(2.45rem, 3.05vw, 3.45rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.96;
  text-transform: uppercase;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.home-info-title--light {
  color: #ffffff;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.home-info-title span {
  display: block;
  white-space: nowrap;
}

.home-info-note {
  max-width: 32rem;
  margin: 26px 0 0;
  color: rgba(44, 50, 59, 0.68);
  font-size: 1.18rem;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.48;
}

.home-info-note--light {
  color: rgba(255, 255, 255, 0.72);
}

.home-faq-list {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.home-faq-item {
  overflow: hidden;
  border: 1px solid rgba(73, 161, 242, 0.2);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.58)),
    radial-gradient(circle at 0% 0%, rgba(0, 198, 222, 0.12), rgba(0, 198, 222, 0));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 22px 58px rgba(49, 118, 160, 0.1);
}

.home-faq-question {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 40px;
  gap: 18px;
  align-items: center;
  min-width: 0;
  padding: 24px 26px;
  cursor: pointer;
  color: #2b333d;
  font-family: var(--font-headings, inherit);
  font-size: 1.28rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.12;
}

.home-faq-question::-webkit-details-marker {
  display: none;
}

.home-faq-question span:nth-child(2) {
  min-width: 0;
  overflow-wrap: anywhere;
}

.home-faq-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 34px;
  border: 1px solid rgba(31, 151, 247, 0.26);
  border-radius: 999px;
  background: rgba(217, 244, 255, 0.64);
  color: #168df2;
  font-size: 0.82rem;
  line-height: 1;
}

.home-faq-toggle {
  position: relative;
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(208, 241, 255, 0.56));
}

.home-faq-toggle::before,
.home-faq-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #168df2;
  transform: translate(-50%, -50%);
  transition: transform 160ms ease;
}

.home-faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.home-faq-item[open] .home-faq-toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.home-faq-answer {
  max-width: 66ch;
  margin: 0;
  padding: 0 84px 24px 98px;
  color: rgba(44, 50, 59, 0.7);
  font-size: 1.04rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.52;
}

.home-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
}

.home-pricing-card {
  min-width: 0;
  min-height: 234px;
  padding: 26px;
  border: 1px solid rgba(73, 161, 242, 0.2);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.62)),
    radial-gradient(circle at 12% 12%, rgba(92, 200, 255, 0.13), rgba(92, 200, 255, 0));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 22px 58px rgba(49, 118, 160, 0.1);
}

.home-pricing-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 36px;
  margin-bottom: 28px;
  border: 1px solid rgba(31, 151, 247, 0.26);
  border-radius: 999px;
  background: rgba(217, 244, 255, 0.64);
  color: #168df2;
  font-family: var(--font-headings, inherit);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.home-pricing-card h3 {
  margin: 0;
  color: #2b333d;
  font-family: var(--font-headings, inherit);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
}

.home-pricing-card p {
  margin: 16px 0 0;
  color: rgba(44, 50, 59, 0.68);
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.48;
}

@media (max-width: 1280px) and (min-width: 951px) {
  .home-info-screen.home-scene-shell {
    padding-top: 104px;
    padding-bottom: 112px;
  }

  .home-info-layout {
    grid-template-columns: minmax(250px, 0.36fr) minmax(0, 1fr);
    gap: 32px;
  }

  .home-info-title {
    font-size: clamp(2.35rem, 2.9vw, 3.2rem);
  }

  .home-pricing-card {
    min-height: 250px;
  }
}

@media (max-width: 950px) {
  .home-info-screen.home-scene-shell {
    width: 100vw;
    max-width: none;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding: 74px clamp(18px, 5vw, 28px) 80px;
  }

  .home-info-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .home-info-layout--faq .home-info-header,
  .home-info-layout--faq .home-faq-list {
    grid-column: auto;
    grid-row: auto;
  }

  .home-info-header {
    position: relative;
    top: auto;
    text-align: center;
  }

  .home-info-layout--faq .home-info-header {
    justify-self: stretch;
    text-align: center;
  }

  .home-info-title {
    max-width: 9em;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(1.78rem, 8vw, 2.18rem);
    line-height: 1.02;
  }

  .home-info-layout--faq .home-info-title,
  .home-info-layout--faq .home-info-note {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .home-info-note {
    margin-right: auto;
    margin-left: auto;
    font-size: 1rem;
  }

  .home-faq-question {
    grid-template-columns: auto minmax(0, 1fr) 34px;
    gap: 12px;
    padding: 20px 18px;
    font-size: 1.08rem;
    text-align: left;
  }

  .home-faq-index {
    width: 46px;
    height: 30px;
    font-size: 0.76rem;
  }

  .home-faq-toggle {
    width: 34px;
    height: 34px;
  }

  .home-faq-answer {
    padding: 0 18px 22px 76px;
    font-size: 0.96rem;
  }

  .home-pricing-grid {
    grid-template-columns: 1fr;
  }

  .home-pricing-card {
    min-height: 0;
    padding: 22px;
  }

  .home-pricing-index {
    margin-bottom: 20px;
  }

  .hero-cinematic {
    --hero-height: var(--hero-height-mobile);
    --hero-photo-height: clamp(404px, 82svh, 820px);
    --hero-photo-left: 37%;
    --hero-band-height: clamp(118px, 14vw, 170px);
    --hero-services-top: clamp(14px, 1.8vw, 22px);
    --hero-actions-bottom: clamp(36px, calc(2.4vw + 20px), 44px);
  }
  .hero-stage {
    min-height: var(--hero-height);
    padding-top: 122px;
    padding-bottom: calc(var(--hero-band-height) + 24px);
  }
  .hero-duality-transition-stage {
    --duality-stage-top-safe: calc(env(safe-area-inset-top, 0px) + var(--site-shell-mobile-header-height, 64px) + 16px);
    --duality-stage-bottom-safe: 20px;
    --duality-mobile-card-radius: clamp(28px, 8vw, 42px);
    --hero-mobile-scene-nav-clearance: calc(env(safe-area-inset-top, 0px) + var(--site-shell-mobile-header-height, 64px) + 1px);
    inset: var(--hero-mobile-scene-nav-clearance) 0 auto 0;
    height: max(0px, calc(var(--hero-height-mobile) - var(--hero-mobile-scene-nav-clearance)));
    max-height: max(0px, calc(var(--hero-height-mobile) - var(--hero-mobile-scene-nav-clearance)));
    flex-direction: column;
    align-items: stretch;
    gap: clamp(12px, 3.8vw, 18px);
    padding: clamp(12px, 3.8vw, 18px);
    box-sizing: border-box;
    background: #F3F3F3;
  }
  .hero-photo-zone {
    left: 0;
    bottom: clamp(8px, 4vw, 34px);
    width: clamp(300px, 43vw, 446px);
    height: var(--hero-photo-height);
  }
  .hero-copy {
    right: 0;
    top: clamp(166px, 27vh, 236px);
    width: min(44vw, 620px);
    gap: 10px;
  }
  .hero-copy-intro {
    gap: 14px;
  }
  .hero-copy-hello {
    font-size: clamp(1.3rem, 2.1vw, 2.1rem);
  }
  .hero-copy-headline {
    font-size: clamp(1.85rem, 2.55vw, 3rem);
  }
  .hero-copy-body {
    font-size: clamp(0.88rem, 1vw, 1.08rem);
    white-space: nowrap;
  }
  .hero-photo-backplate {
    left: calc(-1 * clamp(430px, 40vw, 620px));
    top: 16%;
    width: calc(100vw + 700px);
    height: 150px;
  }
  .hero-photo {
    height: 100%;
  }
  .hero-band {
    height: var(--hero-band-height);
  }
  .hero-actions-inner {
    justify-content: flex-end;
  }
  .hero-band-actions {
    max-width: 100%;
  }
  /* Reset pinning for Duality Split-Screen and the mobile Tina / KH. ALEX card layout. */
  .duality-sticky-container {
    --duality-mobile-card-gutter: clamp(14px, 4vw, 22px);
    --duality-mobile-card-radius: clamp(28px, 8vw, 42px);
    flex-direction: column;
    height: auto;
    position: relative;
    gap: clamp(16px, 4.5vw, 24px);
    padding: clamp(16px, 4.5vw, 24px) 0;
    background: #F3F3F3;
  }
  .duality-section .duality-pane {
    height: auto;
    min-height: auto;
    padding: 0;
    background: transparent;
    text-align: left;
  }
  .duality-section .pane-content {
    opacity: 1 !important;
    transform: none !important;
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    min-height: clamp(348px, 78vw, 430px);
    margin: 0 var(--duality-mobile-card-gutter);
    padding: 0;
    border-radius: var(--duality-mobile-card-radius);
    background: transparent;
    overflow: hidden;
  }
  .duality-section .pane-light .pane-content {
    background:
      radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0) 30%),
      radial-gradient(circle at 86% 88%, rgba(0, 124, 235, 0.34) 0%, rgba(0, 124, 235, 0) 34%),
      linear-gradient(145deg, rgba(91, 180, 255, 0.88) 0%, rgba(45, 153, 239, 0.92) 46%, rgba(0, 124, 235, 0.86) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.36) !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.28),
      inset 0 -1px 0 rgba(0, 72, 142, 0.18),
      0 22px 54px rgba(0, 124, 235, 0.2) !important;
  }
  .duality-section .pane-dark .pane-content {
    background:
      radial-gradient(circle at 16% 10%, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 34%),
      radial-gradient(circle at 82% 86%, rgba(88, 176, 255, 0.1) 0%, rgba(88, 176, 255, 0) 36%),
      linear-gradient(145deg, rgba(42, 42, 42, 0.94) 0%, rgba(25, 25, 25, 0.98) 52%, rgba(14, 14, 14, 0.94) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.13),
      inset 0 -1px 0 rgba(0, 0, 0, 0.44),
      0 24px 58px rgba(0, 0, 0, 0.28) !important;
    min-height: clamp(376px, 84vw, 456px);
  }
  .duality-section .pane-content > .pane-img-wrap,
  .duality-section .pane-content > .pane-body {
    display: none !important;
  }
  .duality-section .pane-mobile-layout {
    display: grid;
    width: 100%;
    height: 100%;
    min-height: inherit;
    padding: clamp(20px, 5.4vw, 32px);
    box-sizing: border-box;
  }
  .duality-section .pane-mobile-photo {
    display: block;
    margin: 0;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.78);
    box-sizing: border-box;
    object-fit: cover;
    box-shadow: none;
  }
  .duality-section .pane-mobile-photo-picture {
    display: block;
    line-height: 0;
  }
  .duality-section .pane-mobile-photo-picture .pane-mobile-photo {
    width: 100%;
    height: 100%;
  }
  .duality-section .pane-mobile-heading {
    min-width: 0;
  }
  .duality-section .pane-light .pane-mobile-layout {
    grid-template-areas:
      "top"
      "quote";
    grid-template-rows: auto auto;
    row-gap: clamp(30px, 8vw, 54px);
    align-items: start;
  }
  .duality-section .pane-light .pane-mobile-top {
    grid-area: top;
    display: grid;
    grid-template-columns: minmax(112px, 0.9fr) minmax(0, 1.1fr);
    column-gap: clamp(14px, 4.5vw, 28px);
    align-items: center;
  }
  .duality-section .pane-light .pane-mobile-photo {
    width: min(100%, clamp(118px, 34vw, 160px));
    aspect-ratio: 1;
    max-width: none;
    height: auto;
    object-position: center 26%;
    justify-self: center;
    display: block;
  }
  .duality-section .pane-light .pane-mobile-heading {
    display: grid;
    gap: 6px;
    align-content: center;
    justify-items: end;
    padding-right: 0;
  }
  .duality-section .pane-light .pane-mobile-name,
  .duality-section .pane-light .pane-mobile-role {
    margin: 0;
    color: #ffffff;
    text-align: right;
    width: 100%;
  }
  .duality-section .pane-light .pane-mobile-name {
    font-size: clamp(1.1rem, 4.8vw, 1.8rem);
    font-weight: 700;
    line-height: 1.08;
    text-wrap: balance;
  }
  .duality-section .pane-light .pane-mobile-role {
    font-family: var(--font-ui-accent);
    font-size: clamp(0.85rem, 3.5vw, 1rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.1;
    text-wrap: balance;
  }
  .duality-section .pane-mobile-role {
    order: 1;
  }
  .duality-section .pane-mobile-name {
    order: 2;
  }
  .duality-section .pane-light .pane-mobile-quote {
    grid-area: quote;
    margin: 0;
    width: 100%;
    align-self: end;
    text-align: center;
    font-family: var(--font-body);
    font-size: clamp(0.84rem, 3.05vw, 1.02rem);
    font-style: italic;
    line-height: 1.62;
    color: rgba(255, 255, 255, 0.96);
    text-wrap: pretty;
    padding: 0;
    box-sizing: border-box;
  }
  .duality-section .pane-mobile-proof {
    order: 3;
    display: grid;
    width: 100%;
    margin: 2px 0 0;
    padding: 8px 0 0;
    border-top: none;
    box-sizing: border-box;
    gap: 6px;
  }

  .duality-section .pane-light .pane-mobile-proof {
    justify-content: end;
    justify-items: end;
    margin-left: auto;
    text-align: center;
  }

  .duality-section .pane-light .pane-mobile-proof .pane-proof-items {
    justify-content: flex-end;
  }

  .duality-section .pane-dark .pane-mobile-proof {
    justify-content: flex-start;
    text-align: left;
  }

  .duality-section .pane-mobile-proof .pane-proof-group {
    display: block;
    min-width: 0;
  }

  .duality-section .pane-mobile-proof .pane-proof-items {
    display: flex;
    flex-wrap: nowrap;
    min-width: 0;
    gap: clamp(7px, 2.2vw, 10px);
  }

  .duality-section .pane-mobile-proof .pane-proof-label {
    display: none;
  }

  .duality-section .pane-mobile-proof .pane-proof-item {
    display: grid;
    gap: 2px;
    min-width: 0;
    padding: 0;
  }

  .duality-section .pane-mobile-proof .pane-proof-value {
    min-width: 0;
    font-size: clamp(1.12rem, 4.45vw, 1.42rem);
    white-space: nowrap;
  }

  .duality-section .pane-mobile-proof .pane-proof-caption {
    min-width: 0;
    font-size: clamp(0.58rem, 2.32vw, 0.76rem);
    line-height: 1;
    white-space: nowrap;
  }
  .duality-section .pane-dark .pane-mobile-layout {
    grid-template-areas:
      "quote"
      "bottom";
    grid-template-rows: auto auto;
    row-gap: clamp(30px, 8vw, 54px);
    align-items: stretch;
  }
  .duality-section .pane-dark .pane-mobile-quote {
    grid-area: quote;
    margin: 0;
    width: 100%;
    text-align: left;
    font-family: var(--font-body);
    font-size: clamp(0.84rem, 3.05vw, 1.02rem);
    font-style: italic;
    line-height: 1.62;
    color: rgba(255, 255, 255, 0.94);
    text-wrap: pretty;
    padding: 0;
    box-sizing: border-box;
  }
  .duality-section .pane-dark .pane-mobile-bottom {
    grid-area: bottom;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(112px, 0.9fr);
    column-gap: clamp(14px, 4.5vw, 28px);
    align-items: end;
  }
  .duality-section .pane-dark .pane-mobile-heading {
    display: grid;
    gap: 6px;
    align-content: center;
    min-width: 0;
    padding-bottom: 0;
    padding-left: 0;
  }
  .duality-section .pane-dark .pane-mobile-role,
  .duality-section .pane-dark .pane-mobile-name {
    margin: 0;
    color: #ffffff;
    text-align: left;
  }
  .duality-section .pane-dark .pane-mobile-role {
    font-family: var(--font-ui-accent);
    font-size: clamp(0.85rem, 3.5vw, 1rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.1;
    text-wrap: balance;
  }
  .duality-section .pane-dark .pane-mobile-name {
    font-size: clamp(1.1rem, 4.8vw, 1.8rem);
    font-weight: 700;
    line-height: 1.08;
    text-wrap: balance;
  }
  .duality-section .pane-dark .pane-mobile-photo {
    width: min(100%, clamp(122px, 35vw, 166px));
    aspect-ratio: 1;
    max-width: none;
    height: auto;
    object-position: center top;
    justify-self: end;
  }
  .duality-section .pane-dark .pane-mobile-photo-picture {
    width: min(100%, clamp(122px, 35vw, 166px));
    aspect-ratio: 1;
    max-width: none;
    justify-self: end;
  }
  .duality-section .pane-dark .pane-mobile-photo-picture .pane-mobile-photo {
    width: 100%;
    height: 100%;
    object-position: center top;
  }
  .duality-section .duality-divider {
    display: none;
  }
  .duality-section .divider-line {
    display: none;
  }
  .duality-section .divider-icon::before {
    width: 14px;
    height: 14px;
    background: #ffffff;
    box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.12);
  }
  .duality-convergence { display: none; } /* Hide complex intersection circle */

  /* Final mobile grid for the hero split-scene: 4 explicit blocks matching the mockup */
  .hero-duality-transition-stage .duality-pane {
    --hero-mobile-founder-photo-size: clamp(126px, 36vw, 184px);
    --hero-mobile-founder-photo-size-dark: clamp(136px, 37vw, 194px);
    flex: 1 1 0;
    height: auto;
    min-height: 0;
    padding: 0;
    background: transparent;
    justify-content: stretch;
  }

  .hero-duality-transition-stage .duality-divider {
    display: none;
  }

  .hero-duality-transition-stage .pane-content {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border-radius: var(--duality-mobile-card-radius);
    background: transparent;
    border: none !important;
    box-shadow: none !important;
    overflow: hidden;
  }

  .hero-duality-transition-stage .pane-light .pane-content {
    background:
      radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0) 30%),
      radial-gradient(circle at 86% 88%, rgba(0, 124, 235, 0.34) 0%, rgba(0, 124, 235, 0) 34%),
      linear-gradient(145deg, rgba(91, 180, 255, 0.88) 0%, rgba(45, 153, 239, 0.92) 46%, rgba(0, 124, 235, 0.86) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.36) !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.28),
      inset 0 -1px 0 rgba(0, 72, 142, 0.18),
      0 22px 54px rgba(0, 124, 235, 0.2) !important;
  }

  .hero-duality-transition-stage .pane-dark .pane-content {
    background:
      radial-gradient(circle at 16% 10%, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 34%),
      radial-gradient(circle at 82% 86%, rgba(88, 176, 255, 0.1) 0%, rgba(88, 176, 255, 0) 36%),
      linear-gradient(145deg, rgba(42, 42, 42, 0.94) 0%, rgba(25, 25, 25, 0.98) 52%, rgba(14, 14, 14, 0.94) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.13),
      inset 0 -1px 0 rgba(0, 0, 0, 0.44),
      0 24px 58px rgba(0, 0, 0, 0.28) !important;
  }

  .hero-duality-transition-stage .pane-content > .pane-img-wrap,
  .hero-duality-transition-stage .pane-content > .pane-body {
    display: none !important;
  }

  .hero-duality-transition-stage .pane-mobile-layout {
    display: grid;
    width: 100%;
    height: 100%;
    min-width: 0;
    padding: clamp(14px, 3.8vw, 24px);
    box-sizing: border-box;
  }

  .hero-duality-transition-stage .pane-mobile-top,
  .hero-duality-transition-stage .pane-mobile-bottom,
  .hero-duality-transition-stage .pane-mobile-heading {
    min-width: 0;
    min-height: 0;
  }

  .hero-duality-transition-stage .pane-mobile-photo {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.86);
    box-sizing: border-box;
    object-fit: cover;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
  }

  .hero-duality-transition-stage .pane-mobile-name,
  .hero-duality-transition-stage .pane-mobile-role,
  .hero-duality-transition-stage .pane-mobile-quote {
    margin: 0;
    color: #ffffff;
  }

  .hero-duality-transition-stage .pane-mobile-name {
    font-size: clamp(1.02rem, 4.2vw, 1.24rem);
    font-weight: 700;
    line-height: 1.08;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
    text-wrap: balance;
  }

  .hero-duality-transition-stage .pane-mobile-role {
    font-family: var(--font-ui-accent);
    font-size: clamp(0.8rem, 3.2vw, 0.94rem);
    font-weight: 400;
    line-height: 1.06;
    text-transform: uppercase;
    letter-spacing: 0;
    text-wrap: balance;
  }

  .hero-duality-transition-stage .pane-mobile-quote {
    font-family: var(--font-body);
    font-size: clamp(0.78rem, 2.85vw, 0.9rem);
    font-style: italic;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.96);
    text-wrap: pretty;
  }

  .hero-duality-transition-stage .pane-mobile-proof {
    order: 3;
    display: grid;
    width: 100%;
    gap: 5px;
    margin: 1px 0 0;
    padding: 7px 0 0;
    border-top: none;
    box-sizing: border-box;
  }

  .hero-duality-transition-stage .pane-light .pane-mobile-proof {
    justify-content: flex-end;
    justify-items: end;
    margin-left: auto;
    text-align: right;
  }

  .hero-duality-transition-stage .pane-light .pane-mobile-proof .pane-proof-items {
    justify-content: flex-end;
  }

  .hero-duality-transition-stage .pane-dark .pane-mobile-proof {
    justify-content: flex-start;
    text-align: left;
  }

  .hero-duality-transition-stage .pane-mobile-proof .pane-proof-group {
    display: block;
    min-width: 0;
  }

  .hero-duality-transition-stage .pane-mobile-proof .pane-proof-items {
    display: flex;
    flex-wrap: nowrap;
    min-width: 0;
    gap: clamp(6px, 1.9vw, 9px);
  }

  .hero-duality-transition-stage .pane-mobile-proof .pane-proof-label {
    display: none;
  }

  .hero-duality-transition-stage .pane-mobile-proof .pane-proof-item {
    display: grid;
    gap: 2px;
    min-width: 0;
    padding: 0;
  }

  .hero-duality-transition-stage .pane-mobile-proof .pane-proof-value {
    min-width: 0;
    font-size: clamp(1.04rem, 4.05vw, 1.28rem);
    white-space: nowrap;
  }

  .hero-duality-transition-stage .pane-mobile-proof .pane-proof-caption {
    min-width: 0;
    font-size: clamp(0.54rem, 2.12vw, 0.7rem);
    line-height: 1;
    white-space: nowrap;
  }

  .hero-duality-transition-stage .pane-light .pane-mobile-layout {
    grid-template-areas:
      "top"
      "quote";
    grid-template-rows: 58% 42%;
    row-gap: 0;
  }

  .hero-duality-transition-stage .pane-light .pane-mobile-top {
    grid-area: top;
    display: grid;
    grid-template-columns: minmax(112px, 0.92fr) minmax(0, 1.08fr);
    column-gap: clamp(10px, 3vw, 20px);
    align-items: center;
  }

  .hero-duality-transition-stage .pane-light .pane-mobile-photo {
    width: var(--hero-mobile-founder-photo-size);
    height: var(--hero-mobile-founder-photo-size);
    justify-self: center;
    align-self: center;
    object-position: center 22%;
  }

  .hero-duality-transition-stage .pane-light .pane-mobile-heading {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 5px;
    padding: 0;
  }

  .hero-duality-transition-stage .pane-light .pane-mobile-role,
  .hero-duality-transition-stage .pane-dark .pane-mobile-role {
    order: 1;
  }

  .hero-duality-transition-stage .pane-light .pane-mobile-name,
  .hero-duality-transition-stage .pane-dark .pane-mobile-name {
    order: 2;
  }

  .hero-duality-transition-stage .pane-light .pane-mobile-name,
  .hero-duality-transition-stage .pane-light .pane-mobile-role {
    width: 100%;
    text-align: right;
  }

  .hero-duality-transition-stage .pane-light .pane-mobile-quote {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    padding: 0;
    text-align: right;
    box-sizing: border-box;
  }

  .hero-duality-transition-stage .pane-dark .pane-mobile-layout {
    grid-template-areas:
      "quote"
      "bottom";
    grid-template-rows: 42% 58%;
    row-gap: 0;
  }

  .hero-duality-transition-stage .pane-dark .pane-mobile-quote {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 0;
    text-align: left;
    box-sizing: border-box;
  }

  .hero-duality-transition-stage .pane-dark .pane-mobile-bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(116px, 0.94fr);
    column-gap: clamp(10px, 3vw, 20px);
    align-items: center;
  }

  .hero-duality-transition-stage .pane-dark .pane-mobile-heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    padding: 0;
  }

  .hero-duality-transition-stage .pane-dark .pane-mobile-role,
  .hero-duality-transition-stage .pane-dark .pane-mobile-name {
    text-align: left;
  }

  .hero-duality-transition-stage .pane-dark .pane-mobile-photo {
    width: var(--hero-mobile-founder-photo-size-dark);
    height: var(--hero-mobile-founder-photo-size-dark);
    justify-self: center;
    align-self: center;
    object-position: center 20%;
  }
  .hero-duality-transition-stage .pane-dark .pane-mobile-photo-picture {
    width: var(--hero-mobile-founder-photo-size-dark);
    height: var(--hero-mobile-founder-photo-size-dark);
    justify-self: center;
    align-self: center;
  }
  .hero-duality-transition-stage .pane-dark .pane-mobile-photo-picture .pane-mobile-photo {
    width: 100%;
    height: 100%;
    object-position: center 20%;
  }

  .hero-duality-transition-stage .duality-convergence {
    --convergence-optical-edge-offset: clamp(8px, 2.4vw, 12px);
    --duality-mobile-convergence-gutter: var(--duality-mobile-card-gutter, clamp(14px, 4vw, 22px));
    --duality-mobile-convergence-title-width: calc(100vw - (var(--duality-mobile-convergence-gutter) * 2));
    display: grid !important;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto minmax(0, 1fr) auto;
    justify-items: stretch;
    align-items: stretch;
    row-gap: clamp(18px, 5vw, 28px);
    padding:
      clamp(28px, 7vw, 44px)
      var(--duality-mobile-convergence-gutter)
      clamp(28px, 8vw, 44px);
  }

  .hero-duality-transition-stage .convergence-model-shell {
    width: min(calc(100vw - (var(--duality-mobile-convergence-gutter) * 2)), 352px);
    height: min(calc(100vw - (var(--duality-mobile-convergence-gutter) * 2)), 352px);
    transform: translate(-50%, -49%);
  }

  .hero-duality-transition-stage .convergence-text {
    grid-column: 1;
    grid-row: 2;
    align-self: center;
    justify-self: center;
    width: min(100%, var(--duality-mobile-convergence-title-width));
    max-width: min(100%, var(--duality-mobile-convergence-title-width));
    padding-inline: 0;
    box-sizing: border-box;
    text-align: center;
    white-space: nowrap;
    line-height: 0.9;
    letter-spacing: -0.05em;
    font-size: clamp(2.35rem, calc(var(--duality-mobile-convergence-title-width) / 5.8), 4.35rem);
  }

  .hero-duality-transition-stage .convergence-copy-top {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    justify-self: start;
    width: fit-content;
    transform: none;
    gap: 5px;
    padding-top: 0;
    max-width: 100%;
  }

  .hero-duality-transition-stage .convergence-eyebrow,
  .hero-duality-transition-stage .convergence-highlight {
    font-size: clamp(0.72rem, 2.9vw, 0.92rem);
    max-width: 100%;
    text-wrap: balance;
  }

  .hero-duality-transition-stage .convergence-highlight {
    display: inline-flex;
    align-self: flex-start;
    max-width: none;
    padding: 3px 8px 3px 12px;
    border-radius: 0;
    white-space: nowrap;
    text-wrap: nowrap;
  }

  .hero-duality-transition-stage .convergence-copy-bottom {
    grid-column: 1;
    grid-row: 3;
    align-self: end;
    justify-self: end;
    transform: none;
    width: min(100%, 272px);
    max-width: min(100%, 272px);
    padding-bottom: 0;
    font-size: clamp(0.9rem, 3.5vw, 1.1rem);
    line-height: 1.32;
    text-align: right;
    text-wrap: balance;
  }
}

@media (max-width: 400px) {
  .hero-duality-transition-stage .duality-pane {
    --hero-mobile-founder-photo-size: clamp(112px, 34vw, 142px);
    --hero-mobile-founder-photo-size-dark: clamp(120px, 35vw, 150px);
  }

  .hero-duality-transition-stage .pane-mobile-name {
    font-size: clamp(0.94rem, 4vw, 1.08rem);
  }

  .hero-duality-transition-stage .pane-mobile-role {
    font-size: clamp(0.72rem, 3vw, 0.86rem);
  }

  .hero-duality-transition-stage .pane-mobile-quote {
    font-size: clamp(0.72rem, 2.7vw, 0.82rem);
    line-height: 1.52;
  }

  .hero-duality-transition-stage .pane-light .pane-mobile-layout {
    grid-template-rows: 58% 42%;
  }

  .hero-duality-transition-stage .pane-dark .pane-mobile-layout {
    grid-template-rows: 42% 58%;
  }

  .hero-duality-transition-stage .pane-light .pane-mobile-heading,
  .hero-duality-transition-stage .pane-light .pane-mobile-quote,
  .hero-duality-transition-stage .pane-dark .pane-mobile-quote,
  .hero-duality-transition-stage .pane-dark .pane-mobile-heading {
    padding: 0;
  }

  .hero-duality-transition-stage .pane-mobile-proof {
    padding: 6px 0 0;
  }
}

@media (max-width: 400px) and (min-height: 760px) {
  .hero-cinematic-mobile {
    --hero-mobile-photo-bottom: calc(var(--hero-height-mobile) * 0.12);
    --hero-story-mobile-x: 68.5%;
  }
}

@media (max-width: 768px) {
  .hero-duality-transition-stage {
    --hero-mobile-scene-nav-clearance: calc(env(safe-area-inset-top, 0px) + var(--site-shell-mobile-header-height, 64px) + 1px);
  }
  .hero-duality-transition-stage .convergence-text {
    font-size: clamp(2.35rem, calc(var(--duality-mobile-convergence-title-width) / 5.8), 4.35rem);
  }
  .hero-duality-transition-stage .convergence-eyebrow,
  .hero-duality-transition-stage .convergence-highlight {
    font-size: clamp(0.69rem, 2.9vw, 0.86rem);
  }
  .hero-duality-transition-stage .convergence-copy-top {
    width: fit-content;
    max-width: 100%;
  }
  .hero-duality-transition-stage .convergence-copy-bottom {
    width: min(100%, 270px);
    max-width: min(100%, 270px);
    font-size: clamp(0.86rem, 3.25vw, 1.06rem);
    line-height: 1.38;
  }
  .hero-cinematic {
    --hero-band-height: clamp(126px, 17vh, 174px);
    --hero-band-angle: -6deg;
    --hero-band-plane-height: 332%;
    --hero-band-plane-width: 168%;
    --hero-band-plane-left: -30%;
    --hero-band-plane-bottom: -236%;
    --hero-photo-left: 34%;
    --hero-services-top: clamp(12px, 2.8vw, 18px);
    --hero-actions-bottom: clamp(34px, calc(3vw + 20px), 42px);
  }
  .hero-stage {
    padding-top: 96px;
    padding-bottom: calc(var(--hero-band-height) + 18px);
  }
  .hero-copy {
    right: clamp(8px, 3vw, 20px);
    top: clamp(124px, 22vh, 168px);
    width: min(44vw, 340px);
    gap: 10px;
  }
  .hero-copy-intro {
    gap: 12px;
  }
  .hero-copy-hello {
    font-size: clamp(1rem, 3.4vw, 1.5rem);
  }
  .hero-copy-headline {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    line-height: 1.08;
    white-space: normal;
  }
  .hero-copy-body {
    max-width: 24ch;
    font-size: clamp(0.74rem, 2.05vw, 0.92rem);
    line-height: 1.3;
    white-space: normal;
  }
  .hero-photo-zone {
    left: 50%;
    bottom: clamp(0px, 2vw, 12px);
    width: min(84vw, 338px);
    height: var(--hero-photo-height);
    transform: translateX(-50%);
  }
  .hero-photo-backplate {
    left: 1%;
    right: 3%;
    top: 39%;
    height: clamp(122px, 26vw, 182px);
  }
  .hero-photo {
    height: 100%;
  }
  .hero-band {
    height: var(--hero-band-height);
  }
  .hero-services-track {
    animation-duration: 28s;
  }
  .hero-services {
    gap: 16px;
    padding-right: 18px;
  }
  .hero-services li {
    gap: 12px;
    font-size: clamp(0.92rem, 5.2vw, 1.34rem);
    letter-spacing: 0.02em;
  }
  .hero-services li + li::before {
    width: 9px;
    height: 9px;
  }
  .hero-band-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .hero-band-primary,
  .hero-band-secondary {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    justify-content: center;
    padding: 0 24px;
    font-size: 0.95rem;
  }
  .hero-band-secondary {
    gap: 10px;
  }
}

@media (max-width: 950px) {
  .hero-cinematic-desktop {
    display: none;
  }

  .hero-cinematic-mobile {
    --hero-mobile-photo-height: calc(var(--hero-height-mobile) * 0.79);
    --hero-mobile-photo-bottom: calc(var(--hero-height-mobile) * 0.13);
    --hero-mobile-photo-left: 45.5%;
    --hero-mobile-photo-shift-x: 18px;
    --hero-mobile-band-height: clamp(148px, 18vh, 196px);
    --hero-mobile-band-bottom: clamp(-54px, -5.2vw, -28px);
    --hero-mobile-band-angle: -7deg;
    --hero-mobile-backplate-left: -34%;
    --hero-mobile-backplate-top: 27%;
    --hero-mobile-backplate-width: 172%;
    --hero-mobile-backplate-height: clamp(190px, 24vh, 280px);
    --hero-mobile-backplate-angle: 10deg;
    --hero-mobile-backplate-angle-neg: -10deg;
    --hero-story-size: clamp(92px, 23vw, 118px);
    --hero-story-mobile-x: 72%;
    --hero-story-rail-y: calc(75% - 10px);
    display: block;
    position: relative;
    height: var(--hero-height-mobile) !important;
    min-height: var(--hero-height-mobile) !important;
    background: #ffffff;
    overflow: hidden;
  }

  .hero-mobile-stage {
    position: relative;
    height: var(--hero-height-mobile);
    min-height: 0;
    box-sizing: border-box;
  }

  .hero-mobile-photo-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .hero-mobile-backplate {
    position: absolute;
    left: var(--hero-mobile-backplate-left);
    top: var(--hero-mobile-backplate-top);
    z-index: 1;
    width: var(--hero-mobile-backplate-width);
    height: var(--hero-mobile-backplate-height);
    background: linear-gradient(90deg, #1f86ee 0%, #58B0FF 48%, #2e91ef 100%);
    box-shadow: var(--hero-blue-top-shadow);
    transform: translateY(var(--hero-intro-blue-y, 0px)) rotate(var(--hero-mobile-backplate-angle));
    transform-origin: left center;
    pointer-events: none;
  }

  .hero-mobile-backplate::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% - 1px);
    height: var(--hero-mobile-backplate-bottom-extension, 0px);
    background: inherit;
    pointer-events: none;
  }

  .hero-mobile-photo {
    position: absolute;
    left: var(--hero-mobile-photo-left);
    bottom: var(--hero-mobile-photo-bottom);
    z-index: 3;
    width: auto;
    height: var(--hero-mobile-photo-height);
    max-width: none;
    transform: translateX(calc(-50% - var(--hero-mobile-photo-shift-x))) translateY(var(--hero-intro-photo-y, 0px));
    object-fit: contain;
    pointer-events: none;
  }

  .hero-mobile-copy {
    position: absolute;
    top: max(
      clamp(112px, 15vh, 158px),
      calc(var(--floating-header-clearance, 108px) + 14px)
    );
    right: clamp(10px, 3.4vw, 24px);
    z-index: 4;
    width: min(40vw, 168px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--hero-copy-text);
  }

  .hero-mobile-copy-image {
    display: none;
  }

  .hero-mobile-copy-tablet {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    color: var(--hero-copy-text);
  }

  .hero-mobile-copy-mark {
    position: absolute;
    left: clamp(-18px, -5vw, -8px);
    top: clamp(-34px, -7vw, -18px);
    width: clamp(54px, 15vw, 78px);
    height: auto;
    opacity: 0.28;
    pointer-events: none;
  }

  .hero-mobile-copy-tablet-hello,
  .hero-mobile-copy-tablet-headline,
  .hero-mobile-copy-tablet-body {
    margin: 0;
    position: relative;
    z-index: 1;
  }

  .hero-mobile-copy-tablet-hello {
    font-size: clamp(0.98rem, 5vw, 1.34rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1;
  }

  .hero-mobile-copy-tablet-headline {
    max-width: 11ch;
    margin-top: clamp(11px, 2.2vh, 18px);
    font-family: var(--font-headings);
    font-size: clamp(1.65rem, 8vw, 2.54rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: 0;
    text-wrap: balance;
  }

  .hero-mobile-copy-tablet-muted {
    font-weight: 400;
    font-style: italic;
    color: var(--hero-copy-text);
  }

  .hero-mobile-copy-tablet-brand {
    display: inline-flex;
    align-items: baseline;
  }

  .hero-mobile-copy-tablet-accent,
  .hero-mobile-copy-tablet-amp {
    font-family: "Outfit", sans-serif;
    font-style: normal;
  }

  .hero-mobile-copy-tablet-accent {
    font-weight: 800;
    color: var(--accent-color);
    letter-spacing: 0;
  }

  .hero-mobile-copy-tablet-amp {
    font-weight: 700;
    color: var(--hero-copy-text);
    letter-spacing: 0;
  }

  .hero-mobile-copy-tablet-body {
    max-width: 18ch;
    margin-top: clamp(11px, 2.1vh, 18px);
    font-size: clamp(0.78rem, 3.4vw, 1rem);
    font-weight: 400;
    line-height: 1.18;
    color: var(--hero-copy-muted);
    text-wrap: balance;
  }

  .hero-story-rail-mobile {
    position: absolute;
    left: var(--hero-mobile-backplate-left);
    top: var(--hero-mobile-backplate-top);
    width: var(--hero-mobile-backplate-width);
    height: var(--hero-mobile-backplate-height);
    --hero-story-x: var(--hero-story-mobile-x);
    transform: translateY(var(--hero-intro-blue-y, 0px)) rotate(var(--hero-mobile-backplate-angle));
    transform-origin: left center;
  }

  .hero-mobile-band {
    position: absolute;
    left: 0;
    right: 0;
    bottom: var(--hero-mobile-band-bottom);
    height: var(--hero-mobile-band-height);
    pointer-events: none;
    z-index: 4;
    transform: translateY(var(--hero-intro-band-y, 0px));
  }

  .hero-mobile-band-plane {
    position: absolute;
    left: -20%;
    bottom: -236%;
    width: 150%;
    height: 334%;
    background: var(--hero-band-surface-gradient);
    box-shadow: var(--hero-band-top-shadow);
    transform: rotate(var(--hero-mobile-band-angle));
    transform-origin: left top;
  }

  .hero-mobile-services-marquee {
    position: absolute;
    left: 0;
    right: 0;
    top: clamp(16px, 2.4vw, 24px);
    overflow: hidden;
  }

  .hero-mobile-services-track {
    display: flex;
    align-items: center;
    width: max-content;
    min-width: max-content;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    animation: hero-services-marquee 28s linear infinite;
    -webkit-animation: hero-services-marquee 28s linear infinite;
  }

  .hero-mobile-services {
    display: flex;
    align-items: center;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0 20px 0 0;
    width: max-content;
    flex: 0 0 auto;
    flex-wrap: nowrap;
  }

  .hero-mobile-services li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: "Unbounded", var(--font-headings);
    font-size: clamp(0.92rem, 4.8vw, 1.38rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #ffffff;
    white-space: nowrap;
    opacity: 0.96;
  }

  .hero-mobile-services li + li::before,
  .hero-mobile-services li:last-child::after {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.94);
  }

  .hero-mobile-actions {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: clamp(14px, 2.8vw, 24px);
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 14px;
    pointer-events: none;
  }

  .hero-mobile-primary,
  .hero-mobile-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex: 1 1 0;
    min-width: 0;
    height: 50px;
    padding: 0 20px;
    border: none;
    border-radius: 999px;
    font-family: var(--font-ui-accent);
    font-size: 0.98rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: auto;
    cursor: pointer;
    box-sizing: border-box;
  }

  .hero-scroll-cue-desktop {
    display: none;
  }

  .hero-scroll-cue-mobile {
    display: inline-flex;
    left: 50%;
    bottom: calc(var(--hero-mobile-band-height) + clamp(26px, 6vh, 52px));
    z-index: 5;
    transform: translateX(-50%) translateY(var(--hero-scroll-cue-y, var(--hero-intro-band-y, 0px)));
    color: #007CEB;
  }

  .hero-scroll-cue-mobile .scrolldown {
    --sizeX: clamp(24px, 6.8vw, 30px);
    --sizeY: clamp(42px, 11vw, 52px);
  }

  .hero-mobile-primary {
    background: linear-gradient(135deg, #58B0FF 0%, #007CEB 100%);
    color: #ffffff;
  }

  .hero-mobile-secondary {
    border: 2px solid rgba(0, 124, 235, 0.92);
    background: transparent;
    color: #007CEB;
  }

  .hero-mobile-icon {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
  }
}

@media (max-width: 768px) {
  .hero-cinematic-mobile {
    --hero-mobile-photo-height: calc(var(--hero-height-mobile) * 0.82);
    --hero-mobile-photo-bottom: calc(var(--hero-height-mobile) * 0.14);
    --hero-mobile-photo-left: 45%;
    --hero-mobile-photo-shift-x: 22px;
    --hero-mobile-band-height: clamp(138px, 17vh, 176px);
    --hero-mobile-band-bottom: clamp(-72px, -8vw, -42px);
    --hero-mobile-backplate-left: -40%;
    --hero-mobile-backplate-top: 29%;
    --hero-mobile-backplate-width: 184%;
    --hero-mobile-backplate-height: clamp(206px, 27vh, 286px);
    --hero-story-size: clamp(88px, 24vw, 106px);
    --hero-story-mobile-x: 70%;
  }

  .hero-mobile-stage {
    height: var(--hero-height-mobile);
  }

  .hero-mobile-photo-wrap {
    inset: 0;
  }

  .hero-mobile-photo {
    bottom: var(--hero-mobile-photo-bottom);
    height: var(--hero-mobile-photo-height);
  }

  .hero-mobile-copy {
    top: max(
      clamp(108px, 14.5vh, 146px),
      calc(var(--floating-header-clearance, 108px) + 12px)
    );
    right: clamp(10px, 4vw, 18px);
    width: min(42vw, 154px);
  }

  .hero-mobile-band {
    bottom: var(--hero-mobile-band-bottom);
    height: var(--hero-mobile-band-height);
  }

  .hero-mobile-band-plane {
    left: -24%;
    bottom: -242%;
    width: 158%;
    --hero-mobile-band-angle: -7deg;
  }

  .hero-mobile-primary,
  .hero-mobile-secondary {
    height: 46px;
    padding: 0 24px;
    font-size: 0.96rem;
  }
}

@media (max-width: 768px) and (min-width: 401px) and (min-height: 760px) {
  .hero-cinematic-mobile {
    --hero-mobile-photo-height: calc(var(--hero-height-mobile) * 0.84);
    --hero-mobile-photo-bottom: calc(var(--hero-height-mobile) * 0.13 - 20px);
    --hero-story-rail-y: 50%;
  }

  .hero-mobile-copy {
    right: clamp(20px, 5.8vw, 34px);
    width: min(38vw, 152px);
  }

  .hero-mobile-actions {
    bottom: clamp(22px, 3.6vw, 30px);
  }

  .hero-mobile-primary,
  .hero-mobile-secondary {
    height: 50px;
    padding: 0 26px;
    font-size: 1rem;
  }
}

@media (max-width: 768px) and (min-width: 560px) and (max-height: 860px) {
  .hero-mobile-services-marquee {
    top: clamp(8px, 1.2vw, 14px);
  }

  .hero-mobile-actions {
    bottom: clamp(16px, 2.2vw, 22px);
    gap: 10px;
  }

  .hero-mobile-primary,
  .hero-mobile-secondary {
    height: 42px;
    padding: 0 18px;
    font-size: 0.88rem;
  }

  .hero-mobile-icon {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 400px) {
  .hero-cinematic-mobile {
    --hero-mobile-photo-left: 44.5%;
    --hero-mobile-photo-shift-x: 24px;
    --hero-mobile-backplate-height: clamp(176px, 23vh, 240px);
    --hero-story-size: clamp(82px, 23vw, 96px);
    --hero-story-mobile-x: 66.5%;
  }

  .hero-mobile-copy {
    right: 14px;
    width: min(39vw, 144px);
  }

  .hero-mobile-primary {
    height: 42px;
    gap: 10px;
    padding: 0 16px;
    font-size: 0.84rem;
  }

  .hero-mobile-secondary {
    height: 42px;
    padding: 0 16px;
    font-size: 0.84rem;
  }

  .hero-mobile-icon {
    width: 19px;
    height: 19px;
  }
}

@media (max-width: 400px) and (min-height: 760px) {
  .hero-cinematic-mobile {
    --hero-mobile-photo-bottom: calc(var(--hero-height-mobile) * 0.12);
    --hero-story-mobile-x: 68.5%;
  }
}

@media (max-width: 950px) and (orientation: landscape) and (max-height: 720px) {
  .hero-cinematic-mobile {
    --hero-mobile-backplate-top: 22%;
    --hero-mobile-backplate-height: clamp(168px, 23vh, 224px);
    --hero-story-mobile-x: 52%;
    --hero-story-rail-y: 50%;
    --hero-mobile-photo-left: 33.2%;
    --hero-mobile-photo-shift-x: 50px;
  }
}

@media (max-width: 768px) and (orientation: landscape) and (max-height: 720px) {
  .hero-cinematic-mobile {
    --hero-mobile-backplate-top: 20.5%;
    --hero-mobile-backplate-left: -36%;
    --hero-mobile-backplate-width: 178%;
    --hero-story-mobile-x: 50%;
    --hero-mobile-photo-left: 31.4%;
    --hero-mobile-photo-shift-x: 54px;
  }
}

/* --- Hero mobile concept refresh --- */
@media (max-width: 950px) and (max-height: 1049px) {
  .hero-cinematic-mobile {
    --hero-mobile-photo-height: calc(var(--hero-height-mobile) * 0.86);
    --hero-mobile-photo-bottom: calc(var(--hero-height-mobile) * 0.085);
    --hero-mobile-photo-left: 44%;
    --hero-mobile-photo-shift-x: 28px;
    --hero-mobile-band-height: clamp(172px, 24vh, 220px);
    --hero-mobile-band-bottom: clamp(-118px, -14vh, -82px);
    --hero-mobile-band-angle: -8deg;
    --hero-mobile-backplate-left: -58%;
    --hero-mobile-backplate-top: 36%;
    --hero-mobile-backplate-width: 235%;
    --hero-mobile-backplate-height: clamp(278px, 38vh, 360px);
    --hero-mobile-backplate-bottom-extension: clamp(104px, 18vh, 168px);
    --hero-mobile-backplate-angle: 12deg;
    --hero-mobile-backplate-angle-neg: -12deg;
    --hero-story-size: clamp(96px, 25vw, 118px);
    --hero-story-mobile-x: 60%;
    --hero-story-rail-y: 33%;
  }

  .hero-mobile-copy {
    top: max(
      clamp(96px, 13vh, 124px),
      calc(var(--floating-header-clearance, 108px) + 10px)
    );
    right: clamp(16px, 5vw, 28px);
    width: min(37vw, 150px);
  }

  .hero-mobile-band-plane {
    left: -26%;
    bottom: -252%;
    width: 166%;
    height: 360%;
    background: linear-gradient(180deg, #27272a 0%, #18181b 42%, #101012 100%);
  }

  .hero-mobile-services-marquee {
    top: clamp(0px, 1.8vh, 14px);
  }

  .hero-mobile-services {
    gap: clamp(16px, 4.8vw, 24px);
    padding-right: 20px;
  }

  .hero-mobile-services li {
    gap: clamp(12px, 3.8vw, 18px);
    font-size: clamp(0.78rem, 4.5vw, 1.12rem);
    font-weight: 700;
    letter-spacing: 0.01em;
  }

  .hero-mobile-services li + li::before,
  .hero-mobile-services li:last-child::after {
    width: clamp(8px, 2.6vw, 12px);
    height: clamp(8px, 2.6vw, 12px);
    opacity: 1;
  }

  .hero-scroll-cue-mobile {
    display: none;
  }

  .hero-mobile-actions {
    left: 16px;
    right: 16px;
    bottom: clamp(12px, 2.6vh, 22px);
    gap: 12px;
    z-index: 6;
  }

  .hero-mobile-primary,
  .hero-mobile-secondary {
    height: clamp(48px, 6.7vh, 58px);
    padding: 0 clamp(14px, 4vw, 20px);
    font-size: clamp(0.9rem, 3.75vw, 1.08rem);
  }

  .hero-mobile-primary {
    flex: 0 0 min(44%, 180px);
  }

  .hero-mobile-secondary {
    flex: 1 1 auto;
    gap: 10px;
    border-width: 1px;
    color: #1898ff;
  }

  .hero-mobile-secondary .hero-mobile-icon {
    width: 20px;
    height: 20px;
    filter: none;
  }
}

@media (max-width: 400px) and (max-height: 1049px) {
  .hero-cinematic-mobile {
    --hero-mobile-photo-height: calc(var(--hero-height-mobile) * 0.86);
    --hero-mobile-photo-bottom: calc(var(--hero-height-mobile) * 0.08);
    --hero-mobile-photo-left: 43.5%;
    --hero-mobile-backplate-left: -64%;
    --hero-mobile-backplate-top: 36.5%;
    --hero-mobile-backplate-width: 250%;
    --hero-mobile-backplate-bottom-extension: clamp(116px, 20vh, 164px);
    --hero-story-size: clamp(88px, 25vw, 102px);
    --hero-story-mobile-x: 58.5%;
  }

  .hero-mobile-copy {
    right: 14px;
    width: min(36vw, 136px);
  }

  .hero-mobile-actions {
    left: 14px;
    right: 14px;
    gap: 10px;
  }

  .hero-mobile-primary {
    flex-basis: min(40%, 150px);
  }

  .hero-mobile-primary,
  .hero-mobile-secondary {
    height: 46px;
    padding: 0 12px;
    font-size: 0.88rem;
  }

  .hero-mobile-secondary .hero-mobile-icon {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .hero-mobile-copy {
    top: max(
      clamp(100px, 13vh, 124px),
      calc(var(--floating-header-clearance, 96px) + 18px)
    );
    right: clamp(22px, 6vw, 30px);
    width: min(39vw, 150px);
    text-shadow: 0 1px 14px rgba(255, 255, 255, 0.88);
  }

  .hero-mobile-copy-mark {
    left: clamp(-12px, -3vw, -4px);
    top: clamp(-24px, -6vw, -14px);
    width: clamp(46px, 13vw, 60px);
  }

  .hero-mobile-copy-tablet-hello,
  .hero-mobile-copy-tablet-body {
    display: none;
  }

  .hero-mobile-copy-tablet-headline {
    max-width: 100%;
    margin-top: 0;
    font-size: clamp(1.12rem, 5.6vw, 1.46rem);
    line-height: 1;
    text-align: right;
  }

  .hero-mobile-copy-tablet-brand {
    white-space: nowrap;
  }
}

@media (max-width: 480px) and (min-height: 800px) and (max-height: 1049px) {
  .hero-cinematic-mobile {
    --hero-mobile-photo-left: 44.8%;
    --hero-mobile-photo-shift-x: 24px;
    --hero-story-mobile-x: 59%;
  }
}

@media (max-width: 480px) and (max-height: 799px) {
  .hero-cinematic-mobile {
    --hero-story-mobile-x: 57.4%;
    --hero-story-rail-y: 30.5%;
    --hero-mobile-backplate-bottom-extension: clamp(122px, 21vh, 168px);
  }

  .hero-mobile-services-marquee {
    top: clamp(0px, 1.4vh, 10px);
  }

  .hero-mobile-services {
    gap: clamp(14px, 4.2vw, 20px);
    padding-right: 16px;
  }

  .hero-mobile-services li {
    gap: clamp(10px, 3.2vw, 15px);
    font-size: clamp(0.78rem, 4.35vw, 1.08rem);
  }

  .hero-mobile-services li + li::before,
  .hero-mobile-services li:last-child::after {
    width: clamp(8px, 2.4vw, 11px);
    height: clamp(8px, 2.4vw, 11px);
  }
}

@media (min-height: 1050px) and (max-height: 1450px) and (max-width: 1400px) {
  .hero-cinematic-desktop {
    display: none;
  }

  .hero-cinematic-mobile {
    display: block;
    position: relative;
    --hero-mobile-photo-height: clamp(900px, calc(var(--hero-height-mobile) * 0.94), 1100px);
    --hero-mobile-photo-bottom: clamp(94px, 10vh, 138px);
    --hero-mobile-photo-left: 33.1%;
    --hero-mobile-photo-shift-x: 8px;
    --hero-mobile-band-height: clamp(176px, 18vh, 228px);
    --hero-mobile-band-bottom: clamp(-112px, -8.8vh, -72px);
    --hero-mobile-backplate-left: -32%;
    --hero-mobile-backplate-top: 26.5%;
    --hero-mobile-backplate-width: 214%;
    --hero-mobile-backplate-height: clamp(248px, 27vh, 340px);
    --hero-mobile-backplate-angle: 14deg;
    --hero-mobile-backplate-angle-neg: -14deg;
    --hero-story-size: clamp(156px, 16vw, 204px);
    --hero-story-mobile-x: 56%;
    --hero-story-rail-y: 50%;
    height: var(--hero-height-mobile) !important;
    min-height: var(--hero-height-mobile) !important;
    background: #ffffff;
    overflow: hidden;
  }

  .hero-mobile-stage {
    position: relative;
    height: var(--hero-height-mobile);
    min-height: var(--hero-height-mobile);
    box-sizing: border-box;
  }

  .hero-mobile-photo-wrap {
    position: absolute;
    inset: 0;
  }

  .hero-mobile-backplate {
    position: absolute;
    left: var(--hero-mobile-backplate-left);
    top: var(--hero-mobile-backplate-top);
    z-index: 1;
    width: var(--hero-mobile-backplate-width);
    height: var(--hero-mobile-backplate-height);
    background: linear-gradient(90deg, #1f86ee 0%, #58B0FF 48%, #2e91ef 100%);
    box-shadow: var(--hero-blue-top-shadow);
    transform: translateY(var(--hero-intro-blue-y, 0px)) rotate(var(--hero-mobile-backplate-angle));
    transform-origin: left center;
    pointer-events: none;
  }

  .hero-mobile-photo {
    position: absolute;
    left: var(--hero-mobile-photo-left);
    bottom: var(--hero-mobile-photo-bottom);
    z-index: 3;
    width: auto;
    height: var(--hero-mobile-photo-height);
    max-width: none;
    transform: translateX(calc(-50% - var(--hero-mobile-photo-shift-x))) translateY(var(--hero-intro-photo-y, 0px));
    object-fit: contain;
    pointer-events: none;
  }

  .hero-mobile-copy {
    position: absolute;
    top: max(
      clamp(138px, 15vh, 196px),
      calc(var(--floating-header-clearance, 108px) + 16px)
    );
    right: clamp(34px, 5.2vw, 72px);
    z-index: 2;
    width: min(46vw, 520px);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    color: var(--hero-copy-text);
    isolation: isolate;
  }

  .hero-mobile-copy::before {
    content: "";
    position: absolute;
    inset: -48px -58px -40px;
    z-index: 0;
    pointer-events: none;
    background:
      radial-gradient(ellipse at 56% 52%, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 42%, rgba(255, 255, 255, 0.46) 64%, rgba(255, 255, 255, 0) 82%),
      radial-gradient(ellipse at 20% 30%, rgba(255, 255, 255, 0.56) 0%, rgba(255, 255, 255, 0) 58%);
  }

  .hero-mobile-copy-image {
    display: none;
  }

  .hero-mobile-copy-tablet {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    color: var(--hero-copy-text);
  }

  .hero-mobile-copy-mark {
    position: absolute;
    left: clamp(148px, 14vw, 228px);
    top: clamp(-56px, -4vw, -12px);
    width: clamp(86px, 8vw, 126px);
    height: auto;
    opacity: 0.32;
    pointer-events: none;
  }

  .hero-mobile-copy-tablet-hello,
  .hero-mobile-copy-tablet-headline,
  .hero-mobile-copy-tablet-body {
    margin: 0;
    position: relative;
    z-index: 1;
  }

  .hero-mobile-copy-tablet-hello {
    font-size: clamp(1.4rem, 2.3vw, 2.2rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1;
  }

  .hero-mobile-copy-tablet-headline {
    max-width: 12ch;
    margin-top: clamp(18px, 2.4vh, 28px);
    font-family: var(--font-headings);
    font-size: clamp(2.46rem, 4.9vw, 4.38rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.055em;
    text-wrap: balance;
  }

  .hero-mobile-copy-tablet-muted {
    font-weight: 400;
    font-style: italic;
    color: var(--hero-copy-text);
  }

  .hero-mobile-copy-tablet-brand {
    display: inline-flex;
    align-items: baseline;
  }

  .hero-mobile-copy-tablet-accent,
  .hero-mobile-copy-tablet-amp {
    font-family: "Outfit", sans-serif;
    font-style: normal;
  }

  .hero-mobile-copy-tablet-accent {
    font-weight: 800;
    color: var(--accent-color);
    letter-spacing: -0.06em;
  }

  .hero-mobile-copy-tablet-amp {
    font-weight: 700;
    color: var(--hero-copy-text);
    letter-spacing: -0.04em;
  }

  .hero-mobile-copy-tablet-body {
    max-width: 17ch;
    margin-top: clamp(18px, 2.3vh, 28px);
    font-size: clamp(1.08rem, 1.62vw, 1.48rem);
    font-weight: 400;
    line-height: 1.18;
    color: var(--hero-copy-muted);
    text-wrap: balance;
  }

  .hero-story-rail-mobile {
    position: absolute;
    left: var(--hero-mobile-backplate-left);
    top: var(--hero-mobile-backplate-top);
    width: var(--hero-mobile-backplate-width);
    height: var(--hero-mobile-backplate-height);
    --hero-story-x: var(--hero-story-mobile-x);
    transform: translateY(var(--hero-intro-blue-y, 0px)) rotate(var(--hero-mobile-backplate-angle));
    transform-origin: left center;
  }

  .hero-story-mobile .hero-story-play {
    width: clamp(48px, 4.8vw, 64px);
    height: clamp(48px, 4.8vw, 64px);
  }

  .hero-story-mobile .hero-story-play::before {
    border-width: 11px 0 11px 17px;
  }

  .hero-mobile-band {
    position: absolute;
    left: 0;
    right: 0;
    bottom: var(--hero-mobile-band-bottom);
    height: var(--hero-mobile-band-height);
    pointer-events: none;
    z-index: 3;
  }

  .hero-mobile-band-plane {
    position: absolute;
    left: -18%;
    bottom: -236%;
    width: 164%;
    height: 336%;
    background: var(--hero-band-surface-gradient);
    --hero-mobile-band-angle: -8deg;
    transform-origin: left top;
  }

  .hero-mobile-services-marquee {
    position: absolute;
    left: 0;
    right: 0;
    top: clamp(18px, 2vw, 26px);
    overflow: hidden;
  }

  .hero-mobile-services-track {
    display: flex;
    align-items: center;
    width: max-content;
    min-width: max-content;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    animation: hero-services-marquee 30s linear infinite;
    -webkit-animation: hero-services-marquee 30s linear infinite;
  }

  .hero-mobile-services {
    display: flex;
    align-items: center;
    gap: clamp(22px, 2vw, 30px);
    list-style: none;
    margin: 0;
    padding: 0 20px 0 0;
    width: max-content;
    flex: 0 0 auto;
    flex-wrap: nowrap;
  }

  .hero-mobile-services li {
    display: flex;
    align-items: center;
    gap: clamp(14px, 1.1vw, 18px);
    font-family: "Unbounded", var(--font-headings);
    font-size: clamp(1.08rem, 1.65vw, 1.58rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #ffffff;
    white-space: nowrap;
    opacity: 0.96;
  }

  .hero-mobile-services li + li::before,
  .hero-mobile-services li:last-child::after {
    content: "";
    width: clamp(10px, 0.75vw, 12px);
    height: clamp(10px, 0.75vw, 12px);
    border-radius: 999px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.94);
  }

  .hero-mobile-actions {
    position: absolute;
    left: clamp(24px, 3vw, 40px);
    right: clamp(24px, 3vw, 40px);
    bottom: clamp(30px, 3.8vh, 46px);
    z-index: 4;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
    pointer-events: none;
    transform: translateY(var(--hero-intro-band-y, 0px));
  }

  .hero-mobile-primary,
  .hero-mobile-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex: 0 0 auto;
    min-width: 0;
    height: 56px;
    padding: 0 30px;
    border: none;
    border-radius: 999px;
    font-family: var(--font-ui-accent);
    font-size: 1.06rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: auto;
    cursor: pointer;
    box-sizing: border-box;
  }

  .hero-mobile-primary {
    min-width: 236px;
    background: linear-gradient(135deg, #58B0FF 0%, #007CEB 100%);
    color: #ffffff;
  }

  .hero-mobile-secondary {
    min-width: 156px;
    border: 2px solid rgba(0, 124, 235, 0.92);
    background: transparent;
    color: #007CEB;
  }

  .hero-mobile-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
  }
}

@media (min-height: 1050px) and (max-height: 1450px) and (max-width: 900px) {
  .hero-cinematic-mobile {
    --hero-mobile-photo-height: clamp(840px, calc(var(--hero-height-mobile) * 0.92), 980px);
    --hero-mobile-photo-left: 32.4%;
    --hero-mobile-photo-shift-x: 6px;
    --hero-mobile-band-bottom: clamp(-138px, -10.2vh, -92px);
    --hero-mobile-backplate-left: -44%;
    --hero-mobile-backplate-top: 27.5%;
    --hero-mobile-backplate-width: 238%;
    --hero-mobile-backplate-height: clamp(228px, 24vh, 286px);
    --hero-mobile-backplate-angle: 15deg;
    --hero-mobile-backplate-angle-neg: -15deg;
    --hero-story-size: clamp(140px, 17vw, 176px);
    --hero-story-mobile-x: 51%;
    --hero-story-rail-y: 50%;
  }

  .hero-mobile-copy {
    top: max(
      clamp(120px, 13.5vh, 164px),
      calc(var(--floating-header-clearance, 108px) + 14px)
    );
    right: clamp(18px, 3.8vw, 34px);
    width: min(46vw, 360px);
  }

  .hero-mobile-copy-mark {
    left: clamp(98px, 11vw, 154px);
    top: clamp(-44px, -3.4vw, -18px);
    width: clamp(70px, 7vw, 94px);
  }

  .hero-mobile-copy-tablet-hello {
    font-size: clamp(1.16rem, 2vw, 1.5rem);
  }

  .hero-mobile-copy-tablet-headline {
    max-width: 10ch;
    margin-top: 14px;
    font-size: clamp(2rem, 4.2vw, 3rem);
  }

  .hero-mobile-copy-tablet-body {
    max-width: 16ch;
    margin-top: 14px;
    font-size: clamp(0.94rem, 1.4vw, 1.12rem);
  }

  .hero-mobile-band-plane {
    left: -26%;
    bottom: -239%;
    width: 176%;
  }

  .hero-mobile-services li {
    font-size: clamp(0.96rem, 1.5vw, 1.18rem);
  }

  .hero-mobile-actions {
    left: 18px;
    right: 18px;
    bottom: clamp(24px, 3vh, 32px);
    gap: 12px;
  }

  .hero-mobile-primary,
  .hero-mobile-secondary {
    height: 52px;
    padding: 0 24px;
    font-size: 0.98rem;
  }

  .hero-mobile-primary {
    min-width: 208px;
  }

  .hero-mobile-secondary {
    min-width: 140px;
  }
}

@media (min-height: 1050px) and (max-height: 1450px) and (min-width: 901px) and (max-width: 1400px) {
  .hero-cinematic-mobile {
    --hero-mobile-photo-height: clamp(980px, calc(var(--hero-height-mobile) * 0.96), 1160px);
    --hero-mobile-photo-left: 32.6%;
    --hero-mobile-photo-shift-x: 2px;
    --hero-mobile-band-bottom: clamp(-98px, -8vh, -64px);
    --hero-mobile-backplate-left: -24%;
    --hero-mobile-backplate-top: 25.5%;
    --hero-mobile-backplate-width: 190%;
    --hero-mobile-backplate-height: clamp(268px, 28vh, 360px);
    --hero-mobile-backplate-angle: 13deg;
    --hero-mobile-backplate-angle-neg: -13deg;
    --hero-story-size: clamp(160px, 14vw, 198px);
    --hero-story-mobile-x: 55%;
    --hero-story-rail-y: 50%;
  }

  .hero-mobile-copy {
    top: max(
      clamp(150px, 15.6vh, 206px),
      calc(var(--floating-header-clearance, 108px) + 16px)
    );
    right: clamp(42px, 5vw, 74px);
    width: min(48vw, 510px);
  }

  .hero-mobile-copy-tablet-hello {
    font-size: clamp(1.54rem, 2vw, 2rem);
  }

  .hero-mobile-copy-tablet-headline {
    max-width: 12ch;
    font-size: clamp(2.7rem, 4.5vw, 4rem);
  }

  .hero-mobile-copy-tablet-body {
    font-size: clamp(1.08rem, 1.45vw, 1.34rem);
  }

  .hero-mobile-primary {
    min-width: 242px;
  }

  .hero-mobile-secondary {
    min-width: 164px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  html:not(.hero-motion-override) .pane-content {
    opacity: 1 !important;
    transform: none !important;
  }

  html:not(.hero-motion-override) .duality-convergence {
    display: none !important;
  }

}

/* Keep the hero scroll hint visible after breakpoint-specific hero overrides. */
@media (min-width: 951px) {
  .hero-scroll-cue-desktop {
    display: inline-flex;
  }

  .hero-scroll-cue-mobile {
    display: none;
  }
}

@media (max-width: 950px) {
  .hero-scroll-cue-desktop {
    display: none;
  }

  .hero-scroll-cue-mobile {
    display: inline-flex;
  }
}

.hero-scroll-cue {
  z-index: 14;
  opacity: var(--hero-scroll-cue-opacity, 0.58);
}

@supports (mix-blend-mode: difference) {
  .hero-scroll-cue {
    color: #ffffff;
    mix-blend-mode: difference;
  }

  .hero-scroll-cue .scrolldown::before {
    box-shadow: none;
  }
}

@media (max-width: 950px) {
  .hero-scroll-cue-mobile {
    --hero-scroll-cue-opacity: 0.58;
    width: auto;
    height: auto;
    justify-content: center;
    opacity: var(--hero-scroll-cue-opacity);
    visibility: visible;
    transform: translateX(-50%) translateY(var(--hero-scroll-cue-y, var(--hero-intro-band-y, 0px)));
    mix-blend-mode: difference;
  }

  .hero-scroll-cue-mobile .scrolldown {
    --sizeX: clamp(24px, 6.8vw, 30px);
    --sizeY: clamp(42px, 11vw, 52px);
  }
}

@media (max-width: 480px) and (max-height: 799px) {
  .hero-scroll-cue-mobile {
    bottom: calc(var(--hero-mobile-band-height) + clamp(4px, 2.4vh, 18px));
  }
}

.hero-services-track:not(.hero-marquee-ready),
.hero-mobile-services-track:not(.hero-marquee-ready) {
  animation: none !important;
  -webkit-animation: none !important;
}
