/* ============================================================
   LucyXR Design System — Fortune 500 Bright
   ============================================================ */

/* --- Custom Properties --- */
:root {
  /* Colors */
  --bg: #ffffff;
  --bg-soft: #f7f8fc;
  --bg-dark: #0b0f1e;
  --bg-dark-soft: #151a2d;
  --text: #111827;
  --text-muted: #6b7280;
  --text-on-dark: #f1f5f9;
  --text-muted-dark: #94a3b8;
  --accent: #5159e8;
  --accent-hover: #4048d6;
  --accent-light: #eef0ff;
  --accent-glow: rgba(81, 89, 232, 0.12);
  --white: #ffffff;
  --border: #e5e7eb;
  --border-dark: rgba(255,255,255,0.08);

  /* Typography */
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;

  /* Radius — killed, all square */
  --radius-sm: 0;
  --radius: 0;
  --radius-lg: 0;
  --radius-full: 0;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --duration: 0.3s;

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.05);

  /* Layout */
  --container: 1200px;
  --container-wide: 1400px;
  --header-h: 80px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }

/* --- Brand Font --- */
@font-face {
  font-family: 'Movement';
  src: url('../wp-content/uploads/Movement.woff2') format('woff2');
  font-display: swap;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(2.75rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.625rem); }
p { max-width: 65ch; }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* --- Sections --- */
.section { padding: var(--space-xl) 0; }
.section-dark { background: var(--bg-dark); color: var(--text-on-dark); }
.section-alt { background: var(--bg-soft); }
.section-title {
  text-align: center;
  margin-bottom: var(--space-sm);
}
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}
.section-dark .section-subtitle { color: var(--text-muted-dark); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2.25rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
  letter-spacing: 0.01em;
  min-width: 15rem;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(81, 89, 232, 0.35);
}
.btn-outline {
  border: 2px solid currentColor;
  color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--text);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-ghost {
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-dark);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(6px) brightness(0.35);
  transform: scale(1.5);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11,15,30,0.2) 0%,
    rgba(11,15,30,0.5) 50%,
    rgba(11,15,30,0.8) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: var(--space-md);
}
.hero-content h1 {
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-sm);
  animation: heroUp 1s var(--ease-out) 0.2s both;
}
.hero-content h1 span {
  display: block;
  color: var(--accent);
}
.hero-label {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.6);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: rgba(255,255,255,0.7);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  animation: heroUp 1s var(--ease-out) 0.5s both;
}
.hero-cta {
  animation: heroUp 1s var(--ease-out) 0.8s both;
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}
@keyframes heroUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: heroUp 1s var(--ease-out) 1.2s both;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  width: 100%;
  height: 50%;
  background: var(--white);
  animation: scrollLine 2s var(--ease) infinite;
}
@keyframes scrollLine {
  0% { top: -50%; }
  100% { top: 150%; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.about-content h2 {
  margin-bottom: var(--space-sm);
}
.about-content p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin: 0 auto var(--space-md);
}

/* ============================================================
   GALLERY GRID
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: var(--space-lg);
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  aspect-ratio: 16 / 9;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  opacity: 0.7;
  transition: opacity var(--duration) var(--ease);
}
.gallery-item:hover .gallery-play {
  opacity: 1;
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1rem 0.875rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  transform: translateY(100%);
  transition: transform var(--duration) var(--ease);
  z-index: 2;
}
.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration) var(--ease);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.lightbox.active {
  opacity: 1;
  pointer-events: all;
}
.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  color: white;
  font-size: 2.25rem;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  transition: background var(--duration) var(--ease);
  z-index: 10;
  cursor: pointer;
  border: 2px solid rgba(255,255,255,0.3);
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 3rem;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background var(--duration) var(--ease);
  z-index: 10;
}
.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.25); }
.lightbox-video {
  position: relative;
  width: 80vw;
  max-width: 1100px;
  padding-bottom: 45vw;
  max-height: 80vh;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (min-width: 1024px) {
  .lightbox-video { padding-bottom: min(45vw, 620px); }
}
.lightbox-video.is-image {
  padding-bottom: 0;
  width: auto;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.lightbox-video.is-image img {
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.studio-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  width: 100%;
  max-width: 960px;
}
.studio-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  cursor: pointer;
  box-shadow: 0 0 40px rgba(81, 89, 232, 0.15), 0 0 0 1px rgba(255,255,255,0.05);
  transition: transform var(--duration) var(--ease);
}
.studio-thumb:hover {
  transform: scale(1.02);
}
.lightbox.active .lightbox-video {
  animation: lightboxIn 0.3s var(--ease-out);
}
@keyframes lightboxIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.lightbox-caption {
  color: rgba(255,255,255,0.6);
  margin-top: 1rem;
  font-size: 0.9rem;
}

/* ============================================================
   GO VIRTUAL — LED WALL + BENEFITS
   ============================================================ */
.go-virtual-header {
  text-align: center;
  padding: var(--space-lg) var(--space-md) 0;
}

.virtual-split {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-lg);
  max-width: none;
  width: 100%;
  padding-left: clamp(1.5rem, 4vw, 4rem);
  padding-right: clamp(1.5rem, 4vw, 4rem);
}
.led-wall-section {
  position: relative;
}
.benefits-section {
  padding: 0 0 var(--space-xl);
}
.led-wall-sticky {
  position: sticky;
  top: var(--space-md);
}
.led-wall-frame {
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 80px rgba(81, 89, 232, 0.15), 0 0 0 1px rgba(255,255,255,0.05);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  align-content: start;
}
.benefit-card {
  padding: var(--space-md) 0;
  text-align: left;
  background: transparent;
  border: none;
  display: grid;
  grid-template-columns: 56px 1fr;
  grid-template-rows: auto auto;
  column-gap: 1rem;
  row-gap: 0.25rem;
  align-items: start;
  align-content: start;
  align-self: start;
}
.benefit-card lottie-player {
  grid-row: 1 / span 2;
  width: 56px;
  height: 56px;
  margin: 0;
  align-self: start;
}
.benefit-card h3 {
  margin-top: 0;
}
.benefit-card h3 {
  margin-bottom: 0.5rem;
  color: var(--white);
  font-size: 1.2rem;
}
.benefit-card p {
  color: var(--text-muted-dark);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}
