/* ============================================================
   WMCN.io — Premium MCN Creator Platform
   Dark Theme · Glassmorphism · Modern Micro-Animations
   ============================================================ */

/* —— Google Fonts —— */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ============================================================
   1. CSS RESET & BASE
   ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #0a0a0f;
  color: #e0e0e8;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* —— Custom Scrollbar —— */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0a0a0f;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #4d7cfe, #6c5ce7);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #6c5ce7, #9b59b6);
}

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: #4d7cfe #0a0a0f;
}

/* —— Utility —— */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* —— Section Title Shared —— */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-title p {
  font-size: 1.05rem;
  color: rgba(224, 224, 232, 0.55);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-title .accent-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #4d7cfe, #9b59b6);
  border-radius: 10px;
  margin: 20px auto 0;
}

.gradient-text {
  background: linear-gradient(135deg, #4d7cfe, #9b59b6, #e040fb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   2. NAVIGATION (.navbar)
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  z-index: 1001;
}

.navbar-logo .logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #4d7cfe, #6c5ce7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
}

.navbar-logo img {
  height: 34px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(224, 224, 232, 0.7);
  transition: color 0.3s ease;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #4d7cfe, #9b59b6);
  border-radius: 2px;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: #fff;
}

.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px !important;
  background: linear-gradient(135deg, #4d7cfe, #6c5ce7);
  border-radius: 50px;
  font-weight: 600 !important;
  color: #fff !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(77, 124, 254, 0.3);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(77, 124, 254, 0.45);
}

/* —— Mobile Hamburger —— */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #e0e0e8;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* —— Mobile Nav Overlay —— */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: rgba(10, 10, 15, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: right 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav a {
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(224, 224, 232, 0.7);
  transition: color 0.3s ease, transform 0.3s ease;
}

.mobile-nav a:hover {
  color: #fff;
  transform: translateX(6px);
}

/* ============================================================
   3. HERO SECTION (.hero)
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

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

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

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 15, 0.5) 0%,
    rgba(10, 10, 15, 0.7) 50%,
    rgba(10, 10, 15, 0.95) 85%,
    #0a0a0f 100%
  );
}

/* —— Particle / Dot Animations —— */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(77, 124, 254, 0.35);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1)  { top: 15%; left: 10%; animation-delay: 0s; animation-duration: 7s; width: 5px; height: 5px; background: rgba(77, 124, 254, 0.4); }
.particle:nth-child(2)  { top: 30%; left: 85%; animation-delay: 1s; animation-duration: 8s; }
.particle:nth-child(3)  { top: 60%; left: 20%; animation-delay: 2s; animation-duration: 6s; width: 3px; height: 3px; background: rgba(155, 89, 182, 0.3); }
.particle:nth-child(4)  { top: 80%; left: 70%; animation-delay: 0.5s; animation-duration: 9s; width: 6px; height: 6px; background: rgba(108, 92, 231, 0.25); }
.particle:nth-child(5)  { top: 20%; left: 50%; animation-delay: 3s; animation-duration: 7s; }
.particle:nth-child(6)  { top: 45%; left: 35%; animation-delay: 1.5s; animation-duration: 6s; width: 3px; height: 3px; background: rgba(224, 64, 251, 0.2); }
.particle:nth-child(7)  { top: 70%; left: 90%; animation-delay: 2.5s; animation-duration: 8s; }
.particle:nth-child(8)  { top: 10%; left: 65%; animation-delay: 4s; animation-duration: 10s; width: 5px; height: 5px; background: rgba(77, 124, 254, 0.3); }
.particle:nth-child(9)  { top: 55%; left: 5%;  animation-delay: 0.8s; animation-duration: 7s; width: 3px; height: 3px; }
.particle:nth-child(10) { top: 90%; left: 45%; animation-delay: 3.5s; animation-duration: 9s; background: rgba(155, 89, 182, 0.25); }

/* —— Ambient glow orbs behind hero —— */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
}

.hero-glow--blue {
  width: 500px;
  height: 500px;
  background: rgba(77, 124, 254, 0.12);
  top: 10%;
  left: -10%;
  animation: pulse 8s ease-in-out infinite alternate;
}

.hero-glow--purple {
  width: 400px;
  height: 400px;
  background: rgba(155, 89, 182, 0.10);
  bottom: 10%;
  right: -5%;
  animation: pulse 10s ease-in-out infinite alternate-reverse;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(77, 124, 254, 0.1);
  border: 1px solid rgba(77, 124, 254, 0.2);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #4d7cfe;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 28px;
}

