/* ============================================================
   PIXELS & PULSE v3 - Reality. Rewired.
   Dark cinema base. Violet anchor. Cyan + pink from the film.
   ============================================================ */

:root {
  --bg-black: #05060E;
  --bg-deep: #0B0D1F;
  --surface: #131630;
  --violet: #8B2FF8;
  --violet-bright: #B026FF;
  --violet-deep: #5B16C4;
  --cyan: #22E4FF;
  --pink: #FF3D8A;
  --amber: #FFB534;
  --lavender: #C9A9FF;
  --white: #FFFFFF;
  --grey: #97A0C3;

  --grad-hot: linear-gradient(135deg, #8B2FF8 0%, #B026FF 45%, #FF3D8A 100%);

  --font-display: 'Anton', sans-serif;
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --max-w: 1200px;
  --radius: 20px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

/* ---------- Film grain overlay ---------- */
.grain {
  position: fixed; inset: -100px;
  z-index: 300;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 0.9s steps(4) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-38px, 22px); }
  50% { transform: translate(24px, -30px); }
  75% { transform: translate(-14px, -12px); }
  100% { transform: translate(0, 0); }
}

/* ---------- Custom cursor ---------- */
@media (hover: hover) and (pointer: fine) {
  body.has-cursor, body.has-cursor a, body.has-cursor button, body.has-cursor summary { cursor: none; }
}
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 400;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.cursor-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}
.cursor-ring {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid rgba(176, 38, 255, 0.75);
  display: flex; align-items: center; justify-content: center;
  transition: width 0.35s var(--ease), height 0.35s var(--ease), border-color 0.35s, background 0.35s;
}
.cursor-ring__label {
  font-family: var(--font-head); font-weight: 700; font-size: 10px;
  letter-spacing: 0.18em;
  opacity: 0; transition: opacity 0.25s;
}
.cursor-ring.is-action {
  width: 84px; height: 84px;
  border-color: var(--cyan);
  background: rgba(5, 6, 14, 0.55);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.cursor-ring.is-action .cursor-ring__label { opacity: 1; }
.cursor-ring.is-link { width: 60px; height: 60px; border-color: var(--pink); }
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0;
  background: linear-gradient(90deg, var(--violet), var(--pink), var(--cyan));
  box-shadow: 0 0 12px rgba(176, 38, 255, 0.7);
  z-index: 301;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: 999px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, background 0.3s, border-color 0.3s;
  will-change: transform;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn--solid {
  background: var(--grad-hot);
  color: var(--white);
  box-shadow: 0 0 26px rgba(255, 61, 138, 0.35), 0 0 26px rgba(139, 47, 248, 0.3);
}
.btn--solid::after {
  content: '';
  position: absolute; top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s var(--ease);
}
.btn--solid:hover::after { left: 130%; }
.btn--solid:hover { box-shadow: 0 0 46px rgba(255, 61, 138, 0.55), 0 0 46px rgba(139, 47, 248, 0.45); }
.btn--ghost {
  border: 1px solid rgba(34, 228, 255, 0.45);
  color: var(--white);
  background: rgba(34, 228, 255, 0.04);
}
.btn--ghost:hover { border-color: var(--cyan); background: rgba(34, 228, 255, 0.12); box-shadow: 0 0 26px rgba(34, 228, 255, 0.3); }
.btn--big { font-size: 17px; padding: 18px 40px; }
.btn__arrow { transition: transform 0.3s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(5px); }

/* ---------- Eyebrow / section heads ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent, var(--lavender));
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 34px; height: 1.5px;
  background: var(--accent, var(--lavender));
  box-shadow: 0 0 10px var(--accent, var(--lavender));
}
.eyebrow::after {
  content: '';
  width: 34px; height: 1.5px;
  background: var(--accent, var(--lavender));
  box-shadow: 0 0 10px var(--accent, var(--lavender));
}
.eyebrow--left::after { display: none; }
.eyebrow--left::before { display: none; }

.section { padding: 120px 24px; max-width: var(--max-w); margin: 0 auto; position: relative; }
.section--wide { max-width: 1400px; }
.section__head { text-align: center; margin-bottom: 64px; position: relative; z-index: 2; }
.section__head h2, .about h2, .contact__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(30px, 4.6vw, 54px);
  line-height: 1.12;
  letter-spacing: -0.01em;
}
h2 em, h3 em {
  font-style: normal;
  color: var(--accent, var(--violet-bright));
  text-shadow: 0 0 30px var(--accent, rgba(176, 38, 255, 0.5));
}

/* split-line word animation */
.splitline .w { display: inline-block; overflow: hidden; vertical-align: bottom; }
.splitline .wi { display: inline-block; will-change: transform; }
/* while animating, the clipped glow reads as a box - keep em glow off until done */
.splitline:not(.split-done) em { text-shadow: none; }
.splitline.split-done .w { overflow: visible; }

/* ---------- Section decor (parallax shapes) ---------- */
.decor { position: absolute; pointer-events: none; z-index: 0; }
.decor--orb {
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}
.decor--plus {
  font-family: var(--font-body); font-weight: 300;
  color: rgba(151, 160, 195, 0.35);
  font-size: 22px;
  letter-spacing: 26px;
  line-height: 2.4;
  white-space: pre;
  user-select: none;
}
.decor--ring {
  border-radius: 50%;
  border: 1px solid rgba(34, 228, 255, 0.25);
  box-shadow: 0 0 40px rgba(34, 228, 255, 0.08) inset;
}

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .grain { animation: none; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 36px;
  z-index: 100;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(5, 6, 14, 0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: rgba(139, 47, 248, 0.15);
  padding: 14px 36px;
}
.nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 800;
  font-size: 16px; letter-spacing: 0.06em;
}
.nav__logo em { font-style: normal; color: var(--violet-bright); }
.nav__bolt { width: 22px; height: 22px; filter: drop-shadow(0 0 8px rgba(176, 38, 255, 0.8)); }
.nav__links { display: flex; gap: 34px; }
.nav__links a {
  font-size: 14.5px; font-weight: 500; color: var(--grey);
  transition: color 0.3s;
  position: relative;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1.5px;
  background: linear-gradient(90deg, var(--violet-bright), var(--cyan));
  transition: width 0.3s var(--ease);
  box-shadow: 0 0 8px var(--violet-bright);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { padding: 11px 24px; font-size: 14px; background: var(--grad-hot); box-shadow: 0 0 20px rgba(255, 61, 138, 0.3); }

.nav__burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 6px; padding: 8px; }
.nav__burger span { display: block; width: 26px; height: 2px; background: var(--white); transition: transform 0.3s, opacity 0.3s; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(5, 6, 14, 0.97);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 30px;
  opacity: 0; pointer-events: none; transition: opacity 0.35s;
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu a { font-family: var(--font-head); font-size: 24px; font-weight: 700; }
.mobile-menu .btn { font-size: 17px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 140px 24px 90px;
  overflow: hidden;
  background: var(--bg-black);
  perspective: 900px;
}
.hero__media { position: absolute; inset: -4%; z-index: 0; will-change: transform; }
.hero__video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.hero__shade {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 75% 60% at 50% 42%, rgba(5, 6, 14, 0.05) 0%, rgba(5, 6, 14, 0.78) 80%),
    linear-gradient(180deg, rgba(5, 6, 14, 0.72) 0%, rgba(5, 6, 14, 0.18) 30%, rgba(5, 6, 14, 0.28) 70%, var(--bg-black) 100%);
}
#heroCanvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }

/* floating 3D shapes */
.hero__shape { position: absolute; z-index: 2; pointer-events: none; will-change: transform; filter: drop-shadow(0 0 14px currentColor); }
.hero__shape--ring { color: rgba(34, 228, 255, 0.8); }
.hero__shape--tri { color: rgba(255, 61, 138, 0.8); }
.hero__shape--bolt { color: rgba(176, 38, 255, 0.9); }
.hero__shape--diamond { color: rgba(255, 181, 52, 0.8); }
.hero__shape svg { display: block; animation: floaty 7s ease-in-out infinite; }
.hero__shape--tri svg { animation-delay: -2.2s; animation-duration: 8.5s; }
.hero__shape--bolt svg { animation-delay: -4s; animation-duration: 6s; }
.hero__shape--diamond svg { animation-delay: -1s; animation-duration: 9s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-22px) rotate(8deg); }
}

