/* Ergogen Landing Page Styles */
/* Based on the existing app design system */

/* Custom utility styles - no external imports needed */

/* CSS Custom Properties - Social Media Vibe */
:root {
  /* Social media inspired dark theme */
  --background: 220 13% 9%;
  --foreground: 0 0% 98%;
  --card: 220 13% 12%;
  --card-foreground: 0 0% 98%;
  --popover: 220 13% 12%;
  --popover-foreground: 0 0% 98%;
  --primary: 280 100% 70%;
  --primary-foreground: 0 0% 98%;
  --secondary: 220 13% 18%;
  --secondary-foreground: 0 0% 98%;
  --muted: 220 13% 18%;
  --muted-foreground: 220 9% 65%;
  --accent: 320 90% 65%;
  --accent-foreground: 0 0% 98%;
  --destructive: 0 75% 60%;
  --destructive-foreground: 0 0% 98%;
  --border: 220 13% 18%;
  --input: 220 13% 18%;
  --ring: 280 100% 70%;
  --radius: 0.75rem;

  /* Subtle professional colors */
  --primary-blue: 220 70% 50%;
  --primary-purple: 260 60% 45%;
  --accent-teal: 180 70% 40%;
  --accent-green: 150 60% 45%;
  --warm-orange: 25 80% 55%;
  --soft-pink: 340 50% 55%;
  --gradient-primary: linear-gradient(135deg, hsl(var(--primary-blue)), hsl(var(--primary-purple)));
  --gradient-secondary: linear-gradient(135deg, hsl(var(--accent-teal)), hsl(var(--accent-green)));
  --gradient-accent: linear-gradient(135deg, hsl(var(--warm-orange)), hsl(var(--soft-pink)));

  /* Brand color palette */
  --orange-50: 25 80% 95%;
  --orange-500: 25 80% 55%;
  --orange-600: 25 80% 45%;
  --emerald-50: 150 60% 95%;
  --emerald-500: 150 60% 45%;
  --emerald-600: 150 60% 35%;
  --navy-50: 220 70% 95%;
  --navy-500: 220 70% 50%;
  --navy-600: 220 70% 40%;
  --navy-900: 220 70% 25%;

  /* Social media platform colors */
  --instagram-pink: 340 75% 60%;
  --instagram-orange: 25 90% 55%;
  --twitter-blue: 203 89% 53%;
  --discord-purple: 235 86% 65%;
  --tiktok-pink: 340 82% 52%;
  --youtube-red: 0 100% 50%;
}

/* Light theme overrides (optional) */
[data-theme="light"] {
  --background: 0 0% 100%;
  --foreground: 240 10% 3.9%;
  --card: 0 0% 100%;
  --card-foreground: 240 10% 3.9%;
  --popover: 0 0% 100%;
  --popover-foreground: 240 10% 3.9%;
  --primary: 240 5.9% 10%;
  --primary-foreground: 0 0% 98%;
  --secondary: 240 4.8% 95.9%;
  --secondary-foreground: 240 5.9% 10%;
  --muted: 240 4.8% 95.9%;
  --muted-foreground: 240 3.8% 46.1%;
  --accent: 240 4.8% 95.9%;
  --accent-foreground: 240 5.9% 10%;
  --border: 240 5.9% 90%;
  --input: 240 5.9% 90%;
  --ring: 240 10% 3.9%;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(ellipse at 20% 20%, hsl(var(--primary-blue) / 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, hsl(var(--accent-teal) / 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 40%, hsl(var(--warm-orange) / 0.06) 0%, transparent 50%),
    linear-gradient(135deg, hsl(var(--background)) 0%, hsl(220 13% 6%) 100%);
  color: hsl(var(--foreground));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 30% 70%, hsl(var(--primary-purple) / 0.03) 0%, transparent 40%),
    radial-gradient(circle at 70% 30%, hsl(var(--emerald-500) / 0.02) 0%, transparent 40%);
  pointer-events: none;
  z-index: -1;
  opacity: 0.8;
}

/* Removed backgroundShift animation for premium static look */

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* Typography - Social Media Style */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 3rem;
  font-weight: 800;
  color: hsl(var(--foreground));
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(var(--foreground));
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
}

