/* ═══════════════════════════════════════════════
   ClipCash — Premium Glassmorphism Landing Page
   Theme: Liquid Fluid Glass | Dark Blue/Black
═══════════════════════════════════════════════ */

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-deep:      #01020a;
  --bg-dark:      #050815;
  --bg-mid:       #080d1f;
  --blue-900:     #060e2b;
  --blue-800:     #0b1640;
  --blue-700:     #0d1f5c;
  --blue-600:     #1230a0;
  --blue-500:     #1a3fcf;
  --blue-400:     #2d5ae8;
  --blue-300:     #4a7af0;
  /* Replaced purple — now cyan/electric-blue tones */
  --cyan-400:     #00c8ff;
  --cyan-300:     #38d9ff;
  --cyan-200:     #80eaff;
  --electric:     #0ff0fc;
  --teal-400:     #00b4cc;
  --accent-blue:  #2d5ae8;
  --accent-cyan:  #00c8ff;
  --glass-bg:     rgba(13, 24, 70, 0.45);
  --glass-border: rgba(74, 122, 240, 0.18);
  --glass-shine:  rgba(0, 200, 255, 0.06);
  --text-white:   #ffffff;
  --text-light:   #c8dff8;
  --text-muted:   #7a92c4;
  /* New gradient: deep blue → electric cyan */
  --gradient-main: linear-gradient(135deg, #2d5ae8 0%, #00c8ff 50%, #2d5ae8 100%);
  --gradient-accent: linear-gradient(135deg, #1a3fcf 0%, #00c8ff 100%);
  --gradient-bg:  linear-gradient(160deg, #01020a 0%, #050815 30%, #080d1f 60%, #050a1a 100%);
  --underline-color: #00c8ff;
  --font-main:    'Sora', 'Inter', sans-serif;
  --radius-card:  20px;
  --radius-btn:   50px;
  --transition:   all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--bg-deep);
  color: var(--text-white);
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--blue-500); border-radius: 3px; }

/* ─── CURSOR GLOW ─── */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,90,232,0.12) 0%, rgba(0,200,255,0.06) 40%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: left 0.08s ease, top 0.08s ease;
  z-index: 0;
  mix-blend-mode: screen;
}

/* ─── ANIMATED BACKGROUND ─── */
.bg-canvas {
  position: fixed;
  inset: 0;
  background: var(--gradient-bg);
  z-index: -3;
  animation: bgShift 20s ease-in-out infinite alternate;
}
@keyframes bgShift {
  0%   { background: linear-gradient(160deg, #01020a 0%, #050815 30%, #080d1f 60%, #05030f 100%); }
  50%  { background: linear-gradient(160deg, #020310 0%, #060c22 30%, #0a112a 60%, #07041a 100%); }
  100% { background: linear-gradient(160deg, #01020a 0%, #050815 30%, #060d1e 60%, #030212 100%); }
}

.bg-particles {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.bg-particles::before, .bg-particles::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 18s ease-in-out infinite;
}
.bg-particles::before {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(45,90,232,0.08) 0%, transparent 70%);
  top: -10%; left: -10%;
  animation-duration: 22s;
}
.bg-particles::after {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,200,255,0.06) 0%, transparent 70%);
  bottom: -10%; right: -10%;
  animation-duration: 26s;
  animation-direction: reverse;
}
@keyframes float {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(60px,-40px) scale(1.1); }
  66%      { transform: translate(-40px,60px) scale(0.9); }
}

/* ─── GLASS CARD ─── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.4),
    0 0 0 1px rgba(74,122,240,0.06),
    inset 0 1px 0 rgba(100,150,255,0.1);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,200,255,0.05) 0%, transparent 50%, rgba(45,90,232,0.04) 100%);
  pointer-events: none;
  border-radius: inherit;
}
.glass-card:hover {
  border-color: rgba(74,122,240,0.35);
  box-shadow:
    0 16px 48px rgba(0,0,0,0.5),
    0 0 40px rgba(45,90,232,0.15),
    inset 0 1px 0 rgba(100,150,255,0.15);
  transform: translateY(-4px);
}

/* ─── GLASS BADGE ─── */
.glass-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(45,90,232,0.12);
  border: 1px solid rgba(45,90,232,0.3);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--blue-300);
  backdrop-filter: blur(10px);
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue-400);
  box-shadow: 0 0 8px var(--blue-400);
  animation: pulse 2s ease-in-out infinite;
}
.badge-dot.pulsing { background: #e85d2d; box-shadow: 0 0 8px #e85d2d; }
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(0.85); }
}