/* HUD corner brackets */
.hero__hud {
  position: absolute; z-index: 2;
  font-family: var(--font-head); font-weight: 600;
  font-size: 10.5px; letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(34, 228, 255, 0.75);
  pointer-events: none;
}
.hero__hud::before {
  content: ''; position: absolute; width: 22px; height: 22px;
  border: 1.5px solid rgba(34, 228, 255, 0.6);
}
.hero__hud--tl { top: 96px; left: 38px; padding-left: 34px; padding-top: 3px; }
.hero__hud--tl::before { top: 0; left: 0; border-right: none; border-bottom: none; }
.hero__hud--br { bottom: 34px; right: 38px; padding-right: 34px; padding-bottom: 3px; text-align: right; }
.hero__hud--br::before { bottom: 0; right: 0; border-left: none; border-top: none; }

.hero__inner { position: relative; z-index: 3; max-width: 1080px; will-change: transform; transform-style: preserve-3d; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: 12.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 8px 20px; border-radius: 999px;
  border: 1px solid rgba(34, 228, 255, 0.4);
  background: rgba(5, 6, 14, 0.55);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  color: var(--cyan);
  margin-bottom: 26px;
}
.hero__badge i {
  width: 8px; height: 8px; border-radius: 50%; font-style: normal;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }

.hero__display {
  font-family: var(--font-display);
  font-size: clamp(62px, 12.5vw, 185px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  user-select: none;
}
.hero__line { display: block; overflow: hidden; }
.hero__line--1 {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(34, 228, 255, 0.75);
  filter: drop-shadow(0 0 26px rgba(34, 228, 255, 0.25));
  animation: heroRise 1.1s var(--ease) 0.15s both;
}
.hero__line--2 {
  background: linear-gradient(115deg, var(--white) 22%, var(--violet-bright) 58%, var(--pink) 92%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 40px rgba(255, 61, 138, 0.3));
  animation: heroRise 1.1s var(--ease) 0.3s both;
}
.hero__dot { color: var(--pink); -webkit-text-stroke: 0; }
@keyframes heroRise { from { opacity: 0; transform: translateY(70px); } to { opacity: 1; transform: none; } }

.hero__h1 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(19px, 2.5vw, 27px);
  margin-top: 34px;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(5, 6, 14, 0.9);
}
.hero__h1 strong { color: var(--cyan); font-weight: 700; }