.benefits-cta {
  text-align: center;
  margin-top: var(--space-lg);
}

/* ============================================================
   TEAM
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
}
.team-card { text-align: center; }
.team-card-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto var(--space-sm);
  border: 3px solid var(--accent-light);
  transition: transform var(--duration) var(--ease), border-color var(--duration) var(--ease);
}
.team-card:hover .team-card-img {
  transform: scale(1.05);
  border-color: var(--accent);
}
.team-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
}
.team-card .team-role {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.team-card .team-bio {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Team full page */
.team-intro {
  max-width: 820px;
  margin: 0 auto var(--space-xl);
  text-align: center;
}
.team-intro h2 {
  margin-bottom: var(--space-sm);
}
.team-intro p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.team-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  max-width: 1100px;
  margin: 0 auto;
}
.team-full-card {
  text-align: left;
  padding: var(--space-md) 0;
  background: transparent;
}
.team-full-card img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 0 var(--space-sm);
  border: none;
}
.team-full-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}
.team-full-card .team-role {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
  display: block;
}
.team-full-card .team-bio {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 0.9rem;
}
.team-full-card .team-bio:last-child {
  margin-bottom: 0;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: var(--space-2xl) var(--space-md);
  text-align: center;
  background: linear-gradient(135deg, var(--accent) 0%, #7c3aed 100%);
  color: var(--white);
}
.cta-section h2 { margin-bottom: var(--space-sm); }
.cta-section p {
  margin: 0 auto var(--space-md);
  opacity: 0.9;
  font-size: 1.125rem;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  height: var(--header-h);
  padding-top: 0.5rem;
  display: flex;
  align-items: center;
  padding: 0 var(--space-md);
  transition: background var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
}
.header-logo { display: flex; align-items: center; }
.header-logo img {
  height: 34px;
  width: auto;
  /* Always render logo in accent purple */
  filter: brightness(0) saturate(100%) invert(31%) sepia(93%) saturate(2476%) hue-rotate(232deg) brightness(94%) contrast(95%);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color var(--duration) var(--ease);
  letter-spacing: 0.02em;
}
.nav-link:hover { color: var(--white); }
.site-header.scrolled .nav-link { color: var(--text-muted); }
.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active { color: var(--accent); }
.nav-cta {
  padding: 0.6rem 1.5rem;
  background: var(--accent);
  color: var(--white) !important;
  border-radius: var(--radius-full);
  transition: all var(--duration) var(--ease);
}
.nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  z-index: 1002;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--duration) var(--ease);
  border-radius: 2px;
}
.site-header.scrolled .hamburger span { background: var(--text); }
.hamburger.active span { background: var(--white) !important; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5.5px, 5.5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5.5px, -5.5px); }

