@font-face {
  font-family: "Inter";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("media-bhp/inter-latin.woff2") format("woff2");
}

:root {
  --blue: #0b74ff;
  --blue-bright: #126cff;
  --cyan: #00b7ff;
  --navy: #041126;
  --navy-soft: #06142b;
  --ink: #061226;
  --muted: #60718a;
  --line: #dbe9ff;
  --light: #f5faff;
  --white: #fff;
  --shell: min(1420px, calc(100vw - 96px));
  --page-progress: 0%;
  --work-progress: 0;
  --scroll-y: 0px;
  --pointer-x: 50vw;
  --pointer-y: 50vh;
  --pointer-nx: 0;
  --pointer-ny: 0;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --display: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --serif: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--navy);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  font-family: var(--sans);
}

button {
  color: inherit;
}

button,
input {
  font: inherit;
}

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

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

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

::selection {
  color: var(--white);
  background: var(--blue);
}

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

.page-loader {
  position: fixed;
  z-index: 5000;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 28px;
  color: #9edfff;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 183, 255, 0.16), transparent 28rem),
    linear-gradient(135deg, #020713, var(--navy));
  transition: visibility 0s 0.8s, opacity 0.8s cubic-bezier(0.7, 0, 0.2, 1);
}

.page-loader::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(61, 180, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 180, 255, 0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle, #000, transparent 67%);
  animation: gridTravel 12s linear infinite;
}

.loader-mark {
  position: relative;
  width: 230px;
  padding-bottom: 22px;
  overflow: hidden;
}

.loader-mark img {
  width: 100%;
  filter: brightness(0) invert(1);
  animation: loaderPulse 1.3s ease-in-out infinite alternate;
}

.loader-mark span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.loader-mark span::after {
  display: block;
  width: 45%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, transparent, var(--cyan), #806dff, transparent);
  animation: loaderLine 1s ease-in-out infinite;
}

.page-loader small {
  position: relative;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.is-loaded .page-loader {
  visibility: hidden;
  opacity: 0;
}

.page-progress {
  position: fixed;
  z-index: 2200;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.page-progress i {
  display: block;
  width: var(--page-progress);
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--cyan), #8d75ff);
  box-shadow: 0 0 22px rgba(0, 183, 255, 0.75);
}

.cursor-aura {
  position: fixed;
  z-index: 2100;
  top: var(--pointer-y);
  left: var(--pointer-x);
  width: 360px;
  height: 360px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(0, 183, 255, 0.12), transparent 68%);
  mix-blend-mode: screen;
  transform: translate(-50%, -50%);
}

.site-header {
  position: fixed;
  z-index: 2000;
  top: 18px;
  left: 50%;
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  width: min(1480px, calc(100vw - 36px));
  min-height: 72px;
  padding: 0 15px 0 25px;
  border: 1px solid rgba(123, 203, 255, 0.2);
  border-radius: 18px;
  color: var(--white);
  background: rgba(4, 17, 38, 0.74);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(24px) saturate(150%);
  transform: translateX(-50%);
  transition: top 0.35s ease, min-height 0.35s ease, background 0.35s ease;
}

.has-scrolled .site-header {
  top: 8px;
  min-height: 62px;
  background: rgba(4, 17, 38, 0.92);
}

.brand {
  position: relative;
  display: block;
  width: 160px;
  overflow: hidden;
}

.brand img {
  width: 160px;
  filter: brightness(0) invert(1);
}

.brand::after {
  position: absolute;
  top: -80%;
  bottom: -80%;
  left: -36%;
  width: 28px;
  content: "";
  background: rgba(255, 255, 255, 0.8);
  filter: blur(5px);
  transform: rotate(18deg);
  animation: brandShine 5.5s 1.2s ease-in-out infinite;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
}

.main-nav a {
  position: relative;
  padding: 28px 0 25px;
  color: #a9bbd1;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--white);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-actions > a:first-child {
  color: #bed0e4;
  font-size: 0.7rem;
  font-weight: 750;
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.25s ease;
}

.header-call span {
  color: #47d8ff;
  font-size: 0.52rem;
  filter: drop-shadow(0 0 7px rgba(71, 216, 255, 0.9));
  animation: callDot 1.8s ease-in-out infinite;
}

.header-call:hover {
  color: var(--white) !important;
}

.header-quote,
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-quote {
  min-height: 44px;
  padding: 0 19px;
  border-radius: 12px;
  background: linear-gradient(120deg, var(--blue), var(--cyan));
  box-shadow: 0 10px 25px rgba(11, 116, 255, 0.3);
}

.header-quote::before,
.button-blue::before {
  position: absolute;
  inset: -50% auto -50% -45%;
  width: 34%;
  content: "";
  background: rgba(255, 255, 255, 0.36);
  transform: rotate(17deg);
  transition: left 0.5s ease;
}

.header-quote:hover::before,
.button-blue:hover::before {
  left: 120%;
}

.header-quote svg,
.button svg,
.section-intro a svg,
.work-topbar a svg,
.project-scene a svg {
  transition: transform 0.28s ease;
}

.header-quote:hover svg,
.button:hover svg,
.section-intro a:hover svg,
.work-topbar a:hover svg,
.project-scene a:hover svg {
  transform: translateX(4px);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(430px, 0.8fr) minmax(600px, 1.2fr);
  align-items: center;
  gap: clamp(50px, 6vw, 110px);
  min-height: 100svh;
  padding: 142px max(6vw, 56px) 132px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 42%, rgba(0, 183, 255, 0.18), transparent 30rem),
    radial-gradient(circle at 26% 70%, rgba(105, 79, 255, 0.15), transparent 26rem),
    linear-gradient(132deg, #020713, var(--navy) 56%, #071d3f);
}

.signal-canvas,
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-grid {
  opacity: 0.72;
  background:
    linear-gradient(rgba(85, 191, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(85, 191, 255, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 68% 46%, #000, transparent 72%);
  transform: perspective(650px) rotateX(62deg) scale(1.4) translateY(20%);
  animation: gridTravel 16s linear infinite;
}

.hero-wordmark {
  position: absolute;
  z-index: 0;
  right: -0.05em;
  bottom: -0.18em;
  color: transparent;
  font-family: var(--display);
  font-size: min(36vw, 38rem);
  font-weight: 900;
  letter-spacing: -0.11em;
  line-height: 1;
  opacity: 0.12;
  -webkit-text-stroke: 1px #65caff;
  transform: translate3d(calc(var(--pointer-nx) * -18px), calc(var(--pointer-ny) * -12px), 0);
  transition: transform 0.25s ease-out;
}

.hero-copy,
.hero-stage,
.hero-proof,
.scroll-cue {
  position: relative;
  z-index: 4;
}

.hero-copy {
  max-width: 690px;
}

.eyebrow,
.section-intro > p,
.section-label,
.work-topbar > p,
.contact-section > p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: #8edcff;
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 7px rgba(0, 183, 255, 0.1), 0 0 20px var(--cyan);
  animation: signalPulse 1.8s ease-out infinite;
}

.hero h1 {
  max-width: 760px;
  margin: 26px 0 0;
  font-family: var(--display);
  font-size: clamp(3.9rem, 6.8vw, 7.6rem);
  font-weight: 680;
  letter-spacing: -0.065em;
  line-height: 0.88;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(110deg, #fff 10%, var(--cyan) 40%, #8177ff 65%, #fff 90%);
  background-size: 230% auto;
  -webkit-background-clip: text;
  background-clip: text;
  animation: titleFlow 7s linear infinite;
}

.hero-intro {
  max-width: 610px;
  margin: 30px 0 0;
  color: #b9cbe1;
  font-size: 1rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 13px;
  margin-top: 38px;
}

.button {
  min-height: 58px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 14px;
}

.button-blue {
  color: var(--white);
  background: linear-gradient(120deg, var(--blue), #0e8fff, var(--cyan));
  box-shadow: 0 20px 45px rgba(11, 116, 255, 0.28);
}

.button-ghost {
  color: #d8ebff;
  border-color: rgba(160, 220, 255, 0.25);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(14px);
}

.hero-trust {
  display: flex;
  gap: 28px;
  margin-top: 33px;
  color: #8ea7c3;
  font-size: 0.68rem;
  font-weight: 700;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-trust i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.hero-stage {
  width: 100%;
  max-width: 900px;
  min-height: 600px;
  justify-self: end;
  perspective: 1500px;
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transform-style: preserve-3d;
  transition: transform 0.18s ease-out;
}

.hero-stage::before {
  position: absolute;
  z-index: -1;
  inset: 8% 6% 7%;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(0, 183, 255, 0.18), transparent 68%);
  filter: blur(16px);
}

.hero-browser {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: 86%;
  overflow: hidden;
  border: 1px solid rgba(103, 206, 255, 0.3);
  border-radius: 20px;
  background: #020611;
  box-shadow: 0 60px 110px rgba(0, 0, 0, 0.42);
  transform: translate(-50%, -50%) translateZ(60px) rotateY(-7deg) rotateX(2deg);
  animation: heroDevice 6s ease-in-out infinite;
}

.hero-browser-bar,
.browser-bar {
  display: flex;
  align-items: center;
  height: 38px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: #8096b2;
  background: #030a17;
  font-size: 0.5rem;
}

.hero-browser-bar > span,
.browser-bar > span {
  display: flex;
  gap: 5px;
}

.hero-browser-bar > span i,
.browser-bar > span i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff705b;
}

.hero-browser-bar > span i:nth-child(2),
.browser-bar > span i:nth-child(2) {
  background: #ffd35c;
}

.hero-browser-bar > span i:nth-child(3),
.browser-bar > span i:nth-child(3) {
  background: #42d77d;
}

.hero-browser-bar em,
.browser-bar em {
  margin: auto;
  font-style: normal;
}

.hero-browser-bar b,
.browser-bar b {
  color: var(--cyan);
  font-size: 0.45rem;
  letter-spacing: 0.1em;
}

.hero-browser > img {
  width: 100%;
  aspect-ratio: 1.5;
  object-fit: cover;
}

.hero-scan {
  position: absolute;
  z-index: 4;
  top: -30%;
  right: 0;
  left: 0;
  height: 25%;
  background: linear-gradient(180deg, transparent, rgba(50, 194, 255, 0.15), transparent);
  filter: blur(4px);
  animation: scanTravel 5.4s linear infinite;
}

.hero-rings {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 92%;
  aspect-ratio: 1;
  border: 1px solid rgba(0, 183, 255, 0.13);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: orbitSpin 24s linear infinite;
}

.hero-rings::before,
.hero-rings::after {
  position: absolute;
  border: 1px solid rgba(120, 91, 255, 0.15);
  border-radius: inherit;
  content: "";
}

.hero-rings::before {
  inset: 18%;
}

.hero-rings::after {
  inset: 36%;
}

.hero-rings i {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 20px var(--cyan);
}

.hero-rings i:nth-child(1) {
  top: 8%;
  left: 32%;
}

.hero-rings i:nth-child(2) {
  top: 49%;
  right: -4px;
}

.hero-rings i:nth-child(3) {
  bottom: 5%;
  left: 43%;
  background: #816fff;
}

.hero-card {
  position: absolute;
  z-index: 8;
  display: grid;
  min-width: 148px;
  padding: 15px 16px;
  border: 1px solid rgba(157, 221, 255, 0.24);
  border-radius: 15px;
  color: var(--white);
  background: rgba(4, 17, 38, 0.82);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  animation: floatCard 4.8s ease-in-out infinite;
}

.hero-card span {
  margin-bottom: 11px;
  color: var(--cyan);
  font-size: 0.52rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.hero-card b {
  font-family: var(--display);
  font-size: 1.3rem;
  letter-spacing: -0.04em;
}

.hero-card small {
  margin-top: 4px;
  color: #91a8c2;
  font-size: 0.58rem;
}

.hero-card-one {
  top: 6%;
  left: 1%;
}

.hero-card-two {
  top: 14%;
  right: -1%;
  animation-delay: -1.4s;
}

.hero-card-three {
  right: 4%;
  bottom: 5%;
  animation-delay: -2.8s;
}

.hero-proof {
  position: absolute;
  right: max(6vw, 56px);
  bottom: 26px;
  left: max(6vw, 56px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(141, 211, 255, 0.18);
}

.hero-proof article {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 13px;
  padding: 18px 24px;
  border-right: 1px solid rgba(141, 211, 255, 0.14);
}

.hero-proof article:first-child {
  padding-left: 0;
}

.hero-proof strong {
  color: var(--white);
  font-family: var(--display);
  font-size: 1.8rem;
  letter-spacing: -0.05em;
}

.hero-proof span {
  max-width: 90px;
  color: #8199b5;
  font-size: 0.53rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  bottom: 47%;
  left: 19px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #6e8aa8;
  font-size: 0.48rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
}

.scroll-cue i {
  width: 1px;
  height: 45px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.scroll-cue i::after {
  display: block;
  width: 100%;
  height: 42%;
  content: "";
  background: var(--cyan);
  animation: cueDown 1.8s ease-in-out infinite;
}

.capabilities {
  position: relative;
  padding: 140px 0 150px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 183, 255, 0.08), transparent 22rem),
    var(--white);
}

.capabilities::before {
  position: absolute;
  top: -190px;
  right: -140px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(11, 116, 255, 0.09);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 68px rgba(11, 116, 255, 0.025),
    0 0 0 136px rgba(11, 116, 255, 0.02);
}

.section-intro {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.63fr 1.22fr 0.72fr;
  align-items: start;
  gap: 46px;
  margin-bottom: 70px;
}

.section-intro > p,
.section-label {
  color: var(--blue);
}

.section-intro > p span,
.section-label span,
.work-topbar > p span,
.contact-section > p span {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border: 1px solid currentColor;
  border-radius: 50%;
  letter-spacing: 0;
}

.section-intro h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(3.5rem, 5.8vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.84;
  text-transform: uppercase;
}

.section-intro h2 em {
  display: block;
  color: var(--blue);
  font-family: var(--serif);
  font-size: 0.75em;
  font-weight: 400;
  letter-spacing: -0.055em;
  text-transform: none;
}

.section-intro > div p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.8;
}

.section-intro > div a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  color: var(--blue);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.capability-deck {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 13px;
  min-height: 610px;
}

.capability-card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(160, 209, 240, 0.34);
  border-radius: 24px;
  color: var(--white);
  background: var(--navy);
  cursor: pointer;
  text-align: left;
  box-shadow: 0 30px 60px rgba(4, 17, 38, 0.12);
  transition:
    flex 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.capability-card.is-active {
  flex: 2.25 1 0;
  box-shadow: 0 42px 90px rgba(4, 17, 38, 0.22);
  transform: translateY(-8px);
}

.capability-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.05);
  transform: scale(1.08);
  transition: filter 0.65s ease, transform 1s ease;
}

.capability-card.is-active > img {
  filter: saturate(1.05) contrast(1.08);
  transform: scale(1);
}

.capability-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 10, 24, 0.13), rgba(3, 10, 24, 0.92)),
    linear-gradient(90deg, rgba(3, 10, 24, 0.32), transparent);
}