.hero__sub { color: #C7CDE8; font-size: clamp(15px, 1.8vw, 18px); margin-top: 16px; text-shadow: 0 1px 12px rgba(5, 6, 14, 0.9); }

.hero__ctas { display: flex; gap: 18px; justify-content: center; margin-top: 38px; flex-wrap: wrap; }

.hero__proof {
  display: flex; gap: 26px; justify-content: center; flex-wrap: wrap;
  margin-top: 40px;
  font-family: var(--font-head); font-weight: 600; font-size: 13.5px;
  letter-spacing: 0.06em;
  color: var(--grey);
}
.hero__proof b { color: var(--white); font-weight: 700; }
.hero__proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero__proof i { font-style: normal; color: var(--pink); }

.hero__pulse { width: min(700px, 88%); height: 50px; margin: 34px auto 0; display: block; }
#pulsePath { stroke-dasharray: 1600; stroke-dashoffset: 1600; animation: pulseDraw 3.2s var(--ease) 0.8s forwards; filter: drop-shadow(0 0 6px rgba(176, 38, 255, 0.8)); }
@keyframes pulseDraw { to { stroke-dashoffset: 0; } }

.hero__scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  width: 24px; height: 40px; border: 1.5px solid rgba(201, 169, 255, 0.4); border-radius: 14px;
  z-index: 3;
}
.hero__scroll-hint span {
  position: absolute; top: 7px; left: 50%; margin-left: -2px;
  width: 4px; height: 8px; border-radius: 4px; background: var(--cyan);
  animation: scrollHint 1.8s ease-in-out infinite;
}
@keyframes scrollHint { 0% { opacity: 0; transform: translateY(0); } 35% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

/* ============================================================
   CLIENT LOGO WALL
   ============================================================ */
.clients {
  padding: 56px 0 48px;
  border-bottom: 1px solid rgba(139, 47, 248, 0.12);
  background: var(--bg-black);
  position: relative;
}
.clients__label {
  text-align: center; font-size: 12.5px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--grey); margin-bottom: 30px;
}
.clients .marquee { mask-image: none; -webkit-mask-image: none; }
.marquee__track--logos {
  background: var(--bg-black);
  display: flex; align-items: center; gap: 76px;
  width: max-content;
  animation: marquee 34s linear infinite;
  padding: 6px 38px;
}
.marquee__track--logos img {
  height: 46px; width: auto; max-width: 156px; object-fit: contain;
  filter: grayscale(1) contrast(1.6) brightness(1.6);
  mix-blend-mode: screen;
  opacity: 0.92;
  transition: opacity 0.3s, transform 0.3s var(--ease);
}
.marquee__track--logos img.logo--light { filter: invert(1) grayscale(1) contrast(1.6) brightness(1.7); }
.marquee__track--logos img:hover { opacity: 1; transform: scale(1.08); }

/* ============================================================
   SHOWREEL (pinned scale + real player)
   ============================================================ */
.showreel { position: relative; height: 240vh; background: var(--bg-black); }
.showreel__sticky {
  position: sticky; top: 0;
  height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden;
}
.showreel__kicker {
  font-family: var(--font-display);
  font-size: clamp(26px, 5vw, 64px);
  letter-spacing: 0.04em;
  margin-bottom: 30px;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(34, 228, 255, 0.55);
  filter: drop-shadow(0 0 20px rgba(34, 228, 255, 0.15));
}
.showreel__frame {
  position: relative;
  width: 62vw;
  max-width: 1400px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(139, 47, 248, 0.4);
  box-shadow: 0 0 90px rgba(139, 47, 248, 0.3), 0 0 160px rgba(255, 61, 138, 0.12);
  will-change: transform;
}
.showreel__frame video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* center play/pause */
.showreel__toggle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 84px; height: 84px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(5, 6, 14, 0.55);
  border: 1.5px solid rgba(34, 228, 255, 0.7);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: var(--white); font-size: 24px;
  opacity: 0;
  transition: opacity 0.35s, transform 0.35s var(--ease), background 0.3s;
  z-index: 2;
}
.showreel__frame:hover .showreel__toggle,
.showreel__frame.is-paused .showreel__toggle { opacity: 1; }
.showreel__toggle:hover { background: rgba(34, 228, 255, 0.25); transform: translate(-50%, -50%) scale(1.1); box-shadow: 0 0 40px rgba(34, 228, 255, 0.5); }

