/* ===========================================
   OWLIT LANDING PAGE — Monochrome Dark Theme
   Black / Grey / White only
   =========================================== */

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: #000000;
  color: #e5e5e5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Space Grotesk', sans-serif;
}

/* --- Design Tokens --- */
:root {
  --black: #000000;
  --grey-950: #0a0a0a;
  --grey-900: #111111;
  --grey-850: #1a1a1a;
  --grey-800: #222222;
  --grey-700: #333333;
  --grey-600: #555555;
  --grey-500: #777777;
  --grey-400: #999999;
  --grey-300: #bbbbbb;
  --grey-200: #dddddd;
  --grey-100: #eeeeee;
  --white: #ffffff;

  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-medium: rgba(255, 255, 255, 0.10);
  --border-strong: rgba(255, 255, 255, 0.18);
  --border-hover: rgba(255, 255, 255, 0.25);

  --glass-blur: blur(24px);
  --transition-default: all 0.3s ease;
  --transition-smooth: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Subtle Grid Overlay --- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

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

.glass-hover:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-hover);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.04);
  transform: translateY(-4px);
}

/* --- Gradient Text (white-to-grey) --- */
.gradient-text {
  background: linear-gradient(135deg, #ffffff, #999999);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Primary Button (white) --- */
.btn-primary {
  background: var(--white);
  color: var(--black) !important;
  transition: var(--transition-default);
  position: relative;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.15);
}

/* --- Outline Button --- */
.btn-outline {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--white);
  transition: var(--transition-default);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

/* --- Card Styles --- */
.dark-card {
  background: var(--grey-950);
  border: 1px solid var(--border-subtle);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.dark-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

/* --- Stat Card (top line shine) --- */
.stat-card {
  position: relative;
  overflow: hidden;
}

.stat-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

/* --- Pricing Popular Card --- */
.pricing-popular {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--grey-950);
  box-shadow: 0 0 60px rgba(255, 255, 255, 0.03);
}

/* --- Navbar Scrolled --- */
.navbar-scrolled {
  background: rgba(0, 0, 0, 0.85) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid var(--border-subtle);
}

/* --- Animations --- */
@keyframes float {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(20px) translateX(-20px);
  }
}

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

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes glow-pulse {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 0.6;
  }
}

.animate-float {
  animation: float 7s ease-in-out infinite;
}

.animate-float2 {
  animation: float2 9s ease-in-out infinite;
}

.animate-gradient {
  background-size: 200% 200%;
  animation: gradientShift 6s ease infinite;
}

.animate-glow-pulse {
  animation: glow-pulse 3s ease-in-out infinite;
}

/* --- Scroll Reveal --- */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: var(--transition-smooth);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- CTA Section --- */
.cta-gradient {
  background: linear-gradient(135deg, #111111, #1a1a1a, #0a0a0a, #111111);
  border: 1px solid var(--border-medium);
}

/* --- Section Divider --- */
.section-glow {
  position: relative;
}

.section-glow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

/* --- Icon Container --- */
.icon-box {
  background: var(--grey-850);
  border: 1px solid var(--border-subtle);
}

/* --- Step Badge --- */
.step-badge {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.08);
}

/* --- Star Rating --- */
.star-rating {
  letter-spacing: 2px;
  color: var(--grey-300);
}

/* --- Status Dot --- */
.status-dot {
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
  animation: glow-pulse 2s ease-in-out infinite;
}

/* --- Popular Badge --- */
.popular-badge {
  background: var(--white);
  color: var(--black);
}

/* --- Marquee / Ticker --- */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}

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

.marquee-track.reverse {
  animation-direction: reverse;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  margin: 0 8px;
  background: var(--grey-950);
  border: 1px solid var(--border-subtle);
  border-radius: 9999px;
  white-space: nowrap;
  color: var(--grey-400);
  font-size: 0.8125rem;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.3s ease;
}

.marquee-item:hover {
  border-color: var(--border-hover);
  color: var(--white);
}

.marquee-avatar {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.marquee-avatar.influencer-av {
  border-radius: 50%;
}

.marquee-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey-600);
  margin-bottom: 0.5rem;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  body::before {
    background-size: 40px 40px;
  }
}

/* --- Shimmer Animation --- */
@keyframes shimmer {
  0% {
    background-position: 200% center;
  }

  100% {
    background-position: -200% center;
  }
}

.animate-shimmer {
  position: relative;
  overflow: hidden;
}

.animate-shimmer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: linear-gradient(to right,
      transparent 0%,
      rgba(255, 255, 255, 0.4) 50%,
      transparent 100%);
  transform: skewX(-20deg);
  animation: shimmer 2.5s infinite linear;
  pointer-events: none;
}

/* --- Shimmer Sweep Animation (Flipkart Style) --- */
@keyframes shimmer-sweep {
  0% {
    background-position: 200% center;
  }

  100% {
    background-position: -200% center;
  }
}

.shimmer-sweep {
  position: relative;
  overflow: hidden;
  /* Ensure background is visible for the shine */
  background: rgba(255, 255, 255, 0.1);
}

.shimmer-sweep::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: linear-gradient(to right,
      transparent 0%,
      rgba(255, 255, 255, 0.6) 50%,
      transparent 100%);
  transform: skewX(-20deg);
  animation: shimmer-sweep 2.5s infinite linear;
  pointer-events: none;
}

/* --- Metallic Pro Badge --- */
.badge-metallic {
  background: linear-gradient(135deg, #e4cda7 0%, #9b7e55 30%, #4a3b2a 60%, #e4cda7 100%);
  background-size: 200% 200%;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
  animation: metallic-shine 4s ease infinite;
}

@keyframes metallic-shine {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* --- Metallic Gold Logo Gradient --- */
.text-gradient-logo {
  background: linear-gradient(135deg, #e4cda7 0%, #9b7e55 30%, #4a3b2a 60%, #e4cda7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: logo-flow 4s linear infinite;
  text-shadow: 0 2px 10px rgba(228, 205, 167, 0.2);
}

@keyframes logo-flow {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}
/* --- Logo Font (Outfit) --- */
.font-logo {
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.04em; /* Tight tracking for modern look */
  font-weight: 800; /* Extra bold */
}