.capability-number {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 24px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #b9eaff;
  font-size: 0.58rem;
  font-weight: 850;
}

.capability-content {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 34px;
  left: 24px;
  display: grid;
}

.capability-content > small {
  margin-bottom: 13px;
  color: var(--cyan);
  font-size: 0.51rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.capability-content > strong {
  width: max-content;
  max-width: 100%;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 4rem);
  letter-spacing: -0.055em;
  line-height: 0.92;
  white-space: nowrap;
}

.capability-content > em {
  max-width: 500px;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  color: #c7d9ec;
  font-size: 0.8rem;
  font-style: normal;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(15px);
  transition: max-height 0.55s ease, margin 0.55s ease, opacity 0.45s ease, transform 0.55s ease;
}

.capability-card.is-active .capability-content > em {
  max-height: 90px;
  margin-top: 17px;
  opacity: 1;
  transform: translateY(0);
}

.capability-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.55s ease, margin 0.55s ease, opacity 0.45s ease;
}

.capability-card.is-active .capability-tags {
  max-height: 80px;
  margin-top: 20px;
  opacity: 1;
}

.capability-tags i {
  padding: 7px 10px;
  border: 1px solid rgba(170, 224, 255, 0.22);
  border-radius: 999px;
  color: #c8e8ff;
  background: rgba(4, 17, 38, 0.4);
  font-size: 0.52rem;
  font-style: normal;
  font-weight: 750;
}

.capability-arrow {
  position: absolute;
  z-index: 3;
  top: 24px;
  right: 24px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--navy);
  background: var(--cyan);
  opacity: 0;
  transform: scale(0.7) rotate(-30deg);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.capability-card.is-active .capability-arrow {
  opacity: 1;
  transform: scale(1) rotate(0);
}

.campaign-path {
  position: relative;
  z-index: 5;
  padding: 28px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 50%, rgba(0, 183, 255, 0.14), transparent 28rem),
    linear-gradient(120deg, #06152e, #020713);
  border-top: 1px solid rgba(96, 202, 255, 0.18);
  border-bottom: 1px solid rgba(96, 202, 255, 0.18);
}

.campaign-path::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.35;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(77, 192, 255, 0.13) 50%, transparent 50.2%),
    linear-gradient(rgba(77, 192, 255, 0.05) 1px, transparent 1px);
  background-size: 100% 100%, 100% 38px;
  pointer-events: none;
}

.campaign-path-inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.45fr 0.58fr;
  align-items: center;
  gap: clamp(24px, 3vw, 54px);
}

.campaign-path-copy > p {
  margin: 0 0 15px;
  color: #82dfff;
  font-size: 0.48rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.campaign-path-copy > p span {
  display: inline-block;
  margin-right: 8px;
  padding: 6px 8px;
  border: 1px solid rgba(114, 220, 255, 0.28);
  border-radius: 999px;
  color: var(--white);
  background: rgba(0, 183, 255, 0.08);
}

.campaign-path-copy h2 {
  margin: 0;
  max-width: 430px;
  font-family: var(--display);
  font-size: clamp(2.1rem, 3.2vw, 3.7rem);
  letter-spacing: -0.065em;
  line-height: 0.92;
  text-transform: uppercase;
}

.campaign-path-copy h2 em {
  color: var(--cyan);
  font-family: var(--serif);
  font-size: 0.82em;
  font-weight: 400;
  text-transform: none;
}

.campaign-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.campaign-steps::before {
  position: absolute;
  top: 24px;
  right: 8%;
  left: 8%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--cyan), #8b78ff);
  transform-origin: left;
  animation: campaignFlow 4.2s ease-in-out infinite;
}

.campaign-steps article {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  padding: 0 10px;
  text-align: center;
}

.campaign-steps article > span {
  display: grid;
  place-items: center;
  width: 49px;
  height: 49px;
  margin-bottom: 12px;
  border: 1px solid rgba(115, 209, 255, 0.28);
  border-radius: 50%;
  color: #9de5ff;
  background: #06162f;
  box-shadow: 0 0 0 5px rgba(0, 183, 255, 0.025), 0 0 30px rgba(0, 183, 255, 0.08);
  font-size: 0.54rem;
  font-weight: 850;
}

.campaign-steps strong {
  font-family: var(--display);
  font-size: 0.9rem;
  letter-spacing: -0.025em;
}

.campaign-steps small {
  max-width: 125px;
  margin-top: 5px;
  color: #8198b3;
  font-size: 0.55rem;
  line-height: 1.45;
}