/* ─── GRADIENT TEXT ─── */
.gradient-text {
  background: var(--gradient-main);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease-in-out infinite;
}
@keyframes gradientShift {
  0%,100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #1a3fcf, #00c8ff);
  background-size: 200% 200%;
  color: #fff;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: var(--radius-btn);
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(45,90,232,0.35), 0 0 0 1px rgba(74,122,240,0.2);
  letter-spacing: 0.02em;
  animation: gradientShift 4s ease-in-out infinite;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 40px rgba(45,90,232,0.5), 0 0 60px rgba(0,200,255,0.22);
}
.btn-primary:hover::after { left: 140%; }
.btn-large { font-size: 1.15rem; padding: 20px 48px; }

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #1a3fcf, #00c8ff);
  color: #fff;
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: var(--radius-btn);
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 2px 16px rgba(45,90,232,0.3);
  white-space: nowrap;
}
.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(45,90,232,0.5);
}

/* ─── CONTAINER ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── SECTION LABELS ─── */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-300);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  width: 30px; height: 2px;
  background: var(--gradient-main);
  border-radius: 2px;
}

.section-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-white);
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: 56px;
}

/* ═══════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(5, 8, 21, 0.9);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(74,122,240,0.15);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-img {
  width: 40px; height: 40px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(45,90,232,0.4);
}
.logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.02em;
}
.logo-accent {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--gradient-main);
  transition: width 0.3s ease;
  border-radius: 2px;
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 100px;
  position: relative;
  overflow: hidden;
}
.hero-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  animation: orbFloat 15s ease-in-out infinite;
}
.orb1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(45,90,232,0.12) 0%, transparent 70%);
  top: -20%; left: -15%;
  animation-duration: 20s;
}
.orb2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,200,255,0.08) 0%, transparent 70%);
  top: 10%; right: -10%;
  animation-duration: 17s;
  animation-delay: -5s;
}
.orb3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(45,90,232,0.08) 0%, transparent 70%);
  bottom: -5%; left: 40%;
  animation-duration: 23s;
  animation-delay: -10s;
}
@keyframes orbFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  25%      { transform: translate(30px,-30px) scale(1.05); }
  50%      { transform: translate(-20px,20px) scale(0.95); }
  75%      { transform: translate(20px,30px) scale(1.02); }
}

.hero .container { position: relative; z-index: 1; max-width: 900px; }
.hero-badge { margin-bottom: 32px; }
.hero-headline {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  color: var(--text-white);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto 48px;
  font-weight: 400;
}
.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 60px;
}
.cta-micro {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 24px 32px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
  gap: 4px;
}
.trust-num {
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.trust-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--glass-border);
}

/* ═══════════════════════════════════════════════
   RIBBON
═══════════════════════════════════════════════ */
.ribbon-wrapper {
  overflow: hidden;
  background: rgba(10, 18, 45, 0.6);
  border-top: 1px solid rgba(74,122,240,0.12);
  border-bottom: 1px solid rgba(74,122,240,0.12);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 10;
}
.ribbon-track {
  display: flex;
  width: max-content;
  animation: ribbonScroll 30s linear infinite;
  padding: 18px 0;
}
.ribbon-track:hover { animation-play-state: paused; }
.ribbon-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 40px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  cursor: default;
  transition: var(--transition);
  position: relative;
}
.ribbon-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%; transform: translateY(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(74,122,240,0.4);
}
.ribbon-item i { color: var(--blue-400); font-size: 1rem; }
.ribbon-item:hover {
  color: var(--text-white);
  background: rgba(45,90,232,0.08);
  border-radius: 8px;
}
.ribbon-item:hover i { color: var(--blue-300); }
@keyframes ribbonScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════
   PROBLEM SECTION
