*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --gmx-blue: #00f2fe;
  --gmx-pink: #ff007f;
  --bg: #050505;
  --text: #fff;
  --text-muted: rgba(255,255,255,0.5);
  --border: rgba(255,255,255,0.06);
}
::-webkit-scrollbar { display: none; }
body { -ms-overflow-style: none; scrollbar-width: none; }
::selection { background-color: var(--gmx-blue); color: #000; }

html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--text);
  font-family: 'Inter', sans-serif; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--gmx-blue); text-decoration: none; }

/* -----------------------------------------------
   NOISE OVERLAY
   ----------------------------------------------- */
.cp-noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 9999; opacity: 0.035;
  background: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="n"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23n)"/%3E%3C/svg%3E');
  mix-blend-mode: overlay;
}

/* -----------------------------------------------
   BACK NAV
   ----------------------------------------------- */
.cp-back {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px clamp(20px,5vw,60px);
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(to bottom, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.6) 60%, transparent);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  transition: padding 0.5s cubic-bezier(0.16,1,0.3,1), background 0.5s ease;
}
.cp-back a {
  font-family: 'Syncopate', sans-serif; font-size: 0.62rem;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gmx-blue); display: inline-flex; align-items: center; gap: 8px;
  transition: gap 0.4s cubic-bezier(0.16,1,0.3,1), color 0.3s ease;
}
.cp-back a:hover { gap: 14px; }
.cp-back-logo img { height: 36px; opacity: 0.7; transition: opacity 0.3s ease; }
.cp-back-logo img:hover { opacity: 1; }

/* -----------------------------------------------
   HERO — FULLSCREEN CINEMATIC
   ----------------------------------------------- */
.cp-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.cp-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.25) saturate(0.6);
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
  will-change: transform, filter;
}
@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.12); }
}
.cp-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(5,5,5,1) 0%,
    rgba(5,5,5,0.85) 15%,
    rgba(5,5,5,0.3) 45%,
    rgba(5,5,5,0.05) 70%,
    rgba(5,5,5,0.15) 100%
  );
  z-index: 1;
}
.cp-hero-content {
  position: relative; z-index: 2;
  padding: clamp(60px,10vw,140px) clamp(30px,8vw,120px);
  max-width: 800px; width: 100%;
}

