:root {
  --black: #f8fbff;
  --text: #e9edf7;
  --muted: #9da8bd;
  --paper: #080b12;
  --soft: #0f1420;
  --panel: #111827;
  --line: rgba(255, 255, 255, 0.13);
  --blue: #35b8ff;
  --red: #ff5b6e;
  --yellow: #ffd166;
  --green: #55e6a5;
  --violet: #8b7cff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
  scroll-padding-top: 0;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -10%, rgba(53, 184, 255, 0.18), transparent 34rem),
    linear-gradient(180deg, #080b12 0%, #0b101b 48%, #080b12 100%);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 82%);
}

body[data-lang="en"] {
  --blue: #66d9ff;
  --red: #ff7a9a;
  --yellow: #b7ff73;
  --green: #69f0c8;
  --violet: #a78bfa;
}

body.is-language-switching main,
body.is-language-switching .site-header,
body.is-language-switching .site-footer {
  animation: language-content-shift 760ms cubic-bezier(0.77, 0, 0.18, 1);
}

.language-wipe {
  position: fixed;
  inset: -15vh -30vw;
  z-index: 90;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(53, 184, 255, 0.1) 38%, rgba(255, 255, 255, 0.72) 50%, rgba(255, 91, 110, 0.16) 61%, transparent 100%),
    radial-gradient(circle at 50% 50%, rgba(255, 209, 102, 0.18), transparent 18rem);
  filter: blur(0.5px);
  transform: translateX(-110%) skewX(-9deg);
}

body.is-language-switching .language-wipe {
  animation: language-wipe 760ms cubic-bezier(0.77, 0, 0.18, 1);
}

body.has-custom-cursor,
body.has-custom-cursor a,
body.has-custom-cursor button {
  cursor: none;
}

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

.cursor-dot,
.cursor-ring {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-120px, -120px, 0);
  transition: opacity 180ms ease, width 180ms ease, height 180ms ease, border-color 180ms ease, background 180ms ease;
}

.has-custom-cursor .cursor-dot,
.has-custom-cursor .cursor-ring {
  opacity: 1;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 18px rgba(255, 209, 102, 0.86);
}

.cursor-ring {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  mix-blend-mode: screen;
}

.cursor-active .cursor-ring {
  width: 68px;
  height: 68px;
  border-color: rgba(53, 184, 255, 0.9);
  background: rgba(53, 184, 255, 0.1);
  box-shadow: 0 0 28px rgba(53, 184, 255, 0.36);
}

.cursor-active .cursor-dot {
  background: var(--blue);
  box-shadow: 0 0 20px rgba(53, 184, 255, 0.92);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 94px;
  padding: 24px clamp(22px, 5vw, 78px);
  background: linear-gradient(180deg, rgba(8, 11, 18, 0.82), rgba(8, 11, 18, 0.38));
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  font-weight: 700;
}

.brand-logo-wrap {
  position: relative;
  display: grid;
  place-items: center;
  width: 196px;
  height: 56px;
  overflow: hidden;
  border: 1px solid rgba(53, 184, 255, 0.26);
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 50%, rgba(53, 184, 255, 0.34), transparent 44%),
    radial-gradient(circle at 82% 50%, rgba(139, 124, 255, 0.24), transparent 42%),
    linear-gradient(135deg, rgba(8, 13, 24, 0.92), rgba(12, 18, 31, 0.74));
  box-shadow:
    inset 0 0 28px rgba(255, 255, 255, 0.06),
    0 0 28px rgba(53, 184, 255, 0.24),
    0 0 70px rgba(139, 124, 255, 0.12);
  transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.brand-logo-wrap::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: inherit;
  background: conic-gradient(from 120deg, var(--blue), var(--violet), var(--red), var(--yellow), var(--blue));
  opacity: 0;
  filter: blur(16px);
  transition: opacity 240ms ease;
  animation: neon-orbit 6s linear infinite;
}

.brand-logo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 18%, rgba(255, 255, 255, 0.2), transparent 62%);
  transform: translateX(-130%);
  animation: logo-sheen 5.5s ease-in-out infinite;
}

.brand:hover .brand-logo-wrap,
.brand:focus-visible .brand-logo-wrap {
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow:
    inset 0 0 28px rgba(255, 255, 255, 0.06),
    0 0 26px rgba(53, 184, 255, 0.38),
    0 0 54px rgba(139, 124, 255, 0.24);
  transform: translateY(-1px);
}

.brand:hover .brand-logo-wrap::before,
.brand:focus-visible .brand-logo-wrap::before {
  opacity: 0.88;
}

.brand-logo {
  position: relative;
  z-index: 2;
  width: 168px;
  height: 54px;
  object-fit: contain;
  object-position: center;
  filter:
    brightness(1.72)
    contrast(1.22)
    saturate(1.25)
    drop-shadow(0 0 1px rgba(248, 251, 255, 0.7))
    drop-shadow(0 0 14px rgba(53, 184, 255, 0.42));
  mix-blend-mode: screen;
}

.main-nav,
.mobile-nav {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(248, 251, 255, 0.1);
  border-radius: 999px;
  color: rgba(246, 248, 255, 0.78);
  font-size: 0.96rem;
  font-weight: 800;
  background:
    radial-gradient(circle at 18% 50%, rgba(53, 184, 255, 0.12), transparent 38%),
    radial-gradient(circle at 84% 50%, rgba(255, 91, 110, 0.09), transparent 36%),
    rgba(8, 13, 24, 0.62);
  box-shadow:
    inset 0 0 24px rgba(255, 255, 255, 0.035),
    0 16px 48px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.mobile-nav {
  display: none;
}

.main-nav a,
.mobile-nav a {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 38px;
  padding: 0 clamp(14px, 2.2vw, 24px);
  border-radius: 999px;
  isolation: isolate;
  overflow: hidden;
}

.main-nav a::before,
.mobile-nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(248, 251, 255, 0.14), rgba(248, 251, 255, 0.035)),
    radial-gradient(circle at 20% 50%, rgba(53, 184, 255, 0.28), transparent 54%),
    radial-gradient(circle at 86% 50%, rgba(255, 91, 110, 0.2), transparent 52%);
  box-shadow:
    inset 0 0 18px rgba(255, 255, 255, 0.08),
    0 0 22px rgba(53, 184, 255, 0.22);
  opacity: 0;
  transition: opacity 180ms ease;
}

.main-nav a,
.mobile-nav a,
.language-switch button,
.site-footer button {
  transition: color 160ms ease, opacity 160ms ease;
}

.main-nav a:hover,
.main-nav a.active,
.mobile-nav a:hover,
.mobile-nav a.active,
.language-switch button:hover,
.language-switch .active,
.site-footer button:hover {
  color: var(--red);
}

.main-nav a:hover::before,
.main-nav a.active::before,
.mobile-nav a:hover::before,
.mobile-nav a.active::before {
  opacity: 1;
}

.main-nav a.active,
.mobile-nav a.active {
  color: #f8fbff;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(246, 248, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
}

.language-switch button {
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.menu-toggle {
  position: relative;
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(248, 251, 255, 0.16);
  border-radius: 50%;
  color: #f8fbff;
  background:
    radial-gradient(circle at 30% 24%, rgba(53, 184, 255, 0.22), transparent 44%),
    rgba(8, 13, 24, 0.72);
  box-shadow: 0 0 26px rgba(53, 184, 255, 0.16);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease;
}

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

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

body.nav-open .menu-toggle span:first-child {
  transform: rotate(45deg);
}

body.nav-open .menu-toggle span:last-child {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100vh;
  overflow: hidden;
  padding: 134px 80px 110px;
  background:
    radial-gradient(circle at 50% 50%, rgba(139, 124, 255, 0.22), transparent 23rem),
    radial-gradient(circle at 18% 75%, rgba(53, 184, 255, 0.16), transparent 20rem),
    radial-gradient(circle at 84% 22%, rgba(255, 91, 110, 0.18), transparent 19rem),
    linear-gradient(145deg, #060910 0%, #0c1220 48%, #111725 100%);
}

.hero,
.panel {
  scroll-snap-align: start;
}

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

.hero::before {
  opacity: 0.34;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(circle at 50% 52%, #000 0%, transparent 68%);
}

.hero::after {
  background:
    radial-gradient(circle at 50% 58%, transparent 0%, rgba(8, 11, 18, 0.2) 46%, rgba(8, 11, 18, 0.82) 100%),
    linear-gradient(180deg, transparent 70%, rgba(8, 11, 18, 0.92) 100%);
}

.hero-stage {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100vw - 176px));
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-slide {
  grid-area: 1 / 1;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 26px, 0) scale(0.98);
  transition: opacity 420ms ease, transform 520ms ease, visibility 420ms ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0) scale(1);
}

