/* ============================================================
   SCROLLR — MAIN STYLESHEET
   A modern, dark, vibrant social media content company site
   ============================================================ */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --purple: #a855f7;
  --purple-dark: #7c3aed;
  --pink: #ec4899;
  --cyan: #06b6d4;
  --orange: #f97316;
  --green: #22c55e;

  --bg: #030310;
  --bg-2: #0a0a1f;
  --bg-card: #111127;
  --bg-card-2: #0e0e26;

  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dim: #475569;

  --border: rgba(168, 85, 247, 0.12);
  --border-bright: rgba(168, 85, 247, 0.35);

  --glow-purple: 0 0 60px rgba(168, 85, 247, 0.25);
  --glow-pink: 0 0 60px rgba(236, 72, 153, 0.2);
  --glow-cyan: 0 0 60px rgba(6, 182, 212, 0.2);

  --gradient: linear-gradient(135deg, #a855f7, #ec4899, #f97316);
  --gradient-2: linear-gradient(135deg, #06b6d4, #a855f7);
  --gradient-3: linear-gradient(135deg, #ec4899, #f97316);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: none; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

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

/* ===== CUSTOM CURSOR ===== */
.cursor {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 2px solid var(--purple);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, border-color 0.2s, background 0.2s;
  mix-blend-mode: difference;
}

.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--purple);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}

.cursor.hovering {
  width: 60px;
  height: 60px;
  background: rgba(168, 85, 247, 0.1);
  border-color: var(--pink);
}

/* ===== NOISE TEXTURE ===== */
.noise {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  opacity: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  transition: opacity var(--transition);
}

.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 4px 24px rgba(168, 85, 247, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(168, 85, 247, 0.6);
}

.btn-primary:active { transform: translateY(0); }

.btn-outline {
  border: 1.5px solid var(--border-bright);
  color: var(--text);
  background: rgba(168, 85, 247, 0.05);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: var(--purple);
  background: rgba(168, 85, 247, 0.15);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--text-muted);
}
.btn-ghost:hover { color: var(--text); }

.btn-xl {
  padding: 16px 36px;
  font-size: 16px;
}

.btn-full { width: 100%; justify-content: center; }

/* ===== SECTION SHARED ===== */
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid var(--border-bright);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple);
  margin-bottom: 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== AOS ANIMATIONS ===== */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="zoom-in"] { transform: scale(0.85); }

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(3, 3, 16, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo { flex-shrink: 0; }
.nav-logo img { height: 44px; width: auto; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  margin: 0 auto;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gradient);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--bg-2);
  border-left: 1px solid var(--border);
  z-index: 999;
  padding: 100px 32px 40px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open { right: 0; }

.mobile-menu ul { list-style: none; }
.mobile-menu li { margin-bottom: 24px; }
.mobile-menu a {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--text); }
.mobile-menu .btn { display: inline-flex; margin-top: 16px; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

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

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orb-float 8s ease-in-out infinite alternate;
}

.orb-1 {
  width: 600px; height: 600px;
  background: rgba(124, 58, 237, 0.18);
  top: -200px; left: -200px;
  animation-duration: 10s;
}

.orb-2 {
  width: 500px; height: 500px;
  background: rgba(236, 72, 153, 0.14);
  top: 200px; right: -150px;
  animation-duration: 8s;
  animation-delay: -3s;
}

.orb-3 {
  width: 400px; height: 400px;
  background: rgba(6, 182, 212, 0.1);
  bottom: -100px; left: 30%;
  animation-duration: 12s;
  animation-delay: -5s;
}

.orb-4 {
  width: 300px; height: 300px;
  background: rgba(249, 115, 22, 0.08);
  top: 40%; right: 20%;
  animation-duration: 9s;
  animation-delay: -2s;
}

@keyframes orb-float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, -40px) scale(1.1); }
}

.particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid var(--border-bright);
  border-radius: 100px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
  cursor: default;
  transition: var(--transition);
}