/* --- HERO ENTRANCE ANIMATIONS --- */
.cp-hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Syncopate', sans-serif;
  font-size: 0.58rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gmx-blue); padding: 6px 16px;
  border: 1px solid rgba(0,242,254,0.2); border-radius: 4px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  opacity: 0; transform: translateY(20px);
  animation: heroFadeUp 1s cubic-bezier(0.16,1,0.3,1) 0.3s forwards;
}
.cp-hero-tag::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gmx-blue);
  box-shadow: 0 0 8px var(--gmx-blue);
  animation: tagPulse 2s ease-in-out infinite;
}
@keyframes tagPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}
.cp-hero-content h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 700; line-height: 1.05;
  margin-bottom: 20px; letter-spacing: -0.02em;
  opacity: 0; transform: translateY(40px);
  animation: heroFadeUp 1.2s cubic-bezier(0.16,1,0.3,1) 0.5s forwards;
}
.cp-hero-content h1 em {
  font-style: italic; font-family: 'Playfair Display', serif;
  background: linear-gradient(90deg, var(--gmx-blue), var(--gmx-pink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cp-hero-content p {
  color: rgba(255,255,255,0.55);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.8; max-width: 540px; font-weight: 300;
  opacity: 0; transform: translateY(30px);
  animation: heroFadeUp 1s cubic-bezier(0.16,1,0.3,1) 0.8s forwards;
}
@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.cp-hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: heroFadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 1.4s forwards;
}
.cp-hero-scroll span {
  font-family: 'Syncopate', sans-serif; font-size: 0.5rem;
  letter-spacing: 4px; color: rgba(255,255,255,0.3);
}
.cp-hero-scroll-line {
  width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(0,242,254,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; height: 40px; }
  50% { opacity: 1; height: 50px; }
}

/* -----------------------------------------------
   MARQUEE
   ----------------------------------------------- */
.cp-marquee {
  width: 100%; overflow: hidden; padding: 3vh 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cp-marquee-inner {
  display: flex; width: max-content;
  animation: marqueeScroll 25s linear infinite;
  will-change: transform;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.cp-marquee-item {
  font-family: 'Syncopate', sans-serif;
  font-size: clamp(0.9rem, 1.8vw, 1.6rem);
  font-weight: 700; color: rgba(255,255,255,0.08);
  text-transform: uppercase; letter-spacing: 4px;
  white-space: nowrap; padding: 0 3vw;
  transition: color 0.4s ease;
}
.cp-marquee:hover .cp-marquee-item { color: rgba(255,255,255,0.14); }
.cp-marquee:hover .cp-marquee-inner { animation-duration: 15s; }
.cp-marquee-item .dot {
  display: inline-block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--gmx-blue);
  margin: 0 2vw; vertical-align: middle; opacity: 0.4;
}

/* -----------------------------------------------
   STATS — GLASS BAR
   ----------------------------------------------- */
.cp-stats {
  display: flex; justify-content: center; gap: clamp(30px,6vw,100px);
  padding: clamp(40px,6vh,80px) 5vw;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.cp-stats::before {
  content: ''; position: absolute; top: 0; left: 10%; right: 10%;
  height: 1px; background: linear-gradient(90deg, transparent, rgba(0,242,254,0.15), transparent);
}
.cp-stat { text-align: center; }
.cp-stat-num {
  font-family: 'Syncopate', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700; color: var(--gmx-blue); margin-bottom: 8px;
  text-shadow: 0 0 30px rgba(0,242,254,0.15);
  transform: translateY(20px) scale(0.9);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.16,1,0.3,1);
}
.cp-stat-label {
  font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--text-muted); font-weight: 300;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.16,1,0.3,1) 0.2s;
}
.cp-stats.is-visible .cp-stat-num {
  opacity: 1; transform: translateY(0) scale(1);
}
.cp-stats.is-visible .cp-stat-label {
  opacity: 1; transform: translateY(0);
}
/* Stagger stats */
.cp-stats.is-visible .cp-stat:nth-child(1) .cp-stat-num { transition-delay: 0s; }
.cp-stats.is-visible .cp-stat:nth-child(1) .cp-stat-label { transition-delay: 0.15s; }
.cp-stats.is-visible .cp-stat:nth-child(2) .cp-stat-num { transition-delay: 0.15s; }
.cp-stats.is-visible .cp-stat:nth-child(2) .cp-stat-label { transition-delay: 0.3s; }
.cp-stats.is-visible .cp-stat:nth-child(3) .cp-stat-num { transition-delay: 0.3s; }
.cp-stats.is-visible .cp-stat:nth-child(3) .cp-stat-label { transition-delay: 0.45s; }

/* -----------------------------------------------
   SECTIONS — PREMIUM LAYOUT
   ----------------------------------------------- */
.cp-section {
  padding: clamp(80px,12vh,160px) clamp(30px,8vw,120px);
  max-width: 1200px; margin: 0 auto;
  position: relative;
}
.cp-section-label {
  font-family: 'Syncopate', sans-serif; font-size: 0.62rem;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--gmx-blue); margin-bottom: 20px; display: inline-flex;
  align-items: center; gap: 12px;
}
.cp-section-label::before {
  content: ''; width: 0; height: 1px;
  background: linear-gradient(90deg, var(--gmx-blue), transparent);
  transition: width 0.8s cubic-bezier(0.16,1,0.3,1) 0.3s;
}
.cp-section.is-visible .cp-section-label::before { width: 24px; }
.cp-section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; margin-bottom: 28px; line-height: 1.15;
  letter-spacing: -0.02em;
}
.cp-section h2 em {
  font-style: italic; font-family: 'Playfair Display', serif;
  color: var(--gmx-blue);
}
.cp-section p {
  color: rgba(255,255,255,0.5);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.85; max-width: 620px; font-weight: 300;
}

/* Divider accent — animated width */
.cp-divider {
  width: 0; height: 2px; margin: 40px 0;
  background: linear-gradient(90deg, var(--gmx-blue), var(--gmx-pink));
  border-radius: 2px;
  transition: width 1s cubic-bezier(0.16,1,0.3,1);
}
.cp-section.is-visible .cp-divider { width: 60px; }

/* -----------------------------------------------
   GLASS CARD (featured content)
   ----------------------------------------------- */
