
:root {
  --pink:       #e6007e;
  --blue:       #009fe3;
  --teal:       #27cfc3;
  --grad:       linear-gradient(135deg, #e6007e 0%, #009fe3 100%);
  --dark:       #0d0d0d;
  --dark-600:   #1a1a1a;
  --dark-400:   #2e2e2e;
  --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-margin:  clamp(24px, 5vw, 80px);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ─── Service Marquee ─── */

.service-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--dark);
  padding: 28px 0;
}

.service-marquee::before,
.service-marquee::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--grad);
  z-index: 2;
}

.service-marquee::before { top: 0; }
.service-marquee::after  { bottom: 0; }

/* Fade masks on left and right edges */
.service-marquee__mask {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 3;
  pointer-events: none;
}

.service-marquee__mask--left {
  left: 0;
  background: linear-gradient(to right, var(--dark), transparent);
}

.service-marquee__mask--right {
  right: 0;
  background: linear-gradient(to left, var(--dark), transparent);
}

/* Scrolling track */
.service-marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
  animation: scrollText 120s linear infinite;
}

.service-marquee:hover .service-marquee__track {
  animation-play-state: paused;
}

@keyframes scrollText {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Phrases */
.service-marquee__phrase {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.25);
  transition: color 0.3s var(--ease-out), text-shadow 0.3s var(--ease-out);
  cursor: default;
  line-height: 1;
  flex-shrink: 0;
}

.service-marquee__phrase:hover {
  color: rgba(255, 255, 255, 1);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.25), 0 0 40px rgba(230, 0, 126, 0.15);
}

/* Accent phrases — every 4th */
.service-marquee__phrase--accent {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.55;
  transition: opacity 0.3s var(--ease-out), filter 0.3s var(--ease-out);
}

.service-marquee__phrase--accent:hover {
  opacity: 1;
  filter: brightness(1.2);
  text-shadow: none;
}

/* Dot separator */
.service-marquee__dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad);
  margin: 0 clamp(12px, 2vw, 24px);
  opacity: 0.3;
}

/* ─── Breakpoints ─── */

@media (max-width: 1800px) {
  .service-marquee__phrase { font-size: clamp(1.9rem, 3.8vw, 3.8rem); }
}

@media (max-width: 1600px) {
  .service-marquee__phrase { font-size: clamp(1.8rem, 3.6vw, 3.6rem); }
}

@media (max-width: 1400px) {
  .service-marquee__phrase { font-size: clamp(1.7rem, 3.4vw, 3.4rem); }
}

@media (max-width: 1200px) {
  .service-marquee__phrase { font-size: clamp(1.6rem, 3.2vw, 3.2rem); }
  .service-marquee { padding: 24px 0; }
}

@media (max-width: 1000px) {
  .service-marquee__phrase { font-size: clamp(1.5rem, 3vw, 3rem); }
  .service-marquee__mask { width: 60px; }
}

@media (max-width: 800px) {
  .service-marquee__phrase { font-size: clamp(1.3rem, 2.8vw, 2.5rem); }
  .service-marquee { padding: 20px 0; }
  .service-marquee__mask { width: 40px; }
  .service-marquee__dot { width: 6px; height: 6px; }
}

@media (max-width: 600px) {
  .service-marquee__phrase { font-size: clamp(1.1rem, 4vw, 2rem); }
  .service-marquee { padding: 16px 0; }
  .service-marquee__mask { width: 30px; }
}

@media (max-width: 400px) {
  .service-marquee__phrase { font-size: clamp(1rem, 5vw, 1.6rem); }
  .service-marquee { padding: 14px 0; }
  .service-marquee__mask { width: 20px; }
  .service-marquee__dot { width: 5px; height: 5px; margin: 0 8px; }
}