.hero-copy {
  position: relative;
  width: 100%;
  max-width: 100%;
  text-align: center;
}

.hero h1,
.hero h2 {
  margin: 0;
  color: #f8fbff;
  font-size: clamp(3.6rem, 9vw, 8.8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-shadow:
    0 0 28px rgba(53, 184, 255, 0.28),
    0 22px 80px rgba(0, 0, 0, 0.6);
}

.hero h2 {
  font-size: clamp(2.5rem, 6vw, 6.6rem);
}

.benefit-slide .hero-copy,
.media-slide .hero-copy {
  display: grid;
  min-height: min(560px, calc(100svh - 230px));
  align-items: center;
}

.benefit-slide .split-copy,
.media-slide .split-copy {
  width: min(1120px, 100%);
  margin-inline: auto;
  grid-template-columns: minmax(320px, 0.78fr) minmax(360px, 0.86fr);
}

.split-copy h2 {
  max-width: 720px;
  font-size: clamp(2.3rem, 4.15vw, 4.8rem);
  line-height: 0.98;
  text-wrap: balance;
}

.hero p {
  margin: 22px 0 32px;
  color: rgba(232, 238, 255, 0.82);
  font-size: clamp(1.35rem, 2.5vw, 2.35rem);
  font-weight: 400;
}

.split-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 5vw, 80px);
  align-items: center;
  text-align: left;
}

.split-copy p {
  max-width: 680px;
  font-size: clamp(1.02rem, 1.4vw, 1.22rem);
}

.slide-kicker {
  margin: 0 0 16px;
  color: var(--yellow);
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-next,
.section-prev {
  --arrow-accent: var(--blue);
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(248, 251, 255, 0.34);
  border-radius: 50%;
  color: rgba(248, 251, 255, 0.96);
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.18), transparent 34%),
    radial-gradient(circle at 62% 72%, rgba(53, 184, 255, 0.28), transparent 48%),
    rgba(8, 13, 24, 0.76);
  box-shadow:
    inset 0 0 20px rgba(255, 255, 255, 0.08),
    0 0 26px rgba(53, 184, 255, 0.26),
    0 18px 60px rgba(0, 0, 0, 0.34);
  isolation: isolate;
  overflow: hidden;
  backdrop-filter: blur(16px);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease, color 220ms ease;
}

.section-next::before,
.section-prev::before,
.slider-arrow::before {
  content: "";
  width: 13px;
  height: 13px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.section-next::before,
.section-prev::before {
  position: relative;
  z-index: 2;
  margin-left: -4px;
  transform: rotate(45deg);
}

.section-next::after,
.section-prev::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background:
    conic-gradient(from 120deg, transparent, rgba(53, 184, 255, 0.95), transparent 34%, rgba(255, 91, 110, 0.78), transparent 64%, rgba(255, 209, 102, 0.72), transparent);
  opacity: 0.72;
  filter: blur(8px);
  animation: neon-orbit 5.4s linear infinite;
}

.section-next:hover,
.section-next:focus-visible,
.section-prev:hover,
.section-prev:focus-visible {
  border-color: rgba(248, 251, 255, 0.72);
  color: #fff;
  box-shadow:
    inset 0 0 24px rgba(255, 255, 255, 0.1),
    0 0 36px rgba(53, 184, 255, 0.48),
    0 0 86px rgba(139, 124, 255, 0.28),
    0 20px 70px rgba(0, 0, 0, 0.42);
  transform: translateY(-4px) scale(1.04);
}

.section-next-up::before {
  margin: 4px 0 0 -1px;
  transform: rotate(-45deg);
}

.section-prev::before {
  margin: 4px 0 0 -1px;
  transform: rotate(-45deg);
}

.hero-link {
  margin-top: 6px;
}

.slider-arrow {
  position: absolute;
  top: 52%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 0;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.slider-arrow:hover {
  color: #fff;
  opacity: 1;
  transform: scale(1.12);
}

.slider-prev {
  left: clamp(18px, 4vw, 72px);
}

.slider-prev::before {
  transform: rotate(-135deg);
}

.slider-next {
  right: clamp(18px, 4vw, 72px);
}

.slide-dots {
  position: absolute;
  left: 50%;
  bottom: 42px;
  z-index: 4;
  display: flex;
  gap: 11px;
  transform: translateX(-50%);
}

.slide-dots button {
  width: 32px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.slide-dots button.active {
  width: 54px;
  background: var(--yellow);
  box-shadow: 0 0 20px rgba(255, 209, 102, 0.45);
}

.benefit-graphic,
.media-graphic {
  position: relative;
  min-height: 390px;
}

.benefit-graphic::before,
.media-graphic::before {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(53, 184, 255, 0.16), transparent 58%),
    radial-gradient(circle at 70% 34%, rgba(255, 91, 110, 0.18), transparent 34%);
  filter: blur(3px);
}

.signal {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: signal-pulse 3.8s ease-out infinite;
}

.signal-two {
  animation-delay: 1.1s;
}

.signal-three {
  animation-delay: 2.2s;
}

.orbit-card {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 138px;
  min-height: 54px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  color: #f8fbff;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28), 0 0 32px rgba(53, 184, 255, 0.12);
  backdrop-filter: blur(18px);
}

.main-card {
  left: 50%;
  top: 50%;
  width: 230px;
  min-height: 132px;
  transform: translate(-50%, -50%);
  border-color: rgba(255, 255, 255, 0.28);
}

.main-card strong {
  display: block;
  font-size: 1.55rem;
}

.main-card span {
  color: var(--muted);
  font-size: 0.86rem;
}

.card-a {
  left: 4%;
  top: 18%;
  color: var(--green);
  animation: orbit-float 7s ease-in-out infinite alternate;
}

.card-b {
  right: 0;
  top: 12%;
  color: var(--blue);
  animation: orbit-float 6.5s ease-in-out infinite alternate-reverse;
}

.card-c {
  left: 2%;
  bottom: 16%;
  color: var(--yellow);
  animation: orbit-float 7.4s ease-in-out infinite alternate;
}

.card-d {
  right: 6%;
  bottom: 10%;
  color: var(--red);
  animation: orbit-float 6.8s ease-in-out infinite alternate-reverse;
}

.media-graphic {
  isolation: isolate;
}

.device-frame {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(320px, 84%);
  height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 44%),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34), inset 0 0 40px rgba(53, 184, 255, 0.08);
  transform: translate(-50%, -50%) rotate(-4deg);
  backdrop-filter: blur(18px);
}

