*, *::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);
}
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--text);
  font-family: 'Inter', sans-serif; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--gmx-blue); text-decoration: none; }

/* 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.9), transparent);
  backdrop-filter: blur(12px);
}
.cp-back a {
  font-family: 'Syncopate', sans-serif; font-size: 0.68rem;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gmx-blue); display: inline-flex; align-items: center; gap: 8px;
  transition: gap 0.3s ease;
}
.cp-back a:hover { gap: 12px; }
.cp-back-logo img { height: 36px; opacity: 0.7; }

/* Hero */
.cp-hero {
  position: relative; min-height: 80vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.cp-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.3) saturate(0.7);
}
.cp-hero-content {
  position: relative; z-index: 2;
  padding: clamp(40px,8vw,100px);
  max-width: 700px;
  background: linear-gradient(to top, rgba(5,5,5,0.95) 20%, transparent);
  width: 100%;
}
.cp-hero-tag {
  display: inline-block; font-family: 'Syncopate', sans-serif;
  font-size: 0.62rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gmx-blue); padding: 5px 14px;
  border: 1px solid rgba(0,242,254,0.25); border-radius: 4px;
  margin-bottom: 20px;
}
.cp-hero-content h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700; line-height: 1.1; margin-bottom: 16px;
}
.cp-hero-content p {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.7; max-width: 520px;
}

/* Stats bar */
.cp-stats {
  display: flex; justify-content: center; gap: clamp(30px,5vw,80px);
  padding: clamp(30px,5vh,60px) 5vw;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cp-stat { text-align: center; }
.cp-stat-num {
  font-family: 'Syncopate', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700; color: var(--gmx-blue); margin-bottom: 6px;
}
.cp-stat-label {
  font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted);
}

/* Section */
.cp-section {
  padding: clamp(60px,10vh,120px) clamp(20px,8vw,120px);
  max-width: 1200px; margin: 0 auto;
}
.cp-section-label {
  font-family: 'Syncopate', sans-serif; font-size: 0.68rem;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gmx-blue); margin-bottom: 16px; display: block;
}
.cp-section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700; margin-bottom: 24px; line-height: 1.2;
}
.cp-section p {
  color: var(--text-muted);
  font-size: clamp(0.92rem, 1.1vw, 1.02rem);
  line-height: 1.75; max-width: 600px;
}

/* Before / After slider */
.cp-ba-container {
  padding: 0 clamp(20px,5vw,80px);
  max-width: 1200px; margin: 0 auto 80px;
}
.cp-ba-wrapper {
  position: relative; overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 16/9;
  cursor: col-resize;
  border: 1px solid rgba(255,255,255,0.08);
}
.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: 3px;
  background: var(--gmx-blue);
  box-shadow: 0 0 20px rgba(0,242,254,0.4);
  z-index: 5; transform: translateX(-50%);
  transition: left 0.05s ease;
}
.cp-ba-slider::before {
  content: '\2190  \2192';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  background: rgba(5,5,5,0.85); border: 2px solid var(--gmx-blue);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.55rem; color: var(--gmx-blue); letter-spacing: -1px;
  backdrop-filter: blur(8px);
}
.cp-ba-labels {
  display: flex; justify-content: space-between;
  margin-top: 12px;
}
.cp-ba-labels span {
  font-family: 'Syncopate', sans-serif; font-size: 0.62rem;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--text-muted);
}

/* Scope grid */
.cp-scope-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px; margin-top: 40px;
}
.cp-scope-item {
  padding: 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  transition: border-color 0.4s ease, transform 0.4s ease;
}
.cp-scope-item:hover {
  border-color: rgba(0,242,254,0.2);
  transform: translateY(-4px);
}
.cp-scope-item h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem; font-weight: 600; margin-bottom: 8px;
}
.cp-scope-item p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* CTA */
.cp-cta {
  text-align: center;
  padding: clamp(60px,10vh,120px) 5vw;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.cp-cta h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700; margin-bottom: 20px;
}
.cp-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Syncopate', sans-serif; font-size: 0.72rem;
  letter-spacing: 3px; text-transform: uppercase;
  color: #050505; background: var(--gmx-blue);
  padding: 16px 36px; border-radius: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cp-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,242,254,0.3);
}

/* Footer */
.cp-footer {
  text-align: center; padding: 30px 5vw;
  font-size: 0.72rem; color: rgba(255,255,255,0.2);
  border-top: 1px solid rgba(255,255,255,0.04);
}

@media(max-width:600px) {
  .cp-stats { flex-wrap: wrap; gap: 20px; }
  .cp-ba-wrapper { aspect-ratio: 4/3; }
}