.cp-glass-card {
  padding: clamp(30px,4vw,50px);
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.3);
  transition: border-color 0.5s ease, box-shadow 0.5s ease, transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.cp-glass-card:hover {
  border-color: rgba(0,242,254,0.1);
  box-shadow: 0 50px 100px rgba(0,0,0,0.4);
  transform: translateY(-4px);
}
.cp-glass-card::before, .cp-glass-card::after {
  content: ''; position: absolute; width: 0; height: 0;
  border-color: rgba(0,242,254,0.15); border-style: solid;
  transition: all 0.8s cubic-bezier(0.16,1,0.3,1);
  pointer-events: none;
}
.cp-glass-card::before { top: 14px; left: 14px; border-width: 1px 0 0 1px; }
.cp-glass-card::after { bottom: 14px; right: 14px; border-width: 0 1px 1px 0; }
.cp-section.is-visible .cp-glass-card::before,
.cp-section.is-visible .cp-glass-card::after { width: 24px; height: 24px; }
.cp-glass-card:hover::before, .cp-glass-card:hover::after {
  width: 36px; height: 36px; border-color: rgba(0,242,254,0.3);
}
.cp-glass-card p {
  color: rgba(255,255,255,0.55); font-size: 1rem;
  line-height: 1.85; font-weight: 300;
}
.cp-glass-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 600; margin-bottom: 16px;
}

/* -----------------------------------------------
   GALLERY — EXPANDING PANELS
   ----------------------------------------------- */
.cp-gallery-wrap {
  margin-top: 48px;
  position: relative;
}
.cp-panels {
  display: flex;
  height: clamp(400px, 55vh, 600px);
  gap: 4px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}
.cp-panel {
  position: relative;
  flex: 1;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.7s cubic-bezier(0.16,1,0.3,1);
}
.cp-panels:hover .cp-panel { flex: 0.6; }
.cp-panels .cp-panel:hover { flex: 4; }

.cp-panel img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.4) saturate(0.6);
  transition: filter 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.cp-panel:hover img {
  filter: brightness(0.85) saturate(1);
  transform: scale(1.05);
}

/* Vertical number — visible in collapsed state */
.cp-panel-num {
  position: absolute; top: 20px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Syncopate', sans-serif; font-size: 0.5rem;
  letter-spacing: 3px; color: rgba(0,242,254,0.4);
  z-index: 3;
  transition: opacity 0.5s ease;
}
.cp-panel:hover .cp-panel-num { opacity: 0; }

/* Gradient overlay */
.cp-panel::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(5,5,5,0.9) 0%, rgba(5,5,5,0.2) 40%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.cp-panel:hover::after { opacity: 1; }

/* Corner brackets */
.cp-panel::before {
  content: ''; position: absolute; z-index: 4;
  top: 14px; left: 14px;
  width: 0; height: 0;
  border-color: rgba(0,242,254,0.25); border-style: solid;
  border-width: 1px 0 0 1px;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.16,1,0.3,1) 0.15s;
}
.cp-panel:hover::before { width: 22px; height: 22px; }

/* Panel content — revealed on expand */
.cp-panel-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 2; padding: 28px;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.16,1,0.3,1) 0.15s, transform 0.5s cubic-bezier(0.16,1,0.3,1) 0.15s;
}
.cp-panel:hover .cp-panel-content {
  opacity: 1; transform: translateY(0);
}
.cp-panel-tag {
  font-family: 'Syncopate', sans-serif; font-size: 0.48rem;
  letter-spacing: 3px; color: var(--gmx-blue);
  text-transform: uppercase; margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px;
}
.cp-panel-tag::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--gmx-blue); opacity: 0.5;
  box-shadow: 0 0 10px var(--gmx-blue);
}
.cp-panel-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 600; margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.cp-panel-desc {
  font-size: 0.78rem; color: rgba(255,255,255,0.5);
  font-weight: 300; line-height: 1.6;
}

/* Active line on hovered panel */
.cp-panel-line {
  position: absolute; top: 0; left: 0; z-index: 4;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--gmx-blue), var(--gmx-pink));
  transition: width 0.8s cubic-bezier(0.16,1,0.3,1) 0.1s;
}
.cp-panel:hover .cp-panel-line { width: 100%; }

/* -----------------------------------------------
   VIDEO — CINEMATIC FRAME
   ----------------------------------------------- */
