/* USADIGITAL v=6 */
:root {
  --bg: #050914;
  --bg-2: #0a1228;
  --navy: #0d1b3a;
  --text: #f4f7ff;
  --muted: #9eb0d0;
  --line: rgba(255, 255, 255, 0.12);
  --glass: rgba(16, 28, 58, 0.45);
  --glass-2: rgba(255, 255, 255, 0.06);
  --blue: #1d7dff;
  --cyan: #38bdf8;
  --glow: 0 0 40px rgba(29, 125, 255, 0.45);
  --radius: 22px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}
main { position: relative; z-index: 3; }
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea, a { font: inherit; color: inherit; -webkit-tap-highlight-color: transparent; }
button, .btn, .nav-toggle { touch-action: manipulation; }

.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 5;
  background: radial-gradient(circle, rgba(29, 125, 255, 0.16), transparent 68%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .4s;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: #050914;
  transition: opacity .45s ease, visibility .45s ease;
}
.loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: none;
}
.loader-stage {
  width: min(640px, 94vw);
  text-align: center;
  background: transparent;
}
.loader-scene {
  display: block;
  width: 100%;
  height: clamp(168px, 48vw, 340px);
  max-height: 46vh;
  margin: 0 auto;
  background: transparent;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@keyframes spinPulse {
  0%, 100% { transform: scale(.92) rotate(0deg); filter: drop-shadow(0 0 8px #38bdf8); }
  50% { transform: scale(1.05) rotate(12deg); filter: drop-shadow(0 0 18px #1d7dff); }
}

.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 32px));
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 18px 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 14, 32, 0.62);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}
.nav.is-scrolled { background: rgba(6, 10, 24, 0.82); }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -.03em; }
.logo-orb {
  --lx: 0deg;
  --ly: 0deg;
  position: relative;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  perspective: 240px;
}
.logo-halo {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56,189,248,.45), transparent 68%);
  filter: blur(2px);
  animation: logoHalo 2.8s ease-in-out infinite;
  pointer-events: none;
}
.logo-mark {
  width: 36px;
  height: 36px;
  position: relative;
  z-index: 1;
  transform: rotateX(calc(12deg + var(--lx))) rotateY(calc(-16deg + var(--ly)));
  transform-style: preserve-3d;
  filter: drop-shadow(0 6px 10px rgba(29, 125, 255, .45));
  transition: transform .2s ease-out;
}
.logo-spin {
  transform-origin: 32px 32px;
  transform-box: fill-box;
  animation: logoOrbit 7s linear infinite;
}
.logo-ring {
  fill: none;
  stroke: rgba(125, 211, 252, .55);
  stroke-width: 1.1;
  stroke-dasharray: 5 4;
}
.logo-core {
  transform-origin: 32px 32px;
  animation: logoPulse 2.2s ease-in-out infinite;
}
.logo-scan {
  stroke: rgba(224, 242, 254, .85);
  stroke-width: 1.1;
  animation: logoScan 2.4s ease-in-out infinite;
}
@keyframes logoOrbit { to { transform: rotate(360deg); } }
@keyframes logoPulse {
  0%, 100% { opacity: .85; transform: scale(.92); }
  50% { opacity: 1; transform: scale(1.08); }
}
@keyframes logoScan {
  0%, 100% { transform: translateY(-8px); opacity: .15; }
  50% { transform: translateY(8px); opacity: .9; }
}
@keyframes logoHalo {
  0%, 100% { opacity: .45; transform: scale(.9); }
  50% { opacity: 1; transform: scale(1.08); }
}
.wordmark {
  font-weight: 800;
  letter-spacing: -.055em;
  text-transform: uppercase;
  line-height: 1;
}
.wordmark span {
  margin-left: -0.02em;
  background: linear-gradient(90deg, #7dd3fc, #3b82f6 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav-links { display: flex; gap: 20px; font-size: 14.5px; font-weight: 500; }
.nav-links a { position: relative; color: #e8eefc; opacity: .82; }
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: 0 0 10px var(--cyan);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lang-switch {
  display: flex;
  flex-shrink: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(8, 14, 32, .55);
}
.lang-btn {
  margin: 0;
  border: 0;
  background: transparent;
  color: #9eb0d0;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  cursor: pointer;
  line-height: 1;
}
.lang-btn.is-on {
  background: rgba(29, 125, 255, .32);
  color: #fff;
}
.nav-toggle {
  display: none;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  padding: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 9px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 19;
  background: rgba(4, 8, 18, .55);
  backdrop-filter: blur(6px);
}
.nav-backdrop[hidden] { display: none; }
.mobile-cta { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 11px 20px;
  font-weight: 700;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(90deg, #1a6bff 0%, #2f9bff 55%, #3ec4ff 100%);
  box-shadow: var(--glow);
  transition: transform .25s, box-shadow .25s;
  white-space: nowrap;
}
.btn span { transition: transform .25s; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 0 48px rgba(56, 189, 248, .55); }
.btn:hover span { transform: translateX(4px); }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-glow { animation: btnPulse 2.8s ease-in-out infinite; }
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 22px rgba(29, 125, 255, .4); }
  50% { box-shadow: 0 0 40px rgba(56, 189, 248, .7); }
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 118px 24px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-photo {
  position: absolute;
  inset: 0;
  background:
    url("../assets/img/hero-home.jpg?v=23") center / cover no-repeat;
  filter: saturate(.28) brightness(.38) contrast(.95);
  transform: scale(1.08);
  opacity: .55;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    rgba(5, 9, 20, .58),
    radial-gradient(ellipse at 50% 22%, rgba(18, 62, 150, .12), transparent 48%),
    linear-gradient(180deg, rgba(5, 9, 20, .5) 0%, rgba(5, 9, 20, .38) 32%, rgba(5, 9, 20, .78) 68%, #050914 100%);
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
}
.orb-a { width: 280px; height: 280px; left: 8%; bottom: 12%; background: rgba(29, 125, 255, .28); animation: float 8s ease-in-out infinite; }
.orb-b { width: 220px; height: 220px; right: 10%; top: 18%; background: rgba(56, 189, 248, .18); animation: float 10s ease-in-out infinite reverse; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

.hero-copy, .stats-cta, .pillars { position: relative; z-index: 2; }
.laptop-wrap { position: relative; z-index: 3; }
.service-row { position: relative; z-index: 4; }
.hero-copy { text-align: center; margin-bottom: 18px; }
.hero-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #7dd3fc;
  font-style: italic;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: none;
  margin-bottom: 8px;
}
.glow-line {
  width: min(520px, 70vw);
  height: 2px;
  margin: 14px auto;
  background: linear-gradient(90deg, transparent, #4aa7ff, #7ee0ff, #4aa7ff, transparent);
  box-shadow: 0 0 16px #3aa0ff;
  animation: linePulse 2.4s ease-in-out infinite;
}
.glow-line.short { width: 72px; margin: 0; height: 1.5px; }
@keyframes linePulse {
  0%, 100% { opacity: .55; }
  50% { opacity: 1; }
}
.hero-copy h1 {
  font-size: clamp(26px, 3.6vw, 44px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.08;
}
.grad {
  background: linear-gradient(90deg, #6ec8ff, #1d7dff 45%, #7dd3fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 100%;
  animation: gradShift 5s linear infinite;
}
@keyframes gradShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.hero-sub { margin-top: 6px; font-size: clamp(13px, 1.5vw, 16px); color: #e9f1ff; font-weight: 500; }
.hero-copy {
  opacity: 1;
  transform: none;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}
.btn-ghost {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: none;
  animation: none;
}
.btn-ghost:hover { background: rgba(29, 125, 255, .22); }
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
  color: #9bd4ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.scroll-cue i {
  width: 12px;
  height: 12px;
  border-right: 2px solid #7dd3fc;
  border-bottom: 2px solid #7dd3fc;
  transform: rotate(45deg);
  animation: cueBounce 1.35s ease-in-out infinite;
}
@keyframes cueBounce {
  0%, 100% { transform: translateY(0) rotate(45deg); opacity: .45; }
  50% { transform: translateY(7px) rotate(45deg); opacity: 1; }
}

.laptop-wrap {
  width: min(680px, 88vw);
  margin: 0 auto 14px;
  padding-top: 8px;
  perspective: 2200px;
  -webkit-perspective: 2200px;
  perspective-origin: 50% 28%;
}
@keyframes laptopFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.laptop {
  transform: rotateX(12deg) translateY(-12%);
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transition: transform 3.15s cubic-bezier(.2, .85, .22, 1);
}
.laptop.is-open { transform: translateY(-6px); }
.mbp-lid {
  position: relative;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transform-origin: 50% 100%;
  transform: perspective(1200px) rotateX(-92deg);
  -webkit-transform: perspective(1200px) rotateX(-92deg);
  will-change: transform;
  background:
    linear-gradient(180deg, #6a6a70 0%, #45454a 14%, #2f2f33 55%, #242428 100%);
  border-radius: 22px 22px 14px 14px;
  padding: 14px 14px 11px;
  border: 1px solid #7a7a80;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.35),
    inset 0 -2px 0 rgba(0,0,0,.45);
}
.laptop.is-open .mbp-lid {
  transform: perspective(1200px) rotateX(0deg);
  -webkit-transform: perspective(1200px) rotateX(0deg);
}
@keyframes lidOpen {
  0% { transform: perspective(1200px) rotateX(-92deg); }
  78% { transform: perspective(1200px) rotateX(4deg); }
  100% { transform: perspective(1200px) rotateX(0deg); }
}
@keyframes lidOpenMobile {
  0% { transform: perspective(900px) rotateX(-88deg); }
  70% { transform: perspective(900px) rotateX(6deg); }
  100% { transform: perspective(900px) rotateX(0deg); }
}
.mbp-lid-back {
  display: grid;
  place-items: center;
  position: absolute;
  inset: 0;
  border-radius: 22px 22px 14px 14px;
  background:
    linear-gradient(165deg, #d8d8de 0%, #9a9aa3 38%, #5c5c64 100%);
  border: 1px solid #c8c8ce;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.55),
    inset 0 -8px 16px rgba(0,0,0,.28);
  transform: rotateX(180deg) translateZ(1.2px);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.mbp-logo {
  width: 42px;
  height: 42px;
  color: rgba(18, 22, 32, .42);
  filter: drop-shadow(0 1px 0 rgba(255,255,255,.35));
}
.mbp-wake {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: grid;
  place-items: center;
  background: #000;
  pointer-events: none;
  opacity: 1;
  transition: opacity .5s ease;
}
.laptop.is-open .mbp-boot-track i {
  animation: bootBar 2.2s cubic-bezier(.4, 0, .2, 1) forwards;
}
.laptop.is-booted .mbp-wake { opacity: 0; }
@keyframes bootBar {
  from { width: 0; }
  to { width: 100%; }
}
.mbp-boot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.mbp-boot-mark {
  width: 46px;
  height: 46px;
  filter: drop-shadow(0 0 14px rgba(56, 189, 248, .45));
}
.mbp-boot-name {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -.055em;
  text-transform: uppercase;
  color: #f4f7ff;
  line-height: 1;
}
.mbp-boot-name span {
  background: linear-gradient(90deg, #7dd3fc, #3b82f6 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mbp-boot-track {
  display: block;
  width: 118px;
  height: 3px;
  margin-top: 4px;
  border-radius: 99px;
  background: #1a2744;
  overflow: hidden;
}
.mbp-boot-track i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, #38bdf8, #2563eb);
}
.mbp-bezel {
  position: relative;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px #111;
}
.mbp-notch {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 5;
  width: 92px;
  height: 13px;
  transform: translateX(-50%);
  background: #050505;
  border-radius: 0 0 10px 10px;
}
.mbp-cam {
  display: block;
  width: 6px;
  height: 6px;
  margin: 3px auto 0;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 32%, #4b5d88, #0b0d14 70%);
  box-shadow: 0 0 0 1px #1c1c1c, 0 0 6px rgba(80, 140, 255, .35);
}
.mbp-screen {
  display: flex;
  flex-direction: column;
  aspect-ratio: 16 / 10.3;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(40, 90, 180, .28), transparent 46%),
    linear-gradient(180deg, #07101f, #050814 70%);
  padding: 16px 12px 10px;
  min-height: 0;
}
.os-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 10px;
  letter-spacing: .08em;
  color: #9ec0ea;
  margin-bottom: 6px;
  flex-shrink: 0;
}
.os-dots { display: flex; gap: 5px; }
.os-dots i { width: 8px; height: 8px; border-radius: 50%; }
.os-dots i:nth-child(1) { background: #ff5f57; }
.os-dots i:nth-child(2) { background: #febc2e; }
.os-dots i:nth-child(3) { background: #28c840; }
.os-title { font-weight: 800; color: #e8f2ff; }
.os-live {
  color: #7dd3fc;
  font-weight: 800;
  animation: livePulse 1.6s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: .55; }
  50% { opacity: 1; }
}
.screen-stage {
  position: relative;
  flex: 1;
  min-height: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(80, 170, 255, .2);
  background: #070d1c;
}
.os-scene {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.03);
  transition: opacity .45s ease, transform .45s ease, visibility .45s;
  pointer-events: none;
}
.os-scene.is-on {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

.dash { height: 100%; display: flex; flex-direction: column; padding: 8px 10px 8px; gap: 6px; }
.dash-top { display: flex; justify-content: space-between; font-size: 9px; color: #8fb4e0; font-weight: 700; letter-spacing: .06em; }
.dash-live { color: #4ade80; animation: livePulse 1.6s ease-in-out infinite; }
.dash-grid { flex: 1; min-height: 0; display: grid; grid-template-columns: 1.35fr .9fr; gap: 8px; }
.chart-card, .feed-card {
  border-radius: 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 8px;
  overflow: hidden;
}
.chart-card p, .feed-card p { font-size: 9px; color: #9eb0d0; font-weight: 700; margin-bottom: 4px; }
.spark { width: 100%; height: 58px; display: block; }
.spark-line {
  fill: none;
  stroke: #38bdf8;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  animation: drawLine 2.4s ease forwards infinite;
  animation-delay: .2s;
}
.spark-area { fill: url(#sparkFill); opacity: .85; animation: fadeArea 2.4s ease infinite; }
@keyframes drawLine {
  0% { stroke-dashoffset: 420; }
  45%, 100% { stroke-dashoffset: 0; }
}
@keyframes fadeArea {
  0%, 12% { opacity: 0; }
  50%, 100% { opacity: .85; }
}
.chart-legend { display: flex; gap: 8px; align-items: center; font-size: 8px; color: #9eb0d0; margin-top: 2px; }
.chart-legend i { width: 7px; height: 7px; border-radius: 50%; background: #38bdf8; display: inline-block; }
.chart-legend i.g { background: #fbbf24; }
.chart-legend i.t { background: #f472b6; }
.feed-card { position: relative; }
.feed-track { display: flex; flex-direction: column; gap: 5px; animation: feedScroll 9s linear infinite; }
@keyframes feedScroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
.post {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: 6px;
  align-items: center;
  font-size: 8px;
  padding: 5px 6px;
  border-radius: 7px;
  background: rgba(255,255,255,.05);
}
.post b {
  width: 18px; height: 18px; border-radius: 5px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #f472b6, #1d7dff);
  font-size: 7px; text-transform: uppercase;
}
.post em { color: #4ade80; font-style: normal; font-weight: 800; }
.camp-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 9px; color: #c5d6f0;
  padding: 6px 8px; border-radius: 8px;
  background: linear-gradient(90deg, rgba(29,125,255,.2), rgba(56,189,248,.08));
}
.camp-row b { color: #7dd3fc; }

.browser { height: 100%; display: flex; flex-direction: column; background: #0b1224; }
.browser-bar {
  display: flex; align-items: center; gap: 5px;
  padding: 6px 8px; background: #121a30;
  flex-shrink: 0;
}
.browser-bar i { width: 6px; height: 6px; border-radius: 50%; background: #ff5f57; }
.browser-bar i:nth-child(2) { background: #febc2e; }
.browser-bar i:nth-child(3) { background: #28c840; }
.url {
  flex: 1; margin-left: 6px; font-size: 8px; color: #9eb0d0;
  background: #070d1c; border-radius: 99px; padding: 3px 8px;
}
.browser-body { position: relative; flex: 1; min-height: 0; padding: 10px; overflow: hidden; }
.site-nav { height: 8px; width: 55%; border-radius: 99px; background: rgba(255,255,255,.12); margin-bottom: 10px; }
.site-hero { display: flex; flex-direction: column; gap: 6px; }
.site-tag {
  align-self: flex-start; font-size: 7px; letter-spacing: .12em; text-transform: uppercase;
  color: #7dd3fc; border: 1px solid rgba(56,189,248,.35); padding: 2px 6px; border-radius: 99px;
}
.site-hero strong { font-size: 16px; line-height: 1.1; letter-spacing: -.03em; }
.site-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-top: 12px; }
.site-cards i {
  display: block; height: 36px; border-radius: 8px;
  background: linear-gradient(180deg, rgba(56,189,248,.25), rgba(29,125,255,.08));
  animation: cardPulse 2.8s ease-in-out infinite;
}
.site-cards i:nth-child(2) { animation-delay: .2s; }
.site-cards i:nth-child(3) { animation-delay: .4s; }
@keyframes cardPulse {
  0%, 100% { transform: translateY(0); opacity: .7; }
  50% { transform: translateY(-3px); opacity: 1; }
}
.cursor-dot {
  position: absolute; width: 8px; height: 8px; border-radius: 50%;
  background: #fff; box-shadow: 0 0 0 2px #1d7dff;
  animation: clickPath 4.5s ease-in-out infinite;
}
@keyframes clickPath {
  0% { left: 18%; top: 40%; }
  35% { left: 62%; top: 28%; }
  70% { left: 48%; top: 68%; }
  100% { left: 18%; top: 40%; }
}

.ide { height: 100%; display: grid; grid-template-columns: 28px 1fr; background: #0d1117; }
.ide-side { display: flex; flex-direction: column; gap: 7px; padding: 8px 6px; background: #010409; }
.ide-side span { height: 8px; border-radius: 2px; background: #30363d; }
.ide-side span.on { background: #58a6ff; }
.ide-main { min-width: 0; display: flex; flex-direction: column; }
.ide-tabs { font-size: 8px; color: #8b949e; padding: 6px 8px 0; }
.ide-tabs em { font-style: normal; margin-right: 8px; padding: 3px 6px; border-radius: 6px 6px 0 0; }
.ide-tabs em:first-child { background: #161b22; color: #e6edf3; }
.code-run {
  flex: 1; margin: 0; padding: 8px 10px; font-size: 8.5px; line-height: 1.45;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: #e6edf3; background: #161b22;
  overflow: hidden;
  white-space: pre;
}
.code-run .kw { color: #ff7b72; }
.code-run .str { color: #a5d6ff; }
.code-run .num { color: #79c0ff; }
.code-run .fn { color: #d2a8ff; }
.code-run .cmt { color: #8b949e; }
.caret {
  display: inline-block; width: 5px; height: 10px; background: #58a6ff;
  margin-left: 2px; vertical-align: -1px;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.term {
  font-size: 8px; color: #3fb950; padding: 5px 10px;
  background: #010409; border-top: 1px solid #21262d;
  animation: termGlow 2.2s ease-in-out infinite;
}
@keyframes termGlow {
  0%, 100% { opacity: .65; }
  50% { opacity: 1; }
}
.screen-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 8px 0 6px;
  flex-shrink: 0;
}
.kpi {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  border-radius: 10px;
  padding: 6px 8px;
  font-size: 9px;
  color: #9eb0d0;
  text-align: left;
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .2s;
}
.kpi strong { display: block; color: #fff; font-size: 13px; letter-spacing: -.03em; }
.kpi:hover, .kpi.is-on {
  border-color: rgba(56, 189, 248, .45);
  background: rgba(29, 125, 255, .18);
  transform: translateY(-1px);
}
.screen-dock {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.dock-btn, .dock-cta, .dock-play {
  border: 0;
  border-radius: 99px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
}
.dock-btn {
  padding: 6px 10px;
  color: #d7e6ff;
  background: rgba(255,255,255,.08);
}
.dock-btn.is-on, .dock-btn:hover {
  background: linear-gradient(90deg, #1a6bff, #3ec4ff);
  color: #fff;
}
.dock-play {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: rgba(29, 125, 255, .25);
  flex-shrink: 0;
}
.dock-cta {
  margin-left: auto;
  padding: 6px 12px;
  color: #fff;
  background: linear-gradient(90deg, #1a6bff, #3ec4ff);
  box-shadow: 0 0 14px rgba(29, 125, 255, .4);
  text-decoration: none;
}
.play-icon {
  width: 14px; height: 14px; border-radius: 50%;
  background: #1d7dff;
  box-shadow: 0 0 10px #1d7dff;
  position: relative;
}
.play-icon::after {
  content: "";
  position: absolute;
  left: 5px; top: 3px;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent #fff;
}
.mbp-base {
  position: relative;
  height: 20px;
  margin: 0 -34px 0;
  background: linear-gradient(180deg, #ececef 0%, #c5c6cc 36%, #8d8f98 100%);
  border-radius: 0 0 18px 18px;
  box-shadow: 0 18px 20px -12px rgba(0,0,0,.58), 0 42px 58px rgba(0, 0, 0, .45);
}
.mbp-hinge {
  width: 18%;
  height: 8px;
  margin: 0 auto;
  background: #1b1b1e;
  border-radius: 0 0 8px 8px;
}
.mbp-palm {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 9px;
  height: 6px;
  border-radius: 4px;
  background:
    repeating-linear-gradient(90deg, rgba(0,0,0,.16) 0 7px, transparent 7px 9px);
  opacity: .55;
}

.service-row {
  width: min(1040px, 100%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 0;
  padding-top: 18px;
  z-index: 4;
}
.glass-card {
  --sx: 0;
  --sz: 0;
  --hy: 0;
  position: relative;
  padding: 22px 18px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
  cursor: pointer;
  transform: perspective(1100px) rotateX(calc(var(--sx) * 1deg)) translate3d(0, calc(var(--hy) * 1px), calc(var(--sz) * 1px));
  transform-style: preserve-3d;
  transition: transform .5s cubic-bezier(.2, .7, .2, 1), background .3s, box-shadow .3s, border-color .3s;
}
.glass-card:hover, .glass-card.is-active {
  --hy: -6;
  --sz: 10;
  background: rgba(12, 40, 110, 0.62);
  border-color: rgba(80, 170, 255, .45);
  box-shadow: 0 16px 40px rgba(20, 80, 200, .28), 0 0 24px rgba(29, 125, 255, .25);
}
.glass-card.is-active::after {
  content: "";
  position: absolute;
  left: 18%; right: 18%; bottom: 0;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, #1d7dff, #67e8f9);
  box-shadow: 0 0 14px #38bdf8;
}
.card-icon {
  width: 42px; height: 42px; margin-bottom: 14px; color: #9bd4ff;
}
.card-icon svg { width: 100%; height: 100%; }
.glass-card h3 { font-size: 16px; font-weight: 700; }
.card-dots { display: flex; gap: 5px; margin-top: 16px; }
.card-dots i { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.35); }
.glass-card.is-active .card-dots i:first-child { background: #67e8f9; }

.stats-cta {
  width: min(1040px, 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
}
.stats {
  display: flex;
  gap: 42px;
}
.stats strong { display: block; font-size: 28px; letter-spacing: -.03em; }
.stats span { color: var(--muted); font-size: 13px; }

.pillars {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  letter-spacing: .02em;
}
.pillars i {
  width: 7px; height: 7px; border-radius: 50%;
  background: #3aa0ff;
  box-shadow: 0 0 10px #3aa0ff;
}

.world-map {
  position: absolute;
  left: 0; bottom: 0;
  width: min(520px, 50vw);
  opacity: .16;
  fill: none;
  stroke: #4aa3ff;
  stroke-width: 1.4;
  pointer-events: none;
}

.section { position: relative; z-index: 2; padding: 96px 24px; perspective: 1400px; perspective-origin: 50% 35%; }
.section-alt { background: linear-gradient(180deg, rgba(10, 20, 48, .55), transparent); }
.container { width: min(1100px, 100%); margin: 0 auto; }
.section-head { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.eyebrow {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
h2 { font-size: clamp(28px, 4vw, 44px); letter-spacing: -.035em; line-height: 1.15; }
.lead { margin-top: 12px; color: var(--muted); font-size: 17px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; perspective: 1200px; }

.svc-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.svc-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  perspective: 1400px;
  transform-style: preserve-3d;
}
#services .section-head { max-width: 520px; margin-bottom: 28px; }
#services .section-head h2 { font-size: clamp(26px, 3.4vw, 38px); }
#services .lead { font-size: 16px; }
#services a.feature-card {
  --in-x: 0px;
  --in-y: 0deg;
  --sy: 0deg;
  --fall: 0;
  --drop: 0;
  --wash: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0 14px;
  align-items: center;
  padding: 18px 12px;
  border-radius: 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: none;
  box-shadow: none;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition:
    opacity .7s ease,
    transform .85s cubic-bezier(.16, .84, .22, 1),
    background .25s,
    border-color .25s;
}
.svc-pair:first-child a.feature-card { border-top: 1px solid rgba(255,255,255,.1); }
#services .feature-icon {
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--cyan);
  background: none;
  border: 0;
  border-radius: 0;
  min-width: 28px;
}
#services .feature-body { min-width: 0; }
#services .feature-card h3 {
  margin: 0 0 3px;
  font-size: 15px;
  letter-spacing: -.03em;
  font-weight: 700;
  line-height: 1.2;
}
#services .feature-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#services a.feature-card .more {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--cyan);
  opacity: .4;
  transition: opacity .25s, transform .25s;
}
#services a.feature-card:hover {
  --hy: 0;
  --sz: 0;
  background: rgba(255,255,255,.03);
  border-color: rgba(56, 189, 248, .22);
  box-shadow: none;
}
#services a.feature-card:hover .more {
  opacity: 1;
  transform: translateX(4px);
}
.svc-pair .feature-card:nth-child(1) { --in-x: -36px; --in-y: 18deg; }
.svc-pair .feature-card:nth-child(2) {
  --in-x: 36px;
  --in-y: -18deg;
  border-left: 1px solid rgba(255,255,255,.08);
  padding-left: 22px;
}
#services .feature-card.reveal {
  opacity: 0;
  transform: perspective(1100px) translate3d(var(--in-x), 18px, -48px) rotateY(var(--in-y)) rotateX(8deg);
}
#services .feature-card.reveal.is-visible {
  opacity: calc(1 - var(--fall, 0) * 0.28);
  transform: perspective(1200px)
    rotateX(calc(var(--sx, 0) * 1deg))
    rotateY(var(--sy, 0deg))
    translate3d(0, calc((var(--hy, 0) + var(--drop, 0)) * 1px), calc(var(--sz, 0) * 1px))
    scale(calc(1 - var(--fall, 0) * 0.16));
  transition:
    opacity .22s linear,
    transform .22s linear,
    background .25s,
    border-color .25s;
}
#services a.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 18%, rgba(56,189,248, calc(var(--wash) * .35)) 48%, transparent 78%);
}
#services a.feature-card.is-fired {
  animation: svcFire .62s cubic-bezier(.16, .84, .22, 1);
  background: linear-gradient(90deg, rgba(29,125,255,.2), rgba(56,189,248,.08), transparent);
  border-color: rgba(56, 189, 248, .5);
}
@keyframes svcFire {
  0% { transform: scale(1); }
  38% { transform: scale(1.055) translateY(-4px); box-shadow: 0 0 34px rgba(56, 189, 248, .4); }
  100% { transform: scale(1); }
}
.svc-grid { position: relative; }
.svc-grid::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: calc(var(--spine, 0) * 1%);
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(56,189,248,.12), #38bdf8 70%, rgba(29,125,255,.15));
  box-shadow: 0 0 10px rgba(56,189,248,.5);
  pointer-events: none;
  z-index: 2;
}
.svc-emitter {
  width: 10px;
  height: 10px;
  margin: 18px auto 0;
  border-radius: 50%;
  background: #e0f2fe;
  box-shadow: 0 0 16px #38bdf8, 0 0 32px rgba(29,125,255,.55);
  opacity: .3;
  transform: scale(.65);
  transition: opacity .35s, transform .35s;
}
.svc-emitter.is-hot {
  opacity: 1;
  transform: scale(1);
}
.svc-shot {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 7;
  overflow: visible;
}
.feature-card {
  --sx: 0;
  --sz: 0;
  --hy: 0;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
  transform: perspective(1200px) rotateX(calc(var(--sx) * 1deg)) translate3d(0, calc(var(--hy) * 1px), calc(var(--sz) * 1px));
  transform-style: preserve-3d;
  transition: transform .5s cubic-bezier(.2, .7, .2, 1), border-color .3s, box-shadow .3s;
}
a.glass-card, a.feature-card, a.work-card { color: inherit; cursor: pointer; }
a.feature-card { display: block; }
.steps a { color: inherit; text-decoration: none; display: block; }
a.feature-card .more {
  display: inline-block;
  margin-top: 14px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 700;
}
.feature-card:hover {
  --hy: -7;
  --sz: 12;
  border-color: rgba(56, 189, 248, .35);
  box-shadow: 0 18px 40px rgba(20, 80, 200, .22);
}
.feature-icon {
  width: 42px; height: 42px; margin-bottom: 16px;
  display: grid; place-items: center;
  border-radius: 12px;
  font-weight: 800;
  color: #9bd4ff;
  background: rgba(29, 125, 255, .15);
  border: 1px solid rgba(56, 189, 248, .25);
}
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { color: var(--muted); font-size: 14.5px; }

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-template-areas:
    "intro stage"
    "copy stage";
  gap: 12px 48px;
  align-items: center;
}
.about-intro { grid-area: intro; align-self: end; }
.about-copy { grid-area: copy; align-self: start; }
.about-stage { grid-area: stage; }
.about-intro h2 { margin: 0; }
.about-copy .lead { margin-top: 0; }
.checklist { margin-top: 22px; list-style: none; }
.checklist li {
  position: relative;
  padding: 8px 0 8px 28px;
  color: #d5e2ff;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle, #67e8f9, #1d7dff);
  box-shadow: 0 0 10px #1d7dff;
}
.about-panel {
  --sx: 0;
  --sz: 0;
  position: relative;
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(12, 28, 70, .55);
  border: 1px solid rgba(80, 170, 255, .25);
  overflow: hidden;
  transform: perspective(1200px) rotateX(calc(var(--sx) * 1deg)) translateZ(calc(var(--sz) * 1px));
  transform-style: preserve-3d;
  transition: transform .5s cubic-bezier(.2, .7, .2, 1);
}
.about-stat strong { font-size: 40px; letter-spacing: -.04em; }
.about-stat span { color: var(--muted); }
.about-glow {
  position: absolute; right: -40px; bottom: -40px;
  width: 180px; height: 180px; border-radius: 50%;
  background: rgba(56, 189, 248, .2); filter: blur(20px);
}

.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; perspective: 1200px; }
.work-card {
  --sx: 0;
  --sz: 0;
  --hy: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--glass);
  transform: perspective(1200px) rotateX(calc(var(--sx) * 1deg)) translate3d(0, calc(var(--hy) * 1px), calc(var(--sz) * 1px));
  transform-style: preserve-3d;
  transition: transform .5s cubic-bezier(.2, .7, .2, 1), box-shadow .3s;
  position: relative;
}
.work-card:hover {
  --hy: -8;
  --sz: 14;
  box-shadow: 0 22px 44px rgba(0,0,0,.32);
}
.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 35%, rgba(56,189,248,.14) 50%, transparent 65%);
  transform: translateX(-140%);
  transition: transform .7s ease;
}
.work-card:hover::after { transform: translateX(140%); }
a.work-card { color: inherit; }
.work-visual {
  height: 200px;
  background: #0b142c center / cover no-repeat;
  filter: saturate(.9) contrast(1.06);
}
.client-photo, .step-photo {
  filter: saturate(.9) contrast(1.05);
}
.v1 { background-image: linear-gradient(180deg, transparent 40%, rgba(5,9,20,.45)), url("../assets/img/work-ads.jpg?v=13"); }
.v2 { background-image: linear-gradient(180deg, transparent 40%, rgba(5,9,20,.45)), url("../assets/img/work-soft.jpg?v=13"); }
.v3 { background-image: linear-gradient(180deg, transparent 40%, rgba(5,9,20,.45)), url("../assets/img/work-web.jpg?v=13"); }
.work-meta { padding: 18px 20px 22px; }
.work-meta span { color: var(--cyan); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.work-meta h3 { margin: 6px 0 6px; }
.work-meta p { color: var(--muted); font-size: 14px; }

#clients, #portfolio, #process, #contact {
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}
#clients { padding-top: 88px; }
.hp {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.client-rail {
  overflow: hidden;
  margin: 0 auto 12px;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.client-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: clientSlide 36s linear infinite;
}
.client-rail-b { margin-bottom: 28px; }
.client-rail-b .client-track {
  animation-duration: 42s;
  animation-direction: reverse;
}
.client-rail.is-paused .client-track,
.laptop-wrap.is-paused .feed-track,
.laptop-wrap.is-paused .spark-line,
.laptop-wrap.is-paused .spark-area,
.about-stage.is-paused .colony,
.about-stage.is-paused svg * {
  animation-play-state: paused;
}
@keyframes clientSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  height: 72px;
  padding: 8px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #05070c;
}
.client-logo.wide { min-width: 220px; }
.client-logo img {
  height: 54px;
  max-width: 188px;
  width: auto;
  object-fit: contain;
}
.client-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  perspective: 1200px;
}
.client-card {
  --sx: 0;
  --sz: 0;
  --hy: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--glass);
  transform: perspective(1200px) rotateX(calc(var(--sx) * 1deg)) translate3d(0, calc(var(--hy) * 1px), calc(var(--sz) * 1px));
  transition: transform .5s cubic-bezier(.2, .7, .2, 1), border-color .3s, box-shadow .3s;
}
a.client-card { color: inherit; }
.client-card:hover {
  --hy: -6;
  --sz: 10;
  border-color: rgba(80, 170, 255, .4);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .28);
}
.client-photo {
  display: block;
  width: 100%;
  height: 168px;
  object-fit: cover;
  object-position: 72% center;
  background: #0b142c center / cover no-repeat;
}
.client-photo[src$=".svg"],
.client-photo[src*=".svg?"] {
  object-fit: cover;
  object-position: center;
}
.client-body {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px 16px;
}
.client-mono {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 12px;
  background: #05070c;
  border: 1px solid rgba(56, 189, 248, .3);
  padding: 3px;
}
.client-card h3 { font-size: 16px; font-weight: 700; letter-spacing: -.02em; }
.client-card p { margin-top: 4px; color: var(--muted); font-size: 13px; line-height: 1.35; }

.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; perspective: 1200px; }
.steps li {
  --sx: 0;
  --sz: 0;
  padding: 0 0 20px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--glass);
  transform: perspective(1200px) rotateX(calc(var(--sx) * 1deg)) translateZ(calc(var(--sz) * 1px));
  transform-style: preserve-3d;
  transition: transform .5s cubic-bezier(.2, .7, .2, 1);
}
.step-photo {
  height: 112px;
  margin-bottom: 16px;
  background: #0b142c center / cover no-repeat;
}
.steps span, .steps h3, .steps p { padding: 0 18px; }
.steps span { display: block; color: #67e8f9; font-weight: 800; font-size: 20px; }
.steps h3 { margin: 8px 0; }
.steps p { color: var(--muted); font-size: 14px; }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: start; }
.contact-facts { display: flex; gap: 28px; margin-top: 28px; }
.contact-facts a { color: inherit; }
.glass-panel {
  --sx: 0;
  --sz: 0;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
  display: grid;
  gap: 14px;
  transform: perspective(1200px) rotateX(calc(var(--sx) * 1deg)) translateZ(calc(var(--sz) * 1px));
  transition: transform .5s cubic-bezier(.2, .7, .2, 1);
}
.contact-form label { display: grid; gap: 6px; font-size: 13px; color: #c9d7f2; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(5, 9, 20, .55);
  outline: none;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  border-color: #3aa0ff;
  box-shadow: 0 0 0 3px rgba(29, 125, 255, .2);
}
.form-ok { color: #7dd3fc; font-weight: 600; }

.footer { border-top: 1px solid var(--line); padding: 22px 24px 32px; }
.footer-row { display: flex; justify-content: space-between; align-items: center; color: var(--muted); font-size: 14px; }

.modal {
  position: fixed; inset: 0; z-index: 50;
  display: grid; place-items: center;
  background: rgba(4, 8, 18, .72);
  backdrop-filter: blur(8px);
}
.modal[hidden] { display: none; }
.modal-card {
  width: min(720px, calc(100% - 32px));
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0b1630;
}
.modal-close {
  position: absolute; top: 10px; right: 12px;
  background: none; border: 0; color: #fff; font-size: 28px; cursor: pointer;
}
.video-frame {
  aspect-ratio: 16 / 9;
  display: grid; place-items: center;
  background: radial-gradient(circle at 50% 40%, #1d4ed8, #0b1630 70%);
  text-align: center;
}
.video-play {
  width: 72px; height: 72px; border-radius: 50%;
  background: #1d7dff; box-shadow: 0 0 30px #1d7dff;
  position: relative; margin-bottom: 12px;
}
.video-play::after {
  content: "";
  position: absolute; left: 29px; top: 24px;
  border-style: solid; border-width: 12px 0 12px 18px;
  border-color: transparent transparent transparent #fff;
}

.reveal {
  opacity: 0;
  transform: perspective(1200px) translate3d(0, 36px, -32px) rotateX(8deg);
  transform-origin: 50% 88%;
  transition: opacity .75s ease, transform .95s cubic-bezier(.16, .84, .22, 1);
}
.section .reveal.is-visible {
  opacity: 1;
  transform: perspective(1200px) rotateX(calc(var(--sx, 0) * 1deg)) translate3d(0, calc(var(--hy, 0) * 1px), calc(var(--sz, 0) * 1px));
}
.hero .reveal {
  animation: rise3d .95s cubic-bezier(.16, .84, .22, 1) forwards;
}
@keyframes rise3d {
  from {
    opacity: 0;
    transform: perspective(1200px) translate3d(0, 28px, -24px) rotateX(7deg);
  }
  to {
    opacity: 1;
    transform: perspective(1200px) rotateX(calc(var(--sx, 0) * 1deg)) translate3d(0, calc(var(--hy, 0) * 1px), calc(var(--sz, 0) * 1px));
  }
}
.delay-1 { transition-delay: .1s; animation-delay: .1s; }
.delay-2 { transition-delay: .18s; animation-delay: .18s; }
.delay-3 { transition-delay: .26s; animation-delay: .26s; }
.delay-4 { transition-delay: .34s; animation-delay: .34s; }
.delay-5 { transition-delay: .42s; animation-delay: .42s; }
.delay-6 { transition-delay: .5s; animation-delay: .5s; }

@media (hover: none) {
  .cursor-glow { display: none; }
}

@media (max-width: 900px) {
  .loader-stage { width: min(640px, 96vw); background: transparent; }
  .logo-mark {
    transform: none;
    transform-style: flat;
  }
  .logo-orb {
    animation: logoOrbit 8s linear infinite;
  }
  .logo-spin {
    animation: logoOrbit 6.5s linear infinite;
  }
  .client-rail.is-paused .client-track {
    animation-play-state: running;
  }
  .loader-scene {
    height: clamp(200px, 58vw, 300px);
    max-height: 44vh;
    background: transparent;
  }
  .nav {
    top: max(10px, env(safe-area-inset-top));
    width: calc(100% - 20px);
    padding: 8px 8px 8px 12px;
    border-radius: 20px;
  }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-cta {
    padding: 9px 14px;
    font-size: 13px;
  }
  .lang-btn { padding: 8px 7px; font-size: 10px; }
  .nav.is-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    padding: 8px;
    border-radius: 18px;
    background: rgba(8, 14, 32, .96);
    border: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
  }
  .nav.is-open .nav-links a {
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 16px;
  }
  .nav.is-open .nav-links a.active {
    background: rgba(29, 125, 255, .16);
  }
  .nav.is-open .nav-links a.active::after { display: none; }

  .hero {
    min-height: auto;
    padding: 96px 16px 88px;
    overflow: visible;
  }
  .hero-photo {
    filter: saturate(.26) brightness(.36) contrast(.94);
    opacity: .5;
  }
  .hero-overlay {
    background:
      rgba(5, 9, 20, .55),
      radial-gradient(ellipse at 50% 18%, rgba(18, 62, 150, .14), transparent 50%),
      linear-gradient(180deg, rgba(5, 9, 20, .42) 0%, rgba(5, 9, 20, .5) 55%, #050914 100%);
  }
  .wordmark { font-size: 13.5px; letter-spacing: -.06em; }
  .logo { min-width: 0; }
  .nav-actions, .nav-toggle, .nav-cta { flex-shrink: 0; }
  .nav-toggle {
    border-color: rgba(80, 170, 255, .45);
    background: rgba(29, 125, 255, .18);
  }
  .hero-copy h1 {
    font-size: clamp(22px, 6.2vw, 28px);
    max-width: 11em;
    margin-inline: auto;
  }
  .hero-copy h1 .grad { display: block; }
  .hero-sub {
    font-size: 13px;
    max-width: 28ch;
    margin-inline: auto;
  }
  .glow-line.short { width: 40px; }

  .laptop-wrap {
    width: min(440px, 100%);
    margin: 8px auto 12px;
    padding-top: 10px;
    perspective: 1600px;
    -webkit-perspective: 1600px;
    perspective-origin: 50% 18%;
    z-index: 3;
    overflow: visible;
  }
  .laptop-wrap:has(.laptop.is-open) {
    animation: laptopFloat 5.5s ease-in-out infinite;
    animation-delay: .45s;
  }
  .laptop {
    transform: rotateX(12deg) translateY(-8%);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    transition: transform 3.15s cubic-bezier(.2, .85, .22, 1);
  }
  .laptop.is-open { transform: translateY(-4px); }
  .mbp-lid {
    padding: 10px 10px 8px;
    border-radius: 16px 16px 10px 10px;
    transform: perspective(900px) rotateX(-92deg);
    -webkit-transform: perspective(900px) rotateX(-92deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
  }
  .laptop.is-open .mbp-lid {
    transform: perspective(900px) rotateX(0deg);
    -webkit-transform: perspective(900px) rotateX(0deg);
    animation: none;
  }
  .laptop.is-open .mbp-boot-track i {
    animation: bootBar 2.2s cubic-bezier(.4, 0, .2, 1) forwards;
  }
  .mbp-lid-back { border-radius: 16px 16px 10px 10px; }
  .mbp-screen { aspect-ratio: 16 / 12; padding: 14px 8px 8px; }
  .dash-grid { grid-template-columns: 1fr; }
  .feed-card { max-height: 78px; overflow: hidden; }
  .code-run { font-size: 7.5px; }
  .kpi strong { font-size: 12px; }
  .dock-btn { padding: 6px 8px; font-size: 10px; }
  .mbp-base { height: 14px; margin: 0 -18px; }
  .trust-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .trust-logos { flex-wrap: wrap; gap: 10px 14px; }

  .service-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    width: 100%;
    margin-top: 0;
    padding-top: 16px;
    z-index: 4;
  }
  .glass-card {
    padding: 14px 6px 12px;
    border-radius: 14px;
    text-align: center;
  }
  .glass-card h3 {
    font-size: 11px;
    line-height: 1.25;
    font-weight: 700;
  }
  .card-icon {
    width: 26px;
    height: 26px;
    margin: 0 auto 8px;
  }
  .card-dots { display: none; }

  .stats-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    margin-top: 22px;
  }
  .stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    text-align: center;
  }
  .stats strong { font-size: 22px; }
  .stats span { font-size: 11px; line-height: 1.25; }
  .stats-cta .btn { display: none; }

  .pillars {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 10px;
    font-size: 13px;
    text-align: center;
  }

  .section { padding: 64px 16px; }
  .section-head { margin-bottom: 28px; }
  .grid-3, .portfolio-grid, .steps, .client-board { grid-template-columns: 1fr 1fr; }
  .client-logo { min-width: 128px; height: 60px; padding: 6px 12px; }
  .client-logo.wide { min-width: 176px; }
  .client-logo img { height: 44px; max-width: 150px; }
  .client-photo { height: 120px; }
  .client-card h3 { font-size: 14px; }
  .client-card p { font-size: 12px; }
  .client-mono { width: 38px; height: 38px; border-radius: 10px; }
  .step-photo { height: 96px; }
  .client-rail-b { margin-bottom: 20px; }

  #services { padding: 48px 16px 40px; }
  #services .section-head { margin-bottom: 18px; }
  #services .lead { font-size: 14px; }
  .svc-grid { gap: 10px; }
  .svc-pair { gap: 8px; }
  .svc-pair:first-child a.feature-card { border-top: 0; }
  #services a.feature-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr auto;
    align-items: start;
    gap: 6px;
    padding: 12px 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.035);
    min-height: 0;
  }
  #services .feature-icon {
    width: 26px;
    height: 26px;
    min-width: 26px;
    font-size: 10px;
    border-radius: 7px;
    background: rgba(29, 125, 255, .16);
    border: 1px solid rgba(56, 189, 248, .22);
    color: #9bd4ff;
  }
  #services .feature-card h3 {
    font-size: 13px;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  #services .feature-card p {
    -webkit-line-clamp: 2;
    font-size: 11.5px;
  }
  #services a.feature-card .more {
    justify-self: end;
    font-size: 13px;
    opacity: .7;
  }
  .svc-pair .feature-card:nth-child(1) { --in-x: -22px; --in-y: 22deg; }
  .svc-pair .feature-card:nth-child(2) {
    --in-x: 22px;
    --in-y: -22deg;
    border-left: 0;
    padding-left: 12px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "stage"
      "copy";
    gap: 12px;
  }
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  #about { padding-top: 48px; padding-bottom: 40px; }
  .about-intro h2 {
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -.03em;
    max-width: 16em;
  }
  .about-copy .lead {
    font-size: 13px;
    line-height: 1.45;
  }
  .checklist {
    margin-top: 10px;
  }
  .checklist li {
    padding: 5px 0 5px 22px;
    font-size: 12.5px;
    line-height: 1.35;
  }
  .checklist li::before {
    top: 10px;
    width: 8px;
    height: 8px;
  }
  .contact-facts { flex-direction: column; gap: 14px; }
  .footer-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer { padding: 22px 16px calc(96px + env(safe-area-inset-bottom)); }

  .contact-form input,
  .contact-form select,
  .contact-form textarea { font-size: 16px; padding: 14px; }

  .hero-actions { margin-top: 14px; }
  .scroll-cue { bottom: calc(78px + env(safe-area-inset-bottom)); }
  .mobile-cta {
    display: flex;
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    z-index: 18;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .4);
  }
  .mobile-cta.is-hidden { display: none; }
  body.nav-locked { overflow: hidden; }
}

@media (max-width: 640px) {
  .grid-3, .portfolio-grid, .steps, .client-board { grid-template-columns: 1fr; }
  .about-intro h2 { font-size: 20px; }
  .about-copy .lead { font-size: 12.5px; }
  .svc-pair { grid-template-columns: 1fr 1fr; min-height: 0; }
  .svc-pair .feature-card:nth-child(2) { padding-left: 10px; }
  #services .feature-card p { display: none; }
}

@media (max-width: 420px) {
  .nav-cta { padding: 9px 12px; font-size: 12px; }
}

@media (min-width: 901px) {
  .laptop-wrap:has(.laptop.is-open) {
    animation: laptopFloat 5.5s ease-in-out infinite;
    animation-delay: .45s;
  }
  .laptop {
    transform: rotateX(14deg) translateY(-16%);
    transition: transform 3.15s cubic-bezier(.2, .85, .22, 1);
  }
  .laptop.is-open {
    transform: translateY(-8px);
  }
  .mbp-lid {
    transform: perspective(1200px) rotateX(-92deg);
  }
  .mbp-lid-back {
    display: grid;
    place-items: center;
    position: absolute;
    inset: 0;
    border-radius: 22px 22px 14px 14px;
    background:
      linear-gradient(165deg, #d8d8de 0%, #9a9aa3 38%, #5c5c64 100%);
    border: 1px solid #c8c8ce;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.55),
      inset 0 -8px 16px rgba(0,0,0,.28);
    transform: rotateX(180deg) translateZ(1.2px);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }
  .mbp-logo {
    width: 42px;
    height: 42px;
    color: rgba(18, 22, 32, .42);
    filter: drop-shadow(0 1px 0 rgba(255,255,255,.35));
  }
  .mbp-bezel {
    transform: translateZ(0.8px);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }
  .mbp-wake {
    opacity: 1;
    transition: opacity .5s ease;
  }
  .laptop.is-open .mbp-lid {
    transform: perspective(1200px) rotateX(0deg);
    animation: none;
  }
  .laptop.is-open .mbp-boot-track i {
    animation: bootBar 2.2s cubic-bezier(.4, 0, .2, 1) forwards;
  }
  .laptop.is-booted .mbp-wake { opacity: 0; }
  .laptop.is-open .mbp-bezel {
    box-shadow:
      inset 0 0 0 1px #111,
      0 0 0 1px rgba(56, 189, 248, .12),
      0 18px 50px rgba(56, 189, 248, .18);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fx-scan, .fx-grid, .signal-track { animation: none !important; }
  .fx-veil { display: none !important; }
}