h4 {
  font-size: 1.375rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  color: hsl(var(--muted-foreground));
}

@media (min-width: 768px) {
  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 2.5rem;
  }
}

/* Button styles (matching shadcn/ui) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: calc(var(--radius) - 2px);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  border: none;
  outline: none;
}

.btn:focus-visible {
  outline: 2px solid hsl(var(--ring));
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(135deg, hsl(var(--primary-blue)), hsl(var(--primary-purple)));
  color: white;
  border: none;
  box-shadow: 0 4px 16px hsl(var(--primary-blue) / 0.25), 0 1px 3px rgb(0 0 0 / 0.1);
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, hsl(var(--primary-purple)), hsl(var(--accent-teal)));
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px hsl(var(--primary-blue) / 0.35), 0 2px 6px rgb(0 0 0 / 0.15);
}

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

.btn-secondary {
  background-color: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
}

.btn-secondary:hover {
  background-color: hsl(var(--secondary) / 0.8);
}

.btn-outline {
  border: 2px solid hsl(var(--accent-teal));
  background: transparent;
  color: hsl(var(--foreground));
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: hsl(var(--accent-teal));
  transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.btn-outline:hover::before {
  left: 0;
}

.btn-outline:hover {
  color: white;
  transform: translateY(-2px);
  border-color: hsl(var(--accent-teal));
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Card styles - Premium Design */
.card {
  background: hsl(var(--card) / 0.6);
  backdrop-filter: blur(12px) saturate(150%);
  border: 1px solid hsl(var(--border) / 0.3);
  border-radius: var(--radius);
  padding: 2rem;
  color: hsl(var(--card-foreground));
  box-shadow: 0 8px 32px rgb(0 0 0 / 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, hsl(var(--primary-blue)), hsl(var(--accent-teal)));
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg,
      hsl(var(--primary-blue) / 0.1),
      hsl(var(--accent-teal) / 0.05),
      transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

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

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

.card:hover {
  box-shadow: 0 16px 48px rgb(0 0 0 / 0.12);
  transform: translateY(-4px);
  border-color: hsl(var(--border) / 0.5);
}

/* Grid layouts */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 768px) {

  .grid-cols-2,
  .grid-cols-3 {
    grid-template-columns: 1fr;
  }
}

/* Flex utilities */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

/* Flexbox utilities - Complete set */
.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.items-center {
  align-items: center;
}

.items-stretch {
  align-items: stretch;
}

/* Spacing utilities - Complete set */
.m-0 {
  margin: 0;
}

.m-1 {
  margin: 0.25rem;
}

.m-2 {
  margin: 0.5rem;
}

.m-3 {
  margin: 0.75rem;
}

.m-4 {
  margin: 1rem;
}

.m-6 {
  margin: 1.5rem;
}