.cp-video-section { text-align: center; }
.cp-video-section p { margin: 0 auto; text-align: center; }
.cp-video-section h2 { margin-left: auto; margin-right: auto; }
.cp-video-section .cp-section-label { justify-content: center; }
.cp-video-wrapper {
  margin-top: 48px; border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  aspect-ratio: 16/9;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  transition: box-shadow 0.5s ease, transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.cp-video-wrapper:hover {
  box-shadow: 0 50px 120px rgba(0,0,0,0.6);
  transform: translateY(-4px);
}
.cp-video-wrapper::before, .cp-video-wrapper::after {
  content: ''; position: absolute; z-index: 2;
  width: 0; height: 0;
  border-color: rgba(0,242,254,0.2); border-style: solid;
  pointer-events: none;
  transition: all 0.8s cubic-bezier(0.16,1,0.3,1);
}
.cp-video-wrapper::before { top: 16px; left: 16px; border-width: 1px 0 0 1px; }
.cp-video-wrapper::after { bottom: 16px; right: 16px; border-width: 0 1px 1px 0; }
.cp-section.is-visible .cp-video-wrapper::before,
.cp-section.is-visible .cp-video-wrapper::after { width: 20px; height: 20px; }
.cp-video-wrapper video {
  width: 100%; height: 100%; object-fit: cover; background: #000;
}
.cp-video-hud {
  position: absolute; bottom: 20px; left: 24px; right: 24px;
  display: flex; justify-content: space-between; z-index: 3;
  pointer-events: none;
}
.cp-video-hud span {
  font-family: 'Space Grotesk', monospace; font-size: 0.65rem;
  letter-spacing: 3px; color: rgba(255,255,255,0.3); text-transform: uppercase;
  opacity: 0; transform: translateY(8px);
  transition: all 0.6s cubic-bezier(0.16,1,0.3,1);
}
.cp-section.is-visible .cp-video-hud span { opacity: 1; transform: translateY(0); }
.cp-section.is-visible .cp-video-hud span:nth-child(2) { transition-delay: 0.2s; }

/* -----------------------------------------------
   RESULT LINK
   ----------------------------------------------- */
.cp-result-link {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 24px;
}
.cp-result-link a {
  font-family: 'Syncopate', sans-serif;
  font-size: 0.6rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gmx-blue); padding: 12px 24px;
  border: 1px solid rgba(0,242,254,0.2); border-radius: 6px;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  backdrop-filter: blur(8px);
  position: relative; overflow: hidden;
}
.cp-result-link a::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,242,254,0.08), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.cp-result-link a:hover::before { transform: translateX(0); }
.cp-result-link a:hover {
  border-color: rgba(0,242,254,0.4);
  box-shadow: 0 8px 30px rgba(0,242,254,0.1);
  transform: translateY(-2px);
}

/* -----------------------------------------------
   SCOPE — BENTO GRID
   ----------------------------------------------- */
.cp-scope-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; margin-top: 48px;
}
.cp-scope-item {
  padding: 32px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  position: relative;
  transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
  overflow: hidden;
}
.cp-scope-item::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--gmx-blue), transparent);
  transition: width 0.6s cubic-bezier(0.16,1,0.3,1);
}
.cp-scope-item:hover::before { width: 100%; }
.cp-scope-item:hover {
  border-color: rgba(0,242,254,0.12);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  background: rgba(0,242,254,0.02);
}
.cp-scope-item h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem; font-weight: 600; margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.cp-scope-item p {
  font-size: 0.86rem; color: var(--text-muted);
  line-height: 1.7; font-weight: 300;
}
.cp-scope-number {
  font-family: 'Syncopate', sans-serif; font-size: 0.55rem;
  letter-spacing: 3px; color: rgba(0,242,254,0.25);
  margin-bottom: 16px; display: block;
  transition: color 0.4s ease;
}
.cp-scope-item:hover .cp-scope-number { color: rgba(0,242,254,0.5); }

/* -----------------------------------------------
   BEFORE / AFTER SLIDER
   ----------------------------------------------- */
.cp-ba-container {
  padding: 0 clamp(30px,5vw,80px);
  max-width: 1200px; margin: 0 auto 80px;
}
.cp-ba-wrapper {
  position: relative; overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 16/9;
  cursor: col-resize;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}
.cp-ba-wrapper img {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; object-fit: cover;
  user-select: none; pointer-events: none;
}
.cp-ba-after {
  clip-path: inset(0 0 0 50%);
  transition: clip-path 0.05s ease;
}
.cp-ba-slider {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 2px;
  background: var(--gmx-blue);
  box-shadow: 0 0 20px rgba(0,242,254,0.3);
  z-index: 5; transform: translateX(-50%);
  transition: left 0.05s ease;
}
.cp-ba-slider::before {
  content: '⟵ ⟶';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  background: rgba(5,5,5,0.9); border: 1px solid var(--gmx-blue);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.5rem; color: var(--gmx-blue); letter-spacing: -1px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}
