
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --laser: #00d4ff;
  --laser2: #0055ff;
  --laser3: #7700ff;
  --dark: #010408;
  --font-d: 'Orbitron', sans-serif;
  --font-b: 'Inter', sans-serif;
}
html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: #fff;
  font-family: var(--font-b);
  cursor: none;
  overflow-x: hidden;
}

/* ─── CURSOR ─── */
#cur {
  position: fixed; z-index: 99999; pointer-events: none;
  width: 20px; height: 20px; border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, #fff 0%, var(--laser) 40%, transparent 70%);
  box-shadow: 0 0 8px 3px #fff, 0 0 20px 8px var(--laser), 0 0 60px 18px rgba(0,212,255,.45), 0 0 120px 30px rgba(0,212,255,.18);
  transition: width .12s, height .12s;
  mix-blend-mode: screen;
}
#cur.big { width: 56px; height: 56px; background: transparent; border: 1.5px solid var(--laser); box-shadow: 0 0 20px var(--laser), 0 0 50px rgba(0,212,255,.4); mix-blend-mode: normal; }
#trail { position: fixed; inset: 0; pointer-events: none; z-index: 99998; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 52px;
  background: linear-gradient(to bottom, rgba(1,4,8,.97), transparent);
}
.nav-logo {
  font-family: var(--font-d); font-size: 12px; font-weight: 700;
  letter-spacing: .3em; color: var(--laser); text-decoration: none; text-transform: uppercase;
  text-shadow: 0 0 20px rgba(0,212,255,.5);
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.4); text-decoration: none; transition: color .25s;
}
.nav-links a:hover { color: var(--laser); }
.nav-cta {
  font-family: var(--font-d); font-size: 10px; font-weight: 700;
  letter-spacing: .25em; text-transform: uppercase; color: #000;
  background: var(--laser); padding: 12px 30px; text-decoration: none;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  box-shadow: 0 0 20px rgba(0,212,255,.5); transition: box-shadow .25s;
}
.nav-cta:hover { box-shadow: 0 0 40px rgba(0,212,255,.9), 0 0 80px rgba(0,212,255,.4); }

/* ─── HERO ─── */
#hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; overflow: hidden;
}

/* Parallax bg */
.hero-bg {
  background-image: url('../img/hero.jpg');
  background-size: cover; background-position: 65% center;
  filter: brightness(.38) saturate(1.5);
  will-change: transform; transform: scale(1.15);
}

/* Dramatic vignette */
.hero-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 90% at 70% 50%, rgba(0,212,255,.08) 0%, transparent 60%),
    linear-gradient(to right, rgba(1,4,8,.97) 0%, rgba(1,4,8,.78) 35%, rgba(1,4,8,.05) 80%),
    linear-gradient(to bottom, rgba(1,4,8,.5) 0%, transparent 12%, transparent 82%, rgba(1,4,8,.95) 100%);
}

/* Energy particles canvas */
#energyCanvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 2;
}

/* Scanline */
.hero-scan {
  position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0,212,255,.012) 3px, rgba(0,212,255,.012) 4px);
  animation: scanscroll 10s linear infinite;
}
@keyframes scanscroll { to { background-position: 0 200px; } }

/* Content */
.hero-content {
  position: relative; z-index: 3; padding: 0 60px; max-width: 760px; margin-left: 52px;
}

/* HOOK — the first line they read */
.hero-hook {
  font-size: clamp(13px, 1.5vw, 17px); font-weight: 300; letter-spacing: .08em;
  color: var(--laser); margin-bottom: 18px; display: flex; align-items: center; gap: 14px;
  opacity: 0; animation: rise .7s .1s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-hook::before {
  content: ''; display: block; width: 40px; height: 1px;
  background: var(--laser); box-shadow: 0 0 8px var(--laser);
}
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--laser);
  box-shadow: 0 0 10px var(--laser); animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: .6; }
}