/* control bar */
.showreel__bar {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: linear-gradient(180deg, transparent, rgba(5, 6, 14, 0.85));
  opacity: 0;
  transition: opacity 0.35s;
  z-index: 2;
}
.showreel__frame:hover .showreel__bar,
.showreel__frame.is-paused .showreel__bar { opacity: 1; }
.showreel__ctrl {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(201, 169, 255, 0.4);
  background: rgba(5, 6, 14, 0.5);
  font-size: 14px;
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
  flex-shrink: 0;
}
.showreel__ctrl:hover { background: var(--violet); border-color: var(--violet-bright); box-shadow: 0 0 18px rgba(176, 38, 255, 0.55); }
.showreel__track {
  flex: 1; height: 22px;
  display: flex; align-items: center;
  cursor: pointer;
}
.showreel__track-bg {
  width: 100%; height: 4px; border-radius: 4px;
  background: rgba(151, 160, 195, 0.3);
  overflow: hidden;
}
.showreel__track-fill {
  width: 0%; height: 100%;
  background: linear-gradient(90deg, var(--violet-bright), var(--pink), var(--cyan));
  box-shadow: 0 0 10px rgba(255, 61, 138, 0.6);
}

/* ============================================================
   BIG MARQUEE (scroll scrubbed)
   ============================================================ */
.bigmarquee { overflow: hidden; padding: 44px 0; border-top: 1px solid rgba(139, 47, 248, 0.1); border-bottom: 1px solid rgba(139, 47, 248, 0.1); }
.bigmarquee__track {
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: clamp(60px, 9vw, 130px);
  line-height: 1;
  will-change: transform;
}
.bigmarquee__track .bm-a {
  color: transparent;
  -webkit-text-stroke: 1px rgba(139, 47, 248, 0.55);
  padding-right: 44px;
}
.bigmarquee__track .bm-b {
  color: transparent;
  -webkit-text-stroke: 1px rgba(34, 228, 255, 0.45);
  padding-right: 44px;
}
.bigmarquee__track .bm-c {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 61, 138, 0.45);
  padding-right: 44px;
}

/* ============================================================
   MARQUEE (shared)
   ============================================================ */
.marquee-band { padding: 46px 0; border-top: 1px solid rgba(139, 47, 248, 0.12); border-bottom: 1px solid rgba(139, 47, 248, 0.12); background: var(--bg-deep); }
.marquee-band__label { text-align: center; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--grey); margin-bottom: 26px; }
.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee__track { display: flex; align-items: center; gap: 44px; width: max-content; animation: marquee 28s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  font-family: var(--font-display);
  font-size: 30px; letter-spacing: 0.06em;
  color: transparent; -webkit-text-stroke: 1px rgba(201, 169, 255, 0.45);
  transition: color 0.3s, -webkit-text-stroke-color 0.3s;
  cursor: default;
}
.marquee__track span:hover { color: var(--cyan); -webkit-text-stroke-color: var(--cyan); text-shadow: 0 0 26px rgba(34, 228, 255, 0.6); }
.marquee__track i { color: var(--pink); font-size: 11px; font-style: normal; opacity: 0.8; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   TRADEOFF
   ============================================================ */
.tradeoff { --accent: var(--pink); }
.tradeoff__grid {
  display: grid;
  grid-template-columns: 1fr 90px 1fr;
  align-items: stretch;
  gap: 0;
  position: relative; z-index: 1;
}
.tradeoff__card {
  padding: 42px 38px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--bg-deep), var(--surface));
  border: 1px solid rgba(151, 160, 195, 0.15);
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.tradeoff__card--old { opacity: 0.85; }
.tradeoff__card--old:hover { transform: scale(0.985); }
.tradeoff__card--new { border-color: rgba(255, 61, 138, 0.45); box-shadow: 0 0 44px rgba(255, 61, 138, 0.1); }
.tradeoff__card--new:hover { transform: scale(1.02); box-shadow: 0 0 70px rgba(255, 61, 138, 0.22); border-color: var(--pink); }
.tradeoff__tag { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey); margin-bottom: 16px; }
.tradeoff__tag--violet { color: var(--pink); }
.tradeoff__card h3 { font-family: var(--font-head); font-weight: 700; font-size: 22px; line-height: 1.3; margin-bottom: 20px; }
.tradeoff__card ul li {
  padding: 9px 0 9px 26px; position: relative; color: var(--grey); font-size: 15px;
  border-bottom: 1px dashed rgba(151, 160, 195, 0.12);
}
.tradeoff__card ul li:last-child { border-bottom: none; }
.tradeoff__card--old ul li::before { content: '\2715'; position: absolute; left: 0; color: var(--grey); font-size: 12px; top: 12px; }
.tradeoff__card--new ul li { color: #D3D9F5; }
.tradeoff__card--new ul li::before { content: '\26A1'; position: absolute; left: 0; font-size: 12px; top: 12px; }
.tradeoff__vs { display: flex; align-items: center; justify-content: center; }
.tradeoff__vs span {
  font-family: var(--font-display); font-size: 22px;
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface); border: 1px solid var(--pink);
  color: var(--pink);
  box-shadow: 0 0 30px rgba(255, 61, 138, 0.4);
  animation: vsPulse 2.4s ease-in-out infinite;
}
@keyframes vsPulse { 0%, 100% { box-shadow: 0 0 20px rgba(255, 61, 138, 0.3); } 50% { box-shadow: 0 0 44px rgba(255, 61, 138, 0.65); } }
.tradeoff__punch {
  text-align: center; margin-top: 60px;
  font-family: var(--font-head); font-weight: 600;
  font-size: clamp(18px, 2.4vw, 24px); line-height: 1.6;
  color: var(--grey);
  position: relative; z-index: 1;
}
.tradeoff__punch strong { color: var(--pink); text-shadow: 0 0 26px rgba(255, 61, 138, 0.5); }