.campaign-call {
  position: relative;
  display: grid;
  min-height: 108px;
  padding: 20px 50px 20px 20px;
  overflow: hidden;
  border: 1px solid rgba(126, 218, 255, 0.28);
  border-radius: 18px;
  background:
    radial-gradient(circle at 90% 15%, rgba(255, 255, 255, 0.25), transparent 5rem),
    linear-gradient(135deg, var(--blue), #04bfff);
  box-shadow: 0 18px 45px rgba(0, 116, 255, 0.25);
}

.campaign-call::before {
  position: absolute;
  inset: -60% auto -60% -30%;
  width: 25%;
  content: "";
  background: rgba(255, 255, 255, 0.26);
  filter: blur(5px);
  transform: rotate(18deg);
  animation: callShine 4s ease-in-out infinite;
}

.campaign-call span {
  font-size: 0.48rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.campaign-call strong {
  align-self: end;
  font-family: var(--display);
  font-size: clamp(1.25rem, 1.6vw, 1.8rem);
  letter-spacing: -0.04em;
}

.campaign-call svg {
  position: absolute;
  right: 20px;
  bottom: 21px;
  font-size: 1.2rem;
}

.service-orbit-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(620px, 1.3fr) minmax(330px, 0.7fr);
  align-items: center;
  min-height: 760px;
  padding: 30px 42px 30px 24px;
  overflow: hidden;
  border: 1px solid rgba(114, 201, 255, 0.18);
  border-radius: 34px;
  color: var(--white);
  background:
    radial-gradient(circle at 33% 50%, rgba(0, 183, 255, 0.14), transparent 31rem),
    radial-gradient(circle at 72% 45%, rgba(91, 77, 255, 0.1), transparent 24rem),
    linear-gradient(130deg, #020713, #05142b 62%, #061b38);
  box-shadow: 0 50px 100px rgba(3, 20, 45, 0.2);
}

.service-orbit-layout::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(91, 190, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 190, 255, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
  animation: gridTravel 20s linear infinite;
}

.service-orbit {
  position: relative;
  width: min(50vw, 700px);
  aspect-ratio: 1;
  justify-self: center;
  perspective: 1200px;
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transform-style: preserve-3d;
  transition: transform 0.2s ease-out;
}

.orbit-grid {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  background:
    linear-gradient(rgba(69, 187, 255, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69, 187, 255, 0.065) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(circle, #000 14%, transparent 69%);
  animation: orbitGrid 10s ease-in-out infinite alternate;
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(90, 205, 255, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-ring::before,
.orbit-ring::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.orbit-ring::before {
  inset: -1px;
  border-top: 1px solid var(--cyan);
  border-right: 1px solid transparent;
  filter: drop-shadow(0 0 8px rgba(0, 183, 255, 0.7));
}

.orbit-ring::after {
  inset: 9%;
  border: 1px dashed rgba(108, 208, 255, 0.12);
}

.orbit-ring-one {
  width: 82%;
  height: 82%;
  animation: orbitSpin 18s linear infinite;
}

.orbit-ring-two {
  width: 62%;
  height: 62%;
  animation: orbitSpinReverse 13s linear infinite;
}

.orbit-ring > i {
  position: absolute;
  width: 7px;
  height: 7px;
  border: 1px solid #a5e8ff;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(0, 183, 255, 0.95);
}

.orbit-ring > i:nth-child(1) {
  top: 8%;
  left: 22%;
}

.orbit-ring > i:nth-child(2) {
  right: -4px;
  bottom: 44%;
}

.orbit-ring > i:nth-child(3) {
  bottom: 10%;
  left: 18%;
}

.orbit-sweep {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 75%;
  height: 75%;
  overflow: hidden;
  border-radius: 50%;
  background: conic-gradient(from 290deg, transparent 0 82%, rgba(0, 183, 255, 0.13) 93%, transparent 100%);
  transform: translate(-50%, -50%);
  animation: orbitSpin 8s linear infinite;
}

.orbit-sweep::after {
  position: absolute;
  top: 50%;
  right: 0;
  left: 50%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--cyan));
  box-shadow: 0 0 14px rgba(0, 183, 255, 0.75);
}

.orbit-core {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: 48%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(142, 222, 255, 0.35);
  border-radius: 50%;
  background: #07152b;
  box-shadow:
    0 0 0 12px rgba(0, 183, 255, 0.035),
    0 0 0 36px rgba(0, 183, 255, 0.018),
    0 45px 100px rgba(0, 0, 0, 0.42),
    inset 0 0 45px rgba(0, 183, 255, 0.12);
  transform: translate(-50%, -50%) translateZ(34px);
}

.orbit-visual {
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  transform: scale(1.12) rotate(4deg);
  transition: visibility 0s 0.65s, opacity 0.65s ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.orbit-visual.is-active {
  visibility: visible;
  opacity: 1;
  transform: scale(1) rotate(0);
  transition-delay: 0s;
}

.orbit-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.orbit-visual > span {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 7, 18, 0.08) 28%, rgba(2, 7, 18, 0.9)),
    radial-gradient(circle, transparent 30%, rgba(2, 7, 18, 0.42));
}

.orbit-visual > div {
  position: absolute;
  z-index: 2;
  right: 14%;
  bottom: 15%;
  left: 14%;
  display: grid;
}

.orbit-visual small {
  color: var(--cyan);
  font-size: 0.46rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.orbit-visual strong {
  margin-top: 7px;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.4vw, 3rem);
  letter-spacing: -0.055em;
  line-height: 0.9;
  text-transform: uppercase;
}

.core-reticle {
  position: absolute;
  z-index: 8;
  inset: 5%;
  border: 1px solid rgba(149, 224, 255, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.core-reticle::before,
.core-reticle::after {
  position: absolute;
  content: "";
  background: rgba(145, 225, 255, 0.28);
}

.core-reticle::before {
  top: 50%;
  right: -7%;
  left: -7%;
  height: 1px;
}

.core-reticle::after {
  top: -7%;
  bottom: -7%;
  left: 50%;
  width: 1px;
}

.service-node {
  position: absolute;
  z-index: 10;
  display: grid;
  place-content: center;
  justify-items: center;
  width: 112px;
  height: 112px;
  padding: 0;
  border: 1px solid rgba(130, 215, 255, 0.28);
  border-radius: 50%;
  color: #a9c2db;
  background: rgba(3, 13, 30, 0.88);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
  cursor: pointer;
  transition:
    color 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-node::before,
.service-node::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.service-node::before {
  inset: 7px;
  border: 1px dashed rgba(122, 211, 255, 0.18);
  transition: transform 0.7s ease;
}

.service-node::after {
  inset: -6px;
  border: 1px solid transparent;
  border-top-color: rgba(0, 183, 255, 0.6);
  opacity: 0;
}

.service-node:hover::before,
.service-node.is-active::before {
  transform: rotate(90deg);
}

.service-node.is-active::after {
  opacity: 1;
  animation: nodeOrbitSpin 3s linear infinite;
}

.service-node > span {
  color: #4ecfff;
  font-size: 0.48rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.service-node > strong {
  margin-top: 5px;
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.service-node > i {
  width: 20px;
  height: 2px;
  margin-top: 7px;
  background: currentColor;
  transform: scaleX(0.4);
  transition: transform 0.35s ease;
}

.service-node.is-active {
  color: var(--white);
  border-color: rgba(120, 220, 255, 0.72);
  background: linear-gradient(145deg, rgba(11, 116, 255, 0.92), rgba(0, 183, 255, 0.76));
  box-shadow: 0 0 0 7px rgba(0, 183, 255, 0.05), 0 22px 55px rgba(0, 132, 255, 0.32);
}

.service-node.is-active > span {
  color: var(--white);
}

.service-node.is-active > i {
  transform: scaleX(1);
}

.service-node-1 {
  top: 3%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.service-node-1:hover,
.service-node-1.is-active {
  transform: translate(-50%, -50%) scale(1.09);
}

.service-node-2 {
  top: 50%;
  right: 3%;
  transform: translate(50%, -50%);
}

.service-node-2:hover,
.service-node-2.is-active {
  transform: translate(50%, -50%) scale(1.09);
}

.service-node-3 {
  bottom: 3%;
  left: 50%;
  transform: translate(-50%, 50%);
}

.service-node-3:hover,
.service-node-3.is-active {
  transform: translate(-50%, 50%) scale(1.09);
}

.service-node-4 {
  top: 50%;
  left: 3%;
  transform: translate(-50%, -50%);
}

.service-node-4:hover,
.service-node-4.is-active {
  transform: translate(-50%, -50%) scale(1.09);
}

.service-console {
  position: relative;
  z-index: 5;
  min-height: 520px;
  padding: 42px;
  overflow: hidden;
  border: 1px solid rgba(132, 211, 255, 0.18);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(9, 30, 61, 0.88), rgba(3, 13, 30, 0.94));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.23);
}

.service-console::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--cyan), #806dff);
}

.console-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(142, 214, 255, 0.12);
  color: #82a0bd;
  font-size: 0.51rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.console-status span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.console-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(0, 183, 255, 0.85);
  animation: callDot 1.8s ease-in-out infinite;
}

.console-status b {
  color: #bceaff;
}

.service-detail {
  position: absolute;
  top: 118px;
  right: 42px;
  left: 42px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(28px);
  transition: visibility 0s 0.55s, opacity 0.45s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-detail.is-active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.service-detail small {
  color: var(--cyan);
  font-size: 0.52rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.service-detail h3 {
  margin: 18px 0 0;
  font-family: var(--display);
  font-size: clamp(3.5rem, 4.6vw, 5.6rem);
  letter-spacing: -0.075em;
  line-height: 0.82;
  text-transform: uppercase;
}

.service-detail p {
  max-width: 420px;
  margin: 25px 0 0;
  color: #a9bdd2;
  font-size: 0.82rem;
  line-height: 1.75;
}

.service-detail > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 23px;
}

.service-detail > div span {
  padding: 8px 10px;
  border: 1px solid rgba(120, 210, 255, 0.18);
  border-radius: 999px;
  color: #badcf4;
  background: rgba(0, 183, 255, 0.04);
  font-size: 0.52rem;
  font-weight: 750;
}

.console-actions {
  position: absolute;
  right: 42px;
  bottom: 35px;
  left: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(142, 214, 255, 0.12);
}

.console-actions a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #b7cadc;
  font-size: 0.56rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.console-actions a:first-child {
  color: var(--cyan);
}

.console-actions svg {
  transition: transform 0.25s ease;
}

.console-actions a:hover svg {
  transform: translateX(4px);
}

.proof-film {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(560px, 1.2fr);
  align-items: center;
  min-height: 1020px;
  padding: 120px max(5vw, calc((100vw - 1360px) / 2)) 150px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 45%, rgba(0, 183, 255, 0.16), transparent 31rem),
    radial-gradient(circle at 19% 38%, rgba(105, 83, 255, 0.14), transparent 27rem),
    linear-gradient(132deg, #020713 0%, #06162f 58%, #020916 100%);
}

.film-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(78, 183, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78, 183, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 66% 45%, #000 10%, transparent 70%);
  animation: gridTravel 22s linear infinite;
}

.film-copy {
  position: relative;
  z-index: 8;
  max-width: 540px;
  padding-left: 22px;
}

.film-copy::before {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 0;
  width: 1px;
  content: "";
  background: linear-gradient(var(--cyan), rgba(0, 183, 255, 0.08), transparent);
}

.film-copy > p:first-child {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0;
  color: #9db6d1;
  font-size: 0.57rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.film-copy > p:first-child span {
  color: var(--cyan);
}

.film-copy h2 {
  margin: 34px 0 0;
  font-family: var(--display);
  font-size: clamp(4rem, 5.8vw, 7.2rem);
  font-weight: 660;
  letter-spacing: -0.068em;
  line-height: 0.82;
  text-transform: uppercase;
}

.film-copy h2 em {
  color: var(--cyan);
  font-family: var(--serif);
  font-size: 0.55em;
  font-weight: 430;
  font-style: italic;
  letter-spacing: -0.045em;
  text-transform: none;
}

.film-intro {
  max-width: 470px;
  margin: 34px 0 0;
  color: #a7bed5;
  font-size: 0.82rem;
  line-height: 1.75;
}

.film-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.film-work-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #c7e9f8;
  font-size: 0.57rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.film-work-link svg {
  transition: transform 0.3s ease;
}

.film-work-link:hover svg {
  transform: translateX(5px);
}

.film-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 34px;
}

.film-signals span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #7593b1;
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.film-signals i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(0, 183, 255, 0.8);
  animation: callDot 1.9s ease-in-out infinite;
}

.film-stage {
  --rx: 0deg;
  --ry: 0deg;
  position: relative;
  z-index: 4;
  width: min(53vw, 740px);
  min-height: 760px;
  justify-self: end;
  perspective: 1400px;
  transform: rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform 0.22s ease-out;
}

.film-stage::before,
.film-stage::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.film-stage::before {
  inset: 9% 7%;
  border: 1px solid rgba(107, 210, 255, 0.12);
  border-radius: 50%;
  filter: drop-shadow(0 0 28px rgba(0, 183, 255, 0.1));
}

.film-stage::after {
  right: 11%;
  bottom: 6%;
  left: 11%;
  height: 13%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  filter: blur(34px);
  transform: translateZ(-20px);
}

.film-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 88%;
  aspect-ratio: 1;
  border: 1px solid rgba(91, 206, 255, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(68deg) rotateZ(0deg);
  animation: filmOrbit 14s linear infinite;
}

.film-orbit::before,
.film-orbit::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.film-orbit::before {
  inset: 11%;
  border: 1px dashed rgba(89, 199, 255, 0.18);
}

.film-orbit::after {
  inset: -1px;
  border-top: 2px solid var(--cyan);
  border-right: 2px solid transparent;
  filter: drop-shadow(0 0 10px rgba(0, 183, 255, 0.75));
}

.film-orbit > i {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1px solid #b3ecff;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(0, 183, 255, 0.92);
}

.film-orbit > i:nth-child(1) { top: 7%; left: 26%; }
.film-orbit > i:nth-child(2) { top: 45%; right: -4px; }
.film-orbit > i:nth-child(3) { right: 22%; bottom: 8%; }
.film-orbit > i:nth-child(4) { top: 54%; left: -4px; }

.film-collage {
  position: absolute;
  z-index: 5;
  inset: 6% 2% 5%;
  transform-style: preserve-3d;
}

.film-card {
  position: absolute;
  z-index: 5;
  margin: 0;
  padding: 6px;
  overflow: hidden;
  border: 1px solid rgba(148, 224, 255, 0.42);
  border-radius: 20px;
  background: #020712;
  box-shadow:
    0 32px 72px rgba(0, 0, 0, 0.52),
    0 0 0 6px rgba(0, 183, 255, 0.025),
    0 0 42px rgba(0, 183, 255, 0.13);
  backface-visibility: hidden;
  transition: z-index 0s, border-color 0.35s ease, box-shadow 0.35s ease;
  animation: filmCardFloat var(--float-speed, 6s) var(--float-delay, 0s) ease-in-out infinite;
}

.film-card:hover {
  z-index: 20;
  border-color: rgba(143, 229, 255, 0.9);
  box-shadow:
    0 38px 90px rgba(0, 0, 0, 0.62),
    0 0 0 7px rgba(0, 183, 255, 0.05),
    0 0 70px rgba(0, 183, 255, 0.25);
}

.film-card-square {
  z-index: 8;
  top: 25%;
  left: 21%;
  width: 48%;
  aspect-ratio: 1;
  transform: translateZ(72px) rotate(-1.5deg);
}

.film-card-portrait {
  --float-speed: 6.5s;
  --float-delay: -1.2s;
  z-index: 10;
  top: 10%;
  right: 1%;
  width: 24%;
  aspect-ratio: 768 / 1376;
  transform: translateZ(98px) rotate(3deg);
}

.film-card-wide {
  --float-speed: 7.2s;
  --float-delay: -2.4s;
  z-index: 6;
  top: 1%;
  left: 8%;
  width: 52%;
  aspect-ratio: 1376 / 768;
  transform: translateZ(38px) rotate(-3deg);
}

.film-card-tower {
  --float-speed: 5.8s;
  --float-delay: -0.5s;
  z-index: 11;
  bottom: 2%;
  left: 1%;
  width: 21%;
  aspect-ratio: 1080 / 1934;
  transform: translateZ(112px) rotate(-4deg);
}

.film-card-top {
  position: absolute;
  z-index: 10;
  top: 13px;
  right: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #d9f4ff;
  font-size: 0.39rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.film-card-top span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.film-card-top i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #25f2b5;
  box-shadow: 0 0 10px rgba(37, 242, 181, 0.9);
  animation: callDot 1.7s ease-in-out infinite;
}

.bhp-reel-video {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: cover;
  background: #020712;
}

.film-card-scan {
  position: absolute;
  z-index: 9;
  right: 6px;
  left: 6px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(112, 221, 255, 0.9), transparent);
  box-shadow: 0 0 14px rgba(0, 183, 255, 0.72);
  opacity: 0.72;
  animation: filmScan 4.5s ease-in-out infinite;
  pointer-events: none;
}

.film-card figcaption {
  position: absolute;
  z-index: 10;
  right: 14px;
  bottom: 12px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: 0.46rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 9px rgba(0, 0, 0, 0.78);
  text-transform: uppercase;
}

.film-card figcaption span {
  color: var(--cyan);
}

.film-hud {
  position: absolute;
  z-index: 8;
  display: grid;
  min-width: 150px;
  padding: 14px 16px;
  border: 1px solid rgba(130, 219, 255, 0.25);
  border-radius: 13px;
  background: rgba(4, 17, 38, 0.76);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(13px);
  transform: translateZ(84px);
}

.film-hud span {
  color: var(--cyan);
  font-size: 0.42rem;
  font-weight: 850;
}

.film-hud b {
  margin-top: 5px;
  font-family: var(--display);
  font-size: 0.87rem;
  letter-spacing: 0.03em;
}

.film-hud > i {
  position: absolute;
  right: 13px;
  bottom: 13px;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.film-hud-one {
  top: 17%;
  left: 1%;
  animation: filmHudFloat 5.4s ease-in-out infinite;
}

.film-hud-two {
  top: 47%;
  right: -1%;
  animation: filmHudFloat 6.2s 0.7s ease-in-out infinite;
}

.film-hud-three {
  bottom: 16%;
  left: 7%;
  animation: filmHudFloat 5.8s 1.1s ease-in-out infinite;
}

.film-wave {
  position: absolute;
  z-index: 7;
  right: 5%;
  bottom: 8%;
  display: flex;
  align-items: center;
  gap: 4px;
  height: 52px;
  padding: 10px 13px;
  border: 1px solid rgba(130, 219, 255, 0.18);
  border-radius: 12px;
  background: rgba(3, 15, 33, 0.65);
  backdrop-filter: blur(10px);
}

.film-wave i {
  width: 2px;
  height: calc(7px + (var(--wave) % 5) * 5px);
  border-radius: 999px;
  background: linear-gradient(var(--cyan), var(--blue));
  animation: filmWave 1.25s calc(var(--wave) * -0.07s) ease-in-out infinite alternate;
}

.film-marquee {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  border-top: 1px solid rgba(125, 213, 255, 0.15);
  border-bottom: 1px solid rgba(125, 213, 255, 0.15);
  background: rgba(1, 8, 20, 0.72);
}

.film-marquee > div {
  display: flex;
  align-items: center;
  width: max-content;
  min-height: 76px;
  animation: filmMarquee 25s linear infinite;
}

.film-marquee span {
  margin-inline: 32px;
  color: rgba(215, 243, 255, 0.82);
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}

.film-marquee i {
  width: 8px;
  height: 8px;
  border: 1px solid var(--cyan);
  transform: rotate(45deg);
}

.campaign-path,
.capabilities,
.proof-film,
.responsive-story,
.process-section,
.contact-section {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.work-cinema {
  position: relative;
  height: 540svh;
  color: var(--white);
  background: #020712;
}

.work-sticky {
  position: sticky;
  z-index: 2;
  top: 0;
  height: 100svh;
  overflow: hidden;
  background: #020712;
}

.work-topbar {
  position: absolute;
  z-index: 40;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 94px;
  padding: 0 max(4vw, 32px);
  border-bottom: 1px solid rgba(129, 204, 255, 0.14);
  background: rgba(2, 7, 18, 0.76);
  backdrop-filter: blur(18px);
}

.work-counter {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #7791ae;
  font-family: var(--display);
  font-size: 1rem;
}

.work-counter strong {
  color: var(--white);
  font-size: 1.5rem;
}

.work-counter i {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), rgba(255, 255, 255, 0.12));
}

.work-topbar > a {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 9px;
  color: #a8bfd8;
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.work-track {
  display: flex;
  width: max-content;
  height: 100%;
  will-change: transform;
  transform: translate3d(calc(var(--work-progress) * -400vw), 0, 0);
}

.project-scene {
  --scene-accent: var(--cyan);
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.34fr) minmax(600px, 0.66fr);
  align-items: center;
  gap: clamp(30px, 5vw, 90px);
  width: 100vw;
  height: 100svh;
  padding: 122px max(5vw, 44px) 54px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 76% 48%, color-mix(in srgb, var(--scene-accent) 19%, transparent), transparent 31rem),
    linear-gradient(135deg, #020711 5%, #05142b 58%, #081c38);
}

.scene-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.65;
  background:
    linear-gradient(rgba(91, 187, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 187, 255, 0.05) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 70% 50%, #000, transparent 72%);
  animation: gridTravel 18s linear infinite;
}

.project-scene::before {
  position: absolute;
  z-index: -1;
  top: 17%;
  right: -10%;
  width: 58vw;
  height: 58vw;
  border: 1px solid color-mix(in srgb, var(--scene-accent) 22%, transparent);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 90px color-mix(in srgb, var(--scene-accent) 3%, transparent),
    0 0 0 180px color-mix(in srgb, var(--scene-accent) 2%, transparent);
  animation: sceneOrbit 15s linear infinite;
}

.scene-copy {
  position: relative;
  z-index: 5;
  max-width: 470px;
  opacity: 0.4;
  transform: translateX(-28px);
  transition: opacity 0.8s 0.15s ease, transform 0.8s 0.15s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-scene.is-current .scene-copy {
  opacity: 1;
  transform: translateX(0);
}

.scene-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--scene-accent);
  font-size: 0.57rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scene-meta span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.scene-meta i {
  width: 38px;
  height: 1px;
  background: currentColor;
}

.scene-copy h3 {
  margin: 30px 0 0;
  font-family: var(--display);
  font-size: clamp(4rem, 6.8vw, 8.5rem);
  letter-spacing: -0.08em;
  line-height: 0.78;
  text-transform: uppercase;
}

.scene-copy > p {
  max-width: 460px;
  margin: 27px 0 0;
  color: #c6d6e8;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 2.15rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.scene-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 28px;
}

.scene-tags span {
  padding: 8px 10px;
  border: 1px solid color-mix(in srgb, var(--scene-accent) 28%, transparent);
  border-radius: 999px;
  color: #b9d0e7;
  background: rgba(3, 10, 24, 0.42);
  font-size: 0.54rem;
  font-weight: 750;
}

.scene-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 11px;
  margin-top: 31px;
}

.scene-actions a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 45px;
  padding: 0 16px;
  border: 1px solid color-mix(in srgb, var(--scene-accent) 30%, transparent);
  border-radius: 12px;
  color: var(--scene-accent);
  background: rgba(3, 10, 24, 0.36);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.scene-actions a:hover {
  transform: translateY(-3px);
}

.scene-actions .scene-live-button {
  color: #031020;
  border-color: var(--scene-accent);
  background: var(--scene-accent);
  box-shadow: 0 14px 36px color-mix(in srgb, var(--scene-accent) 24%, transparent);
}

.scene-devices {
  position: relative;
  z-index: 4;
  min-height: 650px;
  perspective: 1500px;
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transform-style: preserve-3d;
  transition: transform 0.18s ease-out;
}

.scene-devices::after {
  position: absolute;
  z-index: -2;
  top: 48%;
  left: 50%;
  width: 80%;
  height: 45%;
  border-radius: 50%;
  content: "";
  background: color-mix(in srgb, var(--scene-accent) 18%, transparent);
  filter: blur(70px);
  opacity: 0.65;
  transform: translate(-50%, -50%);
}

.browser-frame {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 88%;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--scene-accent) 35%, transparent);
  border-radius: 18px;
  background: #020711;
  box-shadow: 0 65px 100px rgba(0, 0, 0, 0.4);
  transform: translate(-50%, -50%) rotateY(-5deg) rotateX(2deg) scale(0.94);
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-scene.is-current .browser-frame {
  transform: translate(-50%, -50%) rotateY(-3deg) rotateX(1deg) scale(1);
  animation: browserFloat 6s 1s ease-in-out infinite;
}

.browser-screen {
  position: relative;
  overflow: hidden;
}

.browser-live-cta {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: var(--white);
  background: rgba(3, 12, 28, 0.78);
  backdrop-filter: blur(12px);
  font-size: 0.48rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.browser-frame:hover .browser-live-cta {
  opacity: 1;
  transform: translateY(0);
}

.browser-screen img {
  width: 100%;
  aspect-ratio: 1.94;
  object-fit: cover;
  transform: scale(1.015);
  transition: transform 1.2s ease;
}

.project-scene.is-current .browser-screen img {
  transform: scale(1);
}

.screen-glint {
  position: absolute;
  top: -45%;
  bottom: -45%;
  left: -25%;
  width: 15%;
  background: rgba(255, 255, 255, 0.14);
  filter: blur(12px);
  transform: rotate(18deg);
  animation: screenGlint 6.8s 1.3s ease-in-out infinite;
}

.phone-frame {
  position: absolute;
  z-index: 6;
  right: 1%;
  bottom: 5%;
  width: clamp(120px, 14vw, 205px);
  aspect-ratio: 0.49;
  padding: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 30px;
  background: #02050c;
  box-shadow: 0 42px 80px rgba(0, 0, 0, 0.5);
  transform: translateY(28px) rotate(4deg) scale(0.92);
  opacity: 0.35;
  transition: opacity 0.8s 0.28s ease, transform 0.9s 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-scene.is-current .phone-frame {
  opacity: 1;
  transform: translateY(0) rotate(2deg) scale(1);
  animation: phoneFloat 5s 1.2s ease-in-out infinite;
}

.phone-viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 23px;
  background: #fff;
}

.phone-viewport img {
  width: 380%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  animation: mobileSitePan 11s ease-in-out infinite alternate;
}

.phone-island {
  position: absolute;
  z-index: 5;
  top: 12px;
  left: 50%;
  width: 32%;
  height: 6px;
  border-radius: 99px;
  background: #02050c;
  transform: translateX(-50%);
}

.phone-gesture {
  position: absolute;
  z-index: 5;
  bottom: 12px;
  left: 50%;
  width: 30%;
  height: 3px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.72);
  transform: translateX(-50%);
}

.scene-ping {
  position: absolute;
  z-index: 8;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--scene-accent);
  box-shadow: 0 0 20px var(--scene-accent);
}