.hero-badge .badge-dot {
  width: 6px;
  height: 6px;
  background: #4d7cfe;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero h1 .hero-gradient {
  background: linear-gradient(135deg, #4d7cfe 0%, #9b59b6 50%, #e040fb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 5s ease infinite;
}

.hero p {
  font-size: 1.2rem;
  color: rgba(224, 224, 232, 0.6);
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #4d7cfe, #6c5ce7);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(77, 124, 254, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #6c5ce7, #4d7cfe);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: inherit;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(77, 124, 254, 0.5);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-primary .btn-icon {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
  transform: translateX(4px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: rgba(255, 255, 255, 0.05);
  color: #e0e0e8;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* ============================================================
   4–5. SERVICES / FEATURES SECTION (.services)
   ============================================================ */
.services {
  position: relative;
  padding: 100px 0;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(77, 124, 254, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.services-grid .service-card:first-child {
  grid-column: 1 / -1;
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(77, 124, 254, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(77, 124, 254, 0.3);
  box-shadow: 0 20px 60px rgba(77, 124, 254, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card .card-number {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(77, 124, 254, 0.6);
  margin-bottom: 20px;
}

.service-card .icon-container {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(77, 124, 254, 0.15), rgba(108, 92, 231, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover .icon-container {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(77, 124, 254, 0.2);
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.95rem;
  color: rgba(224, 224, 232, 0.6);
  line-height: 1.7;
}

/* Featured / first card expanded layout */
.service-card.featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.service-card.featured .card-visual {
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  aspect-ratio: 16 / 10;
}

.service-card.featured .card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   6–7. CREATOR SHOWCASE (.creators)
   ============================================================ */
.creators {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(
    180deg,
    #0a0a0f 0%,
    rgba(14, 14, 22, 1) 50%,
    #0a0a0f 100%
  );
  overflow: hidden;
}

.scroll-container {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

.scroll-track {
  display: flex;
  gap: 24px;
  animation: scroll 30s linear infinite;
  width: max-content;
}

.scroll-track:hover {
  animation-play-state: paused;
}

.creator-card {
  width: 280px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.creator-card:hover {
  transform: scale(1.03);
  border-color: rgba(77, 124, 254, 0.35);
  box-shadow: 0 12px 40px rgba(77, 124, 254, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.creator-card .creator-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.creator-card .creator-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4d7cfe, #9b59b6);
  padding: 2px;
  flex-shrink: 0;
}

.creator-card .creator-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #0a0a0f;
}

.creator-card .creator-info .creator-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.creator-card .creator-info .creator-handle {
  font-size: 0.85rem;
  color: rgba(77, 124, 254, 0.8);
}

.creator-card .creator-stats {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.creator-card .sub-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: rgba(77, 124, 254, 0.1);
  border: 1px solid rgba(77, 124, 254, 0.15);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #4d7cfe;
}

.creator-card .genre-tag {
  display: inline-flex;
  padding: 5px 12px;
  background: rgba(155, 89, 182, 0.1);
  border: 1px solid rgba(155, 89, 182, 0.15);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(155, 89, 182, 0.8);
}

/* ============================================================
   8. STATS SECTION (.stats)
   ============================================================ */
.stats {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    rgba(14, 14, 22, 1) 0%,
    rgba(18, 18, 30, 1) 50%,
    rgba(14, 14, 22, 1) 100%
  );
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(77, 124, 254, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  z-index: 1;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 20px 40px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: rgba(255, 255, 255, 0.08);
}

.stat-item .stat-number {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, #4d7cfe, #9b59b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat-item .stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(224, 224, 232, 0.45);
}

/* ============================================================
   9. AGENCIES SECTION (.agencies)
   ============================================================ */
.agencies {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

/* Subtle mesh gradient */
.agencies::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(77, 124, 254, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.agencies::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(155, 89, 182, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.agencies-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.agencies-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.agencies-text p {
  font-size: 1.05rem;
  color: rgba(224, 224, 232, 0.6);
  line-height: 1.8;
  margin-bottom: 16px;
}

.agencies-text .highlight {
  color: #4d7cfe;
  font-weight: 600;
}

.agencies-text .btn-primary {
  margin-top: 16px;
}

.agencies-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  aspect-ratio: 4 / 3;
}

.agencies-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.agencies-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(77, 124, 254, 0.1), rgba(155, 89, 182, 0.08));
  pointer-events: none;
}

/* ============================================================
   10. ABOUT SECTION (.about)
   ============================================================ */
.about {
  position: relative;
  padding: 120px 0;
}

.about-card {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 60px 50px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(77, 124, 254, 0.4), transparent);
}

.about-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.about-card p {
  font-size: 1.05rem;
  color: rgba(224, 224, 232, 0.6);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-card p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   11. CTA BANNER (.cta-banner)
   ============================================================ */
.cta-banner {
  position: relative;
  padding: 100px 24px;
  text-align: center;
  background: linear-gradient(135deg, #4d7cfe 0%, #6c5ce7 40%, #9b59b6 100%);
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.cta-banner p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 550px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: #fff;
  color: #4d7cfe;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
}

/* ============================================================
   12. FOOTER (.footer)
   ============================================================ */
.footer {
  background: #060608;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer-brand .footer-logo img {
  height: 32px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(224, 224, 232, 0.45);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(224, 224, 232, 0.7);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(224, 224, 232, 0.45);
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.footer-col ul li a:hover {
  color: #4d7cfe;
  transform: translateX(4px);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: rgba(77, 124, 254, 0.15);
  border-color: rgba(77, 124, 254, 0.3);
  transform: translateY(-3px);
  color: #4d7cfe;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(224, 224, 232, 0.35);
}

.footer-bottom .footer-legal {
  display: flex;
  gap: 20px;
}

.footer-bottom .footer-legal a {
  font-size: 0.8rem;
  color: rgba(224, 224, 232, 0.35);
  transition: color 0.3s ease;
}

.footer-bottom .footer-legal a:hover {
  color: #4d7cfe;
}

/* ============================================================
   13. KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-15px) translateX(5px);
  }
  50% {
    transform: translateY(-8px) translateX(-5px);
  }
  75% {
    transform: translateY(-20px) translateX(3px);
  }
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

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

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

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

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes borderGlow {
  0%, 100% {
    border-color: rgba(77, 124, 254, 0.15);
  }
  50% {
    border-color: rgba(77, 124, 254, 0.4);
  }
}

/* —— Animate-in utility classes —— */
.animate {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-left {
  animation: fadeInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-right {
  animation: fadeInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }
.animate-delay-6 { animation-delay: 0.6s; }

/* ============================================================
   14. SCROLL REVEAL CLASSES
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* ============================================================
   17. PLATFORM LOGOS (.platforms)
   ============================================================ */
.platforms {
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.platforms-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(224, 224, 232, 0.35);
  margin-bottom: 32px;
}

.platforms-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.platforms-row img {
  height: 32px;
  width: auto;
  filter: grayscale(1) brightness(0.5);
  opacity: 0.5;
  transition: all 0.4s ease;
}

.platforms-row img:hover {
  filter: grayscale(0) brightness(1);
  opacity: 1;
  transform: scale(1.08);
}

.platforms-row .platform-icon {
  font-size: 1.8rem;
  color: rgba(224, 224, 232, 0.3);
  transition: all 0.4s ease;
}

.platforms-row .platform-icon:hover {
  color: #4d7cfe;
  transform: scale(1.15);
}

/* ============================================================
   15. RESPONSIVE DESIGN
   ============================================================ */

/* —— ≤ 1200px —— */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

/* —— ≤ 992px —— */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card.featured {
    grid-template-columns: 1fr;
  }

  .agencies-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .agencies-visual {
    order: -1;
  }

  .stats-grid {
    flex-wrap: wrap;
  }

  .stat-item {
    flex: 1 1 calc(33.33% - 20px);
    min-width: 180px;
  }

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

/* —— ≤ 768px —— */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .services {
    padding: 70px 0;
  }

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

  .service-card {
    padding: 30px;
  }

  .creator-card {
    width: 240px;
    padding: 20px;
  }

  .creator-card .creator-avatar {
    width: 56px;
    height: 56px;
  }

  .stats {
    padding: 50px 0;
  }

  .stat-item {
    flex: 1 1 100%;
    padding: 20px;
    text-align: center;
  }

  .stat-item:not(:last-child)::after {
    right: 50%;
    top: auto;
    bottom: 0;
    transform: translateX(50%);
    width: 40%;
    height: 1px;
  }

  .about-card {
    padding: 40px 28px;
  }

  .cta-banner {
    padding: 70px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .platforms-row {
    gap: 24px;
  }

  .section-title {
    margin-bottom: 40px;
  }
}

/* —— ≤ 480px —— */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 100px 16px 60px;
  }

  .hero h1 {
    font-size: clamp(1.7rem, 7vw, 2.3rem);
  }

  .hero p {
    font-size: 0.95rem;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 6px 14px;
  }

  .service-card {
    padding: 24px;
    border-radius: 16px;
  }

  .service-card h3 {
    font-size: 1.25rem;
  }

  .creator-card {
    width: 220px;
    padding: 18px;
  }

  .stat-item .stat-number {
    font-size: 2rem;
  }

  .about-card {
    padding: 32px 20px;
    border-radius: 18px;
  }

  .cta-banner h2 {
    font-size: 1.6rem;
  }

  .btn-primary,
  .btn-secondary,
  .btn-white {
    padding: 14px 28px;
    font-size: 0.9rem;
  }

  .navbar-logo {
    font-size: 1.25rem;
  }

  .footer-brand p {
    font-size: 0.85rem;
  }
}

/* ============================================================
   EXTRAS & POLISH
   ============================================================ */

/* Selection colour */
::selection {
  background: rgba(77, 124, 254, 0.3);
  color: #fff;
}

/* Focus-visible for accessibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid #4d7cfe;
  outline-offset: 3px;
  border-radius: 4px;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .scroll-track {
    animation: none;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }
}

/* Loading skeleton shimmer util */
.skeleton {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.03) 25%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 255, 255, 0.03) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  border-radius: 8px;
}

/* Glow effect utility */
.glow {
  box-shadow:
    0 0 20px rgba(77, 124, 254, 0.15),
    0 0 60px rgba(77, 124, 254, 0.05);
}

/* Glassmorphism card utility */
.glass {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
}

/* Gradient border utility */
.gradient-border {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.gradient-border::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(77, 124, 254, 0.4), rgba(155, 89, 182, 0.4));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Text gradient utility */
.text-gradient-blue {
  background: linear-gradient(135deg, #4d7cfe, #6c5ce7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-purple {
  background: linear-gradient(135deg, #9b59b6, #e040fb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