/* ============================================================
   WORK (real videos)
   ============================================================ */
.work { --accent: var(--cyan); }
.work__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  grid-auto-flow: dense;
  gap: 20px;
  position: relative; z-index: 1;
}
.work-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  text-align: left;
  border: 1px solid rgba(139, 47, 248, 0.16);
  transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s var(--ease);
  padding: 0;
}
.work-card:hover { border-color: rgba(34, 228, 255, 0.6); box-shadow: 0 16px 60px rgba(34, 228, 255, 0.14), 0 16px 60px rgba(91, 22, 196, 0.25); transform: translateY(-4px); }
.work-card--tall { grid-row: span 2; }
.work-card--wide { grid-column: span 2; }
.work-card--hero {
  grid-column: 1 / -1;
  grid-row: span 2;
  border-color: rgba(34, 228, 255, 0.35);
  box-shadow: 0 0 60px rgba(34, 228, 255, 0.08);
}
.work-card__media { position: absolute; inset: 0; }
.work-card__media img,
.work-card__media video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease), opacity 0.4s;
}
.work-card__media video { opacity: 0; }
.work-card:hover .work-card__media video,
.work-card.is-inview .work-card__media video { opacity: 1; }
.work-card:hover .work-card__media img { transform: scale(1.06); }
.work-card__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(5, 6, 14, 0.92));
  pointer-events: none;
}
/* shine sweep */
.work-card__media::before {
  content: '';
  position: absolute; top: 0; left: -70%;
  width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: skewX(-18deg);
  transition: left 0.75s var(--ease);
  z-index: 1;
  pointer-events: none;
}
.work-card:hover .work-card__media::before { left: 135%; }
.work-card__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(5, 6, 14, 0.5); border: 1px solid rgba(201, 169, 255, 0.5);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: var(--white); font-size: 15px; padding-left: 4px;
  transition: transform 0.4s var(--ease), background 0.4s, box-shadow 0.4s, opacity 0.4s;
  z-index: 1;
}
.work-card:hover .work-card__play { transform: translate(-50%, -50%) scale(1.15); background: var(--violet); box-shadow: 0 0 34px rgba(176, 38, 255, 0.7); }
.work-card__meta { position: absolute; bottom: 0; left: 0; right: 0; padding: 18px 22px; z-index: 1; pointer-events: none; }
.work-card__cat { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cyan); }
.work-card__meta h3 { font-family: var(--font-head); font-weight: 700; font-size: 18px; margin-top: 4px; color: var(--white); }
.work-card--hero .work-card__meta h3 { font-size: 24px; }
.work-card__badge {
  position: absolute; top: 16px; left: 16px; z-index: 1;
  font-family: var(--font-head); font-weight: 700; font-size: 10.5px;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(5, 6, 14, 0.6);
  border: 1px solid rgba(34, 228, 255, 0.55);
  color: var(--cyan);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.work__note { text-align: center; margin-top: 44px; color: var(--grey); font-size: 15px; position: relative; z-index: 1; }
.work__note a { color: var(--cyan); border-bottom: 1px solid rgba(34, 228, 255, 0.4); }

/* ============================================================
   NUMBERS / PROOF
   ============================================================ */
.numbers { --accent: var(--violet-bright); text-align: center; }
.numbers__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  position: relative; z-index: 1;
}
.numbers__item {
  --n-accent: var(--violet-bright);
  padding: 44px 16px 38px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--bg-deep), var(--surface));
  border: 1px solid rgba(151, 160, 195, 0.14);
  transition: border-color 0.4s, transform 0.4s var(--ease), box-shadow 0.4s;
  position: relative;
  overflow: hidden;
}
.numbers__item::after {
  content: '';
  position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 60%; height: 2px;
  background: var(--n-accent);
  box-shadow: 0 0 18px var(--n-accent);
  opacity: 0.7;
}
.numbers__item--cyan { --n-accent: var(--cyan); }
.numbers__item--pink { --n-accent: var(--pink); }
.numbers__item--amber { --n-accent: var(--amber); }
.numbers__item:hover { transform: translateY(-6px); border-color: var(--n-accent); box-shadow: 0 18px 50px rgba(11, 13, 31, 0.9), 0 0 34px color-mix(in srgb, var(--n-accent) 25%, transparent); }
.numbers__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 92px);
  line-height: 1;
  color: var(--white);
  text-shadow: 0 0 34px var(--n-accent);
}
.numbers__label {
  display: block; margin-top: 14px;
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--grey);
}
.numbers__punch {
  margin-top: 46px;
  font-family: var(--font-head); font-weight: 600;
  font-size: clamp(16px, 2vw, 21px);
  color: #D3D9F5;
  position: relative; z-index: 1;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { --accent: var(--violet-bright); }
.services__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; position: relative; z-index: 1; }
.service-card {
  --sc: var(--violet-bright);
  position: relative;
  padding: 44px 40px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--bg-deep), var(--surface));
  border: 1px solid rgba(151, 160, 195, 0.14);
  overflow: hidden;
  transition: border-color 0.4s, box-shadow 0.4s;
  transform-style: preserve-3d;
}
.service-card--cyan { --sc: var(--cyan); }
.service-card--pink { --sc: var(--pink); }
.service-card--amber { --sc: var(--amber); }
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle 320px at var(--mx, 50%) var(--my, 50%), color-mix(in srgb, var(--sc) 14%, transparent), transparent);
  opacity: 0; transition: opacity 0.4s;
  pointer-events: none;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover { border-color: var(--sc); box-shadow: 0 18px 60px rgba(11, 13, 31, 0.8), 0 0 40px color-mix(in srgb, var(--sc) 20%, transparent); }