.scene-ping::after {
  position: absolute;
  inset: -12px;
  border: 1px solid var(--scene-accent);
  border-radius: inherit;
  content: "";
  animation: ping 2s ease-out infinite;
}

.ping-one {
  top: 17%;
  right: 16%;
}

.ping-two {
  bottom: 12%;
  left: 11%;
  animation-delay: -0.8s;
}

.scene-watermark {
  position: absolute;
  z-index: -1;
  right: -0.05em;
  bottom: -0.2em;
  color: transparent;
  font-family: var(--display);
  font-size: min(41vw, 37rem);
  font-weight: 900;
  line-height: 1;
  opacity: 0.08;
  -webkit-text-stroke: 1px var(--scene-accent);
}

.scene-kindprice {
  background:
    radial-gradient(circle at 78% 42%, rgba(47, 212, 128, 0.16), transparent 32rem),
    linear-gradient(135deg, #020912, #061b20 54%, #073126);
}

.scene-rm-electric {
  background:
    radial-gradient(circle at 73% 46%, rgba(255, 122, 24, 0.17), transparent 31rem),
    linear-gradient(135deg, #080604, #17100a 55%, #301608);
}

.scene-sorena {
  background:
    radial-gradient(circle at 78% 46%, rgba(52, 200, 255, 0.2), transparent 32rem),
    linear-gradient(135deg, #020914, #061a31 54%, #083454);
}

.scene-mr-approval {
  background:
    radial-gradient(circle at 75% 47%, rgba(246, 201, 70, 0.16), transparent 31rem),
    linear-gradient(135deg, #080804, #181609 54%, #302507);
}

.scene-hub-cleaning {
  background:
    radial-gradient(circle at 75% 48%, rgba(131, 216, 164, 0.17), transparent 32rem),
    linear-gradient(135deg, #020a11, #071c22 52%, #0c342c);
}

.work-progress {
  position: absolute;
  z-index: 50;
  right: max(4vw, 32px);
  bottom: 28px;
  left: max(4vw, 32px);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.work-progress i {
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.13);
}

.work-progress i::after {
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.work-progress i.is-active::after {
  transform: scaleX(1);
}

.responsive-story {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.7fr) minmax(650px, 1.3fr);
  align-items: center;
  gap: 70px;
  min-height: 950px;
  padding: 140px 6vw;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 48%, rgba(0, 183, 255, 0.16), transparent 32rem),
    linear-gradient(135deg, #020713, var(--navy) 57%, #071f42);
}

.responsive-story::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(80, 186, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80, 186, 255, 0.055) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(circle at 72% 50%, #000, transparent 72%);
  animation: gridTravel 18s linear infinite reverse;
}

.responsive-glow {
  position: absolute;
  top: 50%;
  right: 12%;
  width: 42vw;
  height: 42vw;
  border: 1px solid rgba(0, 183, 255, 0.15);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(0, 183, 255, 0.025),
    0 0 0 180px rgba(119, 87, 255, 0.02);
  transform: translateY(-50%);
  animation: simpleSpin 25s linear infinite;
}

.responsive-copy,
.responsive-devices {
  position: relative;
  z-index: 3;
}

.responsive-copy {
  max-width: 600px;
}

.responsive-copy h2 {
  margin: 30px 0 0;
  font-family: var(--display);
  font-size: clamp(4rem, 6.6vw, 8.2rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.81;
  text-transform: uppercase;
}

.responsive-copy h2 em {
  display: block;
  color: var(--cyan);
  font-family: var(--serif);
  font-size: 0.7em;
  font-weight: 400;
  letter-spacing: -0.055em;
  text-transform: none;
}

.responsive-copy > p:not(.section-label) {
  max-width: 530px;
  margin: 30px 0 35px;
  color: #b6cae0;
  font-size: 0.9rem;
  line-height: 1.8;
}

.responsive-devices {
  min-height: 690px;
  perspective: 1600px;
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transform-style: preserve-3d;
  transition: transform 0.18s ease-out;
}

.responsive-desktop {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 86%;
  overflow: hidden;
  border: 1px solid rgba(109, 210, 255, 0.35);
  border-radius: 18px;
  background: #020711;
  box-shadow: 0 65px 110px rgba(0, 0, 0, 0.42);
  transform: translate(-50%, -50%) rotateY(-7deg);
  animation: responsiveDesktop 6s ease-in-out infinite;
}

.responsive-desktop > span {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 34px;
  padding: 0 12px;
  background: #030a17;
}

.responsive-desktop > span i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff705b;
}

.responsive-desktop > span i:nth-child(2) {
  background: #ffd35c;
}

.responsive-desktop > span i:nth-child(3) {
  background: #42d77d;
}

.responsive-desktop > span em {
  margin: auto;
  color: #7991ac;
  font-size: 0.48rem;
  font-style: normal;
}

.responsive-desktop img {
  width: 100%;
  aspect-ratio: 1.94;
  object-fit: cover;
}

.responsive-tablet,
.responsive-phone {
  position: absolute;
  z-index: 6;
  padding: 7px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: #02050b;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.48);
}

.responsive-tablet {
  right: 0;
  bottom: 1%;
  width: 28%;
  aspect-ratio: 0.72;
  border-radius: 25px;
  transform: rotate(5deg);
  animation: responsiveTablet 5.5s -1.5s ease-in-out infinite;
}

.responsive-tablet > i,
.responsive-phone > i {
  position: absolute;
  z-index: 5;
  top: 13px;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #02050b;
  transform: translateX(-50%);
}

.responsive-tablet > div,
.responsive-phone > div {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 19px;
  background: #fff;
}

.responsive-tablet img {
  width: 265%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: left;
  animation: mobileSitePan 12s ease-in-out infinite alternate;
}

.responsive-phone {
  bottom: 3%;
  left: 0;
  width: 18%;
  aspect-ratio: 0.49;
  border-radius: 29px;
  transform: rotate(-6deg);
  animation: responsivePhone 5.1s -2.4s ease-in-out infinite;
}

.responsive-phone img {
  width: 400%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: left;
  animation: mobileSitePan 10s -1s ease-in-out infinite alternate;
}

.responsive-phone > span {
  position: absolute;
  z-index: 6;
  bottom: 12px;
  left: 50%;
  width: 30%;
  height: 3px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.7);
  transform: translateX(-50%);
}

.device-label {
  position: absolute;
  z-index: 8;
  padding: 9px 11px;
  border: 1px solid rgba(0, 183, 255, 0.25);
  border-radius: 8px;
  color: #bcecff;
  background: rgba(4, 17, 38, 0.84);
  font-size: 0.48rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  backdrop-filter: blur(12px);
}

.label-desktop {
  top: 14%;
  left: 4%;
}

.label-mobile {
  bottom: 3%;
  left: 16%;
}

.process-section {
  padding-top: 145px;
  padding-bottom: 155px;
  overflow: hidden;
}

.process-heading {
  grid-template-columns: 0.63fr 1.7fr;
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 70px;
}

.process-line::before {
  position: absolute;
  top: 31px;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--line);
}

.process-beam {
  position: absolute;
  z-index: 2;
  top: 30px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), #846cff);
  box-shadow: 0 0 18px rgba(0, 183, 255, 0.5);
}

.process-line.is-visible .process-beam {
  animation: processBeam 3.2s 0.15s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.process-line article {
  position: relative;
  min-height: 340px;
  padding: 0 32px 30px;
  border-right: 1px solid var(--line);
  opacity: 0;
  transform: translateY(28px);
}

.process-line article:first-of-type {
  border-left: 1px solid var(--line);
}

.process-line.is-visible article {
  animation: processIn 0.8s var(--delay) cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.process-line article > span {
  position: absolute;
  top: -54px;
  left: 25px;
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border: 1px solid var(--blue);
  border-radius: 50%;
  color: var(--blue);
  background: var(--white);
  font-size: 0.54rem;
  font-weight: 850;
}

.process-node {
  position: relative;
  display: block;
  width: 86px;
  height: 86px;
  margin-bottom: 38px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, #fff, var(--light));
  box-shadow: 0 20px 44px rgba(11, 116, 255, 0.09);
}

.process-node::before {
  position: absolute;
  inset: 15px;
  border: 1px solid rgba(11, 116, 255, 0.18);
  border-radius: 50%;
  content: "";
  animation: nodeSpin 7s linear infinite;
}

.process-node b {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 4px;
  background: var(--blue);
  box-shadow: 0 0 13px rgba(11, 116, 255, 0.35);
  animation: nodeMove 2.8s var(--delay) ease-in-out infinite;
}

.process-node b:nth-child(1) {
  top: 21px;
  left: 19px;
}

.process-node b:nth-child(2) {
  top: 37px;
  right: 18px;
  background: var(--cyan);
}

.process-node b:nth-child(3) {
  bottom: 16px;
  left: 34px;
  background: #806bff;
}

.process-line h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 2.6vw, 3.1rem);
  letter-spacing: -0.055em;
}

.process-line p {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.75;
}

.contact-section {
  position: relative;
  display: grid;
  place-content: center;
  justify-items: center;
  min-height: 780px;
  padding: 120px 6vw;
  overflow: hidden;
  text-align: center;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 28%, rgba(0, 183, 255, 0.18), transparent 28rem),
    radial-gradient(circle at 15% 80%, rgba(124, 83, 255, 0.13), transparent 25rem),
    linear-gradient(135deg, #020713, var(--navy), #071f42);
}

.contact-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(82, 190, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82, 190, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle, #000, transparent 70%);
  animation: gridTravel 18s linear infinite;
}

.contact-section > p,
.contact-section h2,
.contact-actions {
  position: relative;
  z-index: 4;
}

.contact-section h2 {
  max-width: 1120px;
  margin: 30px 0 0;
  font-family: var(--display);
  font-size: clamp(4rem, 7.2vw, 8.8rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.82;
  text-transform: uppercase;
}

.contact-section h2 em {
  display: block;
  color: var(--cyan);
  font-family: var(--serif);
  font-size: 0.64em;
  font-weight: 400;
  letter-spacing: -0.055em;
  text-transform: none;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 23px;
  margin-top: 44px;
}

.contact-actions > a:last-child {
  padding: 18px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: #b6cae0;
  font-size: 0.7rem;
  font-weight: 800;
}

.contact-orbit {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: min(950px, 88vw);
  aspect-ratio: 1;
  border: 1px solid rgba(0, 183, 255, 0.13);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: orbitSpin 26s linear infinite;
}

.contact-orbit::before,
.contact-orbit::after {
  position: absolute;
  border: 1px solid rgba(119, 88, 255, 0.13);
  border-radius: inherit;
  content: "";
}

.contact-orbit::before {
  inset: 17%;
}

.contact-orbit::after {
  inset: 35%;
}

.contact-orbit i {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 22px var(--cyan);
}

.contact-orbit i:nth-child(1) {
  top: 8%;
  left: 32%;
}

.contact-orbit i:nth-child(2) {
  top: 48%;
  right: -4px;
}

.contact-orbit i:nth-child(3) {
  bottom: 5%;
  left: 43%;
  background: #836dff;
}

.contact-orbit i:nth-child(4) {
  top: 39%;
  left: -4px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  min-height: 120px;
  padding: 24px 5vw;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.site-footer img {
  width: 160px;
}

.site-footer p,
.site-footer span {
  margin: 0;
  color: #6c7e96;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.site-footer span {
  justify-self: end;
}

.mobile-dock {
  display: none;
}

.desktop-call-capsule {
  position: fixed;
  z-index: 1900;
  right: 24px;
  bottom: 24px;
  display: grid;
  min-width: 230px;
  padding: 14px 16px;
  border: 1px solid rgba(135, 220, 255, 0.32);
  border-radius: 16px;
  color: var(--white);
  background: rgba(4, 17, 38, 0.9);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
  transform: translateY(0);
  animation: callCapsule 4s ease-in-out infinite;
}

.desktop-call-capsule > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #8ca8c2;
  font-size: 0.47rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.desktop-call-capsule > span i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 11px var(--cyan);
  animation: callDot 1.8s ease-in-out infinite;
}

.desktop-call-capsule > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 7px;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 850;
  letter-spacing: -0.025em;
}

.desktop-call-capsule svg {
  color: var(--cyan);
  font-size: 1rem;
  transition: transform 0.25s ease;
}

.desktop-call-capsule:hover svg {
  transform: translateX(4px);
}

@keyframes orbitSpin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes orbitSpinReverse {
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes nodeOrbitSpin {
  to { transform: rotate(360deg); }
}

@keyframes orbitGrid {
  from { transform: scale(0.94) rotate(-2deg); opacity: 0.45; }
  to { transform: scale(1.04) rotate(2deg); opacity: 0.85; }
}

@keyframes campaignFlow {
  0%, 100% { transform: scaleX(0.1); opacity: 0.25; }
  45%, 65% { transform: scaleX(1); opacity: 1; }
}

@keyframes callShine {
  0%, 60% { left: -30%; }
  100% { left: 130%; }
}

@keyframes callDot {
  0%, 100% { opacity: 0.45; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.25); }
}

@keyframes callCapsule {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.85s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes gridTravel {
  to { background-position: 64px 64px; }
}

@keyframes loaderPulse {
  from { opacity: 0.58; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes loaderLine {
  from { transform: translateX(-120%); }
  to { transform: translateX(300%); }
}

@keyframes brandShine {
  0%, 58% { left: -36%; }
  80%, 100% { left: 125%; }
}

@keyframes signalPulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 183, 255, 0.5), 0 0 20px var(--cyan); }
  100% { box-shadow: 0 0 0 14px rgba(0, 183, 255, 0), 0 0 20px var(--cyan); }
}

@keyframes titleFlow {
  to { background-position: -230% center; }
}

@keyframes heroDevice {
  0%, 100% { transform: translate(-50%, -50%) translateZ(60px) rotateY(-7deg) rotateX(2deg) translateY(0); }
  50% { transform: translate(-50%, -50%) translateZ(60px) rotateY(-3deg) rotateX(1deg) translateY(-12px); }
}

@keyframes scanTravel {
  0%, 12% { top: -30%; }
  72%, 100% { top: 115%; }
}

@keyframes orbitSpin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes simpleSpin {
  to { transform: translateY(-50%) rotate(360deg); }
}

@keyframes nodeSpin {
  to { transform: rotate(360deg); }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes cueDown {
  from { transform: translateY(-120%); }
  to { transform: translateY(250%); }
}

@keyframes sceneOrbit {
  to { transform: rotate(360deg); }
}

@keyframes browserFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

@keyframes screenGlint {
  0%, 55% { left: -25%; }
  80%, 100% { left: 120%; }
}

@keyframes phoneFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -14px; }
}

@keyframes mobileSitePan {
  0%, 18% { transform: translateX(0) scale(1.01); }
  82%, 100% { transform: translateX(-12%) scale(1.05); }
}

@keyframes ping {
  from { opacity: 0.7; transform: scale(0.2); }
  to { opacity: 0; transform: scale(1.4); }
}

@keyframes responsiveDesktop {
  0%, 100% { transform: translate(-50%, -50%) rotateY(-7deg) translateY(0); }
  50% { transform: translate(-50%, -50%) rotateY(-3deg) translateY(-11px); }
}

@keyframes responsiveTablet {
  0%, 100% { transform: rotate(5deg) translateY(0); }
  50% { transform: rotate(3deg) translateY(-14px); }
}

@keyframes responsivePhone {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50% { transform: rotate(-3deg) translateY(-16px); }
}

@keyframes processBeam {
  to { width: 100%; }
}

@keyframes processIn {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes nodeMove {
  0%, 100% { transform: translate(0, 0) rotate(0); }
  50% { transform: translate(4px, -4px) rotate(45deg); }
}

@keyframes filmOrbit {
  to { transform: translate(-50%, -50%) rotateX(68deg) rotateZ(360deg); }
}

@keyframes filmCardFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}

@keyframes filmScan {
  0%, 8% { top: 10%; opacity: 0; }
  18% { opacity: 0.85; }
  78% { opacity: 0.85; }
  90%, 100% { top: 88%; opacity: 0; }
}

@keyframes filmHudFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -11px; }
}