═══════════════════════════════════════════════ */
.problem-section {
  padding: 120px 0;
  position: relative;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.pain-card {
  padding: 36px 28px;
  text-align: center;
}
.pain-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(45,90,232,0.2), rgba(0,200,255,0.15));
  border: 1px solid rgba(74,122,240,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.4rem;
  color: var(--blue-300);
  transition: var(--transition);
}
.pain-card:hover .pain-icon {
  background: linear-gradient(135deg, rgba(45,90,232,0.35), rgba(0,200,255,0.28));
  box-shadow: 0 0 20px rgba(0,200,255,0.25);
}
.pain-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-white);
}
.pain-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.pull-quote {
  padding: 40px 48px;
  text-align: center;
  border-left: 3px solid;
  border-image: var(--gradient-main) 1;
  border-radius: var(--radius-card) !important;
  position: relative;
}
.quote-mark {
  font-size: 6rem;
  line-height: 0.5;
  color: var(--blue-400);
  opacity: 0.3;
  font-family: Georgia, serif;
  vertical-align: top;
  margin-right: 8px;
}
.pull-quote p {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.6;
  font-style: italic;
}

/* ═══════════════════════════════════════════════
   SOLUTION SECTION
═══════════════════════════════════════════════ */
.solution-section {
  padding: 120px 0;
  position: relative;
}
.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.solution-card {
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}
.featured-card {
  background: rgba(30, 50, 120, 0.5);
  border-color: rgba(45,90,232,0.4);
  box-shadow:
    0 8px 40px rgba(0,0,0,0.5),
    0 0 60px rgba(45,90,232,0.15);
  transform: scale(1.03);
}
.featured-card:hover { transform: scale(1.05) translateY(-4px); }
.featured-badge {
  display: inline-block;
  background: linear-gradient(135deg, #1a3fcf, #00c8ff);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 8px;
  width: fit-content;
}
.solution-icon-wrap {
  font-size: 2.5rem;
  margin-bottom: 4px;
}
.solution-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
}
.solution-card p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}
.card-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  background: radial-gradient(circle at 50% 0%, rgba(45,90,232,0.12) 0%, transparent 60%);
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.solution-card:hover .card-glow { opacity: 1; }

/* ═══════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════ */
.hiw-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.hiw-glow {
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,90,232,0.06) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  filter: blur(60px);
  pointer-events: none;
}
.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 64px;
}
.step-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  align-items: flex-start;
}
.step-num-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.step-num {
  width: 72px; height: 72px;
  border-radius: 18px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(45,90,232,0.25), rgba(0,200,255,0.2)) !important;
  border-color: rgba(74,122,240,0.3) !important;
  color: var(--blue-300);
  flex-shrink: 0;
}
.step-line {
  width: 2px;
  flex: 1;
  min-height: 60px;
  background: linear-gradient(to bottom, rgba(74,122,240,0.3), transparent);
  margin-top: 8px;
}
.step-content {
  padding: 32px 36px;
  flex: 1;
  transform: none !important;
}
.step-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
}
.step-content p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.hiw-cta { text-align: center; }