/* NAME — massive, gradient, glitch */
.hero-name {
  font-family: var(--font-d);
  font-size: clamp(56px, 9vw, 120px);
  font-weight: 900; line-height: .88; letter-spacing: -.03em;
  background: linear-gradient(115deg, #fff 0%, #d8f4ff 35%, var(--laser) 65%, var(--laser2) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 50px rgba(0,212,255,.3));
  margin-bottom: 6px;
  opacity: 0; animation: rise .9s .25s cubic-bezier(.16,1,.3,1) forwards;
  position: relative;
}
.hero-name::before {
  content: attr(data-text); position: absolute; top: 0; left: 0;
  background: inherit; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: glitch-a 8s infinite; clip-path: polygon(0 0,100% 0,100% 42%,0 42%);
}
.hero-name::after {
  content: attr(data-text); position: absolute; top: 0; left: 0;
  background: inherit; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: glitch-b 8s infinite; clip-path: polygon(0 58%,100% 58%,100% 100%,0 100%);
}
@keyframes glitch-a {
  0%,91%,100% { transform: translate(0); opacity: 0; }
  92% { transform: translate(-4px,1px); opacity: .8; filter: drop-shadow(3px 0 rgba(255,0,100,.7)); }
  94% { transform: translate(3px,-1px); opacity: .5; }
  96% { transform: translate(-1px,0); opacity: .7; }
}
@keyframes glitch-b {
  0%,91%,100% { transform: translate(0); opacity: 0; }
  92% { transform: translate(4px,-1px); opacity: .7; filter: drop-shadow(-3px 0 rgba(0,212,255,.7)); }
  94% { transform: translate(-3px,1px); opacity: .4; }
  96% { transform: translate(2px,0); opacity: .6; }
}

/* TAGLINE — the emotional sell */
.hero-tagline {
  font-size: clamp(22px, 3vw, 38px); font-weight: 200; line-height: 1.3;
  color: rgba(255,255,255,.85); margin-bottom: 20px; letter-spacing: -.01em;
  opacity: 0; animation: rise .8s .45s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-tagline em { font-style: normal; color: var(--laser); font-weight: 400; }

/* SUB COPY */
.hero-sub {
  font-size: 16px; font-weight: 300; line-height: 1.75;
  color: rgba(255,255,255,.52); max-width: 500px; margin-bottom: 44px;
  opacity: 0; animation: rise .7s .6s cubic-bezier(.16,1,.3,1) forwards;
}

/* CTAs */
.hero-ctas {
  display: flex; gap: 20px; align-items: center; flex-wrap: wrap;
  opacity: 0; animation: rise .7s .75s cubic-bezier(.16,1,.3,1) forwards;
}
.btn-main {
  font-family: var(--font-d); font-size: 11px; font-weight: 700;
  letter-spacing: .25em; text-transform: uppercase; color: #000;
  background: linear-gradient(90deg, var(--laser), var(--laser2));
  padding: 18px 48px; text-decoration: none; display: inline-block;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  box-shadow: 0 0 30px rgba(0,212,255,.5), 0 0 60px rgba(0,212,255,.2);
  transition: all .25s; position: relative; overflow: hidden;
}
.btn-main::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  transform: translateX(-100%); transition: transform .5s;
}
.btn-main:hover::before { transform: translateX(100%); }
.btn-main:hover { box-shadow: 0 0 50px rgba(0,212,255,.9), 0 0 100px rgba(0,212,255,.4); transform: translateY(-3px); }
.btn-ghost {
  font-family: var(--font-d); font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--laser); text-decoration: none;
  display: inline-flex; align-items: center; gap: 12px; transition: gap .25s;
}
.btn-ghost:hover { gap: 20px; }
.btn-ghost::after { content: '→'; font-size: 16px; }

