@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;700;900&display=swap');

:root {
  --color-midnight: #050509;
  --color-graphite: #181820;
  --color-pink: #FF2D75;
  --color-cyan: #25F4EE;
  --color-lime: #B6FF3B;
  --color-white: #F8F8F8;
  
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-midnight);
  color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.1;
  font-weight: 700;
}

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

ul {
  list-style: none;
}

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

.text-center { text-align: center; }
.text-pink { color: var(--color-pink); }
.text-cyan { color: var(--color-cyan); }
.text-lime { color: var(--color-lime); }

/* Glassmorphism */
.glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 32px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
  border-color: rgba(255, 45, 117, 0.3);
  transform: translateY(-5px);
}

/* Glow Effects */
.glow-pink { text-shadow: 0 0 20px rgba(255, 45, 117, 0.5); }
.glow-cyan { text-shadow: 0 0 20px rgba(37, 244, 238, 0.5); }
.glow-lime { text-shadow: 0 0 20px rgba(182, 255, 59, 0.5); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-family: var(--font-body);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 16px;
}

.btn-primary {
  background-color: var(--color-pink);
  color: var(--color-white);
  box-shadow: 0 0 20px rgba(255, 45, 117, 0.4);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 45, 117, 0.6);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Forms */
.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: rgba(248, 248, 248, 0.7);
}

.form-control {
  width: 100%;
  padding: 16px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-pink);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}

/* Nav */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 0;
  z-index: 100;
  transition: padding 0.3s ease, background-color 0.3s ease;
}

.navbar.scrolled {
  padding: 16px 0;
  background: rgba(5, 5, 9, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -1px;
}

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

.nav-links a {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(248, 248, 248, 0.7);
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--color-cyan);
}

.lang-switch {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--color-midnight);
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
}

/* Sections */
section {
  padding: 100px 0;
  position: relative;
  z-index: 1; /* For background layering */
}

@media (max-width: 768px) {
  section {
    padding: 64px 0;
  }
}

@media (max-width: 430px) {
  section {
    padding: 48px 0;
  }
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 120px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
}

.hero h1 {
  font-size: clamp(40px, 8vw, 80px);
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.hero p {
  font-size: clamp(18px, 4vw, 24px);
  color: rgba(248, 248, 248, 0.6);
  margin-bottom: 40px;
}

/* Ambient Gradients and Backgrounds */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  z-index: -1;
  opacity: 0.15;
  pointer-events: none;
}

@media (max-width: 768px) {
  .ambient-glow {
    filter: blur(100px);
    opacity: 0.25; /* Slightly more visible on mobile to reduce dark voids */
  }
}

/* Subtle Noise Texture overlay to kill empty blacks */
.bg-noise {
  position: relative;
}
.bg-noise::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: -1;
}

/* Mobile Swipe Row (TikTok style horizontal feeds) */
.mobile-swipe-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 24px;
  /* Hide scrollbar */
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.mobile-swipe-row::-webkit-scrollbar {
  display: none;
}
.mobile-swipe-card {
  flex: 0 0 85%;
  scroll-snap-align: center;
}

@media (min-width: 769px) {
  .mobile-swipe-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    overflow-x: visible;
    scroll-snap-type: none;
  }
  .mobile-swipe-card {
    flex: unset;
    scroll-snap-align: none;
  }
}

/* Sticky Bottom CTA for Mobile */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px 24px;
  background: rgba(5, 5, 9, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  text-align: center;
}
.sticky-cta .btn {
  width: 100%;
  padding: 14px 24px;
  font-size: 16px;
}

@media (max-width: 768px) {
  .sticky-cta {
    display: block;
  }
  /* Add padding to body so sticky CTA doesn't cover footer content completely */
  body {
    padding-bottom: 80px; 
  }
}

/* Specific elements will be styled inline or via JS where dynamic */
.hidden { display: none !important; }

/* Hide scrollbars for carousels */
#video-carousel-container::-webkit-scrollbar,
#creator-feed-container::-webkit-scrollbar {
  display: none;
}
#video-carousel-container,
#creator-feed-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ── STATS GRID (desktop 3-col, mobile 2-col+full) ─────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}
.stat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.stat-card:hover {
  border-color: rgba(255,45,117,0.3);
  transform: translateY(-4px);
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, transparent 60%);
  pointer-events: none;
}
.stat-number {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 12px;
}
.stat-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.55);
  font-weight: 700;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .stats-grid .stat-card:last-child {
    grid-column: 1 / -1;
    max-width: 340px;
    margin: 0 auto;
    width: 100%;
  }
  .stat-card {
    padding: 24px 16px;
  }
}

/* ── CASE STUDY VISUAL CARDS ─────────────────────────────────────────────── */
.case-study-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  position: relative;
  min-height: 340px;
}
.case-study-img {
  position: relative;
  overflow: hidden;
}
.case-study-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
}
.case-study-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(24,24,32,0.95));
}
.case-study-body {
  background: var(--color-graphite);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  position: relative;
}
.case-study-category {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 4px;
}
.case-study-result {
  font-size: clamp(28px, 3.5vw, 44px);
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 8px;
}
.case-study-metrics {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.metric-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
}
.metric-badge span {
  display: block;
  font-size: 18px;
  font-weight: 900;
  font-family: var(--font-heading);
}

@media (max-width: 768px) {
  .case-study-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .case-study-img {
    height: 200px;
  }
  .case-study-img::after {
    background: linear-gradient(to top, rgba(24,24,32,0.95) 20%, transparent);
  }
  .case-study-body {
    padding: 28px 24px;
  }
}

/* ── CREATOR SHOWCASE GRID ───────────────────────────────────────────────── */
.creator-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.creator-thumb {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 9/16;
  border: 1px solid rgba(255,255,255,0.07);
}
.creator-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.creator-thumb:hover img {
  transform: scale(1.04);
}
.creator-thumb-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 16px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
}

@media (max-width: 768px) {
  .creator-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* ── FLOATING PROOF BADGES ────────────────────────────────────────────────── */
.proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid;
  white-space: nowrap;
}
.proof-badge-pink {
  background: rgba(255,45,117,0.12);
  border-color: rgba(255,45,117,0.35);
  color: var(--color-pink);
}
.proof-badge-cyan {
  background: rgba(37,244,238,0.10);
  border-color: rgba(37,244,238,0.35);
  color: var(--color-cyan);
}
.proof-badge-lime {
  background: rgba(182,255,59,0.10);
  border-color: rgba(182,255,59,0.35);
  color: var(--color-lime);
}

/* ── CHART BG DECORATION ──────────────────────────────────────────────────── */
.chart-bg {
  position: absolute;
  bottom: 0; right: 0;
  width: 50%;
  max-width: 500px;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}
.chart-bg img {
  width: 100%; height: auto;
}

/* ── VISUAL SECTION (dashboard/graph) ────────────────────────────────────── */
.visual-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.visual-section-grid.reverse {
  direction: rtl;
}
.visual-section-grid.reverse > * {
  direction: ltr;
}
.visual-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  position: relative;
}
.visual-img-wrap img {
  width: 100%; height: auto;
  display: block;
}

@media (max-width: 900px) {
  .visual-section-grid,
  .visual-section-grid.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .creator-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
}