.m-8 {
  margin: 2rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* Text utilities - Complete set */
.text-center {
  text-align: center;
}

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

.text-right {
  text-align: right;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}

.font-light {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

.font-black {
  font-weight: 900;
}

.text-muted {
  color: hsl(var(--muted-foreground));
}

.text-saffron {
  color: hsl(var(--orange-500));
}

.text-emerald {
  color: hsl(var(--emerald-500));
}

.text-navy {
  color: hsl(var(--navy-500));
}

/* Professional accent text classes */
.text-primary {
  color: hsl(var(--primary-blue));
}

.text-accent {
  color: hsl(var(--accent-teal));
}

.text-warm {
  color: hsl(var(--warm-orange));
}

/* Background utilities */
.bg-saffron {
  background-color: hsl(var(--orange-500));
}

.bg-emerald {
  background-color: hsl(var(--emerald-500));
}

.bg-navy {
  background-color: hsl(var(--navy-500));
}

.bg-primary {
  background-color: hsl(var(--primary-blue));
}

.bg-accent {
  background-color: hsl(var(--accent-teal));
}

.bg-warm {
  background-color: hsl(var(--warm-orange));
}

.bg-white {
  background-color: white;
}

/* Width utilities - Complete set */
.w-4 {
  width: 1rem;
}

.w-6 {
  width: 1.5rem;
}

.w-8 {
  width: 2rem;
}

.w-10 {
  width: 2.5rem;
}

.w-12 {
  width: 3rem;
}

.w-16 {
  width: 4rem;
}

.w-20 {
  width: 5rem;
}

.w-full {
  width: 100%;
}

.h-4 {
  height: 1rem;
}

.h-6 {
  height: 1.5rem;
}

.h-8 {
  height: 2rem;
}

.h-10 {
  height: 2.5rem;
}

.h-12 {
  height: 3rem;
}

.h-16 {
  height: 4rem;
}

.h-20 {
  height: 5rem;
}

.max-w-sm {
  max-width: 24rem;
}

.max-w-md {
  max-width: 28rem;
}

.max-w-lg {
  max-width: 32rem;
}

.max-w-xl {
  max-width: 36rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-5xl {
  max-width: 64rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Additional utilities */
.rounded {
  border-radius: 0.25rem;
}

.rounded-md {
  border-radius: 0.375rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-full {
  border-radius: 9999px;
}

.border {
  border-width: 1px;
}

.border-t {
  border-top-width: 1px;
}

.border-b {
  border-bottom-width: 1px;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.top-0 {
  top: 0;
}

.left-0 {
  left: 0;
}

.right-0 {
  right: 0;
}

.bottom-0 {
  bottom: 0;
}

.z-50 {
  z-index: 50;
}

.z-9999 {
  z-index: 9999;
}

.overflow-hidden {
  overflow: hidden;
}

.transform {
  transform: translateZ(0);
}

.translate-x-1\/2 {
  transform: translateX(-50%);
}

.-translate-x-1\/2 {
  transform: translateX(-50%);
}

.-top-3 {
  top: -0.75rem;
}

.left-1\/2 {
  left: 50%;
}

.space-y-2>*+* {
  margin-top: 0.5rem;
}

/* Missing utility classes */
.border-border {
  border-color: hsl(var(--border));
}

.text-white {
  color: white;
}

.text-black {
  color: black;
}

/* Animation classes */
.animate-slide-left {
  animation: slideInLeft 0.6s ease-out;
}

.animate-slide-right {
  animation: slideInRight 0.6s ease-out;
}

.animate-delay-200 {
  animation-delay: 0.2s;
  animation-fill-mode: both;
}

/* Magnetic button effect */
.magnetic-btn {
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Stagger children class */
.stagger-children>* {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.stagger-children.visible>*:nth-child(1) {
  animation: slideInUp 0.6s ease-out 0.1s forwards;
}

.stagger-children.visible>*:nth-child(2) {
  animation: slideInUp 0.6s ease-out 0.2s forwards;
}

.stagger-children.visible>*:nth-child(3) {
  animation: slideInUp 0.6s ease-out 0.3s forwards;
}

.stagger-children.visible>*:nth-child(4) {
  animation: slideInUp 0.6s ease-out 0.4s forwards;
}

.stagger-children.visible>*:nth-child(5) {
  animation: slideInUp 0.6s ease-out 0.5s forwards;
}

.stagger-children.visible>*:nth-child(6) {
  animation: slideInUp 0.6s ease-out 0.6s forwards;
}

/* Scroll animate classes */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.6s ease-out;
}

.scroll-animate-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.animate-delay-200.scroll-animate-scale {
  animation-delay: 0.2s;
}

.animate-delay-400.scroll-animate-scale {
  animation-delay: 0.4s;
}

/* Responsive utilities */
@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .md\:text-left {
    text-align: left;
  }

  .md\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }

  .md\:flex-row {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Navigation - Premium Glass Design */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: hsl(var(--background) / 0.7);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid hsl(var(--border) / 0.2);
  padding: 1.5rem 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  padding: 1rem 0;
  background: hsl(var(--background) / 0.85);
  backdrop-filter: blur(24px) saturate(200%);
  box-shadow: 0 4px 24px rgb(0 0 0 / 0.08), 0 1px 3px rgb(0 0 0 / 0.05);
  border-bottom: 1px solid hsl(var(--border) / 0.3);
}

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

.logo {
  font-size: 1.75rem;
  font-weight: 800;
  color: hsl(var(--primary-blue));
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-links {
  display: none;
  gap: 2rem;
}

.nav-links a {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

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

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

/* Section spacing with enhanced background effects */
.section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 300%;
  height: 300%;
  background: radial-gradient(ellipse at center,
      hsl(var(--primary-blue) / 0.02) 0%,
      hsl(var(--accent-teal) / 0.015) 30%,
      hsl(var(--warm-orange) / 0.01) 60%,
      transparent 80%);
  transform: translateX(-50%);
  pointer-events: none;
  opacity: 0.5;
}

/* Removed slowRotate animation for premium static look */

.section-hero {
  padding: 10rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.section-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg at 50% 50%,
      hsl(var(--instagram-pink) / 0.04) 0deg,
      hsl(var(--instagram-orange) / 0.04) 60deg,
      hsl(var(--twitter-blue) / 0.04) 120deg,
      hsl(var(--discord-purple) / 0.04) 180deg,
      hsl(var(--tiktok-pink) / 0.04) 240deg,
      hsl(var(--youtube-red) / 0.04) 300deg,
      hsl(var(--instagram-pink) / 0.04) 360deg);
  pointer-events: none;
  opacity: 0.6;
}

/* Removed rotateBg animation for premium static look */

/* Animations */
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fade-in 0.6s ease-out;
}

.animate-fade-in-delay {
  animation: fade-in 0.6s ease-out 0.2s both;
}

/* Hover effects */
.hover-lift {
  transition: transform 0.2s ease-in-out;
}

.hover-lift:hover {
  transform: translateY(-4px);
}

/* Custom scrollbar - Professional Style */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: hsl(var(--background));
}

::-webkit-scrollbar-thumb {
  background: hsl(var(--primary-blue));
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: hsl(var(--accent-teal));
}

/* Premium Testimonial Cards */
.testimonial-card {
  background: hsl(var(--card) / 0.5);
  backdrop-filter: blur(12px) saturate(150%);
  border: 1px solid hsl(var(--border) / 0.2);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 0 4px 24px rgb(0 0 0 / 0.06);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, hsl(var(--primary-blue)), hsl(var(--accent-teal)));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgb(0 0 0 / 0.1), 0 2px 8px rgb(0 0 0 / 0.06);
  border-color: hsl(var(--primary-blue) / 0.4);
  background: hsl(var(--card) / 0.7);
}

.featured-testimonial {
  border: 2px solid hsl(var(--primary-blue) / 0.3);
  background: linear-gradient(135deg, hsl(var(--card)) 0%, hsl(var(--primary-blue) / 0.05) 100%);
}

.featured-testimonial::before {
  background: linear-gradient(90deg, hsl(var(--primary-blue)), hsl(var(--warm-orange)));
  height: 6px;
}

.testimonial-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.testimonial-avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.15);
}

.testimonial-avatar::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: linear-gradient(45deg, transparent, hsl(var(--primary-blue) / 0.3), transparent);
  z-index: -1;
}

