no/* =============================================================================
   MODERN PREMIUM UI STYLESHEET
   Beautiful, responsive design with perfect spacing and layout
   ============================================================================= */

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

/* Ensure page starts at top */
html, body {
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: #0a0a0a;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  position: relative;
}

/* Custom Properties */
:root {
  /* Colors */
  --primary: #8b5cf6;
  --primary-light: #a78bfa;
  --primary-dark: #7c3aed;
  --secondary: #06b6d4;
  --secondary-light: #22d3ee;
  --secondary-dark: #0891b2;
  --accent: #f59e0b;
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  
  /* Neutrals */
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --black: #000000;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--error) 100%);
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;
  
  /* Sizing */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
  --container-2xl: 1536px;
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 2rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 400ms ease;
  --transition-bounce: 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* =============================================================================
   SCROLL HEADER
   ============================================================================= */

.scroll-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
  padding: 1rem 0;
}

.scroll-header.show {
  transform: translateY(0);
}

.scroll-header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.scroll-header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.scroll-header-logo img {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.scroll-header-brand {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #8b5cf6, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.brand-amp {
  font-size: 1.8rem;
  font-weight: 600;
  margin-left: -0.1em;
}

.scroll-header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.scroll-nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  position: relative;
}

.scroll-nav-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.scroll-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #8b5cf6, #06b6d4);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.scroll-nav-link:hover::after {
  width: 80%;
}

/* =============================================================================
   LOADING SCREEN
   ============================================================================= */

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: radial-gradient(ellipse at center, #1e1b4b 0%, #0a0a0a 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.5s ease-out;
}

.loading-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loading-content {
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.loading-logo {
  position: relative;
  display: inline-block;
  margin-bottom: var(--space-lg);
}

.loading-logo-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  animation: logoFloat 3s ease-in-out infinite;
}

.loading-pulse {
  position: absolute;
  inset: -10px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.loading-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-lg);
}

.loading-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
}

.loading-dots span {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: bounce 1.4s infinite ease-in-out;
}

.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }

/* =============================================================================
   MAIN LAYOUT
   ============================================================================= */

.main-wrapper {
  position: relative;
  min-height: 100vh;
  opacity: 0;
  transition: opacity 1s ease-out 0.3s;
}

.main-wrapper.loaded {
  opacity: 1;
}

/* Background Elements */
.bg-elements {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  overflow: hidden;
}

.bg-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at top left, rgba(139, 92, 246, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse at top right, rgba(6, 182, 212, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(245, 158, 11, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(239, 68, 68, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at center, rgba(16, 185, 129, 0.08) 0%, transparent 70%),
    linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 30%, #0f0f23 70%, #0a0a0a 100%);
  animation: gradientPulse 15s ease-in-out infinite;
}

@keyframes gradientPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.bg-particles {
  position: absolute;
  inset: 0;
}

.bg-mesh {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(139, 92, 246, 0.15) 1px, transparent 0);
  background-size: 50px 50px;
  animation: meshMove 20s linear infinite;
}

/* =============================================================================
   HERO SECTION
   ============================================================================= */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: var(--space-4xl);
  padding-bottom: var(--space-5xl);
  overflow: hidden;
}

.hero-container {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: var(--space-xl);
  text-align: center;
  z-index: 1;
  position: relative;
}

/* Hero Logo */
.hero-logo {
  margin-bottom: var(--space-md);
  animation: fadeInUp 0.8s ease-out;
  cursor: pointer;
}

.logo-wrapper {
  position: relative;
  display: inline-block;
  padding: var(--space-lg);
  transition: transform var(--transition-normal);
}

.logo-wrapper:hover {
  transform: scale(1.05) rotate(2deg);
}

.logo-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  animation: logoFloat 6s ease-in-out infinite;
  transition: all var(--transition-normal);
  filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.5));
}

.logo-wrapper:hover .logo-img {
  filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.8)) 
          drop-shadow(0 0 10px rgba(6, 182, 212, 0.4));
}