.cp-ba-labels {
  display: flex; justify-content: space-between; margin-top: 16px;
}
.cp-ba-labels span {
  font-family: 'Syncopate', sans-serif; font-size: 0.58rem;
  letter-spacing: 4px; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* -----------------------------------------------
   CTA — PREMIUM BLOCK
   ----------------------------------------------- */
.cp-cta {
  text-align: center;
  padding: clamp(80px,14vh,160px) 5vw;
  position: relative;
  overflow: hidden;
}
.cp-cta::before {
  content: ''; position: absolute; top: 0; left: 10%; right: 10%;
  height: 1px; background: linear-gradient(90deg, transparent, rgba(0,242,254,0.12), transparent);
}
.cp-cta h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.cp-cta p {
  color: rgba(255,255,255,0.35); font-size: 0.9rem;
  margin-bottom: 32px; font-weight: 300;
}
.cp-cta-btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Syncopate', sans-serif; font-size: 0.68rem;
  letter-spacing: 4px; text-transform: uppercase;
  color: #050505; background: var(--gmx-blue);
  padding: 18px 40px; border-radius: 6px;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 8px 30px rgba(0,242,254,0.2);
  position: relative;
}
.cp-cta-btn::after {
  content: ''; position: absolute; inset: -2px; border-radius: 8px;
  background: linear-gradient(90deg, var(--gmx-blue), var(--gmx-pink), var(--gmx-blue));
  background-size: 200% 100%;
  z-index: -1; opacity: 0;
  animation: ctaGlow 3s linear infinite;
  transition: opacity 0.4s ease;
}
@keyframes ctaGlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.cp-cta-btn:hover { 
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0,242,254,0.35);
  letter-spacing: 5px;
}
.cp-cta-btn:hover::after { opacity: 0.6; }

/* -----------------------------------------------
   FOOTER
   ----------------------------------------------- */
.cp-footer {
  text-align: center; padding: 30px 5vw;
  font-size: 0.68rem; color: rgba(255,255,255,0.15);
  border-top: 1px solid rgba(255,255,255,0.04);
  letter-spacing: 1px;
}

/* -----------------------------------------------
   REVEAL ANIMATIONS — MULTI-DIRECTION
   ----------------------------------------------- */
.cp-reveal {
  opacity: 0; transform: translateY(50px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.cp-reveal.is-visible {
  opacity: 1; transform: translate(0) scale(1);
}
/* Variant: from left */
.cp-reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.cp-reveal-left.is-visible { opacity: 1; transform: translateX(0); }
/* Variant: from right */
.cp-reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.cp-reveal-right.is-visible { opacity: 1; transform: translateX(0); }
/* Variant: scale up */
.cp-reveal-scale {
  opacity: 0; transform: scale(0.92);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.cp-reveal-scale.is-visible { opacity: 1; transform: scale(1); }
/* Variant: blur in */
.cp-reveal-blur {
  opacity: 0; filter: blur(12px); transform: translateY(20px);
  transition: opacity 0.8s ease, filter 0.8s ease, transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.cp-reveal-blur.is-visible { opacity: 1; filter: blur(0); transform: translateY(0); }

/* Stagger delay classes */
.cp-delay-1 { transition-delay: 0.08s; }
.cp-delay-2 { transition-delay: 0.16s; }
.cp-delay-3 { transition-delay: 0.24s; }
.cp-delay-4 { transition-delay: 0.32s; }
.cp-delay-5 { transition-delay: 0.4s; }
.cp-delay-6 { transition-delay: 0.48s; }

/* -----------------------------------------------
   RESPONSIVE
   ----------------------------------------------- */
@media(max-width:768px) {
  .cp-stats { flex-wrap: wrap; gap: 24px; }
  .cp-panels { flex-direction: column; height: auto; }
  .cp-panel { height: 200px; flex: none !important; }
  .cp-panels:hover .cp-panel { flex: none !important; }
  .cp-panel img { filter: brightness(0.6) saturate(0.8); }
  .cp-panel::after { opacity: 1; }
  .cp-panel-content { opacity: 1; transform: translateY(0); }
  .cp-panel-num { display: none; }
  .cp-ba-wrapper { aspect-ratio: 4/3; }
  .cp-hero { min-height: 90vh; }
  .cp-hero-scroll { display: none; }
  .cp-marquee-item { font-size: 0.8rem; }
  .cp-scope-grid { grid-template-columns: 1fr; }
}