.service-card__num {
  position: absolute; top: 24px; right: 30px;
  font-family: var(--font-display); font-size: 58px;
  color: transparent; -webkit-text-stroke: 1px color-mix(in srgb, var(--sc) 45%, transparent);
}
.service-card__icon {
  width: 58px; height: 58px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--sc) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--sc) 40%, transparent);
  color: var(--sc);
  margin-bottom: 26px;
  box-shadow: 0 0 22px color-mix(in srgb, var(--sc) 18%, transparent);
}
.service-card__icon svg { width: 28px; height: 28px; }
.service-card h3 { font-family: var(--font-head); font-weight: 700; font-size: 23px; margin-bottom: 12px; }
.service-card p { color: var(--grey); font-size: 15.5px; margin-bottom: 24px; }
.service-card__price {
  display: inline-block;
  font-family: var(--font-head); font-weight: 600; font-size: 13.5px;
  padding: 7px 18px; border-radius: 999px;
  background: var(--surface); border: 1px solid color-mix(in srgb, var(--sc) 40%, transparent);
  color: var(--sc);
}

/* White label */
.whitelabel {
  margin-top: 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 34px;
  padding: 44px 48px;
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse at 0% 0%, rgba(34, 228, 255, 0.12), transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(255, 61, 138, 0.1), transparent 55%),
    linear-gradient(180deg, var(--bg-deep), var(--surface));
  border: 1px solid rgba(34, 228, 255, 0.3);
  position: relative; z-index: 1;
}
.whitelabel h3 { font-family: var(--font-head); font-weight: 800; font-size: clamp(22px, 3vw, 30px); margin-bottom: 12px; }
.whitelabel h3 em { color: var(--cyan); text-shadow: 0 0 26px rgba(34, 228, 255, 0.5); }
.whitelabel p:last-child { color: var(--grey); max-width: 520px; }

/* ============================================================
   PROCESS
   ============================================================ */
.process { --accent: var(--amber); }
.process__steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
  position: relative; z-index: 1;
}
.process__step {
  position: relative;
  padding: 38px 30px;
  border-radius: var(--radius);
  background: var(--bg-deep);
  border: 1px solid rgba(151, 160, 195, 0.13);
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
.process__step:hover { transform: translateY(-8px); border-color: rgba(255, 181, 52, 0.55); box-shadow: 0 18px 48px rgba(11, 13, 31, 0.9), 0 0 30px rgba(255, 181, 52, 0.12); }
.process__num {
  font-family: var(--font-display); font-size: 40px;
  background: linear-gradient(180deg, var(--amber), var(--pink));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; margin-bottom: 16px;
}
.process__step h3 { font-family: var(--font-head); font-weight: 700; font-size: 21px; margin-bottom: 10px; }
.process__step p { color: var(--grey); font-size: 14.5px; margin-bottom: 20px; }
.process__time {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--amber);
  padding: 5px 14px; border-radius: 999px;
  background: var(--surface); border: 1px solid rgba(255, 181, 52, 0.35);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { --accent: var(--cyan); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; position: relative; z-index: 1; }
.testimonial {
  padding: 40px 34px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--bg-deep), var(--surface));
  border: 1px solid rgba(151, 160, 195, 0.14);
  display: flex; flex-direction: column; gap: 22px;
  transition: border-color 0.4s, box-shadow 0.4s;
  transform-style: preserve-3d;
}
.testimonial:hover { border-color: rgba(34, 228, 255, 0.5); box-shadow: 0 18px 50px rgba(11, 13, 31, 0.9), 0 0 30px rgba(34, 228, 255, 0.1); }
.testimonial--featured { border-color: rgba(34, 228, 255, 0.4); box-shadow: 0 0 44px rgba(34, 228, 255, 0.1); }
.testimonial blockquote {
  font-family: var(--font-head); font-weight: 600;
  font-size: 17.5px; line-height: 1.55;
  flex: 1;
}
.testimonial blockquote::before {
  content: '\201C';
  display: block;
  font-family: var(--font-display);
  font-size: 54px; line-height: 0.6;
  color: var(--cyan);
  margin-bottom: 14px;
  text-shadow: 0 0 24px rgba(34, 228, 255, 0.5);
}
.testimonial figcaption { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey); }