.hero-badge:hover {
  background: rgba(168, 85, 247, 0.18);
  color: var(--text);
}

.badge-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.3);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.3); }
  50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

.hero-title {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.title-line { display: block; }

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-platforms {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-platforms > span {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 500;
}

.platform-pills { display: flex; gap: 8px; flex-wrap: wrap; }

.pill {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(8px);
  border: 1px solid transparent;
}

.pill-tiktok { background: rgba(1,1,1,0.4); border-color: rgba(255,255,255,0.15); color: #fff; }
.pill-insta { background: rgba(225,48,108,0.15); border-color: rgba(225,48,108,0.3); color: #E1306C; }
.pill-yt { background: rgba(255,0,0,0.1); border-color: rgba(255,0,0,0.25); color: #ff4444; }
.pill-x { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.15); color: #aaa; }
.pill-snap { background: rgba(255,252,0,0.1); border-color: rgba(255,252,0,0.25); color: #FFFC00; }
.pill-pin { background: rgba(230,0,35,0.1); border-color: rgba(230,0,35,0.25); color: #E60023; }

.hero-visual {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  max-width: 700px;
  z-index: 1;
  animation: hero-float 6s ease-in-out infinite alternate;
}

@keyframes hero-float {
  0% { transform: translateY(-50%) translateX(0); }
  100% { transform: translateY(-52%) translateX(-12px); }
}

.hero-img { width: 100%; filter: drop-shadow(0 20px 60px rgba(168, 85, 247, 0.3)); }

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-dim);
  z-index: 2;
  animation: fade-in-up 1s 1.5s ease both;
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid var(--text-dim);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 4px; height: 8px;
  background: var(--purple);
  border-radius: 2px;
  animation: scroll-anim 2s ease-in-out infinite;
}

@keyframes scroll-anim {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* ===== TICKER ===== */
.ticker-wrap {
  overflow: hidden;
  background: rgba(168, 85, 247, 0.08);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: relative;
  z-index: 3;
}

.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
}
.ticker-wrap::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.ticker-wrap::after { right: 0; background: linear-gradient(to left, var(--bg), transparent); }

.ticker-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
  width: max-content;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

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

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

/* ===== STATS ===== */
.stats-section {
  padding: 100px 0;
  position: relative;
}

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

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition);
}

.stat-card:hover { transform: translateY(-4px); border-color: var(--border-bright); }
.stat-card:hover::before { opacity: 1; }

.stat-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: rgba(var(--c, 168 85 247) / 0.12);
  color: var(--c, var(--purple));
  border: 1px solid rgba(var(--c, 168 85 247) / 0.2);
}

/* Override with actual color values since CSS can't use hex in rgba shorthand like that */
.stat-icon { color: var(--purple); background: rgba(168, 85, 247, 0.12); border-color: rgba(168, 85, 247, 0.2); }

.stat-number {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  letter-spacing: -0.02em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
  display: block;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.stat-change {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
}

.stat-change.up {
  background: rgba(34, 197, 94, 0.12);
  color: var(--green);
}

/* ===== SERVICES ===== */
.services-section {
  padding: 100px 0;
  position: relative;
}

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

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
}

.service-glow {
  position: absolute;
  top: -100px; left: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.15), transparent 70%);
  pointer-events: none;
}

.service-featured {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(236, 72, 153, 0.08));
  border-color: rgba(168, 85, 247, 0.3);
}

.service-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid var(--border);
  margin-bottom: 24px;
}

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

.service-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.service-tags span {
  padding: 4px 12px;
  background: rgba(168, 85, 247, 0.08);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--purple);
  transition: gap var(--transition), color var(--transition);
  margin-top: auto;
}

.service-link:hover { gap: 10px; color: var(--pink); }

.service-cta-card {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.25), rgba(236, 72, 153, 0.15));
  border: 1px solid rgba(168, 85, 247, 0.4);
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.service-cta-card h3 {
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.service-cta-card p { margin-bottom: 28px; }

.service-cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.12), transparent 70%);
  pointer-events: none;
}