.avatar-text {
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  text-shadow: 0 1px 2px rgb(0 0 0 / 0.3);
}

.testimonial-info {
  flex-grow: 1;
}

.testimonial-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.25rem;
}

.testimonial-role {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  font-weight: 500;
}

.testimonial-rating {
  flex-shrink: 0;
}

.stars {
  display: flex;
  gap: 0.125rem;
}

.star {
  color: #ffd700;
  font-size: 1.1rem;
  text-shadow: 0 1px 2px rgb(0 0 0 / 0.2);
  animation: starGlow 2s ease-in-out infinite alternate;
}

.star:nth-child(2) {
  animation-delay: 0.1s;
}

.star:nth-child(3) {
  animation-delay: 0.2s;
}

.star:nth-child(4) {
  animation-delay: 0.3s;
}

.star:nth-child(5) {
  animation-delay: 0.4s;
}

@keyframes starGlow {
  from {
    opacity: 0.8;
  }

  to {
    opacity: 1;
  }
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: hsl(var(--muted-foreground));
  font-style: italic;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 3rem;
  color: hsl(var(--primary-blue) / 0.2);
  position: absolute;
  top: -0.5rem;
  left: -0.5rem;
  font-family: serif;
  line-height: 1;
}

.highlight-metric {
  color: hsl(var(--primary-blue));
  font-weight: 600;
  font-style: normal;
}

.testimonial-footer {
  display: flex;
  justify-content: flex-end;
}