/* When mobile nav is open, strip the scrolled header's white background
   so the white X stays legible on the dark menu panel behind it. */
body:has(.mobile-nav.active) .site-header,
body:has(.mobile-nav.active) .site-header.scrolled {
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration) var(--ease);
}
.mobile-nav.active { opacity: 1; pointer-events: all; }
.mobile-nav .mobile-link {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  transition: color var(--duration) var(--ease);
}
.mobile-nav .mobile-link:hover { color: var(--accent); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: var(--space-lg) 0 var(--space-md);
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}
.footer-brand { max-width: 340px; }
.footer-brand img { height: 30px; margin-bottom: var(--space-sm); }
.footer-brand p { color: var(--text-muted-dark); font-size: 0.9rem; line-height: 1.6; }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-contact a {
  color: var(--text-muted-dark);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  transition: color var(--duration) var(--ease);
}
.footer-contact a:hover { color: var(--accent); }
.footer-contact svg { flex-shrink: 0; }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer-nav a {
  color: var(--text-muted-dark);
  font-size: 0.9rem;
  font-family: var(--font-display);
  font-weight: 500;
  transition: color var(--duration) var(--ease);
}
.footer-nav a:hover { color: var(--accent); }
.footer-divider {
  height: 1px;
  background: var(--border-dark);
  margin-bottom: var(--space-md);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted-dark);
  font-size: 0.8rem;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-d1 { transition-delay: 0.1s; }
.fade-in-d2 { transition-delay: 0.2s; }
.fade-in-d3 { transition-delay: 0.3s; }
.fade-in-d4 { transition-delay: 0.4s; }
.fade-in-d5 { transition-delay: 0.5s; }

/* ============================================================
   LUCY AI PAGE
   ============================================================ */
.ai-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0b0f1e 0%, #1a103d 50%, #0b0f1e 100%);
}
.ai-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 20% 50%, rgba(81,89,232,0.15), transparent),
    radial-gradient(ellipse 50% 60% at 80% 30%, rgba(124,58,237,0.1), transparent);
}
.ai-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: var(--space-md);
  max-width: 800px;
}
.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(81,89,232,0.15);
  border: 1px solid rgba(81,89,232,0.3);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}
.ai-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.ai-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}
.ai-card {
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-dark);
  transition: all var(--duration) var(--ease);
}
.ai-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(81,89,232,0.3);
  transform: translateY(-2px);
}
.ai-card h3 { color: var(--white); margin-bottom: 0.75rem; }
.ai-card p { color: var(--text-muted-dark); font-size: 0.95rem; }

.ai-reel-wrapper {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--bg-dark-soft);
  border: 1px solid var(--border-dark);
}
.ai-reel-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ai-reel-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted-dark);
  font-family: var(--font-display);
  font-size: 1.25rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .section { padding: var(--space-lg) 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .virtual-split { grid-template-columns: 1fr; gap: var(--space-md); }
  .led-wall-sticky { position: static; padding: 0; }
  .benefits-grid { grid-template-columns: 1fr; gap: 0; }
  .benefit-card {
    border-bottom: 1px solid var(--border-dark);
    padding: 1rem 0;
    cursor: pointer;
    position: relative;
  }
  .benefit-card h3::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 1rem;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-muted-dark);
    transition: transform var(--duration) var(--ease);
    line-height: 1;
  }
  .benefit-card.is-open h3::after {
    transform: rotate(45deg);
  }
  .benefit-card p {
    max-height: 0;
    overflow: hidden;
    margin: 0;
    opacity: 0;
    transition: max-height 0.3s var(--ease), opacity 0.2s var(--ease), margin-top 0.3s var(--ease);
  }
  .benefit-card.is-open p {
    max-height: 500px;
    opacity: 1;
    margin-top: 0.5rem;
  }
  .hamburger { display: flex; }
  .nav-links { display: none; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-sm); }
  .team-card-img { width: 120px; height: 120px; }
  .footer-grid { flex-direction: column; gap: var(--space-md); }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .team-full-grid { grid-template-columns: 1fr; }
  .ai-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: clamp(2rem, 10vw, 3rem); }
}