/* ===== PLATFORMS ===== */
.platforms-section {
  padding: 100px 0;
}

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

.platform-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.platform-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.platform-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.platform-card:hover::before { transform: scaleX(1); }

.platform-icon-wrap {
  margin-bottom: 20px;
}

.platform-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.platform-metric {
  font-size: 12px;
  color: var(--purple);
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.platform-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.platform-bar {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  margin-bottom: 8px;
  overflow: hidden;
}

.platform-fill {
  height: 100%;
  background: var(--gradient);
  border-radius: 2px;
  width: 0;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.platform-score {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 500;
}

/* ===== WORK / GALLERY ===== */
.work-section { padding: 100px 0; }

.work-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid var(--border);
  background: transparent;
  transition: var(--transition);
  cursor: none;
}

.filter-btn:hover,
.filter-btn.active {
  background: rgba(168, 85, 247, 0.15);
  border-color: var(--purple);
  color: var(--purple);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.work-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: none;
  aspect-ratio: 4/3;
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.work-item-tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.work-item-tall img { height: 100%; }

.work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3,3,16,0.95) 0%, rgba(3,3,16,0.4) 50%, transparent 100%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity var(--transition);
}

.work-item:hover .work-overlay { opacity: 1; }
.work-item:hover img { transform: scale(1.05); }

.work-platform {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple);
  margin-bottom: 8px;
}

.work-overlay h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.work-stats {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Work Placeholders */
.work-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease;
}

.wp-1 { background: linear-gradient(135deg, #1a0a2e, #2d1b4e, #3d1a6e); }
.wp-2 { background: linear-gradient(135deg, #1a0a1a, #3d0a2e, #5c1a2e); }
.wp-3 { background: linear-gradient(135deg, #0a1a2e, #0a2e4e, #1a3d5c); }

.wp-inner { text-align: center; }
.wp-icon { font-size: 48px; margin-bottom: 12px; }
.wp-inner h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.wp-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(168, 85, 247, 0.2);
  border-radius: 100px;
  font-size: 12px;
  color: var(--purple);
  font-weight: 600;
}

.work-item:hover .work-placeholder { transform: scale(1.05); }

/* ===== ANALYTICS ===== */
.analytics-section { padding: 100px 0; }

.analytics-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.analytics-text .section-title { text-align: left; font-size: clamp(28px, 4vw, 44px); }
.analytics-text .section-tag { /* inherits */ }

.analytics-text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.analytics-features {
  list-style: none;
  margin-bottom: 40px;
}

.analytics-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--text-muted);
  transition: color var(--transition);
}

.analytics-features li:hover { color: var(--text); }
.analytics-features li:last-child { border-bottom: none; }

.analytics-visual { position: relative; }

.chart-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), var(--glow-purple);
}

.analytics-badges {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  width: max-content;
}

.a-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--text-muted);
  backdrop-filter: blur(8px);
  white-space: nowrap;
}

.a-badge strong { color: var(--text); }

/* ===== PROCESS ===== */
.process-section { padding: 100px 0; }

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  margin-top: 64px;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 40px;
}

.step-number {
  font-size: 64px;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 24px;
  opacity: 0.6;
}

.step-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

.process-connector {
  flex-shrink: 0;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  margin-top: 40px;
  position: relative;
}

.process-connector::after {
  content: '';
  position: absolute;
  right: -1px; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 8px solid var(--pink);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 100px 0; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
}

.testimonial-featured {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(236, 72, 153, 0.08));
  border-color: rgba(168, 85, 247, 0.3);
  transform: translateY(-8px);
}

.testimonial-featured:hover { transform: translateY(-12px); }