.testimonial-badge {
  background: linear-gradient(135deg, hsl(var(--primary-blue)), hsl(var(--accent-teal)));
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 4px rgb(0 0 0 / 0.1);
}

/* Responsive testimonials */
@media (max-width: 768px) {
  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-header {
    gap: 0.75rem;
    margin-bottom: 1rem;
  }

  .testimonial-avatar {
    width: 3rem;
    height: 3rem;
  }

  .avatar-text {
    font-size: 1rem;
  }
}

/* Social Media Emoji Decorations */
.social-emoji {
  font-size: 2rem;
  display: inline-block;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

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

/* Subtle Glow Effects */
.subtle-glow {
  box-shadow: 0 0 15px hsl(var(--primary-blue) / 0.2);
  animation: subtlePulse 3s ease-in-out infinite alternate;
}

@keyframes subtlePulse {
  from {
    box-shadow: 0 0 15px hsl(var(--primary-blue) / 0.2);
  }

  to {
    box-shadow: 0 0 25px hsl(var(--primary-blue) / 0.3), 0 0 35px hsl(var(--accent-teal) / 0.1);
  }
}

/* Video Modal Styles */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.3s ease-out;
}

.video-modal.active {
  display: flex;
}

.video-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  height: 80%;
  max-height: 600px;
  background: hsl(var(--card));
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  animation: modalSlideIn 0.4s ease-out;
}

.video-modal-close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 40px;
  height: 40px;
  background: hsl(var(--primary-blue));
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.video-modal-close:hover {
  background: hsl(var(--destructive));
  transform: scale(1.1);
}

.video-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.video-container iframe {
  border-radius: var(--radius);
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes modalSlideIn {
  from {
    transform: scale(0.8) translateY(-50px);
    opacity: 0;
  }

  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

/* Responsive modal */
@media (max-width: 768px) {
  .video-modal-content {
    width: 95%;
    height: 70%;
    max-height: 400px;
  }

  .video-modal-close {
    top: -10px;
    right: -10px;
    width: 35px;
    height: 35px;
    font-size: 20px;
  }
}

/* FAQ Section Styles */
details {
  cursor: pointer;
}

details summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

details summary::-webkit-details-marker {
  display: none;
}

details summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: hsl(var(--primary-blue));
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  margin-left: 1rem;
}

details[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}

details[open] {
  border-color: hsl(var(--primary-blue) / 0.3);
}

details summary:hover {
  color: hsl(var(--primary-blue));
}

details p {
  line-height: 1.8;
}

details strong {
  color: hsl(var(--foreground));
  font-weight: 600;
}

/* Premium Footer Styles */
.footer-premium {
  position: relative;
  background: linear-gradient(180deg,
      hsl(var(--background)) 0%,
      hsl(220 15% 8%) 50%,
      hsl(220 18% 6%) 100%);
  border-top: 1px solid hsl(var(--border) / 0.3);
  overflow: hidden;
}

.footer-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      hsl(var(--primary-blue) / 0.5) 20%,
      hsl(var(--accent-teal) / 0.5) 50%,
      hsl(var(--primary-blue) / 0.5) 80%,
      transparent);
}

.footer-premium::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 120%;
  height: 150%;
  background: radial-gradient(ellipse at 50% 0%,
      hsl(var(--primary-blue) / 0.04) 0%,
      transparent 60%);
  pointer-events: none;
}

.footer-top {
  padding: 5rem 0 2rem;
  position: relative;
  z-index: 1;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid hsl(var(--border) / 0.2);
  padding: 2rem 0;
  background: hsl(220 20% 5% / 0.5);
  backdrop-filter: blur(10px);
}