/* ═══════════════════════════════════════════════
   WORKED WITH / CREATORS CAROUSEL
═══════════════════════════════════════════════ */
.worked-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.creators-carousel-wrapper {
  overflow: hidden;
  position: relative;
  margin-top: 60px;
}
.creators-carousel-wrapper::before,
.creators-carousel-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 200px;
  z-index: 2;
  pointer-events: none;
}
.creators-carousel-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-deep), transparent);
}
.creators-carousel-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-deep), transparent);
}
.creators-track {
  display: flex;
  width: max-content;
  animation: creatorScroll 40s linear infinite;
  padding: 20px 0;
  gap: 28px;
}
.creators-track:hover { animation-play-state: paused; }
@keyframes creatorScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.creator-card {
  width: 280px;
  flex-shrink: 0;
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}
.creator-img-wrap {
  width: 80px; height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(74,122,240,0.3);
  box-shadow: 0 0 20px rgba(45,90,232,0.25);
}
.creator-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.creator-card:hover .creator-img { transform: scale(1.08); }
.creator-info { flex: 1; }
.creator-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}
.creator-handle {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.creator-stat {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.stat-num {
  font-size: 1.3rem;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════
   VIDEOS SECTION
═══════════════════════════════════════════════ */
.videos-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.videos-float-wrapper {
  overflow: hidden;
  position: relative;
  margin: 60px 0;
  height: 420px;
}
.videos-float-wrapper::before,
.videos-float-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 200px;
  z-index: 2;
  pointer-events: none;
}
.videos-float-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-deep), transparent);
}
.videos-float-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-deep), transparent);
}
.videos-float-track {
  display: flex;
  width: max-content;
  animation: videoScroll 45s linear infinite;
  gap: 24px;
  height: 100%;
  padding: 0 24px;
}
.videos-float-track:hover { animation-play-state: paused; }
@keyframes videoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.video-float-card {
  width: 230px;
  height: 400px;
  flex-shrink: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
  border-radius: 20px !important;
}
.video-float-card video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,8,21,0.6) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 16px;
  color: rgba(255,255,255,0.5);
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.video-float-card:hover .video-overlay { opacity: 1; }

/* Stats bar */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 40px 48px;
  margin-bottom: 60px;
  background: rgba(13, 24, 70, 0.6) !important;
  border-color: rgba(45,90,232,0.25) !important;
}
.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
  gap: 8px;
  flex: 1;
  min-width: 140px;
}
.stat-big {
  font-size: 2.8rem;
  font-weight: 900;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease-in-out infinite;
}
.stat-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  text-align: center;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--glass-border);
  flex-shrink: 0;
}

/* Case Cards */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.case-card {
  padding: 40px 36px;
}
.case-num {
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.case-label {
  font-size: 0.85rem;
  color: var(--blue-300);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.case-who {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 16px;
}
.case-quote {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
}

/* ═══════════════════════════════════════════════
   FOR WHOM
═══════════════════════════════════════════════ */
.forwhom-section {
  padding: 120px 0;
}
.forwhom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 32px;
}
.forwhom-col { padding: 44px 40px; }
.forwhom-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--glass-border);
}
.forwhom-header.yes i { color: var(--blue-400); font-size: 1.4rem; }
.forwhom-header.no i  { color: rgba(232,93,45,0.8); font-size: 1.4rem; }
.forwhom-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-white);
}
.forwhom-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.forwhom-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.6;
}
.forwhom-list li i {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.85rem;
}
.forwhom-list:not(.not) li i { color: var(--blue-400); }
.forwhom-list.not li i       { color: rgba(232,93,45,0.8); }
.forwhom-list.not li         { color: var(--text-muted); }

/* ═══════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════ */
.faq-section {
  padding: 120px 0;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  overflow: hidden;
  border-radius: 16px !important;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--text-white);
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
}
.faq-q:hover { color: var(--blue-300); }
.faq-icon {
  flex-shrink: 0;
  color: var(--blue-400);
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 28px;
}
.faq-a.open {
  max-height: 300px;
  padding: 0 28px 24px;
}
.faq-a p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.75;
  border-top: 1px solid var(--glass-border);
  padding-top: 16px;
}