@keyframes filmWave {
  from { transform: scaleY(0.38); opacity: 0.45; }
  to { transform: scaleY(1); opacity: 1; }
}

@keyframes filmMarquee {
  to { transform: translateX(-50%); }
}

@media (max-width: 1240px) {
  :root {
    --shell: min(1180px, calc(100vw - 56px));
  }

  .site-header {
    grid-template-columns: 185px 1fr auto;
  }

  .header-actions > a:first-child {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(380px, 0.76fr) minmax(500px, 1.24fr);
    gap: 45px;
    padding-inline: 4vw;
  }

  .hero h1 {
    font-size: clamp(4rem, 7.2vw, 6.8rem);
  }

  .hero-stage {
    min-height: 530px;
  }

  .service-orbit-layout {
    grid-template-columns: minmax(540px, 1.2fr) minmax(310px, 0.8fr);
    padding-right: 28px;
  }

  .service-orbit {
    width: min(55vw, 650px);
  }

  .service-node {
    width: 100px;
    height: 100px;
  }

  .service-console {
    padding-inline: 30px;
  }

  .service-detail {
    right: 30px;
    left: 30px;
  }

  .console-actions {
    right: 30px;
    left: 30px;
  }

  .project-scene {
    grid-template-columns: 0.34fr 0.66fr;
    gap: 35px;
    padding-inline: 4vw;
  }

  .scene-copy h3 {
    font-size: clamp(3.7rem, 6.2vw, 6.4rem);
  }

  .scene-devices {
    min-height: 570px;
  }

  .proof-film {
    grid-template-columns: minmax(330px, 0.75fr) minmax(520px, 1.25fr);
    padding-inline: 4vw;
  }

  .film-stage {
    width: min(58vw, 690px);
  }

  .responsive-story {
    grid-template-columns: 0.76fr 1.24fr;
    gap: 40px;
    padding-inline: 4vw;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: calc(100vw - 40px);
  }

  .cursor-aura {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    width: calc(100vw - 20px);
    min-height: 64px;
    padding: 0 12px 0 18px;
    border-radius: 16px;
  }

  .brand,
  .brand img {
    width: 142px;
  }

  .menu-toggle {
    position: relative;
    z-index: 12;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(135, 208, 255, 0.18);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
  }

  .menu-toggle i {
    position: absolute;
    width: 18px;
    height: 2px;
    background: var(--white);
    transition: transform 0.25s ease;
  }

  .menu-toggle i:first-child {
    transform: translateY(-4px);
  }

  .menu-toggle i:last-child {
    transform: translateY(4px);
  }

  .menu-toggle.is-open i:first-child {
    transform: rotate(45deg);
  }

  .menu-toggle.is-open i:last-child {
    transform: rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 10;
    top: 7px;
    right: 7px;
    left: 7px;
    display: grid;
    align-content: center;
    min-height: min(600px, calc(100vh - 14px));
    padding: 90px 27px 42px;
    border: 1px solid rgba(114, 207, 255, 0.18);
    border-radius: 22px;
    background:
      radial-gradient(circle at 80% 20%, rgba(0, 183, 255, 0.2), transparent 18rem),
      rgba(3, 13, 30, 0.98);
    box-shadow: 0 36px 85px rgba(0, 0, 0, 0.4);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-15px);
    transition: visibility 0s 0.3s, opacity 0.3s ease, transform 0.3s ease;
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .main-nav a {
    padding: 18px 0;
    border-bottom: 1px solid rgba(122, 200, 255, 0.14);
    color: var(--white);
    font-family: var(--display);
    font-size: clamp(2rem, 8vw, 3.6rem);
    letter-spacing: -0.045em;
    text-transform: none;
  }

  .main-nav a::after {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 42px;
    min-height: auto;
    padding: 135px 5vw 170px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 12.5vw, 7.2rem);
  }

  .hero-stage {
    justify-self: center;
    min-height: 620px;
  }

  .hero-proof {
    right: 5vw;
    bottom: 22px;
    left: 5vw;
  }

  .hero-proof article {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 16px;
  }

  .hero-proof span {
    max-width: none;
  }

  .scroll-cue {
    display: none;
  }

  .campaign-path {
    padding: 50px 0;
  }

  .campaign-path-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .campaign-path-copy {
    display: grid;
    grid-template-columns: 0.65fr 1.35fr;
    align-items: end;
    gap: 26px;
  }

  .campaign-path-copy > p {
    margin: 0;
  }

  .campaign-path-copy h2 {
    max-width: 650px;
  }

  .campaign-call {
    grid-template-columns: 1fr auto;
    align-items: center;
    min-height: 90px;
  }

  .campaign-call strong {
    align-self: center;
  }

  .service-orbit-layout {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: 0;
    padding: 32px 24px 24px;
  }

  .service-orbit {
    width: min(82vw, 650px);
    transform: none !important;
  }

  .service-console {
    min-height: 490px;
  }

  .desktop-call-capsule {
    display: none;
  }

  .section-intro {
    grid-template-columns: 0.65fr 1.35fr;
  }

  .section-intro > div {
    grid-column: 2;
  }

  .capability-deck {
    min-height: 570px;
  }

  .capability-content > strong {
    font-size: 2rem;
  }

  .proof-film {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
    padding: 120px 5vw 140px;
  }

  .film-copy {
    max-width: 720px;
  }

  .film-stage {
    width: min(90vw, 720px);
    min-height: 760px;
    justify-self: center;
    transform: none !important;
  }

  .work-cinema {
    height: auto;
  }

  .work-sticky {
    position: relative;
    height: auto;
    overflow: visible;
  }

  .work-topbar {
    position: sticky;
    top: 0;
    grid-template-columns: 1fr auto;
    min-height: 74px;
    padding: 0 20px;
  }

  .work-counter {
    display: none;
  }

  .work-topbar > a {
    font-size: 0.55rem;
  }

  .work-track {
    display: grid;
    width: 100%;
    transform: none;
  }

  .project-scene {
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    min-height: 900px;
    height: auto;
    padding: 120px 5vw 68px;
  }

  .project-scene::before {
    top: 22%;
    right: -30%;
    width: 100vw;
    height: 100vw;
  }

  .scene-copy {
    max-width: 660px;
    opacity: 1;
    transform: none;
  }

  .scene-copy h3 {
    font-size: clamp(4rem, 12vw, 7rem);
  }

  .scene-copy > p {
    font-size: clamp(1.3rem, 4vw, 2.1rem);
  }

  .scene-devices {
    min-height: 560px;
    transform: none !important;
  }

  .browser-frame,
  .project-scene.is-current .browser-frame {
    width: 88%;
    transform: translate(-50%, -50%) rotateY(-3deg) scale(1);
    animation: browserFloat 6s ease-in-out infinite;
  }

  .phone-frame,
  .project-scene.is-current .phone-frame {
    right: 2%;
    width: 145px;
    opacity: 1;
    transform: rotate(2deg);
  }

  .work-progress {
    display: none;
  }

  .responsive-story {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: 0;
    padding: 120px 5vw 90px;
  }

  .responsive-copy {
    max-width: 720px;
  }

  .responsive-devices {
    min-height: 610px;
    transform: none !important;
  }

  .process-heading {
    grid-template-columns: 0.65fr 1.35fr;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100vw - 28px);
  }

  body {
    padding-bottom: 74px;
  }

  .page-loader .loader-mark {
    width: 176px;
  }

  .site-header {
    top: 7px;
    width: calc(100vw - 14px);
    min-height: 58px;
    border-radius: 14px;
  }

  .brand,
  .brand img {
    width: 124px;
  }

  .menu-toggle {
    width: 39px;
    height: 39px;
  }

  .hero {
    display: block;
    padding: 112px 15px 220px;
  }

  .eyebrow {
    gap: 9px;
    font-size: 0.5rem;
    letter-spacing: 0.11em;
    line-height: 1.5;
  }

  .hero h1 {
    margin-top: 23px;
    font-size: clamp(3rem, 14.3vw, 4.65rem);
    line-height: 0.9;
  }

  .hero-intro {
    margin-top: 24px;
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 27px;
  }

  .button {
    min-height: 52px;
    padding: 0 13px;
    font-size: 0.58rem;
  }

  .hero-trust {
    display: grid;
    gap: 10px;
    margin-top: 25px;
  }

  .hero-stage {
    min-height: 420px;
    margin-top: 36px;
    transform: none !important;
  }

  .hero-browser {
    width: 96%;
    border-radius: 13px;
    transform: translate(-50%, -50%) rotateY(-2deg);
    animation: mobileHeroDevice 5s ease-in-out infinite;
  }

  .hero-browser-bar {
    height: 29px;
    padding-inline: 9px;
  }

  .hero-browser-bar > span i {
    width: 5px;
    height: 5px;
  }

  .hero-browser-bar em,
  .hero-browser-bar b {
    font-size: 0.39rem;
  }

  .hero-card {
    min-width: 112px;
    padding: 11px 12px;
    border-radius: 12px;
  }

  .hero-card-one {
    top: 1%;
    left: 0;
  }

  .hero-card-two {
    top: 8%;
    right: 0;
  }

  .hero-card-three {
    right: 4%;
    bottom: 0;
  }

  .hero-card b {
    font-size: 1rem;
  }

  .hero-card small {
    font-size: 0.48rem;
  }

  .hero-rings {
    width: 115%;
  }

  .hero-proof {
    right: 15px;
    bottom: 18px;
    left: 15px;
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid rgba(141, 211, 255, 0.16);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(14px);
  }

  .hero-proof article {
    min-height: 82px;
    padding: 14px;
    border-right: 1px solid rgba(141, 211, 255, 0.13);
    border-bottom: 1px solid rgba(141, 211, 255, 0.13);
  }

  .hero-proof strong {
    font-size: 1.65rem;
  }

  .hero-proof span {
    font-size: 0.48rem;
  }

  .campaign-path {
    padding: 42px 0;
  }

  .campaign-path-copy {
    display: block;
  }

  .campaign-path-copy > p {
    margin-bottom: 16px;
    line-height: 1.65;
  }

  .campaign-path-copy h2 {
    font-size: clamp(2.6rem, 12vw, 3.9rem);
  }

  .campaign-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 5px;
  }

  .campaign-steps::before {
    display: none;
  }

  .campaign-steps article {
    padding-inline: 5px;
  }

  .campaign-call {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 98px;
    padding: 17px 48px 17px 17px;
  }

  .campaign-call strong {
    justify-self: start;
  }

  .capabilities {
    padding: 90px 0 100px;
  }

  .section-intro,
  .process-heading {
    display: block;
    margin-bottom: 40px;
  }

  .section-intro > p,
  .section-label {
    margin-bottom: 20px;
    font-size: 0.51rem;
  }

  .section-intro h2 {
    font-size: clamp(2.9rem, 14vw, 4.5rem);
  }

  .section-intro > div {
    margin-top: 24px;
  }

  .section-intro > div p {
    font-size: 0.8rem;
  }

  .service-orbit-layout {
    width: calc(100vw - 14px);
    padding: 18px 9px 9px;
    border-radius: 24px;
  }

  .service-orbit {
    width: 100%;
  }

  .orbit-core {
    width: 49%;
    box-shadow:
      0 0 0 7px rgba(0, 183, 255, 0.035),
      0 0 0 20px rgba(0, 183, 255, 0.018),
      0 30px 70px rgba(0, 0, 0, 0.4);
  }

  .orbit-visual > div {
    right: 11%;
    bottom: 15%;
    left: 11%;
  }

  .orbit-visual strong {
    font-size: clamp(1.15rem, 6vw, 1.8rem);
  }

  .service-node {
    width: 80px;
    height: 80px;
  }

  .service-node > strong {
    margin-top: 3px;
    font-size: 1.05rem;
  }

  .service-node > i {
    margin-top: 4px;
  }

  .service-node-1 {
    top: 14%;
  }

  .service-node-2 {
    right: 14%;
  }

  .service-node-3 {
    bottom: 14%;
  }

  .service-node-4 {
    left: 14%;
  }

  .service-console {
    min-height: 470px;
    padding: 24px 20px;
    border-radius: 19px;
  }

  .console-status {
    padding-bottom: 17px;
  }

  .service-detail {
    top: 80px;
    right: 20px;
    left: 20px;
  }

  .service-detail h3 {
    margin-top: 13px;
    font-size: clamp(2.9rem, 14vw, 4.4rem);
  }

  .service-detail p {
    margin-top: 19px;
    font-size: 0.76rem;
  }

  .service-detail > div {
    margin-top: 16px;
  }

  .console-actions {
    right: 20px;
    bottom: 21px;
    left: 20px;
    display: grid;
    gap: 14px;
  }

  .capability-deck {
    display: flex;
    gap: 11px;
    width: 100%;
    min-height: 540px;
    padding-inline: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .capability-deck::-webkit-scrollbar {
    display: none;
  }

  .capability-card,
  .capability-card.is-active {
    flex: 0 0 84vw;
    min-height: 510px;
    border-radius: 20px;
    scroll-snap-align: center;
    transform: none;
  }

  .capability-content > strong {
    font-size: 2.7rem;
  }

  .capability-content > em,
  .capability-card.is-active .capability-content > em {
    max-height: 100px;
    margin-top: 16px;
    opacity: 1;
    transform: none;
  }

  .capability-tags,
  .capability-card.is-active .capability-tags {
    max-height: 80px;
    margin-top: 18px;
    opacity: 1;
  }

  .capability-arrow {
    opacity: 1;
    transform: none;
  }

  .work-topbar {
    min-height: 68px;
    padding-inline: 14px;
  }

  .proof-film {
    padding: 90px 15px 118px;
  }

  .film-copy {
    padding-left: 16px;
  }

  .film-copy h2 {
    margin-top: 26px;
    font-size: clamp(3.15rem, 14vw, 4.8rem);
  }

  .film-intro {
    margin-top: 25px;
    font-size: 0.76rem;
  }

  .film-actions {
    display: grid;
    gap: 16px;
    align-items: start;
    margin-top: 26px;
  }

  .film-actions .button {
    width: min(100%, 320px);
  }

  .film-signals {
    gap: 9px 12px;
    margin-top: 26px;
  }

  .film-stage {
    width: 100%;
    min-height: 680px;
  }

  .film-stage::before {
    inset: 15% 1%;
  }

  .film-orbit {
    width: 118%;
  }

  .film-collage {
    inset: 7% 0 4%;
  }

  .film-card {
    padding: 4px;
    border-radius: 14px;
  }

  .film-card-square {
    top: 27%;
    left: 7%;
    width: 64%;
  }

  .film-card-portrait {
    top: 12%;
    right: 0;
    width: 31%;
  }

  .film-card-wide {
    top: 2%;
    left: 13%;
    width: 70%;
  }

  .film-card-tower {
    bottom: 2%;
    left: 0;
    width: 27%;
  }

  .bhp-reel-video {
    border-radius: 10px;
  }

  .film-card-top {
    top: 9px;
    right: 9px;
    left: 9px;
    font-size: 0.31rem;
  }

  .film-card figcaption {
    right: 9px;
    bottom: 8px;
    left: 9px;
    font-size: 0.36rem;
  }

  .film-hud {
    display: none;
  }

  .film-wave {
    right: 0;
    bottom: 6%;
    gap: 3px;
    padding-inline: 9px;
    transform: scale(0.78);
    transform-origin: right bottom;
  }

  .film-marquee > div {
    min-height: 58px;
  }

  .film-marquee span {
    margin-inline: 22px;
    font-size: 1.08rem;
  }

  .work-topbar > p {
    font-size: 0.48rem;
  }

  .work-topbar > p span {
    display: none;
  }

  .work-topbar > a {
    font-size: 0.49rem;
  }

  .project-scene {
    gap: 22px;
    min-height: 820px;
    padding: 108px 15px 55px;
  }

  .scene-meta {
    font-size: 0.5rem;
  }

  .scene-meta span {
    width: 30px;
    height: 30px;
  }

  .scene-copy h3 {
    margin-top: 24px;
    font-size: clamp(3.4rem, 16vw, 5rem);
    line-height: 0.8;
  }

  .scene-copy > p {
    margin-top: 20px;
    font-size: 1.22rem;
  }

  .scene-tags {
    margin-top: 19px;
  }

  .scene-actions {
    display: grid;
    grid-template-columns: 1fr 0.72fr;
    gap: 8px;
    margin-top: 23px;
  }

  .scene-actions a {
    justify-content: center;
    min-height: 43px;
    padding-inline: 10px;
    font-size: 0.52rem;
  }

  .scene-devices {
    min-height: 360px;
  }

  .browser-frame,
  .project-scene.is-current .browser-frame {
    top: 47%;
    width: 94%;
    border-radius: 11px;
    transform: translate(-50%, -50%) rotateY(-1deg) scale(1);
  }

  .browser-bar {
    height: 26px;
    padding-inline: 8px;
  }

  .browser-bar > span i {
    width: 5px;
    height: 5px;
  }

  .browser-bar em,
  .browser-bar b {
    font-size: 0.36rem;
  }

  .browser-live-cta {
    right: 8px;
    bottom: 8px;
    min-height: 29px;
    padding-inline: 9px;
    font-size: 0.4rem;
    opacity: 1;
    transform: none;
  }

  .phone-frame,
  .project-scene.is-current .phone-frame {
    right: 0;
    bottom: 0;
    width: 30%;
    max-width: 112px;
    padding: 5px;
    border-radius: 21px;
  }

  .phone-viewport {
    border-radius: 17px;
  }

  .phone-island {
    top: 8px;
    height: 4px;
  }

  .phone-gesture {
    bottom: 8px;
  }

  .scene-ping {
    width: 8px;
    height: 8px;
  }

  .responsive-story {
    padding: 90px 15px 80px;
  }

  .responsive-copy h2 {
    margin-top: 23px;
    font-size: clamp(3.2rem, 15.5vw, 5rem);
  }

  .responsive-copy > p:not(.section-label) {
    margin: 24px 0 28px;
    font-size: 0.84rem;
  }

  .responsive-devices {
    min-height: 430px;
  }

  .responsive-desktop {
    top: 45%;
    width: 96%;
    border-radius: 11px;
    transform: translate(-50%, -50%) rotateY(-2deg);
  }

  .responsive-desktop > span {
    height: 25px;
  }

  .responsive-tablet {
    right: 0;
    bottom: 0;
    width: 34%;
    padding: 5px;
    border-radius: 16px;
  }

  .responsive-phone {
    bottom: 2%;
    left: 0;
    width: 22%;
    padding: 4px;
    border-radius: 19px;
  }

  .device-label {
    display: none;
  }

  .process-section {
    padding-top: 90px;
    padding-bottom: 95px;
  }

  .process-line {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 0;
  }

  .process-line::before,
  .process-beam {
    display: none;
  }

  .process-line article {
    display: grid;
    grid-template-columns: 68px 1fr;
    min-height: 0;
    padding: 22px 17px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--light);
  }

  .process-line article:first-of-type {
    border-left: 1px solid var(--line);
  }

  .process-line article > span {
    top: 13px;
    right: 13px;
    left: auto;
  }

  .process-node {
    grid-row: span 2;
    width: 54px;
    height: 54px;
    margin: 0;
    border-radius: 16px;
  }

  .process-node::before {
    inset: 10px;
  }

  .process-node b {
    width: 7px;
    height: 7px;
  }

  .process-node b:nth-child(1) {
    top: 13px;
    left: 13px;
  }

  .process-node b:nth-child(2) {
    top: 23px;
    right: 11px;
  }

  .process-node b:nth-child(3) {
    bottom: 9px;
    left: 20px;
  }

  .process-line h3 {
    padding-right: 40px;
    font-size: 1.55rem;
  }

  .process-line p {
    margin-top: 8px;
    font-size: 0.74rem;
  }

  .contact-section {
    min-height: 650px;
    padding: 90px 15px;
  }

  .contact-section > p {
    font-size: 0.51rem;
  }

  .contact-section h2 {
    margin-top: 24px;
    font-size: clamp(3.2rem, 16vw, 5.2rem);
  }

  .contact-actions {
    display: grid;
    width: 100%;
    max-width: 350px;
    gap: 10px;
    margin-top: 34px;
  }

  .contact-actions > a:last-child {
    border: 0;
  }

  .site-footer {
    display: grid;
    justify-items: center;
    min-height: 155px;
    padding: 28px 16px;
    text-align: center;
  }

  .site-footer img {
    width: 135px;
  }

  .site-footer span {
    justify-self: center;
  }

  .mobile-dock {
    position: fixed;
    z-index: 2500;
    right: 7px;
    bottom: 7px;
    left: 7px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    min-height: 62px;
    padding: 6px;
    border: 1px solid rgba(155, 215, 255, 0.3);
    border-radius: 17px;
    background: rgba(4, 17, 38, 0.94);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(18px);
  }

  .mobile-dock a {
    display: grid;
    place-content: center;
    justify-items: center;
    gap: 3px;
    border-radius: 12px;
    color: #a9bdd3;
  }

  .mobile-dock span {
    color: var(--cyan);
    font-size: 1rem;
    line-height: 1;
  }

  .mobile-dock b {
    font-size: 0.46rem;
    font-weight: 800;
  }

  .mobile-dock .dock-call {
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 8px 20px rgba(11, 116, 255, 0.3);
  }

  .mobile-dock .dock-call span {
    color: var(--white);
  }

  @keyframes mobileHeroDevice {
    0%, 100% { transform: translate(-50%, -50%) rotateY(-2deg) translateY(0); }
    50% { transform: translate(-50%, -50%) rotateY(-1deg) translateY(-8px); }
  }
}

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

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

  .page-loader {
    display: none;
  }

  .js-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* BHP Campaign Showcase — production performance and responsive hardening */