/* ============================================================
   ABOUT
   ============================================================ */
.about { --accent: var(--pink); position: relative; }
.about__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 70px; align-items: center; position: relative; z-index: 1; }
.about h2 { margin-bottom: 26px; }
.about__text p { color: var(--grey); margin-bottom: 18px; max-width: 560px; }
.about__punch {
  margin-top: 30px; padding: 26px 30px;
  border-left: 3px solid var(--pink);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--bg-deep);
  font-family: var(--font-head); font-weight: 600; font-size: 17px; line-height: 1.7;
  color: var(--white) !important;
}
.about__punch strong { color: var(--pink); }
.about__card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 61, 138, 0.3);
  box-shadow: 0 0 80px rgba(139, 47, 248, 0.22), 0 0 120px rgba(255, 61, 138, 0.1);
  transform-style: preserve-3d;
}
.about__card img { width: 100%; height: auto; }

/* ============================================================
   PACKAGES
   ============================================================ */
.packages { --accent: var(--violet-bright); }
.packages__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; position: relative; z-index: 1; }
.package {
  position: relative;
  padding: 44px 38px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--bg-deep), var(--surface));
  border: 1px solid rgba(151, 160, 195, 0.14);
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
  transform-style: preserve-3d;
}
.package:hover { border-color: rgba(176, 38, 255, 0.5); }
.package--featured {
  border-color: var(--violet);
  box-shadow: 0 0 60px rgba(139, 47, 248, 0.22);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 61, 138, 0.12), transparent 60%),
    linear-gradient(180deg, var(--bg-deep), var(--surface));
}
.package__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-head); font-weight: 600; font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 18px; border-radius: 999px;
  background: var(--grad-hot);
  box-shadow: 0 0 24px rgba(255, 61, 138, 0.5);
  white-space: nowrap;
}
.package h3 { font-family: var(--font-head); font-weight: 700; font-size: 20px; color: var(--lavender); }
.package__price {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(34px, 4vw, 46px);
  margin: 10px 0 6px;
  text-shadow: 0 0 30px rgba(176, 38, 255, 0.3);
}
.package__desc { color: var(--grey); font-size: 14.5px; margin-bottom: 26px; }
.package ul { flex: 1; margin-bottom: 32px; }
.package ul li {
  padding: 10px 0 10px 28px; position: relative;
  color: #D3D9F5; font-size: 14.5px;
  border-bottom: 1px dashed rgba(151, 160, 195, 0.12);
}
.package ul li::before { content: '\26A1'; position: absolute; left: 0; top: 12px; font-size: 12px; }
.package .btn { justify-content: center; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { --accent: var(--cyan); }
.faq__list { max-width: 780px; margin: 0 auto; position: relative; z-index: 1; }
.faq__item {
  border: 1px solid rgba(151, 160, 195, 0.14);
  border-radius: 16px;
  background: var(--bg-deep);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq__item[open] { border-color: rgba(34, 228, 255, 0.5); background: var(--surface); }
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; list-style: none;
  padding: 22px 28px;
  font-family: var(--font-head); font-weight: 600; font-size: 16.5px;
  transition: color 0.3s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--cyan); }