.footer-logo {
  display: inline-block;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, hsl(var(--primary-blue)), hsl(var(--accent-teal)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  transition: all 0.3s ease;
}

.footer-logo:hover {
  filter: brightness(1.2);
  transform: translateY(-2px);
}

.footer-description {
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  max-width: 280px;
}

.footer-cta-mini {
  margin-top: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: hsl(var(--card) / 0.5);
  border: 1px solid hsl(var(--border) / 0.3);
  color: hsl(var(--muted-foreground));
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover {
  background: hsl(var(--primary-blue));
  border-color: hsl(var(--primary-blue));
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px hsl(var(--primary-blue) / 0.3);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.footer-heading {
  color: hsl(var(--foreground));
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.875rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2rem;
  height: 2px;
  background: linear-gradient(90deg, hsl(var(--primary-blue)), transparent);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.875rem;
}

.footer-link {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  font-size: 0.9375rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  position: relative;
}

.footer-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, hsl(var(--primary-blue)), hsl(var(--accent-teal)));
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: hsl(var(--foreground));
  transform: translateX(4px);
}

.footer-link:hover::before {
  width: 100%;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .footer-bottom-content {
    flex-direction: row;
  }
}

.footer-copyright {
  color: hsl(var(--muted-foreground) / 0.7);
  font-size: 0.875rem;
  margin: 0;
}

.footer-trust-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-trust-badges {
    justify-content: flex-end;
  }
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
  font-weight: 500;
  padding: 0.5rem 1rem;
  background: hsl(var(--card) / 0.3);
  border: 1px solid hsl(var(--border) / 0.2);
  border-radius: calc(var(--radius) - 2px);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.trust-badge:hover {
  background: hsl(var(--card) / 0.5);
  border-color: hsl(var(--border) / 0.4);
  color: hsl(var(--foreground));
  transform: translateY(-2px);
}

/* Utility Classes */
.col-span-1 {
  grid-column: span 1 / span 1;
}

.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.space-y-4>*+* {
  margin-top: 1rem;
}

.leading-relaxed {
  line-height: 1.625;
}

/* Pricing Section Styles */
.offer-banner {
  position: relative;
  overflow: hidden;
}

.pricing-toggle {
  transition: background-color 0.3s ease;
}

/* Custom Gradients and Utilities for Pricing */
.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-purple-500 {
  --tw-gradient-from: #a855f7;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0));
}

.via-pink-500 {
  --tw-gradient-to: rgba(236, 72, 153, 0);
  --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to);
}

.to-orange-500 {
  --tw-gradient-to: #f97316;
}

.text-purple-400 {
  color: #c084fc;
}

.bg-purple-600 {
  background-color: #9333ea;
}

.bg-purple-900\/5 {
  background-color: rgb(88 28 135 / 0.05);
}

.bg-purple-600\/20 {
  background-color: rgb(147 51 234 / 0.2);
}

.hover\:bg-purple-600\/40:hover {
  background-color: rgb(147 51 234 / 0.4);
}

.border-purple-500\/30 {
  border-color: rgb(168 85 247 / 0.3);
}

.text-red-500 {
  color: #ef4444;
}

.bg-background {
  background-color: hsl(var(--background));
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.group:hover .group-hover\:translate-x-1 {
  transform: translateX(0.25rem);
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.bg-muted\/50 {
  background-color: hsl(var(--muted) / 0.5);
}

.border-border\/50 {
  border-color: hsl(var(--border) / 0.5);
}

.font-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.tracking-wide {
  letter-spacing: 0.025em;
}

.uppercase {
  text-transform: uppercase;
}

/* Promotional Banner Sticky */
.promo-banner-sticky {
  position: sticky;
  top: 0;
  z-index: 40;
  background: hsl(var(--background));
  padding: 0.5rem 0;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
}

.mt-auto {
  margin-top: auto;
}

.mt-0\.5 {
  margin-top: 0.125rem;
}

/* Full Width Top Banner */
.promo-banner-top {
  width: 100%;
  background: linear-gradient(90deg, #7c3aed 0%, #a855f7 50%, #c084fc 100%);
  padding: 0.625rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
}

.promo-banner-icon {
  font-size: 1rem;
}

.promo-banner-emoji {
  font-size: 0.875rem;
}

.promo-banner-text {
  font-weight: 500;
}

.promo-banner-highlight {
  text-decoration: underline;
  font-weight: 600;
}

.promo-banner-code {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.25);
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.promo-banner-code code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.promo-banner-code button {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.125rem;
  display: flex;
  align-items: center;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.promo-banner-code button:hover {
  opacity: 1;
}

/* Adjust navbar to account for top banner */
.navbar {
  top: 40px !important;
}

@media (max-width: 640px) {
  .promo-banner-top {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    gap: 0.5rem;
  }

  .navbar {
    top: 52px !important;
  }
}