
:root {
  --pink:       #e6007e;
  --blue:       #009fe3;
  --teal:       #27cfc3;
  --grad:       linear-gradient(135deg, #e6007e 0%, #009fe3 100%);
  --dark:       #0d0d0d;
  --dark-600:   #1a1a1a;
  --dark-500:   #242424;
  --dark-400:   #2e2e2e;
  --dark-300:   #3a3a3a;
  --grey-500:   #676767;
  --grey-400:   #888888;
  --grey-100:   #e0e0e0;
  --white:      #ffffff;

  --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-serif:   'EB Garamond', Georgia, serif;
  --font-heading: 'Poppins', system-ui, sans-serif;
  --font-body:    'Poppins', system-ui, sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);

  --grid-max: 2000px;
  --grid-cols: 12;
  --grid-gap: 24px;
  --grid-margin: clamp(24px, 5vw, 80px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--grey-100);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ═══════════════════════════════════════════════════════════
   NEON BLUR ORBS
   ═══════════════════════════════════════════════════════════ */

.neon-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  will-change: transform;
}

.neon-orb--1 {
  width: clamp(400px, 50vw, 900px);
  height: clamp(400px, 50vw, 900px);
  background: radial-gradient(circle, rgba(230,0,126,0.5) 0%, rgba(230,0,126,0.2) 40%, transparent 70%);
  animation: orbDrift1 14s ease-in-out infinite;
}

.neon-orb--2 {
  width: clamp(300px, 35vw, 600px);
  height: clamp(300px, 35vw, 600px);
  background: radial-gradient(circle, rgba(230,0,126,0.35) 0%, rgba(230,0,126,0.12) 40%, transparent 70%);
  animation: orbDrift2 18s ease-in-out infinite;
}

@keyframes orbDrift1 {
  0%   { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(60px, -80px) scale(1.15); }
  50%  { transform: translate(-40px, 40px) scale(0.9); }
  75%  { transform: translate(80px, 20px) scale(1.1); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes orbDrift2 {
  0%   { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(-50px, 60px) scale(1.1); }
  50%  { transform: translate(70px, -30px) scale(0.95); }
  75%  { transform: translate(-30px, -50px) scale(1.05); }
  100% { transform: translate(0, 0) scale(1); }
}

/* ═══════════════════════════════════════════════════════════
   CONTENT SPLIT — LEFT TEXT / RIGHT IMAGE
   ═══════════════════════════════════════════════════════════ */

.split {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: clamp(80px, 10vw, 140px) 0;
}

.split-grid {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--grid-max);
  margin: 0 auto;
  padding: 0 var(--grid-margin);
  display: grid;
  grid-template-columns: repeat(var(--grid-cols), 1fr);
  gap: var(--grid-gap);
  align-items: center;
}

/* ─── TEXT SIDE ─────────────────────────────────────────── */

.split-text {
  grid-column: 1 / 6;
  padding-right: clamp(16px, 2vw, 40px);
}

.split-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.split-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--grad);
  flex-shrink: 0;
}

.split-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: 0.04em;
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 24px;
}

.split-headline em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.split-body {
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.6vw, 1.25rem);
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 32px;
}

.split-body strong {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}

/* Bullet list */
.split-features {
  list-style: none;
  margin-bottom: 36px;
}

.split-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid var(--dark-400);
}

.split-features li:last-child { border-bottom: none; }

.split-features .feat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad);
  flex-shrink: 0;
  margin-top: 6px;
}

.split-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 4px;
  background: var(--pink);
  color: var(--white);
  outline: 2px solid transparent;
  outline-offset: 3px;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease, outline-color 0.3s ease;
}

.split-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,159,227,0.35), 0 0 20px rgba(0,159,227,0.25);
  outline-color: rgba(0,159,227,0.8);
}

.split-cta svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── REVERSE VARIANT (image-left, text-right) ──────────── */

.split-grid--reverse .split-text  { grid-column: 7 / 13; padding-left: clamp(16px, 2vw, 40px); padding-right: 0; }
.split-grid--reverse .split-image { grid-column: 1 / 7; }

/* ─── IMAGE SIDE ────────────────────────────────────────── */

.split-image {
  grid-column: 7 / 13;
  position: relative;
  align-self: stretch;
}

.split-image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
}

.split-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  transition: transform 0.6s var(--ease-out);
}

.split-image-wrap:hover img {
  transform: scale(1.03);
}

/* Gradient corner accent */
.split-image-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 60%;
  background: linear-gradient(to top right, rgba(230,0,126,0.15), transparent 60%);
  pointer-events: none;
  border-radius: 16px;
}

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ═══════════════════════════════════════════════════════════
   BREAKPOINTS
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1800px) {
  :root { --grid-gap: 22px; --grid-margin: clamp(24px, 4.5vw, 72px); }
}

@media (max-width: 1600px) {
  :root { --grid-gap: 20px; }
  .split-headline { font-size: clamp(2.2rem, 4.5vw, 4rem); }
}

@media (max-width: 1400px) {
  .split-headline { font-size: clamp(2rem, 4vw, 3.5rem); }
}

@media (max-width: 1200px) {
  :root { --grid-gap: 18px; --grid-margin: clamp(20px, 4vw, 56px); }
  .split-text  { grid-column: 1 / 7; }
  .split-image { grid-column: 7 / 13; }
  .split-grid--reverse .split-text  { grid-column: 7 / 13; }
  .split-grid--reverse .split-image { grid-column: 1 / 7; }
}

@media (max-width: 1000px) {
  :root { --grid-gap: 16px; --grid-margin: clamp(20px, 3.5vw, 40px); }
  .split-text  { grid-column: 1 / 7; }
  .split-image { grid-column: 7 / 13; }
  .split-grid--reverse .split-text  { grid-column: 7 / 13; }
  .split-grid--reverse .split-image { grid-column: 1 / 7; }
}

@media (max-width: 800px) {
  :root { --grid-gap: 14px; --grid-margin: 24px; }

  .split-grid {
    grid-template-columns: 1fr;
  }

  .split-text {
    grid-column: 1 / -1;
    grid-row: 1;
    text-align: center;
  }

  .split-label { justify-content: center; }
  .split-body { margin-left: auto; margin-right: auto; }
  .split-features { max-width: 400px; margin-left: auto; margin-right: auto; margin-bottom: 36px; }

  .split-image {
    grid-column: 1 / -1;
    grid-row: 2;
    max-width: 500px;
    margin: 0 auto;
  }

  .split-grid--reverse .split-text  { grid-column: 1 / -1; grid-row: 1; padding-left: 0; }
  .split-grid--reverse .split-image { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 600px) {
  :root { --grid-margin: 20px; }
  .split-headline { font-size: clamp(2rem, 8vw, 2.8rem); }
  .split-cta { width: 100%; justify-content: center; }
}

@media (max-width: 400px) {
  :root { --grid-margin: 16px; }
  .split-headline { font-size: 1.8rem; }
}