/* ═══════════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════════ */
.final-cta-section {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.cta-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  animation: orbFloat 15s ease-in-out infinite;
}
.cta-orb1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(45,90,232,0.12) 0%, transparent 70%);
  top: -30%; left: -15%;
}
.cta-orb2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,200,255,0.08) 0%, transparent 70%);
  bottom: -20%; right: -10%;
  animation-delay: -8s;
}
.final-cta-inner {
  text-align: center;
  padding: 80px 60px;
  background: rgba(13, 24, 70, 0.55) !important;
  border-color: rgba(45,90,232,0.3) !important;
  box-shadow:
    0 20px 80px rgba(0,0,0,0.5),
    0 0 100px rgba(45,90,232,0.1),
    inset 0 1px 0 rgba(100,150,255,0.12) !important;
  position: relative;
  z-index: 1;
}
.final-badge { margin-bottom: 28px; }
.final-headline {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.final-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto 40px;
}
.final-reassure {
  margin-top: 20px;
  font-size: 0.83rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--glass-border);
  background: rgba(3, 5, 15, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 80px 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 300px;
}
.footer-socials { display: flex; gap: 14px; margin-top: 8px; }
.footer-socials a {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
}
.footer-socials a:hover {
  color: var(--text-white);
  border-color: rgba(74,122,240,0.4);
  background: rgba(45,90,232,0.15);
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(45,90,232,0.3);
}
.footer-links-col { display: flex; flex-direction: column; gap: 12px; }
.footer-links-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-300);
  margin-bottom: 8px;
}
.footer-links-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links-col a:hover { color: var(--text-white); }
.footer-cta-link {
  color: var(--blue-300) !important;
  font-weight: 600;
}
.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-note {
  font-style: italic;
  color: rgba(122,146,196,0.6) !important;
}

/* ═══════════════════════════════════════════════
   PROOF / TESTIMONIALS SECTION
═══════════════════════════════════════════════ */
.proof-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.proof-section::after {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,255,0.05) 0%, transparent 70%);
  bottom: -20%; right: -15%;
  filter: blur(80px);
  pointer-events: none;
}

/* Proof Grid */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}
@media (max-width: 860px) {
  .proof-grid { grid-template-columns: 1fr; }
}

/* Proof Card */
.proof-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: var(--transition);
}
.proof-card:hover {
  border-color: rgba(74,122,240,0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 50px rgba(45,90,232,0.12);
}

/* Card header */
.proof-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.proof-platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
}
.stripe-badge {
  background: rgba(99,91,255,0.15);
  border: 1px solid rgba(99,91,255,0.3);
  color: #a59fff;
}
.tiktok-badge {
  background: rgba(255,0,80,0.1);
  border: 1px solid rgba(255,0,80,0.25);
  color: #ff6b9d;
}
.insta-badge {
  background: rgba(245,97,166,0.12);
  border: 1px solid rgba(245,97,166,0.3);
  color: #f561a6;
}
.proof-verified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(74,200,140,0.85);
  background: rgba(74,200,140,0.08);
  border: 1px solid rgba(74,200,140,0.2);
  padding: 4px 10px;
  border-radius: 50px;
}

/* Proof image */
.proof-img-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(5,8,21,0.6);
  border: 1px solid rgba(74,122,240,0.12);
}
.proof-img {
  width: 100%;
  display: block;
  border-radius: 14px;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.95) saturate(1.1);
}
.proof-card:hover .proof-img {
  transform: scale(1.02);
}
.proof-img-glow {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(to bottom, transparent 60%, rgba(5,8,21,0.7) 100%);
  pointer-events: none;
}

/* Proof stats row */
.proof-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(8,13,31,0.5);
  border: 1px solid rgba(74,122,240,0.1);
  border-radius: 12px;
  padding: 16px 20px;
}
.proof-stat {
  flex: 1;
  min-width: 80px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  text-align: center;
}
.proof-big-num {
  font-size: 1.5rem;
  font-weight: 900;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease-in-out infinite;
  line-height: 1.1;
}
.proof-stat-desc {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.3;
}
.proof-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(74,122,240,0.15);
  flex-shrink: 0;
  margin: 0 4px;
}

/* Proof caption */
.proof-caption {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  border-left: 2px solid rgba(45,90,232,0.35);
  padding-left: 14px;
}

/* Aggregate proof bar */
.proof-aggregate {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 36px 48px;
  margin-top: 20px;
  background: rgba(13,24,70,0.55) !important;
  border-color: rgba(45,90,232,0.3) !important;
  box-shadow: 0 0 60px rgba(45,90,232,0.1) !important;
}
.agg-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 36px;
  flex: 1;
  min-width: 160px;
}
.agg-icon {
  font-size: 1.6rem;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
}
.agg-item > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.agg-num {
  font-size: 1.6rem;
  font-weight: 900;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease-in-out infinite;
  line-height: 1;
}
.agg-label {
  font-size: 0.74rem;
  color: var(--text-muted);
  font-weight: 500;
}
.agg-divider {
  width: 1px;
  height: 50px;
  background: rgba(74,122,240,0.15);
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .proof-aggregate { flex-direction: column; gap: 24px; padding: 28px 20px; }
  .agg-divider { width: 60px; height: 1px; }
  .agg-item { padding: 0; justify-content: center; }
  .proof-stats-row { gap: 8px; }
}