.testimonial-rating {
  color: #f59e0b;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testimonial-card blockquote {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}

.testimonial-author span {
  font-size: 13px;
  color: var(--text-dim);
}

/* ===== PRICING ===== */
.pricing-section { padding: 100px 0; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover { transform: translateY(-4px); border-color: var(--border-bright); }

.pricing-featured {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(236, 72, 153, 0.1));
  border: 1px solid rgba(168, 85, 247, 0.5);
  transform: translateY(-8px);
  box-shadow: var(--glow-purple);
}

.pricing-featured:hover { transform: translateY(-12px); }

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: white;
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple);
  margin-bottom: 16px;
}

.pricing-price {
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.price-currency { font-size: 28px; font-weight: 700; color: var(--text-muted); }
.price-period { font-size: 16px; color: var(--text-dim); font-weight: 400; }

.pricing-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.pricing-features {
  list-style: none;
  margin-bottom: 36px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child { border-bottom: none; }
.pricing-feature-off { opacity: 0.4; }

/* ===== CTA ===== */
.cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.cta-orb-1 {
  width: 600px; height: 600px;
  background: rgba(124, 58, 237, 0.2);
  top: -200px; left: -100px;
}

.cta-orb-2 {
  width: 500px; height: 500px;
  background: rgba(236, 72, 153, 0.15);
  bottom: -200px; right: -100px;
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(236, 72, 153, 0.15);
  border: 1px solid rgba(236, 72, 153, 0.3);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pink);
  margin-bottom: 24px;
}

.cta-title {
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 48px;
}

.cta-form { text-align: left; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-input {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 15px;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  margin-bottom: 0;
}

.form-input:focus {
  border-color: var(--purple);
  background: rgba(168, 85, 247, 0.08);
}

.form-input::placeholder { color: var(--text-dim); }

.form-select {
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  margin-bottom: 16px;
  cursor: none;
}

.form-select option { background: var(--bg-card); }

.form-disclaimer {
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 16px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}

.footer-brand img { margin-bottom: 20px; }

.footer-brand p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 280px;
}

.footer-brand em { color: var(--purple); font-style: normal; }

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}

.social-icon:hover {
  border-color: var(--purple);
  background: rgba(168, 85, 247, 0.12);
  color: var(--purple);
  transform: translateY(-2px);
}

.footer-links-group h5 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 20px;
}

.footer-links-group ul { list-style: none; }
.footer-links-group li { margin-bottom: 12px; }
.footer-links-group a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links-group a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  font-size: 13px;
  color: var(--text-dim);
}

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

.footer-legal a {
  color: var(--text-dim);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--text-muted); }

/* ===== TIKTOK DEMO ===== */
.tiktok-demo-section { padding: 100px 0; }

.tiktok-widget {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.tiktok-widget::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.tt-step { text-align: center; }

.tt-icon-wrap { margin-bottom: 24px; }

.tt-step-connect h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.tt-step-connect p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* Creator info bar */
.tt-creator-info {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(168, 85, 247, 0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 32px;
}

.tt-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.tt-creator-text { text-align: left; }
.tt-creator-info strong { display: block; font-size: 15px; }
.tt-creator-info span { font-size: 13px; color: var(--text-muted); }
.tt-disconnect { margin-left: auto; font-size: 13px; }

/* Upload area */
.tt-upload-area {
  border: 2px dashed var(--border-bright);
  border-radius: var(--radius);
  padding: 40px 24px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 24px;
  position: relative;
}

.tt-upload-area:hover,
.tt-upload-area.dragover {
  border-color: var(--purple);
  background: rgba(168, 85, 247, 0.06);
}

.tt-upload-placeholder { color: var(--text-muted); }
.tt-upload-placeholder svg { color: var(--text-dim); margin-bottom: 12px; }
.tt-upload-placeholder span { display: block; font-size: 15px; }
.tt-upload-hint { font-size: 12px !important; color: var(--text-dim) !important; margin-top: 8px; }

.tt-upload-preview { position: relative; }

.tt-upload-preview video {
  width: 100%;
  border-radius: var(--radius);
  max-height: 300px;
  object-fit: contain;
  background: #000;
}

.tt-remove-video {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--text);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition);
}