/* Scroll hint */
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0; animation: fadein 1s 1.4s forwards;
}
.hero-scroll span {
  font-family: var(--font-d); font-size: 8px; letter-spacing: .4em;
  color: rgba(255,255,255,.3); text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, var(--laser), transparent);
  box-shadow: 0 0 8px var(--laser); animation: scrollpulse 2s ease-in-out infinite;
}
@keyframes scrollpulse { 0%,100% { height: 56px; opacity: .8; } 50% { height: 26px; opacity: .3; } }
@keyframes rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes fadein { to { opacity: 1; } }

/* ─── MARQUEE ─── */
.marquee-wrap {
  position: relative; overflow: hidden; z-index: 2;
  background: rgba(0,12,30,.9);
  border-top: 1px solid rgba(0,212,255,.1);
  border-bottom: 1px solid rgba(0,212,255,.1);
}
.marquee-wrap::before, .marquee-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 140px; z-index: 2;
}
.marquee-wrap::before { left: 0; background: linear-gradient(to right, rgba(0,12,30,.9), transparent); }
.marquee-wrap::after { right: 0; background: linear-gradient(to left, rgba(0,12,30,.9), transparent); }
.marquee-track {
  display: flex; width: max-content; padding: 22px 0;
  animation: marquee 26s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-item {
  font-family: var(--font-d); font-size: 9px; font-weight: 700;
  letter-spacing: .35em; text-transform: uppercase; color: rgba(255,255,255,.25);
  padding: 0 44px; white-space: nowrap; transition: color .25s;
  display: flex; align-items: center; gap: 16px;
}
.marquee-item:hover { color: var(--laser); }
.marquee-item::after { content: '✦'; color: var(--laser); font-size: 7px; opacity: .4; }

/* ─── SECTION SHARED ─── */
section { position: relative; }
.s-inner { max-width: 1240px; margin: 0 auto; padding: 110px 60px; }
.s-label {
  font-family: var(--font-d); font-size: 9px; font-weight: 700;
  letter-spacing: .6em; color: var(--laser); text-transform: uppercase;
  margin-bottom: 16px; display: flex; align-items: center; gap: 16px;
}
.s-label::before { content: ''; width: 20px; height: 1px; background: var(--laser); box-shadow: 0 0 8px var(--laser); }
.s-heading {
  font-family: var(--font-d); font-size: clamp(30px, 4.5vw, 58px);
  font-weight: 900; line-height: 1; letter-spacing: -.02em; margin-bottom: 32px;
}
.grad-text {
  background: linear-gradient(115deg, #fff 20%, var(--laser) 70%, var(--laser2) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ─── PROOF SECTION (videos) ─── */
#proof {
  background: #020812;
  position: relative; overflow: hidden;
}
#proof::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,55,120,.35) 0%, transparent 65%);
}
.proof-intro { text-align: center; margin-bottom: 60px; }
.proof-intro .s-label { justify-content: center; }
.proof-intro .s-label::before { display: none; }

/* BIG MAIN VIDEO */
.proof-main {
  position: relative; margin-bottom: 24px; border: 1px solid rgba(0,212,255,.15);
  background: #000; overflow: hidden;
  transition: border-color .35s, box-shadow .35s;
}
.proof-main:hover { border-color: rgba(0,212,255,.5); box-shadow: 0 0 60px rgba(0,212,255,.15); }
.proof-main::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--laser3), var(--laser), var(--laser2));
  box-shadow: 0 0 20px var(--laser); z-index: 2; opacity: 0; transition: opacity .35s;
}
.proof-main:hover::before { opacity: 1; }
.proof-main .video-wrap { position: relative; padding-bottom: 46%; height: 0; overflow: hidden; }
.proof-main .video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.proof-main-meta { padding: 24px 28px; background: rgba(0,10,25,.95); }
.proof-main-tag {
  font-family: var(--font-d); font-size: 8px; letter-spacing: .35em; color: var(--laser);
  text-transform: uppercase; margin-bottom: 8px;
}
.proof-main-title { font-size: 18px; font-weight: 300; color: #fff; margin-bottom: 6px; letter-spacing: -.01em; }
.proof-main-desc { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.45); line-height: 1.6; }