.logo-glow {
  position: absolute;
  inset: 10px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.6;
  animation: pulse 3s ease-in-out infinite;
}

.logo-ring, .logo-ring-2 {
  position: absolute;
  border: 2px solid;
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

.logo-ring {
  inset: -10px;
  border-color: var(--primary);
  opacity: 0.5;
}

.logo-ring-2 {
  inset: -20px;
  border-color: var(--secondary);
  opacity: 0.3;
  animation-direction: reverse;
  animation-duration: 30s;
}

/* Hero Title */
.hero-title {
  margin-bottom: var(--space-sm);
}

.title-main {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

.title-line {
  display: block;
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }

.title-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 3s ease-in-out infinite;
}

.title-sub {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: var(--space-md);
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
  opacity: 0;
}

.brand-name {
  position: relative;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-name::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  animation: scaleX 0.8s ease-out 1.2s forwards;
  transform: scaleX(0);
}

/* Hero Description */
.hero-description {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  line-height: 1.6;
  color: var(--gray-300);
  max-width: 800px;
  margin: 0 auto var(--space-md);
  animation: fadeInUp 0.8s ease-out 0.8s forwards;
  opacity: 0;
}

/* Hero CTA */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: center;
  align-items: center;
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.8s ease-out 1s forwards;
  opacity: 0;
}

/* Hero Trust */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xl);
  justify-content: center;
  align-items: center;
  animation: fadeInUp 0.8s ease-out 1.2s forwards;
  opacity: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--gray-400);
  font-size: 0.875rem;
  font-weight: 500;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.rating-stars {
  display: flex;
  gap: 2px;
}

.star {
  color: var(--accent);
  font-size: 1rem;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  cursor: pointer;
  z-index: 10;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--gray-400);
  border-radius: var(--radius-xl);
  position: relative;
  background: transparent;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--gray-400);
  border-radius: var(--radius-sm);
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite;
}

/* =============================================================================
   BUTTONS
   ============================================================================= */

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-lg) var(--space-2xl);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.6);
}

.btn-primary:active { 
  transform: translateY(-1px) scale(1.01);
  transition: all 0.1s;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s;
}

.btn-secondary:hover::before {
  left: 100%;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1);
}

.btn-large {
  padding: var(--space-xl) var(--space-3xl);
  font-size: 1.25rem;
}

.btn-icon {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-normal);
}

.btn-primary:hover .btn-icon { transform: translateX(4px); }
.btn-secondary:hover .btn-icon { transform: scale(1.1); }

/* =============================================================================
   SECTIONS
   ============================================================================= */

.section-container {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: var(--space-5xl) var(--space-xl);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: var(--space-lg);
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--gray-400);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* =============================================================================
   CHAT SECTION
   ============================================================================= */

.chat-section {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.chat-container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Chat Window */
.chat-window {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-3xl);
  overflow: hidden;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all var(--transition-slow);
}

.chat-window:hover {
  box-shadow: 
    0 40px 80px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(139, 92, 246, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-8px) scale(1.01);
}

/* Chat Header */
.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.chat-avatar-container {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.chat-avatar {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--gradient-primary);
  padding: 2px;
}

.chat-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.avatar-status {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 12px;
  height: 12px;
  background: var(--success);
  border: 2px solid var(--white);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.chat-info {
  flex: 1;
}

.chat-name-container {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xs);
}

.chat-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
}

.edit-name-btn {
  background: none;
  border: none;
  color: var(--gray-400);
  cursor: pointer;
  padding: var(--space-xs);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.edit-name-btn:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.edit-name-btn svg {
  width: 16px;
  height: 16px;
}

.chat-status {
  font-size: 0.875rem;
  color: var(--gray-400);
}

.chat-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-sm);
  min-width: 80px;
  justify-content: flex-end;
}

