
:root {
  --pink:       #e6007e;
  --blue:       #009fe3;
  --teal:       #27cfc3;
  --grad:       linear-gradient(135deg, #e6007e 0%, #009fe3 100%);
  --dark:       #0d0d0d;
  --dark-600:   #1a1a1a;
  --dark-400:   #2e2e2e;
  --grey-400:   #888888;
  --grey-200:   #cccccc;
  --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);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 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 PINK 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%);
  top: -15%;
  left: -10%;
  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%);
  bottom: -10%;
  right: 5%;
  animation: orbDrift2 18s ease-in-out infinite;
}

.neon-orb--3 {
  width: clamp(200px, 25vw, 450px);
  height: clamp(200px, 25vw, 450px);
  background: radial-gradient(circle, rgba(230,0,126,0.45) 0%, rgba(230,0,126,0.15) 40%, transparent 70%);
  top: 40%;
  left: 35%;
  animation: orbPulse 10s 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); }
}

@keyframes orbPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%      { transform: scale(1.4); opacity: 1; }
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

/* ─── GRID CONTAINER ────────────────────────────────────── */

.hero-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;
  min-height: 100vh;
}

/* ─── 40/60 SPLIT LAYOUT ───────────────────────────────── */
.hero-grid--split { grid-template-columns: repeat(12, 1fr); }
.hero-content--split { grid-column: 1 / 6; }
.hero-image--split { grid-column: 6 / 13; flex-direction: column; align-items: center; justify-content: center; }

/* ─── CONTENT (left) ────────────────────────────────────── */

.hero-content {
  grid-column: 1 / 8;
  padding: 80px 0;
}

.hero-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 7rem);
  letter-spacing: 0.04em;
  line-height: 0.88;
  color: var(--white);
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease-out) 0.35s forwards;
}

.hero-headline .swap-container {
  display: inline-block;
  position: relative;
  vertical-align: bottom;
}

.hero-headline .swap-word {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  white-space: nowrap;
}

.hero-headline .swap-word.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(17px, 2vw, 1.5rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  max-width: 520px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease-out) 0.5s forwards;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease-out) 0.65s forwards;
}

.btn {
  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;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease, outline-color 0.3s ease;
  outline: 2px solid transparent;
  outline-offset: 3px;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--pink);
  color: var(--white);
}
.btn-primary:hover {
  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);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.5);
  box-shadow: 0 8px 32px rgba(255,255,255,0.06);
}

.btn-arrow {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── DAVE (right) ──────────────────────────────────────── */

.hero-image {
  grid-column: 8 / 13;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: end;
  opacity: 0;
  animation: fadeSlideUp 1s var(--ease-out) 0.6s forwards;
}

.hero-image img {
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: contain;
  display: block;
}

.hero-image--cs {
  align-items: center;
  align-self: center;
}

.hero-image--cs img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(230,0,126,0.08);
}

.hero-image--cs .vp-container {
  width: 100%;
  max-width: 100%;
}

.hero-image--cs .vp-poster-img {
  max-width: 100% !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

/* ─── CLIENT LOGOS ─────────────────────────────────────── */

.hero-clients {
  margin-top: 48px;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease-out) 0.85s forwards;
}

.hero-clients-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}

.hero-clients-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-clients-logos img {
  height: 24px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.35;
  transition: opacity 0.3s ease;
}

.hero-clients-logos img:hover {
  opacity: 0.7;
}

/* ─── SCROLL INDICATOR ──────────────────────────────────── */

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s ease 1.2s forwards;
}

.hero-scroll span {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--grad);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════════
   KEYFRAMES
   ═══════════════════════════════════════════════════════════ */

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollPulse {
  0%   { top: -100%; }
  50%  { top: 100%; }
  100% { top: 100%; }
}

/* ═══════════════════════════════════════════════════════════
   BREAKPOINTS — Every 200px down from 2000
   ═══════════════════════════════════════════════════════════ */

/* 1800 */
@media (max-width: 1800px) {
  :root { --grid-gap: 22px; --grid-margin: clamp(24px, 4.5vw, 72px); }
  .hero-headline { font-size: clamp(3.5rem, 6.5vw, 6.5rem); }
  .hero-image img { max-width: 460px; }
}

/* 1600 */
@media (max-width: 1600px) {
  :root { --grid-gap: 20px; }
  .hero-headline { font-size: clamp(3rem, 6vw, 6rem); }
  .hero-image img { max-width: 440px; }
}

/* 1400 */
@media (max-width: 1400px) {
  :root { --grid-gap: 20px; }
  .hero-content { grid-column: 1 / 8; }
  .hero-image   { grid-column: 8 / 13; }
  .hero-headline { font-size: clamp(2.8rem, 5.5vw, 5rem); }
  .hero-image img { max-width: 400px; }
}

/* 1200 */
@media (max-width: 1200px) {
  :root { --grid-gap: 18px; --grid-margin: clamp(20px, 4vw, 56px); }
  .hero-content { grid-column: 1 / 8; }
  .hero-image   { grid-column: 8 / 13; }
  .hero-headline { font-size: clamp(2.5rem, 5vw, 4.2rem); }
  .hero-sub { font-size: clamp(17px, 1.8vw, 1.3rem); max-width: 460px; }
  .hero-image img { max-width: 360px; }
}

/* 1000 */
@media (max-width: 1000px) {
  :root { --grid-gap: 16px; --grid-margin: clamp(20px, 3.5vw, 40px); }
  .hero-content { grid-column: 1 / 9; }
  .hero-image   { grid-column: 9 / 13; }
  .hero-headline { font-size: clamp(2.2rem, 4.5vw, 3.5rem); }
  .hero-sub { font-size: clamp(17px, 1.6vw, 1.15rem); max-width: 400px; }
  .hero-image img { max-width: 300px; }
}

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

  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .hero-content {
    grid-column: 1 / -1;
    grid-row: 1;
    padding: 0;
    text-align: center;
  }

  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-clients { margin-top: 36px; }
  .hero-clients-label { text-align: center; }
  .hero-clients-logos { justify-content: center; gap: 24px; }
  .hero-clients-logos img { height: 20px; }

  .hero-image {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
    margin-top: 40px;
  }

  .hero-image img { max-width: 320px; }
  .hero-headline { font-size: clamp(2.8rem, 8vw, 4rem); }
  .hero-scroll { display: none; }
}

/* 600 */
@media (max-width: 600px) {
  :root { --grid-margin: 20px; }
  .hero-headline { font-size: clamp(2.4rem, 10vw, 3.2rem); }
  .hero-sub { font-size: 17px; }
  .hero-image img { max-width: 260px; }
  .btn { padding: 12px 24px; font-size: 15px; }
  .hero-clients-logos { gap: 20px; }
  .hero-clients-logos img { height: 18px; }
}

/* 400 */
@media (max-width: 400px) {
  :root { --grid-margin: 16px; }
  .hero-headline { font-size: 2.2rem; }
  .hero-sub { font-size: 17px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-image img { max-width: 220px; }
}