.device-frame span {
  position: absolute;
  left: 28px;
  right: 28px;
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.device-frame span:nth-child(1) {
  top: 34px;
  width: 38%;
  background: var(--blue);
}

.device-frame span:nth-child(2) {
  top: 78px;
}

.device-frame span:nth-child(3) {
  top: 116px;
  width: 64%;
}

.media-tile {
  position: absolute;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 26px;
  color: #f8fbff;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  animation: orbit-float 7s ease-in-out infinite alternate;
}

.tile-site {
  left: 8%;
  top: 8%;
  color: var(--blue);
}

.tile-social {
  right: 8%;
  top: 12%;
  color: var(--red);
  animation-delay: -1.5s;
}

.tile-video {
  left: 2%;
  bottom: 9%;
  color: var(--yellow);
  animation-delay: -2.6s;
}

.tile-photo {
  right: 4%;
  bottom: 4%;
  color: var(--green);
  animation-delay: -3.8s;
}

.hero-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.word-cloud {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.word-particle {
  position: absolute;
  display: block;
  color: rgba(231, 241, 255, 0.22);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  will-change: transform, opacity;
  text-shadow: 0 0 18px rgba(53, 184, 255, 0.25);
  animation: float-word 12s ease-in-out infinite alternate;
}

.orb,
.ring,
.line,
.dot {
  position: absolute;
  display: block;
}

.orb {
  border-radius: 999px;
  filter: saturate(112%);
}

.orb-blue {
  right: 13%;
  top: 19%;
  width: 210px;
  height: 210px;
  background: rgba(53, 184, 255, 0.18);
  box-shadow: 0 0 120px rgba(53, 184, 255, 0.36);
  animation: drift-blue 12s ease-in-out infinite alternate;
}

.orb-red {
  left: 10%;
  bottom: 17%;
  width: 165px;
  height: 165px;
  background: rgba(255, 91, 110, 0.18);
  box-shadow: 0 0 110px rgba(255, 91, 110, 0.28);
  animation: drift-red 14s ease-in-out infinite alternate;
}

.orb-yellow {
  right: 21%;
  bottom: 12%;
  width: 96px;
  height: 96px;
  background: rgba(255, 209, 102, 0.55);
  box-shadow: 0 0 90px rgba(255, 209, 102, 0.3);
  animation: drift-yellow 10s ease-in-out infinite alternate;
}

.ring {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  box-shadow: inset 0 0 28px rgba(53, 184, 255, 0.08);
}

.ring-one {
  left: 17%;
  top: 21%;
  width: 130px;
  height: 130px;
  animation: slow-spin 20s linear infinite;
}

.ring-two {
  right: 8%;
  bottom: 25%;
  width: 72px;
  height: 72px;
  animation: slow-spin 16s linear infinite reverse;
}

.line {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform-origin: left center;
}

.line-one {
  left: 23%;
  top: 34%;
  width: 210px;
  transform: rotate(-24deg);
}

.line-two {
  right: 17%;
  top: 58%;
  width: 190px;
  transform: rotate(35deg);
}

.dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
}

.dot-one {
  left: 28%;
  top: 28%;
  background: var(--blue);
  animation: pulse-dot 2.8s ease-in-out infinite;
}

.dot-two {
  right: 28%;
  top: 37%;
  background: var(--red);
  animation: pulse-dot 3.2s ease-in-out infinite;
}

.dot-three {
  left: 39%;
  bottom: 22%;
  background: var(--yellow);
  animation: pulse-dot 2.4s ease-in-out infinite;
}

@keyframes float-word {
  from {
    translate: -6px -8px;
  }

  to {
    translate: 7px 9px;
  }
}

@keyframes drift-blue {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(-28px, 18px, 0) scale(1.08);
  }
}

@keyframes drift-red {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(24px, -22px, 0) scale(0.94);
  }
}

@keyframes drift-yellow {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(18px, 24px, 0);
  }
}

@keyframes slow-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse-dot {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.8);
  }
}

@keyframes signal-pulse {
  0% {
    opacity: 0.72;
    transform: translate(-50%, -50%) scale(0.62);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.38);
  }
}

@keyframes orbit-float {
  from {
    transform: translate3d(-8px, 10px, 0) rotate(-2deg);
  }

  to {
    transform: translate3d(10px, -12px, 0) rotate(3deg);
  }
}

@keyframes code-scanline {
  0%,
  8% {
    opacity: 0;
    left: -14%;
  }

  12% {
    opacity: 1;
  }

  38% {
    opacity: 1;
    left: 114%;
  }

  50% {
    opacity: 0.85;
    left: 114%;
  }

  62% {
    opacity: 1;
  }

  84% {
    opacity: 1;
    left: -14%;
  }

  92%,
  100% {
    opacity: 0;
    left: -14%;
  }
}

@keyframes card-face-to-code {
  0%,
  10%,
  92%,
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }

  24%,
  64% {
    opacity: 0.06;
    filter: blur(2px) saturate(0.45);
    transform: translate3d(0, 8px, 0);
  }

  78% {
    opacity: 0.72;
    filter: blur(0.5px);
    transform: translate3d(0, -3px, 0);
  }
}

@keyframes code-layer-reveal {
  0%,
  9%,
  92%,
  100% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transform: translate3d(0, 10px, 0);
  }

  18%,
  64% {
    opacity: 0.96;
    clip-path: inset(0 0 0 0);
    transform: translate3d(0, 0, 0);
  }

  82% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes code-sparks {
  0%,
  9%,
  88%,
  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0);
  }

  18%,
  72% {
    opacity: 0.62;
    transform: translate3d(24px, -18px, 0);
  }
}

@keyframes language-wipe {
  0% {
    opacity: 0;
    transform: translateX(-110%) skewX(-9deg);
  }

  18%,
  66% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(110%) skewX(-9deg);
  }
}

@keyframes language-content-shift {
  0%,
  100% {
    filter: none;
    transform: translate3d(0, 0, 0);
  }

  34% {
    filter: blur(3px) hue-rotate(26deg) saturate(1.35);
    transform: translate3d(0, 10px, 0) scale(0.992);
  }

  62% {
    filter: blur(1px) hue-rotate(-18deg) saturate(1.16);
    transform: translate3d(0, -4px, 0) scale(1.002);
  }
}

@keyframes mobile-language-wipe {
  0% {
    opacity: 0;
    transform: translate3d(-105%, 0, 0) skewX(-10deg) scale(1.08);
  }

  18% {
    opacity: 1;
  }

  48% {
    opacity: 0.92;
    transform: translate3d(0, 0, 0) skewX(-6deg) scale(1.14);
  }

  100% {
    opacity: 0;
    transform: translate3d(105%, 0, 0) skewX(-10deg) scale(1.08);
  }
}

@keyframes lab-glow-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes lab-orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes metric-lift {
  from {
    transform: translate3d(0, 6px, 0);
  }

  to {
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes lane-scan {
  0% {
    transform: translateX(-120%);
  }

  50% {
    transform: translateX(360%);
  }

  100% {
    transform: translateX(-120%);
  }
}

@keyframes network-dash {
  to {
    stroke-dashoffset: -180;
  }
}

@keyframes logo-sheen {
  0%,
  58% {
    transform: translateX(-130%);
  }

  82%,
  100% {
    transform: translateX(130%);
  }
}

@keyframes neon-orbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes phone-tap {
  0%,
  56%,
  100% {
    opacity: 0.82;
    transform: translate3d(0, 0, 0) scale(1);
  }

  64%,
  72% {
    opacity: 1;
    transform: translate3d(-18px, -18px, 0) scale(0.88);
  }

  80% {
    transform: translate3d(-10px, -10px, 0) scale(1.06);
  }
}

.panel {
  position: relative;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: center;
  padding: clamp(80px, 10vw, 140px) clamp(24px, 8vw, 120px);
  background:
    radial-gradient(circle at 84% 0%, rgba(53, 184, 255, 0.08), transparent 22rem),
    linear-gradient(180deg, #0a0f19, #0c1220);
  border-top: 1px solid var(--line);
}

.segment-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: clamp(34px, 5vw, 72px);
  pointer-events: none;
}

.segment-actions .section-next,
.segment-actions .section-prev {
  pointer-events: auto;
}

.panel-kicker {
  margin-bottom: 18px;
  color: var(--red);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel h2 {
  max-width: 980px;
  margin: 0 0 34px;
  color: #f8fbff;
  font-size: clamp(2.2rem, 5.5vw, 5.6rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
}

.service-network-copy {
  max-width: 820px;
  margin-bottom: 42px;
}

.service-network {
  position: relative;
  min-height: 540px;
  margin: 42px 0 46px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 48%, rgba(139, 124, 255, 0.12), transparent 22rem),
    radial-gradient(circle at 12% 18%, rgba(53, 184, 255, 0.08), transparent 18rem),
    rgba(255, 255, 255, 0.018);
  overflow: hidden;
}

.service-network::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 80px 80px;
}

.network-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.44;
}

.network-lines path {
  fill: none;
  stroke: rgba(226, 232, 255, 0.18);
  stroke-width: 2;
  stroke-dasharray: 8 14;
  animation: network-dash 18s linear infinite;
}

.network-hub {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 252px;
  height: 104px;
  padding: 14px 24px;
  border: 1px solid rgba(53, 184, 255, 0.28);
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 50%, rgba(53, 184, 255, 0.32), transparent 48%),
    radial-gradient(circle at 86% 50%, rgba(139, 124, 255, 0.26), transparent 42%),
    rgba(8, 13, 24, 0.9);
  box-shadow:
    inset 0 0 34px rgba(255, 255, 255, 0.04),
    0 0 50px rgba(53, 184, 255, 0.26),
    0 0 110px rgba(139, 124, 255, 0.16),
    0 28px 90px rgba(0, 0, 0, 0.34);
  transform: translate(-50%, -50%);
  transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.network-hub::before,
.network-hub::after {
  content: "";
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: inherit;
  animation: signal-pulse 4s ease-out infinite;
}

.network-hub::before {
  background: conic-gradient(from 120deg, transparent, rgba(53, 184, 255, 0.22), transparent, rgba(255, 91, 110, 0.18), transparent);
  filter: blur(10px);
  animation: neon-orbit 7s linear infinite;
}

.network-hub::after {
  animation-delay: 1.7s;
}

.network-hub:hover {
  border-color: rgba(255, 255, 255, 0.44);
  box-shadow:
    inset 0 0 36px rgba(255, 255, 255, 0.08),
    0 0 54px rgba(53, 184, 255, 0.46),
    0 0 130px rgba(255, 91, 110, 0.18),
    0 30px 100px rgba(0, 0, 0, 0.4);
  transform: translate(-50%, -50%) scale(1.03);
}

.network-hub img {
  position: relative;
  z-index: 2;
  width: 212px;
  height: 72px;
  object-fit: contain;
  object-position: center;
  filter:
    brightness(1.72)
    contrast(1.22)
    saturate(1.25)
    drop-shadow(0 0 1px rgba(248, 251, 255, 0.72))
    drop-shadow(0 0 18px rgba(53, 184, 255, 0.44));
  mix-blend-mode: screen;
}

.network-node {
  --accent: var(--blue);
  --accent-rgb: 53, 184, 255;
  --node-x: 50%;
  --node-y: 50%;
  position: absolute;
  z-index: 2;
  display: grid;
  grid-template-rows: auto auto minmax(44px, 1fr) auto;
  justify-items: center;
  align-items: center;
  width: 162px;
  min-height: 158px;
  padding: 15px 13px 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 30px 30px 46px 46px;
  color: rgba(248, 251, 255, 0.86);
  text-align: center;
  background:
    radial-gradient(circle at var(--node-x) var(--node-y), rgba(var(--accent-rgb), 0.24), transparent 42%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.032) 48%, rgba(255, 255, 255, 0.065));
  box-shadow:
    inset 0 0 38px rgba(255, 255, 255, 0.04),
    0 18px 70px rgba(0, 0, 0, 0.26);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease, background 220ms ease;
  backdrop-filter: blur(16px);
}