.tt-remove-video:hover { background: rgba(0, 0, 0, 0.9); }

/* Compose form */
.tt-compose-form { text-align: left; }

.tt-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.tt-caption { resize: vertical; min-height: 80px; }

.tt-char-count {
  text-align: right;
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 4px;
  margin-bottom: 20px;
}

.tt-options-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.tt-option { }

/* Toggle switch */
.tt-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-muted);
}

.tt-toggle input { display: none; }

.tt-toggle-slider {
  width: 40px;
  height: 22px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  position: relative;
  transition: var(--transition);
  flex-shrink: 0;
}

.tt-toggle-slider::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background: var(--text-dim);
  border-radius: 50%;
  transition: var(--transition);
}

.tt-toggle input:checked + .tt-toggle-slider {
  background: var(--purple);
  border-color: var(--purple);
}

.tt-toggle input:checked + .tt-toggle-slider::after {
  transform: translateX(18px);
  background: white;
}

/* Consent */
.tt-consent {
  margin-bottom: 24px;
  text-align: left;
  font-size: 13px;
  color: var(--text-dim);
}

.tt-consent label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.tt-consent input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
}

.tt-consent a { color: var(--purple); text-decoration: none; }
.tt-consent a:hover { text-decoration: underline; }

/* Status / posting state */
.tt-status-content {
  text-align: center;
  padding: 40px 0;
}

.tt-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--border);
  border-top-color: var(--purple);
  border-radius: 50%;
  animation: ttSpin 1s linear infinite;
  margin: 0 auto 24px;
}

@keyframes ttSpin {
  to { transform: rotate(360deg); }
}

.tt-status-content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.tt-status-content p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 24px;
}

/* Progress bar */
.tt-progress-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 24px;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.tt-progress-fill {
  height: 100%;
  background: var(--gradient);
  border-radius: 2px;
  width: 0;
  transition: width 0.3s ease;
}

/* Error overlay */
.tt-error {
  position: absolute;
  inset: 0;
  background: rgba(3, 3, 16, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  z-index: 5;
  border-radius: var(--radius-xl);
}

.tt-error p {
  color: #ef4444;
  font-size: 15px;
  margin-bottom: 20px;
}

/* btn-full utility */
.btn-full { width: 100%; justify-content: center; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hero-visual {
    width: 45%;
    right: -20px;
  }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .platforms-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }

  .hero {
    flex-direction: column;
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-inner { max-width: 100%; text-align: center; position: relative; z-index: 2; }
  .hero-subtitle, .hero-actions { /* center them */ }
  .hero-actions { justify-content: center; }
  .hero-platforms { justify-content: center; }

  .hero-visual {
    position: relative;
    width: 100%;
    max-width: 600px;
    top: auto;
    right: auto;
    transform: none;
    margin: 40px auto 0;
    animation: none;
  }

  .hero-scroll-hint { display: none; }

  .analytics-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .analytics-text .section-title { text-align: center; }
  .analytics-text .section-tag { display: block; text-align: center; }

  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .work-item-tall { grid-row: span 1; aspect-ratio: 4/3; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-featured { transform: none; }
  .testimonial-featured:hover { transform: translateY(-4px); }

  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-featured { transform: none; }
  .pricing-featured:hover { transform: translateY(-4px); }

  .process-steps { flex-direction: column; align-items: center; }
  .process-connector { width: 2px; height: 40px; transform: none; }
  .process-connector::after {
    right: 50%; bottom: -1px; top: auto;
    transform: translateX(50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid var(--pink);
    border-bottom: none;
  }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .stats-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .platforms-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .analytics-badges { flex-direction: column; }
  .tt-options-row { grid-template-columns: 1fr; }
  .tiktok-widget { padding: 32px 20px; }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(168, 85, 247, 0.4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--purple); }

/* ===== SELECTION ===== */
::selection { background: rgba(168, 85, 247, 0.3); }