/* ─── GLOWING SECTION DIVIDERS ─── */
.problem-section::before,
.solution-section::before,
.hiw-section::before,
.worked-section::before,
.videos-section::before,
.proof-section::before,
.faq-section::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(45,90,232,0.25) 30%, rgba(0,200,255,0.2) 70%, transparent 100%);
  margin-bottom: 0;
}

/* ─── RIBBON HIGHLIGHT ON HOVER ─── */
.ribbon-item.highlighted {
  color: var(--text-white) !important;
  background: rgba(45,90,232,0.12);
  border-radius: 8px;
}
.ribbon-item.highlighted i {
  color: var(--blue-300) !important;
  filter: drop-shadow(0 0 6px rgba(74,122,240,0.8));
}

/* ─── BRUSH UNDERLINE ─── */
.brush-underline {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.brush-underline svg.brush-svg {
  position: absolute;
  bottom: -10px;
  left: -4px;
  width: calc(100% + 8px);
  height: 18px;
  overflow: visible;
  pointer-events: none;
}
.brush-svg path {
  stroke: var(--underline-color, #00c8ff);
  stroke-width: 7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.85;
  filter: url(#brushFilter);
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawBrush 1.2s cubic-bezier(0.4,0,0.2,1) forwards;
  animation-delay: 0.4s;
}
/* Second stroke — slightly offset for messy look */
.brush-svg path.brush-stroke-2 {
  stroke-width: 3;
  opacity: 0.4;
  animation-delay: 0.6s;
  transform: translateY(3px);
}
@keyframes drawBrush {
  to { stroke-dashoffset: 0; }
}

/* Repeat animation on section entering viewport */
.brush-svg.replay path {
  stroke-dashoffset: 1000;
  animation: none;
}
.brush-svg.replay.animate path {
  animation: drawBrush 1.2s cubic-bezier(0.4,0,0.2,1) forwards;
}

/* ─── GLASS SHIMMER KEYFRAME ─── */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

/* ═══════════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.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; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════
   MOBILE RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    bottom: 0;
    width: 80%;
    max-width: 320px;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px 40px;
    background: rgba(5,8,21,0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-left: 1px solid var(--glass-border);
    gap: 28px;
    transition: right 0.4s ease;
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .hamburger { display: flex; z-index: 1000; }
  .forwhom-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .solution-grid { grid-template-columns: 1fr; }
  .featured-card { transform: none; }
  .featured-card:hover { transform: translateY(-4px); }
  .trust-item { padding: 0 16px; }
  .trust-bar { gap: 0; padding: 20px 16px; }
  .step-item { grid-template-columns: 70px 1fr; }
  .step-num { width: 56px; height: 56px; font-size: 1.1rem; }
}

@media (max-width: 640px) {
  .hero { padding: 120px 16px 80px; }
  .hero-headline { font-size: 2rem; }
  .trust-bar { flex-direction: column; gap: 20px; }
  .trust-divider { width: 80px; height: 1px; }
  .trust-item { padding: 0; }
  .stats-bar { flex-direction: column; gap: 24px; padding: 32px 24px; }
  .stat-divider { width: 80px; height: 1px; }
  .stat-block { padding: 0; }
  .final-cta-inner { padding: 48px 24px; }
  .pull-quote { padding: 28px 24px; }
  .section-headline { font-size: 1.7rem; }
  .step-item { grid-template-columns: 1fr; }
  .step-num-wrap { flex-direction: row; align-items: center; }
  .step-line { display: none; }
  .video-float-card { width: 170px; height: 300px; }
  .videos-float-wrapper { height: 320px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cases-grid { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
  .forwhom-col { padding: 32px 24px; }
}