.network-node:hover,
.network-node:focus-visible {
  border-color: rgba(var(--accent-rgb), 0.9);
  box-shadow:
    inset 0 0 38px rgba(var(--accent-rgb), 0.14),
    0 0 42px rgba(var(--accent-rgb), 0.42),
    0 28px 90px rgba(0, 0, 0, 0.34);
  transform: translate(-50%, -50%) scale(1.06);
}

.network-node::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 11px;
  left: 18px;
  height: 31px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.1);
}

.node-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 9px;
  border-radius: 13px;
  color: var(--accent);
  background: rgba(5, 8, 14, 0.5);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 0 22px rgba(var(--accent-rgb), 0.2);
}

.node-eyebrow {
  color: rgba(248, 251, 255, 0.52);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.network-node strong {
  display: grid;
  place-items: center;
  max-width: 100%;
  margin-top: 3px;
  color: rgba(248, 251, 255, 0.88);
  font-size: clamp(0.62rem, 0.74vw, 0.72rem);
  line-height: 1.12;
  text-align: center;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.node-plus {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-top: 12px;
  color: rgba(248, 251, 255, 0.88);
  font-size: 1.15rem;
  font-weight: 800;
}

.node-social {
  --accent: #35b8ff;
  --accent-rgb: 53, 184, 255;
  left: 18%;
  top: 22%;
}

.node-landing {
  --accent: #ff5b6e;
  --accent-rgb: 255, 91, 110;
  left: 50%;
  top: 22%;
}

.node-websites {
  --accent: #ffd166;
  --accent-rgb: 255, 209, 102;
  left: 82%;
  top: 22%;
}

.node-websites,
.node-values {
  width: 166px;
}

.node-email {
  --accent: #55e6a5;
  --accent-rgb: 85, 230, 165;
  left: 18%;
  top: 78%;
}

.node-values {
  --accent: #8b7cff;
  --accent-rgb: 139, 124, 255;
  left: 50%;
  top: 78%;
}

.node-security {
  --accent: #ff9f43;
  --accent-rgb: 255, 159, 67;
  left: 82%;
  top: 78%;
}

.service-list,
.build-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
}

.service-list article,
.build-steps div {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 230px;
  padding: 28px 24px 24px;
  border-top: 2px solid rgba(255, 255, 255, 0.42);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.code-card > :not(.card-code) {
  position: relative;
  z-index: 2;
  transition: opacity 360ms ease, filter 360ms ease, transform 360ms ease;
}

.code-card.is-code-sweeping > :not(.card-code) {
  opacity: 0.14;
  filter: blur(1.4px) saturate(0.55);
  transform: translate3d(0, 6px, 0);
}

.code-card::before {
  content: "";
  position: absolute;
  top: -18%;
  bottom: -18%;
  left: -14%;
  z-index: 5;
  width: 3px;
  background:
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.95), transparent),
    linear-gradient(180deg, transparent, var(--blue), var(--red), transparent);
  box-shadow:
    0 0 18px rgba(53, 184, 255, 0.82),
    0 0 42px rgba(139, 124, 255, 0.58),
    0 0 86px rgba(255, 91, 110, 0.32);
  opacity: var(--scan-opacity, 0);
  left: var(--scan-x, -14%);
  transition: left 80ms linear, opacity 220ms ease;
}

.code-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  opacity: 0;
  background:
    radial-gradient(circle at 18% 42%, rgba(53, 184, 255, 0.72) 0 1px, transparent 2px),
    radial-gradient(circle at 34% 18%, rgba(255, 209, 102, 0.65) 0 1px, transparent 2px),
    radial-gradient(circle at 48% 62%, rgba(255, 91, 110, 0.7) 0 1px, transparent 2px),
    radial-gradient(circle at 63% 35%, rgba(85, 230, 165, 0.68) 0 1px, transparent 2px),
    radial-gradient(circle at 78% 74%, rgba(139, 124, 255, 0.76) 0 1px, transparent 2px);
  background-size: 88px 88px, 64px 64px, 76px 76px, 54px 54px, 92px 92px;
  mix-blend-mode: screen;
  pointer-events: none;
  opacity: var(--spark-opacity, 0);
  transform: translate3d(0, 0, 0);
  transition: opacity 260ms ease, transform 260ms ease;
}

.card-code {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: block;
  margin: 0;
  padding: 24px;
  overflow: hidden;
  border-radius: inherit;
  color: rgba(226, 232, 255, 0.78);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035), transparent 38%),
    rgba(5, 8, 14, 0.9);
  font-family: "Cascadia Mono", Consolas, "SFMono-Regular", monospace;
  font-size: 0.76rem;
  line-height: 1.55;
  text-align: left;
  white-space: pre-wrap;
  opacity: var(--code-opacity, 0);
  clip-path: inset(0 var(--code-hidden, 100%) 0 0);
  text-shadow: 0 0 12px rgba(53, 184, 255, 0.24);
  transform: translate3d(0, var(--code-rise, 10px), 0);
  transition: opacity 300ms ease, clip-path 90ms linear, transform 300ms ease;
}

.card-code code {
  font: inherit;
}

.code-card.is-code-sweeping {
  --scan-opacity: 1;
  --spark-opacity: 0.58;
  --code-opacity: 0.96;
  --code-rise: 0px;
}

.code-card.is-code-sweeping::after {
  transform: translate3d(22px, -16px, 0);
}

.service-list span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--blue);
  font-weight: 700;
}

.service-list h3,
.build-steps strong {
  display: block;
  margin: 0 0 12px;
  color: #f8fbff;
  font-size: 1.3rem;
  font-weight: 700;
}

.service-list p,
.build-steps p,
.wide-copy {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.experience-panel .panel-kicker {
  color: var(--green);
}

.build-panel,
.contact-panel {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 91, 110, 0.14), transparent 24rem),
    radial-gradient(circle at 76% 16%, rgba(85, 230, 165, 0.12), transparent 24rem),
    radial-gradient(circle at 72% 76%, rgba(53, 184, 255, 0.16), transparent 28rem),
    linear-gradient(160deg, #111827, #080b12);
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.58fr) minmax(620px, 1fr);
  gap: clamp(34px, 5vw, 92px);
  align-items: center;
}

.contact-copy {
  max-width: 920px;
}