.chat-action-btn {
  background: none;
  border: none;
  color: var(--gray-400);
  cursor: pointer;
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.chat-action-btn:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.chat-action-btn svg {
  width: 20px;
  height: 20px;
}

.status-indicator {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  color: var(--success);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

.status-indicator .status-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.status-indicator .status-text {
  color: var(--success);
}

/* Messages Container */
.messages-container {
  height: 400px;
  overflow-y: auto;
  padding: var(--space-xl);
  scroll-behavior: smooth;
}

.messages-container::-webkit-scrollbar {
  width: 6px;
}

.messages-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
}

.messages-container::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
}

/* Chat Input */
.chat-input-container {
  padding: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.input-wrapper {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
}

.input-field-container {
  flex: 1;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-2xl);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  transition: all var(--transition-normal);
}

.input-field-container:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.message-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 1rem;
  placeholder-color: var(--gray-400);
}

.message-input::placeholder {
  color: var(--gray-400);
}

.input-actions {
  display: flex;
  gap: var(--space-xs);
}

.input-action-btn {
  background: none;
  border: none;
  color: var(--gray-400);
  cursor: pointer;
  padding: var(--space-xs);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.input-action-btn:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.input-action-btn svg {
  width: 18px;
  height: 18px;
}

.send-button {
  background: var(--gradient-primary);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.send-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.send-button:active { transform: scale(0.95); }

.send-icon {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.input-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-sm);
}

.input-hint {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.char-counter {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* =============================================================================
   FEATURES SECTION
   ============================================================================= */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-2xl);
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  text-align: center;
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.8s ease;
}

.feature-card:hover::before { left: 100%; }

.feature-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.25),
    0 0 30px rgba(139, 92, 246, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-lg);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all var(--transition-normal);
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  color: var(--white);
  z-index: 1;
}