html,
body.bhpcs-page,
.bhp-showcase {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body.bhpcs-page {
  margin: 0;
  background: #041126;
}

.page-loader {
  display: none !important;
}

.bhp-showcase img,
.bhp-showcase video,
.bhp-showcase svg {
  max-width: 100%;
}

.bhp-showcase img,
.bhp-showcase video {
  height: auto;
}

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

.bhp-showcase :focus-visible {
  outline: 3px solid #44c9ff;
  outline-offset: 4px;
}

@supports (content-visibility: auto) {
  .campaign-path,
  .capabilities,
  .proof-film,
  .responsive-story,
  .process-section,
  .contact-section {
    content-visibility: auto;
    contain-intrinsic-size: auto 900px;
  }
}

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

.performance-lite .signal-canvas,
.performance-lite .cursor-aura {
  display: none !important;
}

.performance-lite .hero-grid,
.performance-lite .hero-card,
.performance-lite .hero-browser,
.performance-lite .hero-rings,
.performance-lite .orbit-ring,
.performance-lite .orbit-sweep,
.performance-lite .film-orbit,
.performance-lite .film-card,
.performance-lite .film-wave,
.performance-lite .film-marquee > div,
.performance-lite .scene-grid,
.performance-lite .browser-frame,
.performance-lite .phone-frame,
.performance-lite .responsive-desktop,
.performance-lite .responsive-tablet,
.performance-lite .responsive-phone,
.performance-lite .contact-orbit,
.performance-lite .brand::after {
  animation: none !important;
}

@media (max-width: 900px) {
  .bhp-showcase {
    overflow: clip;
  }

  .main-nav {
    max-height: calc(100dvh - 20px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .signal-canvas,
  .cursor-aura {
    display: none !important;
  }

  .project-scene,
  .scene-copy,
  .scene-devices,
  .responsive-copy,
  .responsive-devices {
    min-width: 0;
  }

  .scene-copy h3,
  .responsive-copy h2,
  .film-copy h2,
  .section-intro h2 {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 640px) {
  body.bhpcs-page {
    padding-bottom: calc(82px + env(safe-area-inset-bottom));
  }

  .site-header {
    padding-left: max(14px, env(safe-area-inset-left));
    padding-right: max(14px, env(safe-area-inset-right));
  }

  .hero,
  .section-shell,
  .film-copy,
  .responsive-copy,
  .contact-section {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }

  .mobile-dock {
    right: max(7px, env(safe-area-inset-right));
    bottom: max(7px, env(safe-area-inset-bottom));
    left: max(7px, env(safe-area-inset-left));
    min-width: 0;
  }

  .mobile-dock a {
    min-width: 0;
  }

  .mobile-dock b {
    overflow: hidden;
    max-width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .film-stage {
    min-height: 600px;
  }

  .project-scene {
    min-height: 760px;
  }

  .campaign-steps,
  .hero-proof {
    gap: 10px;
  }
}