.contact-devices {
  display: grid;
  grid-template-columns: minmax(230px, 0.55fr) minmax(360px, 0.86fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
}

.phone-contact {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 548px;
}

.phone-contact::before,
.phone-contact::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.phone-contact::before {
  width: 390px;
  height: 390px;
  background: radial-gradient(circle, rgba(53, 184, 255, 0.28), transparent 62%);
  filter: blur(12px);
  animation: signal-pulse 4.8s ease-out infinite;
}

.phone-contact::after {
  width: 520px;
  height: 220px;
  background: radial-gradient(ellipse, rgba(255, 91, 110, 0.18), transparent 66%);
  transform: rotate(-18deg);
}

.phone-frame {
  position: relative;
  z-index: 1;
  width: min(304px, 100%);
  min-height: 536px;
  padding: 16px;
  border: 1px solid rgba(248, 251, 255, 0.18);
  border-radius: 46px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.035) 38%, rgba(255, 255, 255, 0.09)),
    #070b13;
  box-shadow:
    inset 0 0 34px rgba(255, 255, 255, 0.06),
    0 0 60px rgba(53, 184, 255, 0.2),
    0 38px 110px rgba(0, 0, 0, 0.42);
  transform: rotate(2deg);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.phone-contact:hover .phone-frame {
  box-shadow:
    inset 0 0 36px rgba(255, 255, 255, 0.08),
    0 0 76px rgba(53, 184, 255, 0.32),
    0 0 132px rgba(255, 91, 110, 0.16),
    0 42px 120px rgba(0, 0, 0, 0.46);
  transform: rotate(0deg) translateY(-6px);
}

.phone-speaker {
  position: absolute;
  left: 50%;
  top: 18px;
  z-index: 3;
  width: 76px;
  height: 7px;
  border-radius: 999px;
  background: rgba(248, 251, 255, 0.22);
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  display: flex;
  min-height: 504px;
  flex-direction: column;
  padding: 44px 22px 24px;
  border: 1px solid rgba(248, 251, 255, 0.1);
  border-radius: 34px;
  background:
    radial-gradient(circle at 30% 20%, rgba(53, 184, 255, 0.24), transparent 24%),
    radial-gradient(circle at 80% 68%, rgba(255, 91, 110, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(14, 21, 36, 0.96), rgba(6, 10, 18, 0.96));
  overflow: hidden;
}

.phone-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 34px 34px;
}

.phone-topline,
.phone-logo-orb,
.phone-prompt,
.phone-service-chips,
.phone-mail-button,
.phone-tap {
  position: relative;
  z-index: 1;
}

.phone-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(248, 251, 255, 0.68);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.phone-topline span:last-child {
  color: var(--green);
}

.phone-logo-orb {
  display: grid;
  place-items: center;
  width: 136px;
  height: 136px;
  margin: 34px auto 24px;
  border: 1px solid rgba(53, 184, 255, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 30%, rgba(248, 251, 255, 0.18), transparent 34%),
    radial-gradient(circle at 72% 68%, rgba(139, 124, 255, 0.28), transparent 46%),
    rgba(7, 12, 22, 0.82);
  box-shadow:
    inset 0 0 28px rgba(255, 255, 255, 0.06),
    0 0 44px rgba(53, 184, 255, 0.3);
}

.phone-logo-orb img {
  width: 112px;
  height: 58px;
  object-fit: contain;
  filter:
    brightness(1.84)
    contrast(1.24)
    saturate(1.25)
    drop-shadow(0 0 1px rgba(248, 251, 255, 0.72))
    drop-shadow(0 0 18px rgba(53, 184, 255, 0.5));
  mix-blend-mode: screen;
}

.phone-prompt {
  max-width: 250px;
  margin: 0 auto 20px;
  color: #f8fbff;
  font-size: 1.36rem;
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
}

.phone-service-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: auto;
}

.phone-service-chips span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(248, 251, 255, 0.12);
  border-radius: 999px;
  color: rgba(226, 232, 245, 0.76);
  font-size: 0.68rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.04);
}

.laptop-form {
  position: relative;
  display: block;
  width: min(520px, 100%);
  margin-inline: auto;
  color: rgba(248, 251, 255, 0.9);
}

.laptop-form::after {
  content: "";
  position: absolute;
  right: 6%;
  bottom: -18px;
  left: 6%;
  height: 26px;
  border: 1px solid rgba(248, 251, 255, 0.12);
  border-radius: 0 0 28px 28px;
  background:
    linear-gradient(90deg, rgba(53, 184, 255, 0.18), rgba(255, 91, 110, 0.16)),
    rgba(9, 14, 25, 0.9);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
}

.laptop-screen {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(248, 251, 255, 0.14);
  border-radius: 28px 28px 14px 14px;
  background:
    radial-gradient(circle at 16% 0%, rgba(53, 184, 255, 0.22), transparent 32%),
    radial-gradient(circle at 100% 38%, rgba(255, 91, 110, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(14, 20, 34, 0.96), rgba(7, 11, 19, 0.96));
  box-shadow:
    inset 0 0 34px rgba(255, 255, 255, 0.05),
    0 0 54px rgba(53, 184, 255, 0.16),
    0 30px 90px rgba(0, 0, 0, 0.34);
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.laptop-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
}

.laptop-topbar,
.form-kicker,
.laptop-form h3,
.laptop-form label,
.mail-script,
.laptop-submit,
.form-note {
  position: relative;
  z-index: 1;
}

.laptop-topbar {
  display: flex;
  gap: 7px;
  margin-bottom: 4px;
}

.laptop-topbar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 14px rgba(255, 91, 110, 0.7);
}

.laptop-topbar span:nth-child(2) {
  background: var(--yellow);
  box-shadow: 0 0 14px rgba(255, 209, 102, 0.72);
}

.laptop-topbar span:nth-child(3) {
  background: var(--green);
  box-shadow: 0 0 14px rgba(85, 230, 165, 0.66);
}

.form-kicker {
  width: max-content;
  padding: 4px 10px;
  border: 1px solid rgba(53, 184, 255, 0.28);
  border-radius: 999px;
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(53, 184, 255, 0.08);
}

.laptop-form h3 {
  margin: 0 0 4px;
  color: #f8fbff;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.05;
}

.laptop-form label {
  display: grid;
  gap: 7px;
  color: rgba(226, 232, 245, 0.74);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.laptop-form input,
.laptop-form select,
.laptop-form textarea {
  width: 100%;
  border: 1px solid rgba(248, 251, 255, 0.12);
  border-radius: 10px;
  color: #f8fbff;
  background: rgba(5, 9, 16, 0.68);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0;
  outline: none;
  text-transform: none;
  box-shadow: inset 0 0 22px rgba(0, 0, 0, 0.18);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.laptop-form input,
.laptop-form select {
  min-height: 42px;
  padding: 0 12px;
}

.laptop-form textarea {
  resize: vertical;
  min-height: 92px;
  padding: 12px;
}

.laptop-form input:focus,
.laptop-form select:focus,
.laptop-form textarea:focus {
  border-color: rgba(53, 184, 255, 0.58);
  background: rgba(8, 13, 24, 0.86);
  box-shadow:
    inset 0 0 24px rgba(53, 184, 255, 0.08),
    0 0 24px rgba(53, 184, 255, 0.18);
}

.mail-script {
  min-height: 112px;
  margin: 4px 0 0;
  padding: 14px;
  border: 1px solid rgba(85, 230, 165, 0.16);
  border-radius: 10px;
  color: rgba(85, 230, 165, 0.9);
  background: rgba(0, 0, 0, 0.28);
  font-size: 0.78rem;
  line-height: 1.45;
  overflow: hidden;
}

.laptop-submit {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 48px;
  border: 1px solid rgba(53, 184, 255, 0.42);
  border-radius: 999px;
  color: #f8fbff;
  background:
    radial-gradient(circle at 18% 50%, rgba(53, 184, 255, 0.28), transparent 44%),
    radial-gradient(circle at 88% 50%, rgba(255, 91, 110, 0.2), transparent 38%),
    rgba(8, 13, 24, 0.92);
  font-weight: 800;
  cursor: pointer;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.laptop-submit::before {
  content: "";
  position: absolute;
  inset: -70%;
  background: conic-gradient(from 90deg, transparent, rgba(53, 184, 255, 0.56), transparent, rgba(255, 209, 102, 0.42), transparent);
  opacity: 0.58;
  filter: blur(12px);
  animation: neon-orbit 5.8s linear infinite;
}

.laptop-submit span {
  position: relative;
  z-index: 1;
}

.laptop-submit:hover,
.laptop-submit:focus-visible {
  border-color: rgba(248, 251, 255, 0.54);
  box-shadow:
    0 0 34px rgba(53, 184, 255, 0.32),
    0 0 74px rgba(255, 91, 110, 0.12);
  transform: translateY(-2px);
}

.form-note {
  margin: 0;
  color: rgba(226, 232, 245, 0.52);
  font-size: 0.78rem;
}

.laptop-form.is-sending .mail-script {
  border-color: rgba(85, 230, 165, 0.5);
  box-shadow: 0 0 28px rgba(85, 230, 165, 0.2);
}

.experience-panel {
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 38%, rgba(139, 124, 255, 0.13), transparent 24rem),
    radial-gradient(circle at 92% 78%, rgba(85, 230, 165, 0.09), transparent 22rem),
    linear-gradient(180deg, #080d17, #0a101c);
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: clamp(40px, 7vw, 118px);
  align-items: center;
}

.experience-copy {
  position: relative;
  z-index: 2;
}

.experience-lab {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), transparent 38%),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.28), inset 0 0 70px rgba(53, 184, 255, 0.05);
  overflow: hidden;
  backdrop-filter: blur(18px);
}

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