.faq__icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq__icon::before, .faq__icon::after {
  content: ''; position: absolute; background: var(--cyan); border-radius: 2px;
  transition: transform 0.35s var(--ease);
  box-shadow: 0 0 8px rgba(34, 228, 255, 0.6);
}
.faq__icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq__icon::after { top: 0; left: 8px; width: 2px; height: 18px; }
.faq__item[open] .faq__icon::after { transform: rotate(90deg); }
.faq__item p { padding: 0 28px 24px; color: var(--grey); font-size: 15px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { --accent: var(--pink); position: relative; text-align: center; overflow: visible; }
.contact__glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 900px; height: 520px; border-radius: 50%;
  background:
    radial-gradient(ellipse, rgba(139, 47, 248, 0.16) 0%, transparent 60%),
    radial-gradient(ellipse at 30% 70%, rgba(255, 61, 138, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 30%, rgba(34, 228, 255, 0.07) 0%, transparent 55%);
  pointer-events: none;
}
.contact__ring {
  position: absolute; top: 50%; left: 50%;
  width: 560px; height: 560px;
  border: 1px solid rgba(176, 38, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: ringPulse 4s ease-in-out infinite;
  pointer-events: none;
}
.contact__ring--2 { width: 760px; height: 760px; animation-delay: -2s; border-color: rgba(34, 228, 255, 0.12); }
@keyframes ringPulse { 0%, 100% { transform: translate(-50%, -50%) scale(0.96); opacity: 0.6; } 50% { transform: translate(-50%, -50%) scale(1.03); opacity: 1; } }
.contact__anchor { position: absolute; top: -40px; }
.contact__inner { position: relative; z-index: 1; }

/* urgency warning */
.warnbox {
  max-width: 640px;
  margin: 0 auto 40px;
  padding: 22px 30px;
  border-radius: 16px;
  border: 1px solid rgba(255, 70, 90, 0.5);
  background: rgba(255, 45, 70, 0.07);
  box-shadow: 0 0 34px rgba(255, 45, 70, 0.12), inset 0 0 30px rgba(255, 45, 70, 0.04);
  text-align: center;
}
.warnbox__head {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700;
  font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase;
  color: #FF5C6E;
  margin-bottom: 10px;
}
.warnbox__head svg { width: 18px; height: 18px; animation: blink 2s ease-in-out infinite; }
.warnbox__body { font-size: 15.5px; color: #E9ECFA; }
.warnbox__body strong { color: #FF5C6E; font-weight: 700; }

/* Calendly booking embed */
.booking {
  max-width: 900px;
  margin: 0 auto 38px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(139, 47, 248, 0.4);
  box-shadow: 0 0 70px rgba(139, 47, 248, 0.22), 0 0 120px rgba(255, 61, 138, 0.08);
  background: var(--bg-deep);
}
.booking .calendly-inline-widget { display: block; }

.contact__alt { color: var(--grey); font-size: 14.5px; margin-bottom: 18px; }
.contact__title { margin-bottom: 20px; }
.contact__sub { color: var(--grey); font-size: 18px; margin-bottom: 44px; }
.contact__ctas { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 34px; }
.contact__meta { color: var(--grey); font-size: 14px; }
.contact__meta a { color: var(--cyan); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox { position: fixed; inset: 0; z-index: 350; display: flex; align-items: center; justify-content: center; }
.lightbox[hidden] { display: none; }
.lightbox__backdrop {
  position: absolute; inset: 0;
  background: rgba(5, 6, 14, 0.92);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.lightbox__panel {
  position: relative;
  width: min(1100px, 92vw);
  animation: lightboxIn 0.45s var(--ease);
}
.lightbox__panel--portrait { width: min(440px, 92vw); }
@keyframes lightboxIn { from { opacity: 0; transform: translateY(40px) scale(0.96); } to { opacity: 1; transform: none; } }
.lightbox__panel video {
  width: 100%;
  max-height: 82vh;
  border-radius: var(--radius);
  border: 1px solid rgba(139, 47, 248, 0.4);
  box-shadow: 0 0 90px rgba(139, 47, 248, 0.35), 0 0 140px rgba(255, 61, 138, 0.15);
  background: #000;
  display: block;
}
.lightbox__close {
  position: absolute; top: -52px; right: 0;
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(34, 228, 255, 0.4);
  background: rgba(19, 22, 48, 0.6);
  color: var(--white); font-size: 16px;
  transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
}
.lightbox__close:hover { background: var(--pink); box-shadow: 0 0 24px rgba(255, 61, 138, 0.6); transform: rotate(90deg); }
.lightbox__title { margin-top: 16px; text-align: center; font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--cyan); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid rgba(139, 47, 248, 0.14); background: var(--bg-deep); padding: 70px 24px 34px; position: relative; overflow: hidden; }
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--violet-bright), var(--pink), var(--cyan), transparent);
  opacity: 0.6;
}
.footer__grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 44px;
}
.footer__brand p { color: var(--grey); font-size: 14.5px; margin-top: 18px; line-height: 1.8; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col h4 {
  font-family: var(--font-body); font-weight: 500; font-size: 12px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--lavender);
  margin-bottom: 8px;
}
.footer__col a { color: var(--grey); font-size: 14.5px; transition: color 0.3s; }
.footer__col a:hover { color: var(--cyan); }
.footer__legal {
  max-width: var(--max-w); margin: 56px auto 0;
  padding-top: 26px; border-top: 1px solid rgba(151, 160, 195, 0.1);
  color: var(--grey); font-size: 13px; text-align: center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .work__grid { grid-template-columns: repeat(2, 1fr); }
  .work-card--hero { grid-column: span 2; }
}

@media (max-width: 980px) {
  .services__grid, .packages__grid, .testimonials__grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr 1fr; }
  .about__grid { grid-template-columns: 1fr; gap: 44px; }
  .about__visual { max-width: 420px; margin: 0 auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .whitelabel { flex-direction: column; align-items: flex-start; }
  .tradeoff__grid { grid-template-columns: 1fr; gap: 18px; }
  .tradeoff__vs { padding: 4px 0; }
  .numbers__grid { grid-template-columns: 1fr 1fr; }
  .showreel { height: 200vh; }
  .showreel__frame { width: 80vw; }
  .hero__hud { display: none; }
  .hero__shape { display: none; }
}

@media (max-width: 720px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav { padding: 16px 22px; }
  .section { padding: 80px 20px; }
  .process__steps { grid-template-columns: 1fr; }
  .work__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; gap: 12px; }
  .work-card--wide, .work-card--hero { grid-column: span 2; }
  .footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .contact__ctas .btn { width: 100%; justify-content: center; }
  .marquee__track--logos { gap: 46px; }
  .marquee__track--logos img { height: 36px; }
  .showreel { height: 160vh; }
  .showreel__frame { width: 88vw; }
  .lightbox__close { top: -50px; right: 50%; transform: translateX(50%); }
  .lightbox__close:hover { transform: translateX(50%) rotate(90deg); }
  .contact__ring, .contact__ring--2 { display: none; }
  .hero__proof { gap: 14px; font-size: 12.5px; }
}