.gradient-blue { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.gradient-pink { background: linear-gradient(135deg, #ec4899, #be185d); }
.gradient-purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.gradient-green { background: linear-gradient(135deg, #10b981, #059669); }
.gradient-orange { background: linear-gradient(135deg, #f59e0b, #d97706); }
.gradient-violet { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--white);
}

.feature-description {
  color: var(--gray-300);
  line-height: 1.6;
}

/* =============================================================================
   TESTIMONIALS SECTION
   ============================================================================= */

.testimonials-section {
  background: rgba(0, 0, 0, 0.3);
}

.testimonial-container {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-content {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-2xl);
  padding: var(--space-3xl);
  text-align: center;
  margin-bottom: var(--space-xl);
  transition: all var(--transition-slow);
}

.testimonial-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
}

.testimonial-stars .star {
  color: var(--accent);
  font-size: 1.25rem;
}

.testimonial-text {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: var(--space-xl);
  font-style: italic;
}

.author-info {
  text-align: center;
}

.author-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.author-role {
  color: var(--gray-400);
  font-size: 0.875rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.testimonial-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

.testimonial-dot:hover { background: var(--primary-light); }

/* =============================================================================
   CTA SECTION
   ============================================================================= */

.cta-container {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-3xl);
  padding: var(--space-4xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0.05;
  border-radius: inherit;
}

.cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: var(--space-lg);
  color: var(--white);
}

.cta-subtitle {
  font-size: 1.25rem;
  color: var(--gray-300);
  margin-bottom: var(--space-3xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* =============================================================================
   MOVEMENT SECTION
   ============================================================================= */

.movement-section {
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
}

.movement-container {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.movement-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: var(--space-lg);
}

.movement-subtitle {
  font-size: 1.2rem;
  color: var(--gray-300);
  margin-bottom: var(--space-2xl);
  line-height: 1.6;
}

.movement-apply {
  margin-bottom: var(--space-2xl);
}

.movement-details {
  animation: fadeInUp 0.6s ease-out;
}

.movement-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-3xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-lg);
  max-width: 600px;
  margin: 0 auto;
}

.movement-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.movement-instructions {
  font-size: 1.1rem;
  color: var(--gray-300);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.movement-list {
  text-align: left;
  margin: var(--space-lg) 0;
  padding-left: var(--space-xl);
  color: var(--gray-300);
}

.movement-list li {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
  font-weight: 500;
}

.movement-email {
  font-size: 1.1rem;
  color: var(--gray-300);
  margin: var(--space-lg) 0;
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.email-link {
  color: var(--primary-light);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.email-link:hover {
  color: var(--white);
  text-decoration: underline;
}

/* =============================================================================
   FOOTER
   ============================================================================= */

.footer {
  background: rgba(0, 0, 0, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: var(--space-4xl) var(--space-xl) var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.footer-logo img {
  width: 32px;
  height: 32px;
}

.footer-brand-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand-desc {
  color: var(--gray-400);
  line-height: 1.6;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gray-500);
  font-size: 0.875rem;
}

/* =============================================================================
   COOKIE CONSENT
   ============================================================================= */

.cookie-consent {
  position: fixed;
  bottom: var(--space-xl);
  left: var(--space-xl);
  right: var(--space-xl);
  max-width: 500px;
  z-index: 1000;
  animation: slideInUp 0.5s ease-out;
}

.cookie-content {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-2xl);
  padding: var(--space-xl);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.cookie-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.cookie-text {
  flex: 1;
}

.cookie-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.cookie-description {
  font-size: 0.875rem;
  color: var(--gray-300);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.cookie-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.cookie-link:hover { 
  text-decoration: underline;
  color: var(--primary-light);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.cookie-btn {
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  flex: 1;
  min-width: 120px;
}

.cookie-btn-accept {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.cookie-btn-accept:hover { 
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

.cookie-btn-decline {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gray-300);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-decline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.cookie-btn-settings {
  background: transparent;
  color: var(--gray-400);
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex: 0 0 auto;
  min-width: 80px;
}

.cookie-btn-settings:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}

.cookie-modal-content {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-2xl);
  max-width: 500px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-modal-header h3 {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
}

.cookie-close {
  background: none;
  border: none;
  color: var(--gray-400);
  font-size: 1.5rem;
  cursor: pointer;
  padding: var(--space-xs);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.cookie-close:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.cookie-modal-body {
  padding: var(--space-xl);
}

.cookie-category {
  margin-bottom: var(--space-xl);
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-category:last-child {
  margin-bottom: 0;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.cookie-category-header h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.cookie-category p {
  color: var(--gray-400);
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
}

/* Cookie Toggle Switch */
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.2);
  transition: var(--transition-normal);
  border-radius: 24px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: white;
  transition: var(--transition-normal);
  border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-slider {
  background: var(--primary);
}

.cookie-toggle input:checked + .cookie-slider:before {
  transform: translateX(20px);
}

.cookie-toggle input:disabled + .cookie-slider {
  background: var(--success);
  cursor: not-allowed;
}

.cookie-modal-footer {
  padding: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============================================================================
   ANIMATIONS
   ============================================================================= */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1);}
  50% { opacity: 0.5; transform: scale(1.05); }
}

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

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

@keyframes scaleX {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% { transform: translateY(0); }
  40%, 43% { transform: translateY(-10px); }
  70% { transform: translateY(-5px); }
  90% { transform: translateY(-2px); }
}

@keyframes scrollWheel {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(10px); }
  100% { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

@keyframes meshMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

/* =============================================================================
   RESPONSIVE DESIGN
   ============================================================================= */

@media (max-width: 768px) {
  .scroll-header-container {
    justify-content: center;
  }
  
  .scroll-header-logo img {
    width: 3.5rem;
    height: 3.5rem;
  }
  
  .scroll-header-brand {
    font-size: 2rem;
  }
  
  .brand-amp {
    font-size: 1.5rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-trust {
    flex-direction: column;
    gap: var(--space-lg);
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
  
  .cookie-consent {
    left: var(--space-md);
    right: var(--space-md);
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .section-container {
    padding: var(--space-3xl) var(--space-md);
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 0 var(--space-md);
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}