.experience-lab::before {
  inset: 0;
  opacity: 0.22;
  background:
    linear-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px);
  background-size: 38px 38px;
}

.experience-lab::after {
  inset: -20%;
  background: conic-gradient(from 120deg, transparent, rgba(53, 184, 255, 0.2), transparent, rgba(255, 91, 110, 0.16), transparent);
  animation: lab-glow-spin 15s linear infinite;
}

.lab-orbit {
  position: absolute;
  inset: 52px;
  z-index: 1;
}

.lab-orbit span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  animation: lab-orbit-spin 18s linear infinite;
}

.lab-orbit span:nth-child(2) {
  inset: 46px;
  border-color: rgba(53, 184, 255, 0.22);
  animation-duration: 13s;
  animation-direction: reverse;
}

.lab-orbit span:nth-child(3) {
  inset: 92px;
  border-color: rgba(255, 209, 102, 0.2);
  animation-duration: 9s;
}

.lab-orbit span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 24px rgba(53, 184, 255, 0.9);
}

.lab-core {
  position: absolute;
  left: 50%;
  top: 42%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: min(260px, 62%);
  min-height: 150px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(53, 184, 255, 0.18), transparent 76%),
    rgba(8, 11, 18, 0.82);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32), 0 0 44px rgba(139, 124, 255, 0.16);
  transform: translate(-50%, -50%);
}

.lab-label {
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lab-core strong {
  margin-top: 12px;
  color: #f8fbff;
  font-size: clamp(1.45rem, 2.5vw, 2.05rem);
  line-height: 1.1;
}

.proof-metrics {
  position: absolute;
  inset: auto 24px 106px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.proof-metrics div {
  min-height: 112px;
  padding: 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  animation: metric-lift 5.6s ease-in-out infinite alternate;
}

.proof-metrics div:nth-child(2) {
  animation-delay: -1.4s;
}

.proof-metrics div:nth-child(3) {
  animation-delay: -2.8s;
}

.proof-metrics strong {
  display: block;
  color: #f8fbff;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
}

.proof-metrics span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.proof-lane {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.proof-lane::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(53, 184, 255, 0.26), transparent);
  animation: lane-scan 4.8s ease-in-out infinite;
}

.proof-lane span {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  min-height: 44px;
  color: rgba(248, 251, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
}

.build-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.build-steps div:nth-child(2) {
  border-color: var(--red);
}

.build-steps div:nth-child(3) {
  border-color: var(--yellow);
}

.build-steps div:nth-child(4) {
  border-color: var(--green);
}

.contact-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  width: 100%;
  margin-top: 28px;
  padding: 0 22px;
  border: 1px solid rgba(53, 184, 255, 0.54);
  border-radius: 999px;
  color: #f8fbff;
  font-weight: 800;
  background:
    radial-gradient(circle at 20% 50%, rgba(53, 184, 255, 0.26), transparent 42%),
    radial-gradient(circle at 88% 50%, rgba(255, 91, 110, 0.2), transparent 36%),
    rgba(8, 13, 24, 0.86);
  box-shadow:
    inset 0 0 24px rgba(255, 255, 255, 0.06),
    0 0 34px rgba(53, 184, 255, 0.22);
  isolation: isolate;
  overflow: hidden;
  text-shadow: 0 0 14px rgba(53, 184, 255, 0.5);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.contact-button::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 160deg, transparent, rgba(53, 184, 255, 0.52), transparent 36%, rgba(255, 91, 110, 0.38), transparent 62%, rgba(255, 209, 102, 0.42), transparent);
  opacity: 0.42;
  filter: blur(14px);
  animation: neon-orbit 7s linear infinite;
}

.contact-button::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: inherit;
  border: 1px solid rgba(248, 251, 255, 0.08);
}

.contact-button span {
  position: relative;
  z-index: 1;
}

.contact-button:hover {
  border-color: rgba(248, 251, 255, 0.62);
  color: #fff;
  box-shadow:
    inset 0 0 28px rgba(255, 255, 255, 0.1),
    0 0 44px rgba(53, 184, 255, 0.42),
    0 0 86px rgba(255, 91, 110, 0.16);
  transform: translateY(-3px);
}

.contact-button:active {
  transform: translateY(2px) scale(0.98);
}

.phone-tap {
  position: absolute;
  right: 38px;
  bottom: 35px;
  width: 28px;
  height: 28px;
  border: 2px solid rgba(248, 251, 255, 0.86);
  border-radius: 50%;
  background: rgba(248, 251, 255, 0.18);
  box-shadow: 0 0 24px rgba(53, 184, 255, 0.58);
  animation: phone-tap 2.8s ease-in-out infinite;
}

.phone-tap::after {
  content: "";
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(53, 184, 255, 0.48);
  border-radius: inherit;
  animation: signal-pulse 2.8s ease-out infinite;
}

.legal-card {
  position: relative;
  min-height: 240px;
  padding: 28px;
  border: 1px solid rgba(248, 251, 255, 0.12);
  border-radius: 8px;
  color: rgba(248, 251, 255, 0.9);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.025) 50%, rgba(255, 255, 255, 0.055)),
    rgba(8, 12, 22, 0.74);
  box-shadow:
    inset 0 0 42px rgba(255, 255, 255, 0.035),
    0 28px 80px rgba(0, 0, 0, 0.26);
  overflow: hidden;
  backdrop-filter: blur(18px);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.legal-card::before {
  content: "";
  position: absolute;
  inset: -45%;
  background: conic-gradient(from 140deg, transparent, rgba(53, 184, 255, 0.16), transparent, rgba(255, 91, 110, 0.12), transparent, rgba(255, 209, 102, 0.14), transparent);
  opacity: 0;
  filter: blur(10px);
  transform: rotate(0deg);
  transition: opacity 240ms ease;
}

.legal-card:hover,
.legal-card:focus-within {
  border-color: rgba(248, 251, 255, 0.34);
  box-shadow:
    inset 0 0 44px rgba(255, 255, 255, 0.06),
    0 0 42px rgba(53, 184, 255, 0.16),
    0 0 92px rgba(255, 91, 110, 0.12),
    0 34px 92px rgba(0, 0, 0, 0.32);
  transform: translateY(-4px);
}

.legal-card:hover::before,
.legal-card:focus-within::before {
  opacity: 1;
  animation: neon-orbit 8s linear infinite;
}

.legal-card span,
.legal-card strong,
.legal-card p,
.legal-card a {
  position: relative;
  z-index: 1;
}