/* SECONDARY VIDEOS row */
.proof-secondary { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.proof-card {
  background: rgba(0,10,25,.95); border: 1px solid rgba(0,212,255,.12);
  overflow: hidden; transition: border-color .3s, transform .3s, box-shadow .3s;
  position: relative;
}
.proof-card:hover { border-color: rgba(0,212,255,.45); transform: translateY(-5px); box-shadow: 0 24px 60px rgba(0,0,0,.5), 0 0 30px rgba(0,212,255,.1); }
.proof-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--laser3), var(--laser), var(--laser2));
  transform: scaleX(0); transform-origin: left; transition: transform .45s cubic-bezier(.16,1,.3,1);
  box-shadow: 0 0 14px var(--laser); z-index: 2;
}
.proof-card:hover::before { transform: scaleX(1); }
.proof-card .video-wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.proof-card .video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.proof-card-meta { padding: 18px 22px 22px; }
.proof-card-tag { font-family: var(--font-d); font-size: 8px; letter-spacing: .3em; color: var(--laser); text-transform: uppercase; margin-bottom: 6px; }
.proof-card-title { font-size: 14px; font-weight: 400; color: #fff; margin-bottom: 4px; line-height: 1.3; }
.proof-card-desc { font-size: 12px; font-weight: 300; color: rgba(255,255,255,.4); line-height: 1.5; }

/* ─── WHAT ─── */
#what { background: #030a18; overflow: hidden; }
#what::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 100% 80% at 75% 50%, rgba(0,30,65,.7) 0%, transparent 65%);
}
.what-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; position: relative; z-index: 1; }
.what-text p { font-size: 16px; font-weight: 300; line-height: 1.9; color: rgba(255,255,255,.6); margin-bottom: 22px; }
.what-text p strong { color: #fff; font-weight: 400; }
.what-quote {
  padding: 26px 30px; margin: 32px 0;
  border-left: 2px solid var(--laser);
  background: rgba(0,212,255,.04);
  box-shadow: -3px 0 20px rgba(0,212,255,.1);
}
.what-quote p { font-size: 18px; font-weight: 200; font-style: italic; color: rgba(255,255,255,.85); line-height: 1.6; margin: 0; }

/* holo frame */
.holo-frame { position: relative; }
.holo-frame img { width: 100%; display: block; filter: brightness(.9) contrast(1.1); }
.holo-frame-border {
  position: absolute; inset: -2px; z-index: -1;
  background: conic-gradient(from 0deg, var(--laser), var(--laser2), var(--laser3), #ff0088, var(--laser));
  animation: spin-border 5s linear infinite;
}
@keyframes spin-border { to { transform: rotate(360deg); } }
.holo-frame-fill { position: absolute; inset: 2px; background: #030a18; z-index: -1; }
.holo-frame .corner { position: absolute; width: 20px; height: 20px; }
.holo-frame .corner.tl { top: 10px; left: 10px; border-top: 2px solid var(--laser); border-left: 2px solid var(--laser); box-shadow: -2px -2px 8px var(--laser); }
.holo-frame .corner.tr { top: 10px; right: 10px; border-top: 2px solid var(--laser); border-right: 2px solid var(--laser); box-shadow: 2px -2px 8px var(--laser); }
.holo-frame .corner.bl { bottom: 10px; left: 10px; border-bottom: 2px solid var(--laser); border-left: 2px solid var(--laser); box-shadow: -2px 2px 8px var(--laser); }
.holo-frame .corner.br { bottom: 10px; right: 10px; border-bottom: 2px solid var(--laser); border-right: 2px solid var(--laser); box-shadow: 2px 2px 8px var(--laser); }
.holo-sweep {
  position: absolute; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,.9), transparent);
  box-shadow: 0 0 16px 4px rgba(0,212,255,.5);
  animation: holo-sweep 3.5s ease-in-out infinite;
}
@keyframes holo-sweep { 0% { top: 0; opacity: .9; } 95% { top: 100%; opacity: 0; } 100% { top: 0; opacity: 0; } }
.holo-hud {
  position: absolute; top: 14px; left: 14px; right: 14px;
  display: flex; justify-content: space-between;
  font-family: var(--font-d); font-size: 7px; color: var(--laser); letter-spacing: .2em; opacity: .65;
}

/* ─── STAGE ─── */
#stage { overflow: hidden; }
.stage-wrap { position: relative; height: 680px; overflow: hidden; }
.stage-bg {
  background-image: url('../img/spotlight.jpg');
  background-size: cover; background-position: center;
  filter: brightness(.28) saturate(.9);
  will-change: transform;
}
.stage-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(1,4,8,.96) 0%, rgba(1,4,8,.3) 55%, rgba(1,4,8,.9) 100%),
              linear-gradient(to bottom, rgba(1,4,8,.5) 0%, transparent 18%, transparent 82%, rgba(1,4,8,.88) 100%);
}
.stage-floor {
  position: absolute; bottom: 0; left: -20%; right: -20%; height: 42%;
  background-image: linear-gradient(rgba(0,212,255,.12) 1px,transparent 1px), linear-gradient(90deg,rgba(0,212,255,.12) 1px,transparent 1px);
  background-size: 60px 60px;
  transform: perspective(400px) rotateX(62deg); transform-origin: bottom center;
  mask-image: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 50%);
  animation: floor-flow 3s linear infinite; pointer-events: none;
}
@keyframes floor-flow { to { background-position: 0 60px, 60px 0; } }
.stage-beams {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 3% 55% at 22% 0%, rgba(0,212,255,.1) 0%, transparent 100%),
    radial-gradient(ellipse 3% 55% at 50% 0%, rgba(0,85,255,.08) 0%, transparent 100%),
    radial-gradient(ellipse 3% 55% at 78% 0%, rgba(119,0,255,.09) 0%, transparent 100%);
}
.stage-content { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; padding: 0 80px; max-width: 1240px; margin: 0 auto; }
.stage-text { max-width: 580px; }
.stage-text p { font-size: 17px; font-weight: 200; line-height: 1.85; color: rgba(255,255,255,.62); margin-bottom: 40px; }
.stats { display: flex; margin-top: 52px; gap: 2px; }
.stat {
  flex: 1; padding: 24px 22px; background: rgba(0,212,255,.04);
  border-top: 1px solid rgba(0,212,255,.2); border-right: 1px solid rgba(0,212,255,.07);
  position: relative; overflow: hidden; transition: background .3s;
}
.stat:first-child { border-left: 1px solid rgba(0,212,255,.07); }
.stat::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, var(--laser), var(--laser2));
  transform: scaleX(0); transform-origin: left; transition: transform .5s cubic-bezier(.16,1,.3,1); box-shadow: 0 0 10px var(--laser);
}
.stat:hover { background: rgba(0,212,255,.09); }
.stat:hover::before { transform: scaleX(1); }
.stat-num {
  font-family: var(--font-d); font-size: 38px; font-weight: 900;
  background: linear-gradient(135deg, #fff, var(--laser)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: 5px;
}
.stat-label { font-size: 9px; letter-spacing: .2em; color: rgba(255,255,255,.3); text-transform: uppercase; }

/* ─── ABOUT ─── */
#about { background: #04091a; overflow: hidden; }
#about::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 65% 100% at 0% 50%, rgba(0,20,55,.75) 0%, transparent 58%);
}
.about-grid { display: grid; grid-template-columns: 400px 1fr; gap: 88px; align-items: start; position: relative; z-index: 1; }
.about-port { position: relative; }
.about-port img { width: 100%; display: block; filter: contrast(1.06); }
.about-port-border {
  position: absolute; inset: -2px; z-index: -1;
  background: linear-gradient(180deg, var(--laser), var(--laser2), var(--laser3), var(--laser));
  background-size: 100% 400%; animation: ab-flow 4s linear infinite;
}
@keyframes ab-flow { to { background-position: 0 400%; } }
.about-port::after { content: ''; position: absolute; inset: 0; box-shadow: 0 28px 70px rgba(0,0,0,.6); pointer-events: none; }
.about-hud { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(1,4,8,.92); border-top: 1px solid rgba(0,212,255,.2); padding: 16px 20px; backdrop-filter: blur(12px); }
.hud-label { font-family: var(--font-d); font-size: 7px; letter-spacing: .4em; color: var(--laser); opacity: .7; margin-bottom: 5px; }
.hud-name { font-family: var(--font-d); font-size: 14px; font-weight: 900; color: #fff; letter-spacing: .05em; }
.hud-status { display: flex; align-items: center; gap: 8px; margin-top: 10px; }
.hud-dot { width: 6px; height: 6px; border-radius: 50%; background: #00ff88; box-shadow: 0 0 8px #00ff88; animation: pulse-dot 2s ease-in-out infinite; }
.hud-status-text { font-family: var(--font-d); font-size: 7px; letter-spacing: .3em; color: #00ff88; text-transform: uppercase; }
.hud-bar { height: 1px; background: rgba(0,212,255,.14); margin-top: 10px; position: relative; overflow: hidden; }
.hud-bar::after { content: ''; position: absolute; left: 0; top: 0; height: 100%; width: 0; background: linear-gradient(90deg, var(--laser), var(--laser2)); box-shadow: 0 0 8px var(--laser); animation: hbar 3s ease-in-out infinite alternate; }
@keyframes hbar { to { width: 100%; } }
.about-text p { font-size: 16px; font-weight: 200; line-height: 1.95; color: rgba(255,255,255,.62); margin-bottom: 22px; }
.about-text p strong { color: #fff; font-weight: 400; }
.tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.tag { font-family: var(--font-d); font-size: 8px; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; border: 1px solid rgba(0,212,255,.22); padding: 8px 18px; clip-path: polygon(6px 0%,100% 0%,calc(100% - 6px) 100%,0% 100%); background: rgba(0,212,255,.03); position: relative; overflow: hidden; transition: all .3s; }
.tag span { position: relative; z-index: 1; color: var(--laser); }
.tag::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--laser), var(--laser2)); opacity: 0; transition: opacity .3s; }
.tag:hover span { color: #000; }
.tag:hover::before { opacity: 1; }

/* ─── TESTIMONIALS ─── */
#testi { background: #020810; overflow: hidden; }
#testi::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0,50,120,.1) 0%, transparent 60%);
}
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 52px; background: rgba(0,212,255,.07); position: relative; z-index: 1; }
.testi-card { background: rgba(2,6,16,.97); padding: 40px; position: relative; overflow: hidden; transition: background .35s, transform .35s; }
.testi-card:hover { background: rgba(0,14,32,.97); transform: scale(1.025); z-index: 5; box-shadow: 0 24px 60px rgba(0,0,0,.5); }
.testi-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--laser3), var(--laser), var(--laser2)); box-shadow: 0 0 14px var(--laser); transform: scaleX(0); transform-origin: left; transition: transform .5s cubic-bezier(.16,1,.3,1); }
.testi-card:hover::before { transform: scaleX(1); }
.testi-stars { font-size: 16px; margin-bottom: 18px; letter-spacing: 4px; background: linear-gradient(90deg, var(--laser), var(--laser2)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.testi-q { font-size: 14px; font-weight: 200; line-height: 1.8; color: rgba(255,255,255,.72); margin-bottom: 24px; font-style: italic; }
.testi-name { font-family: var(--font-d); font-size: 8px; font-weight: 700; letter-spacing: .3em; color: var(--laser); text-transform: uppercase; }
.testi-role { font-size: 11px; color: rgba(255,255,255,.3); margin-top: 4px; }

/* ─── BOOKING ─── */
#book { position: relative; overflow: hidden; background: var(--dark); min-height: 90vh; display: flex; align-items: center; }
#bookCanvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.book-inner { text-align: center; position: relative; z-index: 2; width: 100%; padding: 80px 60px; }
.book-inner .s-label { justify-content: center; }
.book-inner .s-label::before { display: none; }
.book-inner .s-heading { font-size: clamp(40px,7vw,84px); line-height: .92; margin-bottom: 24px; }
.book-inner > p { font-size: 18px; font-weight: 200; color: rgba(255,255,255,.55); max-width: 560px; margin: 0 auto 56px; line-height: 1.8; }
.book-ctas { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.book-contact { margin-top: 52px; font-size: 13px; color: rgba(255,255,255,.3); letter-spacing: .1em; }
.book-contact a { color: var(--laser); text-decoration: none; transition: text-shadow .25s; }
.book-contact a:hover { text-shadow: 0 0 12px var(--laser); }

/* ─── FOOTER ─── */
footer {
  background: #020810; border-top: 1px solid rgba(0,212,255,.07);
  padding: 40px 60px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
}
.footer-logo { font-family: var(--font-d); font-size: 11px; font-weight: 900; letter-spacing: .3em; color: var(--laser); }
.footer-links { display: flex; gap: 26px; list-style: none; }
.footer-links a { font-size: 10px; letter-spacing: .14em; color: rgba(255,255,255,.28); text-decoration: none; transition: color .25s; }
.footer-links a:hover { color: var(--laser); }
.footer-copy { font-size: 10px; color: rgba(255,255,255,.2); }

/* ─── SCROLL REVEAL ─── */
.rv { opacity: 0; transform: translateY(40px); transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); }
.rv.fl { transform: translateX(-40px); }
.rv.fr { transform: translateX(40px); }
.rv.sc { transform: scale(.93); }
.rv.up { opacity: 1; transform: none; }
.d1 { transition-delay: .07s; } .d2 { transition-delay: .15s; } .d3 { transition-delay: .24s; }
.d4 { transition-delay: .33s; } .d5 { transition-delay: .42s; }

/* ─── LASER RAIL ─── */
.laser-rail { position: fixed; left: 16px; top: 0; bottom: 0; z-index: 800; pointer-events: none; width: 2px; }
.laser-rail-inner { position: absolute; left: 0; width: 2px; background: linear-gradient(to bottom,transparent,var(--laser),transparent); box-shadow: 0 0 12px rgba(0,212,255,.7); }

/* ─── WIRE CONNECTOR ─── */
.wire-conn {
  position: relative; z-index: 2;
  height: 120px; display: flex; justify-content: center; overflow: visible;
  background: linear-gradient(to bottom, transparent, rgba(0,212,255,.015), transparent);
}
.wire-conn svg { position: absolute; top: 0; overflow: visible; }

@media (max-width: 900px) {
  nav { padding: 16px 24px; } .nav-links { display: none; }
  .hero-content { padding: 0 28px; margin-left: 0; }
  .what-grid, .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .testi-grid { grid-template-columns: 1fr; background: none; gap: 16px; }
  .proof-secondary { grid-template-columns: 1fr; }
  .s-inner { padding: 70px 28px; }
  .stage-content { padding: 0 28px; }
  .stats { flex-direction: column; }
  footer { padding: 32px 28px; flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .laser-rail, .wire-conn { display: none; }
  .book-inner { padding: 80px 28px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .rv { opacity: 1; transform: none; }
  #cur, #trail { display: none; } body { cursor: auto; }
}