.legal-card span {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  min-height: 30px;
  margin-bottom: 28px;
  padding: 0 12px;
  border: 1px solid rgba(53, 184, 255, 0.3);
  border-radius: 999px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.legal-card strong {
  display: block;
  margin-bottom: 14px;
  color: #f8fbff;
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  line-height: 1.08;
}

.legal-card p {
  margin: 0;
  color: rgba(226, 232, 245, 0.74);
  white-space: pre-line;
}

.legal-card a {
  color: #f8fbff;
  font-weight: 800;
}

.modal-open {
  overflow: hidden;
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  align-items: center;
  padding: clamp(18px, 4vw, 56px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.service-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.service-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 22%, rgba(53, 184, 255, 0.12), transparent 26rem),
    rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
}

.service-dialog {
  --modal-x: 50%;
  --modal-y: 50%;
  position: relative;
  width: min(640px, 100%);
  min-height: 560px;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px 24px 34px 34px;
  color: #f8fbff;
  background:
    radial-gradient(circle at var(--modal-x) var(--modal-y), rgba(53, 184, 255, 0.2), transparent 34%),
    radial-gradient(circle at 18% 92%, rgba(255, 209, 102, 0.2), transparent 24rem),
    linear-gradient(150deg, rgba(16, 22, 38, 0.98), rgba(10, 15, 26, 0.92));
  box-shadow:
    0 40px 140px rgba(0, 0, 0, 0.52),
    inset 0 0 70px rgba(255, 255, 255, 0.04),
    0 0 60px rgba(139, 124, 255, 0.18);
  outline: none;
  transform: translate3d(-26px, 18px, 0) scale(0.96);
  transition: transform 320ms ease;
  overflow: hidden;
}

.service-modal.open .service-dialog {
  transform: translate3d(0, 0, 0) scale(1);
}

.service-dialog::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

.service-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  font-size: 1.2rem;
  font-weight: 800;
  cursor: pointer;
}

.service-modal-close:hover {
  color: #08101b;
  background: #f8fbff;
}

.modal-chip {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 14px;
  border: 1px solid rgba(139, 124, 255, 0.55);
  border-radius: 999px;
  color: #b7c4ff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-dialog h2 {
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin: 28px 0 22px;
  color: #f8fbff;
  font-size: clamp(1.9rem, 3.2vw, 2.65rem);
  line-height: 1.04;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.service-modal-subtitle {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  color: #f8fbff;
  font-size: 1.16rem;
}

.service-modal-text {
  position: relative;
  z-index: 1;
  max-width: 440px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 1.05rem;
}

.service-modal-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-modal-list li {
  position: relative;
  padding-left: 20px;
  color: rgba(248, 251, 255, 0.82);
  font-weight: 700;
}

.service-modal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 16px rgba(53, 184, 255, 0.8);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px clamp(22px, 5vw, 78px);
  color: rgba(232, 238, 255, 0.56);
  font-size: 0.86rem;
  border-top: 1px solid var(--line);
  background: #080b12;
}

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

.site-footer button {
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 82;
  display: grid;
  align-items: center;
  padding: clamp(18px, 4vw, 56px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.legal-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.legal-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 209, 102, 0.1), transparent 24rem),
    radial-gradient(circle at 76% 42%, rgba(53, 184, 255, 0.12), transparent 28rem),
    rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(14px);
}

.legal-dialog {
  --modal-x: 50%;
  --modal-y: 50%;
  position: relative;
  width: min(880px, 100%);
  max-height: min(82vh, 760px);
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(248, 251, 255, 0.15);
  border-radius: 24px;
  color: #f8fbff;
  background:
    radial-gradient(circle at var(--modal-x) var(--modal-y), rgba(53, 184, 255, 0.18), transparent 34%),
    radial-gradient(circle at 12% 100%, rgba(255, 209, 102, 0.14), transparent 24rem),
    linear-gradient(150deg, rgba(16, 22, 38, 0.98), rgba(8, 12, 22, 0.94));
  box-shadow:
    0 40px 140px rgba(0, 0, 0, 0.52),
    inset 0 0 70px rgba(255, 255, 255, 0.04),
    0 0 70px rgba(53, 184, 255, 0.14);
  outline: none;
  overflow: auto;
  transform: translate3d(0, 18px, 0) scale(0.96);
  transition: transform 320ms ease;
}

.legal-modal.open .legal-dialog {
  transform: translate3d(0, 0, 0) scale(1);
}

.legal-dialog::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 34px 34px;
}

.legal-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  font-size: 1.2rem;
  font-weight: 800;
  cursor: pointer;
}

.legal-tabs {
  position: relative;
  z-index: 2;
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  margin: 0 0 22px;
  border: 1px solid rgba(248, 251, 255, 0.12);
  border-radius: 999px;
  background: rgba(8, 13, 24, 0.68);
}

.legal-tabs button {
  min-height: 34px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  color: rgba(248, 251, 255, 0.66);
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.legal-tabs button.active,
.legal-tabs button:hover {
  color: #f8fbff;
  background:
    radial-gradient(circle at 20% 50%, rgba(53, 184, 255, 0.22), transparent 54%),
    rgba(255, 255, 255, 0.08);
}

.legal-modal-chip,
.legal-dialog h2,
.legal-modal-lead,
.legal-modal-grid {
  position: relative;
  z-index: 1;
}

.legal-dialog h2 {
  margin: 24px 0 16px;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 0.98;
}

.legal-modal-lead {
  max-width: 680px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1.02rem;
}

.legal-modal-lead:empty {
  display: none;
}

.legal-modal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.legal-dialog .legal-card {
  min-height: auto;
  padding: 22px;
}

@media (max-width: 900px) {
  .site-header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    min-height: 82px;
    padding: 14px 18px;
  }

  .brand {
    flex: 0 1 auto;
  }

  .header-actions {
    margin-left: auto;
    flex: 0 0 auto;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .brand-logo-wrap {
    width: 170px;
    height: 50px;
  }

  .brand-logo {
    width: 148px;
    height: 48px;
  }

  .mobile-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 18px;
    left: 18px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    padding: 8px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.nav-open .mobile-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav a {
    min-height: 42px;
    padding: 0 8px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 100svh;
    padding: 116px 42px 92px;
  }

  .hero-stage {
    width: min(720px, 100%);
    min-height: 560px;
  }

  .hero-copy {
    width: min(100%, 720px);
    margin-inline: auto;
  }

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

  .hero h2 {
    font-size: clamp(2.3rem, 8vw, 4.8rem);
  }

  .hero p {
    font-size: clamp(1.08rem, 3.4vw, 1.7rem);
  }

  .service-list,
  .build-steps {
    grid-template-columns: 1fr 1fr;
  }

  .split-copy {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .benefit-slide .split-copy,
  .media-slide .split-copy {
    grid-template-columns: 1fr;
  }

  .split-copy p {
    margin-right: auto;
    margin-left: auto;
  }

  .benefit-graphic,
  .media-graphic {
    min-height: 300px;
    width: min(520px, 100%);
    margin-inline: auto;
  }

  .panel {
    padding: 108px 34px 82px;
  }

  .panel h2 {
    font-size: clamp(2.1rem, 8vw, 4.4rem);
  }

  .experience-layout {
    grid-template-columns: 1fr;
  }

  .experience-lab {
    min-height: 480px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-devices {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-inline: auto;
  }

  .phone-contact {
    min-height: 540px;
  }

  .service-network {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    min-height: auto;
    padding: 20px;
  }

  .network-lines {
    display: none;
  }

  .network-hub {
    position: relative;
    left: auto;
    top: auto;
    order: 3;
    grid-column: 1 / -1;
    width: min(360px, 100%);
    height: 82px;
    margin: 2px auto;
    transform: none;
  }

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

  .network-hub img {
    width: min(230px, 78%);
    height: 62px;
  }

  .network-node {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    min-height: 168px;
    transform: none;
  }

  .network-node:hover,
  .network-node:focus-visible {
    transform: scale(1.03);
  }

  .node-social {
    order: 1;
  }

  .node-landing {
    order: 2;
  }

  .node-websites {
    order: 4;
  }

  .node-email {
    order: 5;
  }

  .node-values {
    order: 6;
  }

  .node-security {
    order: 7;
  }
}

@media (max-width: 640px) {
  html {
    scroll-snap-type: none;
  }

  .site-header {
    display: block;
    min-height: 72px;
    padding: 12px 14px;
  }

  .brand {
    position: relative;
    z-index: 2;
  }

  .brand-logo-wrap {
    width: 132px;
    height: 44px;
  }

  .brand-logo {
    width: 114px;
    height: 42px;
  }

  .language-switch {
    gap: 6px;
    font-size: 0.78rem;
  }

  .header-actions {
    position: absolute;
    top: 50%;
    right: 14px;
    z-index: 3;
    max-width: calc(100vw - 172px);
    transform: translateY(-50%);
    gap: 8px;
  }

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

  .mobile-nav {
    grid-template-columns: 1fr 1fr;
    top: calc(100% + 8px);
    right: 12px;
    left: 12px;
  }

  .mobile-nav a {
    min-height: 40px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: 100svh;
    padding: 106px 18px 92px;
  }

  .hero-slide {
    display: grid;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    justify-self: stretch;
    place-items: center;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .panel {
    min-height: auto;
    padding: 86px 18px 68px;
  }

  .panel h2 {
    margin-bottom: 24px;
    font-size: clamp(2rem, 11vw, 3.4rem);
    line-height: 1.02;
  }

  .section-next,
  .section-prev {
    width: 52px;
    height: 52px;
  }

  .segment-actions {
    gap: 12px;
    margin-top: 26px;
  }

  .slider-arrow {
    top: auto;
    bottom: 28px;
    width: 42px;
    height: 42px;
  }

  .slider-prev {
    left: 18px;
  }

  .slider-next {
    right: 18px;
  }

  .hero h1 {
    width: min(100%, 330px);
    max-width: 330px;
    margin-inline: auto;
    font-size: clamp(2.35rem, 10.5vw, 3.35rem);
    line-height: 1.02;
    text-wrap: balance;
    overflow-wrap: break-word;
  }

  .hero h2 {
    width: min(100%, 340px);
    margin-inline: auto;
    font-size: clamp(2rem, 10vw, 3.15rem);
    line-height: 1.02;
    text-align: center;
    text-wrap: balance;
  }

  .hero p {
    max-width: 330px;
    margin: 18px auto 26px;
    font-size: 1.05rem;
    text-align: center;
  }

  .hero-stage {
    min-height: 510px;
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
    min-width: 0;
    justify-self: center;
    overflow: visible;
  }

  .benefit-slide .hero-copy,
  .media-slide .hero-copy {
    min-height: 510px;
    align-content: center;
  }

  .benefit-slide .split-copy,
  .media-slide .split-copy {
    gap: 16px;
  }

  .split-copy h2 {
    width: min(100%, 340px);
    font-size: clamp(2rem, 10vw, 3.4rem);
  }

  .split-copy p {
    max-width: 330px;
  }

  .slide-dots {
    bottom: 76px;
  }

  .benefit-graphic,
  .media-graphic {
    min-height: 176px;
    width: min(330px, 100%);
    opacity: 0.95;
  }

  .orbit-card {
    min-width: 88px;
    min-height: 38px;
    padding: 8px 10px;
    font-size: 0.66rem;
  }

  .main-card {
    width: 148px;
    min-height: 84px;
  }

  .signal {
    width: 178px;
    height: 178px;
  }

  .media-tile {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    font-size: 0.66rem;
  }

  .device-frame {
    width: min(218px, 76%);
    height: 144px;
    border-radius: 20px;
  }

  .experience-lab {
    min-height: 520px;
  }

  .phone-contact {
    min-height: auto;
  }

  .phone-frame {
    width: min(286px, 100%);
    min-height: 458px;
    border-radius: 34px;
    padding: 12px;
    transform: none;
  }

  .phone-screen {
    min-height: 432px;
    padding: 34px 15px 18px;
    border-radius: 26px;
  }

  .phone-logo-orb {
    width: 106px;
    height: 106px;
    margin: 24px auto 18px;
  }

  .phone-logo-orb img {
    width: 88px;
  }

  .phone-prompt {
    font-size: 1.08rem;
  }

  .phone-service-chips span {
    min-height: 24px;
    padding: 0 8px;
    font-size: 0.6rem;
  }

  .contact-button {
    min-height: 52px;
    margin-top: 22px;
    font-size: 0.82rem;
  }

  .laptop-screen {
    padding: 20px 16px;
    border-radius: 20px 20px 12px 12px;
  }

  .mail-script {
    display: none;
  }

  .experience-lab {
    display: grid;
    gap: 12px;
    min-height: auto;
    padding: 16px;
  }

  .lab-orbit {
    inset: 26px 18px;
    opacity: 0.52;
  }

  .lab-core {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    min-height: 116px;
    padding: 22px;
    transform: none;
  }

  .proof-metrics {
    position: relative;
    z-index: 3;
    grid-template-columns: 1fr;
    gap: 10px;
    inset: auto;
  }

  .proof-metrics div {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: center;
    min-height: auto;
    padding: 14px 16px;
  }

  .proof-metrics span {
    margin-top: 0;
  }

  .proof-lane {
    position: relative;
    z-index: 3;
    right: auto;
    bottom: auto;
    left: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-lane span {
    min-height: 32px;
  }

  .orb-blue {
    right: -42px;
    top: 18%;
  }

  .orb-red {
    left: -58px;
  }

  .service-list,
  .build-steps {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .legal-card {
    min-height: auto;
    padding: 24px;
  }

  .service-network {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
    padding: 14px;
  }

  .network-hub {
    height: 74px;
    border-radius: 26px;
  }

  .network-hub::before,
  .network-hub::after {
    inset: -10px;
  }

  .network-node {
    min-height: 138px;
    padding-top: 14px;
  }

  body.is-language-switching .language-wipe {
    animation: mobile-language-wipe 980ms cubic-bezier(0.77, 0, 0.18, 1);
  }

  .service-dialog {
    min-height: auto;
    padding: 34px 24px;
  }

  .legal-modal {
    align-items: end;
    padding: 12px;
  }

  .legal-dialog {
    width: 100%;
    max-height: 88svh;
    padding: 26px 18px;
    border-radius: 22px;
  }

  .legal-tabs {
    display: grid;
    grid-template-columns: 1fr;
    width: calc(100% - 52px);
  }

  .legal-dialog h2 {
    font-size: clamp(2rem, 12vw, 3.2rem);
  }

  .legal-modal-grid {
    grid-template-columns: 1fr;
  }

  .service-list article,
  .build-steps div {
    min-height: auto;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 430px) {
  .site-header {
    padding-inline: 10px;
  }

  .brand-logo-wrap {
    width: 118px;
    height: 40px;
  }

  .brand-logo {
    width: 102px;
    height: 38px;
  }

  .language-switch {
    gap: 5px;
    font-size: 0.72rem;
  }

  .header-actions {
    right: 10px;
    max-width: calc(100vw - 146px);
    gap: 7px;
  }

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

  .hero {
    padding: 98px 14px 88px;
  }

  .hero-stage {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    min-height: 510px;
  }

  .hero h1 {
    width: min(100%, 292px);
    max-width: 292px;
    font-size: clamp(2.08rem, 9.8vw, 2.85rem);
  }

  .hero h2 {
    width: min(100%, 294px);
    font-size: clamp(1.78rem, 8.8vw, 2.55rem);
  }

  .hero p {
    max-width: 292px;
    font-size: 0.98rem;
  }

  .split-copy p {
    font-size: 0.96rem;
  }

  .benefit-graphic,
  .media-graphic {
    min-height: 168px;
  }

  .signal {
    width: 164px;
    height: 164px;
  }

  .orbit-card {
    min-width: 78px;
    min-height: 34px;
    padding: 7px 9px;
  }

  .main-card {
    width: 136px;
    min-height: 78px;
  }

  .panel {
    padding-inline: 14px;
  }

  .service-network {
    margin: 26px 0 32px;
  }

  .network-hub {
    height: 68px;
    margin-block: 0;
  }

  .network-hub img {
    width: min(210px, 82%);
    height: 54px;
  }

  .network-node {
    min-height: 124px;
    border-radius: 24px 24px 34px 34px;
  }

  .node-mark {
    width: 34px;
    height: 34px;
    margin-bottom: 6px;
  }

  .network-node strong {
    font-size: 0.68rem;
  }

  .service-list article,
  .build-steps div {
    padding: 22px 18px;
  }

  .experience-lab {
    min-height: auto;
    padding: 14px;
  }

  .lab-core {
    width: 100%;
    min-height: 108px;
  }

  .proof-lane {
    grid-template-columns: 1fr;
  }

  .contact-devices {
    gap: 26px;
  }

  .phone-frame {
    width: min(258px, 100%);
    min-height: 420px;
  }

  .phone-screen {
    min-height: 396px;
  }

  .phone-service-chips span:nth-child(n + 3) {
    display: none;
  }

  .laptop-form::after {
    right: 10%;
    left: 10%;
  }

  .laptop-form textarea {
    min-height: 78px;
  }

  .site-footer {
    padding-inline: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .cursor-dot,
  .cursor-ring,
  .word-cloud {
    display: none;
  }
}
