/* =============================================================================
   RELICA DARK THEME - Complete Stylesheet
   ============================================================================= */

/* -----------------------------------------------------------------------------
   CSS Variables / Design Tokens
   ----------------------------------------------------------------------------- */
:root {
  /* Background Colors */
  --bg-primary: #030712;
  --bg-secondary: #0f172a;
  --bg-card: rgba(15, 23, 42, 0.6);
  --bg-card-solid: #0f172a;
  --bg-input: rgba(255, 255, 255, 0.05);
  --bg-input-hover: rgba(255, 255, 255, 0.08);
  
  /* Text Colors */
  --text-primary: #e2e8f0;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-faint: #475569;
  
  /* Border Colors */
  --border-primary: rgba(255, 255, 255, 0.1);
  --border-secondary: rgba(255, 255, 255, 0.05);
  --border-focus: rgba(16, 185, 129, 0.5);
  
  /* Emerald (Primary) */
  --emerald-50: #ecfdf5;
  --emerald-100: #d1fae5;
  --emerald-200: #a7f3d0;
  --emerald-300: #6ee7b7;
  --emerald-400: #34d399;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  --emerald-700: #047857;
  
  /* Violet (Accent) */
  --violet-400: #a78bfa;
  --violet-500: #8b5cf6;
  --violet-600: #7c3aed;
  
  /* Indigo */
  --indigo-500: #6366f1;
  --indigo-600: #4f46e5;
  
  /* Blue */
  --blue-500: #3b82f6;
  
  /* Status Colors */
  --success: #10b981;
  --warning: #f59e0b;
  --error: #f43f5e;
  --gold: #fbbf24;
  
  /* Aurora Colors */
  --aurora-green: rgba(16, 185, 129, 0.4);
  --aurora-green-bright: rgba(16, 185, 129, 0.55);
  --aurora-violet: rgba(139, 92, 246, 0.35);
  --aurora-violet-bright: rgba(139, 92, 246, 0.5);
  --aurora-blue: rgba(59, 130, 246, 0.25);
  --aurora-blue-bright: rgba(59, 130, 246, 0.4);
  
  /* Gradients */
  --gradient-emerald: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
  --gradient-violet: linear-gradient(135deg, #6366f1, #8b5cf6);
  --gradient-text: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
  --gradient-headline: linear-gradient(135deg, #ffffff 0%, #10b981 25%, #ffffff 50%, #8b5cf6 75%, #ffffff 100%);
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 60px rgba(16, 185, 129, 0.3);
  --shadow-card: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  
  /* Blur */
  --blur-sm: 8px;
  --blur-md: 12px;
  --blur-lg: 20px;
  --blur-xl: 40px;
  
  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  
  /* Font Sizes */
  --text-xs: 11px;
  --text-sm: 13px;
  --text-base: 14px;
  --text-md: 15px;
  --text-lg: 16px;
  --text-xl: 18px;
  --text-2xl: 20px;
  --text-3xl: 24px;
  --text-4xl: 28px;
  --text-5xl: 32px;
  --text-6xl: 36px;
  --text-7xl: 48px;
  --text-8xl: 52px;
  --text-9xl: 56px;
  
  /* Font Weights */
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  
  /* Line Heights */
  --leading-tight: 1.1;
  --leading-snug: 1.3;
  --leading-normal: 1.5;
  --leading-relaxed: 1.6;
  --leading-loose: 1.7;
  
  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 100px;
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 10px;
  --radius-xl: 12px;
  --radius-2xl: 16px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease;
  
  /* Z-Index */
  --z-base: 1;
  --z-dropdown: 10;
  --z-sticky: 50;
  --z-fixed: 100;
  --z-modal: 200;
  --z-tooltip: 300;
  
  /* Layout */
  --max-width-sm: 600px;
  --max-width-md: 800px;
  --max-width-lg: 1000px;
  --max-width-xl: 1200px;
  --max-width-nav: 1400px;
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

/* -----------------------------------------------------------------------------
   Animations
   ----------------------------------------------------------------------------- */
@keyframes aurora1 {
  0%, 100% { 
    transform: translateY(0) rotate(0deg) scale(1); 
    opacity: 0.8; 
  }
  25% { 
    transform: translateY(-30px) rotate(5deg) scale(1.1); 
    opacity: 1; 
  }
  50% { 
    transform: translateY(-20px) rotate(-3deg) scale(1.05); 
    opacity: 0.7; 
  }
  75% { 
    transform: translateY(-40px) rotate(8deg) scale(1.15); 
    opacity: 0.9; 
  }
}

@keyframes aurora2 {
  0%, 100% { 
    transform: translateX(0) rotate(0deg) scale(1); 
    opacity: 0.7; 
  }
  33% { 
    transform: translateX(40px) rotate(-5deg) scale(1.2); 
    opacity: 0.9; 
  }
  66% { 
    transform: translateX(-30px) rotate(3deg) scale(0.95); 
    opacity: 0.6; 
  }
}

@keyframes star-twinkle {
  0%, 100% { opacity: var(--star-opacity, 0.3); }
  50% { opacity: 1; }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3); }
  50% { box-shadow: 0 10px 60px rgba(16, 185, 129, 0.5); }
}

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

@keyframes pulse-subtle {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

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

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* -----------------------------------------------------------------------------
   Aurora Background
   ----------------------------------------------------------------------------- */
.aurora-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.aurora-layer {
  position: absolute;
  filter: blur(var(--blur-xl));
  pointer-events: none;
}

.aurora-green {
  top: -20%;
  left: -10%;
  width: 120%;
  height: 80%;
  background: 
    radial-gradient(ellipse 80% 50% at 20% 40%, var(--aurora-green) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 70% 30%, rgba(5, 150, 105, 0.3) 0%, transparent 50%);
  animation: aurora1 15s ease-in-out infinite;
}

.aurora-violet {
  top: -10%;
  left: 20%;
  width: 80%;
  height: 70%;
  background: radial-gradient(ellipse 70% 60% at 60% 30%, var(--aurora-violet) 0%, transparent 50%);
  animation: aurora2 20s ease-in-out infinite;
  animation-delay: -5s;
}

.aurora-blue {
  top: 10%;
  right: -10%;
  width: 60%;
  height: 50%;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, var(--aurora-blue) 0%, transparent 50%);
  filter: blur(60px);
  animation: aurora1 25s ease-in-out infinite;
  animation-delay: -10s;
}

/* Brighter aurora for login/download pages */
.aurora-bright .aurora-green {
  background: 
    radial-gradient(ellipse 80% 50% at 20% 40%, var(--aurora-green-bright) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 70% 30%, rgba(5, 150, 105, 0.45) 0%, transparent 50%);
}

.aurora-bright .aurora-violet {
  background: radial-gradient(ellipse 70% 60% at 60% 30%, var(--aurora-violet-bright) 0%, transparent 50%);
}

.aurora-bright .aurora-blue {
  background: radial-gradient(ellipse 60% 50% at 50% 50%, var(--aurora-blue-bright) 0%, transparent 50%);
}

/* Ground glow effect */
.aurora-ground {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(16, 185, 129, 0.1) 0%, transparent 100%);
  pointer-events: none;
}

/* -----------------------------------------------------------------------------
   Stars
   ----------------------------------------------------------------------------- */
.stars-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.star {
  position: absolute;
  background: white;
  border-radius: 50%;
  animation: star-twinkle ease-in-out infinite;
}

/* -----------------------------------------------------------------------------
   Navigation
   ----------------------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: var(--z-fixed);
  background: rgba(3, 7, 18, 0.8);
  backdrop-filter: blur(var(--blur-md));
  border-bottom: 1px solid var(--border-secondary);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-4) var(--space-16);
  max-width: var(--max-width-nav);
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-emerald);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.logo-icon-sm {
  width: 32px;
  height: 32px;
  font-size: 16px;
  border-radius: var(--radius-sm);
}

.logo-text {
  font-size: var(--text-2xl);
  font-weight: var(--font-semibold);
  background: linear-gradient(135deg, var(--emerald-500), var(--emerald-200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-link {
  color: var(--text-secondary);
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  transition: color var(--transition-base);
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link.active {
  color: var(--emerald-500);
}

/* Status in nav */
.nav-status {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-3);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  color: var(--emerald-500);
}

/* -----------------------------------------------------------------------------
   Buttons
   ----------------------------------------------------------------------------- */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px 28px;
  background: var(--gradient-emerald);
  background-size: 200% 200%;
  border: none;
  border-radius: var(--radius-lg);
  color: white;
  font-size: var(--text-md);
  font-weight: var(--font-semibold);
  cursor: pointer;
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.cta-btn:hover {
  background-position: 100% 100%;
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.3);
}

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

.cta-btn-sm {
  padding: 10px 20px;
  font-size: var(--text-base);
}

.cta-btn-lg {
  padding: 16px 32px;
  font-size: var(--text-lg);
}

.cta-btn-secondary {
  padding: 14px 28px;
  background: transparent;
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-lg);
  color: var(--text-primary);
  font-size: var(--text-md);
  font-weight: var(--font-medium);
  cursor: pointer;
  transition: all var(--transition-base);
}

.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}

.cta-btn-outline {
  padding: 12px 24px;
  background: transparent;
  border: 1px solid rgba(16, 185, 129, 0.5);
  border-radius: var(--radius-lg);
  color: var(--emerald-500);
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  cursor: pointer;
  transition: all var(--transition-base);
}

.cta-btn-outline:hover {
  background: rgba(16, 185, 129, 0.1);
  border-color: var(--emerald-500);
}

.cta-btn-full {
  width: 100%;
}

/* Loading state */
.cta-btn-loading {
  pointer-events: none;
}

.cta-btn-loading .spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* -----------------------------------------------------------------------------
   Glass Cards
   ----------------------------------------------------------------------------- */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(var(--blur-lg));
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-2xl);
}

.glass-card-solid {
  background: var(--bg-card-solid);
}

.feature-card {
  padding: var(--space-8);
  transition: all var(--transition-slow);
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: var(--shadow-xl);
}

/* -----------------------------------------------------------------------------
   Form Inputs
   ----------------------------------------------------------------------------- */
.input-field {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-input);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-lg);
  color: var(--text-primary);
  font-size: var(--text-base);
  font-family: inherit;
  transition: all var(--transition-base);
}

.input-field:focus {
  outline: none;
  border-color: var(--border-focus);
  background: var(--bg-input-hover);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.input-field::placeholder {
  color: var(--text-muted);
}

textarea.input-field {
  min-height: 100px;
  resize: vertical;
}

select.input-field {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* Checkbox */
.checkbox-label {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  cursor: pointer;
  color: var(--text-secondary);
  font-size: var(--text-sm);
}

.checkbox-label input {
  width: 16px;
  height: 16px;
  accent-color: var(--emerald-500);
}

/* Range Slider */
input[type="range"] {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: var(--emerald-500);
  border-radius: 50%;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

/* -----------------------------------------------------------------------------
   Badges & Tags
   ----------------------------------------------------------------------------- */
.no-cc-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--emerald-500);
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  color: var(--text-secondary);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-md);
  font-size: var(--text-xs);
  color: var(--emerald-500);
  font-weight: var(--font-medium);
  text-decoration: none;
  transition: all var(--transition-base);
}

.status-badge:hover {
  background: rgba(16, 185, 129, 0.15);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald-500);
  animation: pulse-subtle 2s ease-in-out infinite;
}

.tag {
  padding: var(--space-1) var(--space-3);
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald-500);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  font-weight: var(--font-medium);
}

.tag-new {
  background: rgba(16, 185, 129, 0.2);
  color: var(--emerald-500);
}

.tag-improved {
  background: rgba(99, 102, 241, 0.2);
  color: #818cf8;
}

.tag-fixed {
  background: rgba(245, 158, 11, 0.2);
  color: var(--warning);
}

/* -----------------------------------------------------------------------------
   Hero Section
   ----------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--space-10) var(--space-5);
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--space-16);
  align-items: center;
}

.hero-content {
  max-width: 540px;
}

.hero-headline {
  font-size: var(--text-8xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-6);
  background: var(--gradient-headline);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 8s ease infinite;
}

.hero-subtitle {
  font-size: var(--text-xl);
  color: var(--text-secondary);
  line-height: var(--leading-loose);
  margin-bottom: var(--space-8);
}

.hero-badges {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.social-proof {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.avatar-stack {
  display: flex;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient-violet);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: var(--font-semibold);
  border: 2px solid var(--bg-primary);
  margin-left: -8px;
}

.avatar:first-child {
  margin-left: 0;
}

.social-proof-text {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.stars {
  color: var(--gold);
  font-size: var(--text-xs);
}

.social-proof-label {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

/* Signup Card */
.signup-card {
  padding: var(--space-8);
}

.signup-card h3 {
  font-size: var(--text-2xl);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-1);
}

.signup-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-6);
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.signup-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* -----------------------------------------------------------------------------
   Stats Section
   ----------------------------------------------------------------------------- */
.stats-section {
  padding: var(--space-12) var(--space-5);
  background: rgba(15, 23, 42, 0.3);
  border-top: 1px solid var(--border-secondary);
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: var(--space-20);
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 40px;
  font-weight: var(--font-bold);
  background: linear-gradient(135deg, var(--emerald-500), var(--indigo-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* -----------------------------------------------------------------------------
   Curl Installer Section
   ----------------------------------------------------------------------------- */
.curl-section {
  padding: var(--space-10) var(--space-5);
  text-align: center;
}

.curl-label {
  font-size: var(--text-base);
  color: var(--text-secondary);
  margin-bottom: var(--space-3);
}

.curl-command {
  display: inline-flex;
  align-items: center;
  gap: var(--space-4);
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-lg);
  padding: 14px 24px;
  font-family: var(--font-mono);
  font-size: var(--text-md);
  color: var(--emerald-500);
}

.curl-copy-btn {
  background: rgba(16, 185, 129, 0.2);
  border: none;
  border-radius: var(--radius-sm);
  padding: var(--space-2) var(--space-3);
  color: var(--emerald-500);
  font-size: var(--text-xs);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.curl-copy-btn:hover {
  background: rgba(16, 185, 129, 0.3);
}

/* -----------------------------------------------------------------------------
   Cloud Providers Strip
   ----------------------------------------------------------------------------- */
.providers-section {
  padding: var(--space-10) var(--space-5);
  background: rgba(15, 23, 42, 0.3);
  border-top: 1px solid var(--border-secondary);
  border-bottom: 1px solid var(--border-secondary);
}

.providers-label {
  font-size: var(--text-sm);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: var(--space-6);
}

.providers-grid {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.provider-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4);
  opacity: 0.6;
  transition: opacity var(--transition-base);
}

.provider-logo:hover {
  opacity: 1;
}

.provider-logo span:first-child {
  font-size: 28px;
}

.provider-logo span:last-child {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* -----------------------------------------------------------------------------
   Benchmark Section
   ----------------------------------------------------------------------------- */
.benchmark-section {
  padding: var(--space-16) var(--space-5);
  background: rgba(16, 185, 129, 0.05);
}

.benchmark-container {
  max-width: var(--max-width-lg);
  margin: 0 auto;
  text-align: center;
}

.benchmark-header h3 {
  font-size: var(--text-3xl);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-4);
}

.benchmark-header p {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
}

.benchmark-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-12);
  margin-bottom: var(--space-8);
}

.benchmark-stat-value {
  font-size: 40px;
  font-weight: var(--font-bold);
  color: var(--emerald-500);
}

.benchmark-stat-label {
  font-size: var(--text-base);
  color: var(--text-primary);
  margin-bottom: var(--space-1);
}

.benchmark-stat-sublabel {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* Benchmark Chart */
.benchmark-chart {
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  margin-top: var(--space-10);
}

.benchmark-chart h4 {
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
  text-align: left;
}

.benchmark-bars {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.benchmark-bar {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.benchmark-bar-label {
  width: 100px;
  font-size: var(--text-sm);
  text-align: left;
}

.benchmark-bar-label.highlight {
  color: var(--emerald-500);
}

.benchmark-bar-track {
  flex: 1;
  height: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--space-1);
  overflow: hidden;
}

.benchmark-bar-fill {
  height: 100%;
  border-radius: var(--space-1);
  background: rgba(100, 116, 139, 0.5);
}

.benchmark-bar-fill.highlight {
  background: var(--gradient-emerald);
}

.benchmark-bar-value {
  width: 80px;
  font-size: var(--text-sm);
  color: var(--text-muted);
  text-align: right;
}

.benchmark-disclaimer {
  font-size: var(--text-xs);
  color: var(--text-faint);
  margin-top: var(--space-4);
  text-align: left;
}

/* -----------------------------------------------------------------------------
   Features Section
   ----------------------------------------------------------------------------- */
.features-section {
  padding: var(--space-24) var(--space-5);
  background: rgba(15, 23, 42, 0.5);
}

.features-container {
  max-width: var(--max-width-xl);
  margin: 0 auto;
}

.features-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.features-header h2 {
  font-size: var(--text-6xl);
  font-weight: var(--font-semibold);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.feature-icon {
  font-size: 32px;
  margin-bottom: var(--space-4);
}

.feature-title {
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-3);
}

.feature-desc {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

.feature-highlights {
  margin-top: var(--space-5);
}

.feature-highlights li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-2);
}

.feature-highlights li::before {
  content: '✓';
  color: var(--emerald-500);
}

/* -----------------------------------------------------------------------------
   Tabs Section
   ----------------------------------------------------------------------------- */
.tabs-section {
  padding: var(--space-16) var(--space-5) var(--space-24);
  max-width: var(--max-width-xl);
  margin: 0 auto;
}

.tabs-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.tabs-header h2 {
  font-size: var(--text-6xl);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-4);
}

.tabs-header p {
  font-size: var(--text-lg);
  color: var(--text-secondary);
}

.tabs-nav {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-10);
}

.tab-btn {
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  transition: all var(--transition-base);
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.tab-btn.active {
  background: var(--gradient-emerald);
  color: white;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  padding: var(--space-10);
}

.tab-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  padding: var(--space-10);
}

.tab-info h3 {
  font-size: var(--text-4xl);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-5);
}

.tab-info ul {
  margin-bottom: var(--space-6);
}

.tab-info li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-md);
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
}

.tab-info li::before {
  content: '✓';
  color: var(--emerald-500);
}

.tab-screenshot {
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-xl);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

/* -----------------------------------------------------------------------------
   Testimonials
   ----------------------------------------------------------------------------- */
.testimonials-section {
  padding: var(--space-24) var(--space-5);
  max-width: var(--max-width-xl);
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.testimonial-card {
  padding: var(--space-8);
}

.testimonial-stars {
  color: var(--gold);
  margin-bottom: var(--space-4);
}

.testimonial-text {
  font-size: var(--text-md);
  line-height: var(--leading-loose);
  margin-bottom: var(--space-6);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-violet);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
}

.testimonial-name {
  font-weight: var(--font-semibold);
  font-size: var(--text-base);
}

.testimonial-role {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* -----------------------------------------------------------------------------
   Pricing
   ----------------------------------------------------------------------------- */
.pricing-section {
  padding: var(--space-10) var(--space-5) var(--space-20);
  max-width: var(--max-width-sm);
  margin: 0 auto;
}

.pricing-card {
  padding: var(--space-10);
}

.pricing-toggle {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
  cursor: pointer;
}

.pricing-toggle input {
  width: 18px;
  height: 18px;
  accent-color: var(--emerald-500);
}

.pricing-toggle span {
  font-size: var(--text-md);
  font-weight: var(--font-medium);
}

.pricing-slider-group {
  margin-bottom: var(--space-8);
}

.pricing-slider-label {
  display: block;
  font-size: var(--text-base);
  color: var(--text-secondary);
  margin-bottom: var(--space-3);
}

.pricing-slider-label strong {
  color: var(--text-primary);
}

.pricing-result {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  text-align: center;
  margin-bottom: var(--space-6);
}

.pricing-result-label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-2);
}

.pricing-result-value {
  font-size: var(--text-7xl);
  font-weight: var(--font-bold);
  color: var(--emerald-500);
}

.pricing-result-value span {
  font-size: var(--text-2xl);
  color: var(--text-muted);
}

.pricing-result-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-top: var(--space-2);
}

.pricing-footer {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: var(--space-4);
}

/* -----------------------------------------------------------------------------
   Comparison Table
   ----------------------------------------------------------------------------- */
.comparison-section {
  padding: var(--space-16) var(--space-5);
  background: rgba(15, 23, 42, 0.5);
}

.comparison-container {
  max-width: var(--max-width-lg);
  margin: 0 auto;
}

.comparison-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.comparison-header h2 {
  font-size: var(--text-5xl);
  font-weight: var(--font-semibold);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: var(--space-4);
  text-align: center;
}

.comparison-table th {
  color: var(--text-muted);
  font-weight: var(--font-medium);
  border-bottom: 1px solid var(--border-primary);
}

.comparison-table th.highlight {
  color: var(--emerald-500);
  font-weight: var(--font-semibold);
}

.comparison-table td:first-child {
  text-align: left;
  font-size: var(--text-base);
}

.comparison-table td {
  border-bottom: 1px solid var(--border-secondary);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.comparison-check {
  color: var(--emerald-500);
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
}

.comparison-x {
  color: var(--error);
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  opacity: 0.7;
}

.comparison-text {
  color: var(--emerald-500);
  font-size: var(--text-sm);
}

/* -----------------------------------------------------------------------------
   FAQ
   ----------------------------------------------------------------------------- */
.faq-section {
  padding: var(--space-20) var(--space-5);
  max-width: var(--max-width-md);
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.faq-header h2 {
  font-size: var(--text-5xl);
  font-weight: var(--font-semibold);
}

.faq-item {
  margin-bottom: var(--space-3);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: var(--space-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-md);
  font-weight: var(--font-medium);
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  color: var(--text-muted);
  transition: transform var(--transition-base);
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 var(--space-5) var(--space-5);
  color: var(--text-secondary);
  font-size: var(--text-base);
  line-height: var(--leading-loose);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

/* -----------------------------------------------------------------------------
   Enterprise CTA
   ----------------------------------------------------------------------------- */
.enterprise-cta {
  padding: var(--space-16) var(--space-5);
  background: rgba(139, 92, 246, 0.05);
  border-top: 1px solid rgba(139, 92, 246, 0.1);
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
  text-align: center;
}

.enterprise-cta h3 {
  font-size: var(--text-3xl);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-3);
}

.enterprise-cta p {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
}

/* -----------------------------------------------------------------------------
   CTA Banner
   ----------------------------------------------------------------------------- */
.cta-banner {
  padding: var(--space-20) var(--space-5);
  text-align: center;
  position: relative;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: var(--text-6xl);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-2);
  position: relative;
}

.cta-banner .price {
  font-size: var(--text-xl);
  color: var(--text-muted);
  margin-bottom: var(--space-6);
  position: relative;
}

.cta-banner .no-cc-badge {
  margin-bottom: var(--space-6);
  position: relative;
}

.cta-banner .cta-btn {
  position: relative;
}

/* -----------------------------------------------------------------------------
   Footer
   ----------------------------------------------------------------------------- */
.footer {
  padding: var(--space-16) var(--space-5) var(--space-10);
  border-top: 1px solid var(--border-primary);
  background: rgba(0, 0, 0, 0.3);
}

.footer-container {
  max-width: var(--max-width-xl);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: var(--space-10);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  color: var(--emerald-500);
}

.footer-tagline {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
}

.trust-badges {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-top: var(--space-3);
}

.footer-column h4 {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-4);
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-column a {
  font-size: var(--text-base);
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  max-width: var(--max-width-xl);
  margin: var(--space-10) auto 0;
  padding-top: var(--space-6);
  border-top: 1px solid var(--border-secondary);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: var(--text-sm);
  color: var(--text-faint);
}

.footer-bottom-badges {
  display: flex;
  gap: var(--space-4);
}

/* -----------------------------------------------------------------------------
   Page Headers
   ----------------------------------------------------------------------------- */
.page-header {
  position: relative;
  padding: var(--space-20) var(--space-5) var(--space-10);
  text-align: center;
  overflow: hidden;
}

.page-header-content {
  position: relative;
  z-index: 10;
  max-width: var(--max-width-md);
  margin: 0 auto;
}

.page-header h1 {
  font-size: var(--text-7xl);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-5);
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-header p {
  font-size: var(--text-xl);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

/* -----------------------------------------------------------------------------
   Changelog
   ----------------------------------------------------------------------------- */
.changelog-section {
  padding: var(--space-10) var(--space-5) var(--space-24);
  max-width: var(--max-width-md);
  margin: 0 auto;
}

.changelog-release {
  margin-bottom: var(--space-12);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid var(--border-secondary);
}

.changelog-release:last-child {
  border-bottom: none;
}

.changelog-release-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.changelog-version {
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
}

.changelog-version.latest {
  background: var(--gradient-emerald);
}

.changelog-version.older {
  background: rgba(255, 255, 255, 0.1);
}

.changelog-date {
  font-size: var(--text-base);
  color: var(--text-muted);
}

.changelog-title {
  font-size: var(--text-3xl);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-4);
}

.changelog-highlights {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-bottom: var(--space-5);
}

.changelog-highlight {
  padding: var(--space-1) var(--space-3);
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald-500);
  border-radius: var(--space-1);
  font-size: var(--text-xs);
}

.changelog-changes {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.changelog-change {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.changelog-change-tag {
  padding: var(--space-1) var(--space-2);
  border-radius: var(--space-1);
  font-size: 10px;
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  flex-shrink: 0;
}

.changelog-change-text {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-normal);
}

/* -----------------------------------------------------------------------------
   Login Page
   ----------------------------------------------------------------------------- */
.login-page {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.login-card {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 420px;
  padding: var(--space-10);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.login-header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.login-logo {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-4);
  background: var(--gradient-emerald);
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  animation: glow 4s ease-in-out infinite;
}

.login-title {
  font-size: var(--text-5xl);
  font-weight: var(--font-bold);
  margin: 0;
  background: linear-gradient(135deg, var(--emerald-500) 0%, var(--emerald-200) 50%, var(--emerald-500) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
}

.login-tagline {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-top: var(--space-2);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.login-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-sm);
}

.login-forgot {
  color: var(--emerald-500);
  font-weight: var(--font-medium);
}

.login-footer {
  text-align: center;
  margin-top: var(--space-8);
  color: var(--text-secondary);
  font-size: var(--text-base);
}

.login-footer a {
  color: var(--emerald-500);
  font-weight: var(--font-semibold);
}

/* Password visibility toggle */
.password-field {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: var(--space-4);
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: var(--text-lg);
  cursor: pointer;
}

/* -----------------------------------------------------------------------------
   Download Page
   ----------------------------------------------------------------------------- */
.download-page {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-16) var(--space-5);
}

.download-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 700px;
}

.download-header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.download-logo {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-4);
  background: var(--gradient-emerald);
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  animation: glow 4s ease-in-out infinite;
}

.download-header h1 {
  font-size: var(--text-6xl);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-3);
}

.download-header p {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
}

.download-section {
  padding: var(--space-8);
  margin-bottom: var(--space-6);
}

.download-section h3 {
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-5);
}

.platform-buttons {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-bottom: var(--space-5);
}

.platform-btn {
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  transition: all var(--transition-fast);
}

.platform-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.platform-btn.active {
  background: rgba(16, 185, 129, 0.2);
  color: var(--emerald-500);
}

.download-meta {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: var(--space-3);
}

.download-meta a {
  color: var(--emerald-500);
}

/* Optional Signup */
.signup-options {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.signup-option-btn {
  flex: 1;
  padding: var(--space-3);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  transition: all var(--transition-fast);
}

.signup-option-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.signup-option-btn.active {
  background: rgba(16, 185, 129, 0.2);
  color: var(--emerald-500);
}

.skip-signup-text {
  font-size: var(--text-base);
  color: var(--text-secondary);
  text-align: center;
  padding: var(--space-5) 0;
}

/* -----------------------------------------------------------------------------
   Enterprise Page
   ----------------------------------------------------------------------------- */
.enterprise-badge {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  background: rgba(139, 92, 246, 0.2);
  color: var(--violet-400);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--font-medium);
  margin-bottom: var(--space-6);
}

.enterprise-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  padding: var(--space-10) var(--space-5) var(--space-16);
  max-width: var(--max-width-lg);
  margin: 0 auto;
}

.enterprise-feature {
  padding: var(--space-6);
  text-align: center;
}

.enterprise-feature-icon {
  font-size: 32px;
  margin-bottom: var(--space-3);
}

.enterprise-feature h3 {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-2);
}

.enterprise-feature p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

.contact-form-container {
  max-width: var(--max-width-sm);
  margin: 0 auto;
  padding: 0 var(--space-5) var(--space-24);
}

.contact-form {
  padding: var(--space-12);
}

.contact-form-header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.contact-form-header h2 {
  font-size: var(--text-3xl);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-2);
}

.contact-form-header p {
  font-size: var(--text-base);
  color: var(--text-secondary);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.contact-form-footer {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: var(--space-4);
}

.contact-form-footer a {
  color: var(--emerald-500);
}

/* -----------------------------------------------------------------------------
   Documentation Page
   ----------------------------------------------------------------------------- */
.docs-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-10);
  padding: var(--space-10) var(--space-5) var(--space-24);
  max-width: var(--max-width-xl);
  margin: 0 auto;
}

.docs-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.docs-nav {
  padding: var(--space-4);
}

.docs-nav-section {
  margin-bottom: var(--space-5);
}

.docs-nav-title {
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: var(--space-2) var(--space-4);
}

.docs-nav-link {
  display: block;
  padding: var(--space-3) var(--space-4);
  color: var(--text-secondary);
  font-size: var(--text-base);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.docs-nav-link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
}

.docs-nav-link.active {
  background: rgba(16, 185, 129, 0.1);
  color: var(--emerald-500);
}

.docs-content {
  padding: var(--space-10);
}

.docs-content h2 {
  font-size: var(--text-4xl);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-6);
}

.docs-content h3 {
  font-size: var(--text-2xl);
  font-weight: var(--font-semibold);
  margin: var(--space-10) 0 var(--space-4);
}

.docs-content p {
  color: var(--text-secondary);
  line-height: var(--leading-loose);
  margin-bottom: var(--space-6);
}

.docs-code {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  font-family: var(--font-mono);
  font-size: var(--text-base);
  color: var(--emerald-500);
  margin-bottom: var(--space-6);
  overflow-x: auto;
}

.docs-tip {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  margin-top: var(--space-10);
}

.docs-tip h4 {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-2);
  color: var(--emerald-500);
}

.docs-tip p {
  color: var(--text-secondary);
  font-size: var(--text-base);
  line-height: var(--leading-loose);
  margin: 0;
}

/* -----------------------------------------------------------------------------
   Blog Page
   ----------------------------------------------------------------------------- */
/* Blog Section Container */
.blog-section {
  padding: var(--space-10) var(--space-5) var(--space-16);
}

.blog-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-6);
  max-width: var(--max-width-md);
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  padding: var(--space-10) var(--space-5) var(--space-24);
  max-width: var(--max-width-lg);
  margin: 0 auto;
}

.blog-date {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-3);
}

.blog-title {
  font-size: var(--text-2xl);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-3);
  line-height: var(--leading-snug);
  color: var(--text-primary);
}

.blog-card {
  padding: var(--space-8);
  cursor: pointer;
  transition: all var(--transition-slow);
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.3);
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.blog-card h3 {
  font-size: var(--text-2xl);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-3);
  line-height: var(--leading-snug);
}

.blog-excerpt {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-loose);
  margin-bottom: var(--space-5);
}

.blog-read-more {
  color: var(--emerald-500);
  font-size: var(--text-base);
  font-weight: var(--font-medium);
}

/* -----------------------------------------------------------------------------
   Documentation Pages
   ----------------------------------------------------------------------------- */
.docs-content {
  padding: var(--space-10) var(--space-5) var(--space-20);
}

.docs-container {
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: var(--space-10);
  max-width: var(--max-width-xl);
  margin: 0 auto;
}

.docs-article {
  padding: var(--space-10);
}

.docs-article h2 {
  font-size: var(--text-3xl);
  font-weight: var(--font-semibold);
  margin: var(--space-10) 0 var(--space-5);
  color: var(--text-primary);
}

.docs-article h2:first-of-type {
  margin-top: var(--space-6);
}

.docs-article h3 {
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  margin: var(--space-8) 0 var(--space-4);
  color: var(--text-primary);
}

.docs-article p {
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-4);
}

.docs-article a {
  color: var(--emerald-500);
}

.docs-article a:hover {
  text-decoration: underline;
}

.docs-article ol,
.docs-article ul {
  margin: var(--space-4) 0;
  padding-left: var(--space-6);
  color: var(--text-secondary);
}

.docs-article li {
  margin-bottom: var(--space-3);
  line-height: var(--leading-relaxed);
}

.docs-article ol {
  list-style: decimal;
}

.docs-article ul {
  list-style: disc;
}

.docs-article code {
  background: rgba(16, 185, 129, 0.1);
  color: var(--emerald-400);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: var(--text-sm);
}

.docs-article pre {
  background: var(--bg-secondary);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  overflow-x: auto;
  margin: var(--space-4) 0;
}

.docs-article pre code {
  background: none;
  padding: 0;
  color: var(--emerald-400);
}

.docs-tip,
.docs-note {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  margin: var(--space-5) 0;
  color: var(--text-secondary);
}

.docs-tip strong,
.docs-note strong {
  color: var(--emerald-500);
}

.docs-nav-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.docs-nav-sidebar h4 {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: var(--space-4);
}

.docs-nav-sidebar ul {
  list-style: none;
}

.docs-nav-sidebar li {
  margin-bottom: var(--space-2);
}

.docs-nav-sidebar a {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  display: block;
  padding: var(--space-2) 0;
  transition: color var(--transition-fast);
}

.docs-nav-sidebar a:hover {
  color: var(--text-primary);
}

.docs-nav-sidebar a.active {
  color: var(--emerald-500);
}

/* -----------------------------------------------------------------------------
   Blog Article Pages
   ----------------------------------------------------------------------------- */
.blog-article-content {
  padding: var(--space-10) var(--space-5) var(--space-20);
}

.blog-article-container {
  max-width: var(--max-width-md);
  margin: 0 auto;
}

.blog-article {
  padding: var(--space-10);
}

.blog-article .post-meta {
  color: var(--text-muted);
  font-size: var(--text-sm);
  margin-bottom: var(--space-8);
}

.blog-article h2 {
  font-size: var(--text-2xl);
  font-weight: var(--font-semibold);
  margin: var(--space-10) 0 var(--space-4);
  color: var(--text-primary);
}

.blog-article p {
  color: var(--text-secondary);
  line-height: var(--leading-loose);
  margin-bottom: var(--space-5);
}

.blog-article a {
  color: var(--emerald-500);
}

.blog-article em {
  color: var(--text-muted);
  font-style: italic;
}

.blog-article strong {
  color: var(--text-primary);
  font-weight: var(--font-semibold);
}

/* -----------------------------------------------------------------------------
   Responsive Design
   ----------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-10);
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-badges {
    justify-content: center;
  }
  
  .social-proof {
    justify-content: center;
  }
  
  .signup-card {
    max-width: 420px;
    margin: 0 auto;
  }
  
  .features-grid,
  .testimonials-grid,
  .enterprise-features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .tab-content {
    grid-template-columns: 1fr;
  }
  
  .docs-container {
    grid-template-columns: 1fr;
  }
  
  .docs-sidebar {
    position: static;
  }
  
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --text-8xl: 40px;
    --text-7xl: 36px;
    --text-6xl: 32px;
    --text-5xl: 28px;
  }
  
  .nav-container {
    padding: var(--space-4) var(--space-5);
  }
  
  .nav-links {
    display: none;
    /* TODO: Mobile menu implementation */
  }
  
  .hero {
    min-height: auto;
    padding: var(--space-10) 0;
  }
  
  .hero-headline {
    font-size: var(--text-7xl);
  }
  
  .stats-container {
    flex-direction: column;
    gap: var(--space-8);
  }
  
  .features-grid,
  .testimonials-grid,
  .enterprise-features,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .benchmark-stats {
    flex-direction: column;
    gap: var(--space-6);
  }
  
  .tabs-nav {
    flex-wrap: wrap;
  }
  
  .comparison-table {
    font-size: var(--text-sm);
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: var(--space-2);
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }
  
  .platform-buttons {
    flex-direction: column;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }

  .docs-container {
    grid-template-columns: 1fr;
  }

  .docs-nav-sidebar {
    position: static;
    order: -1;
    margin-bottom: var(--space-6);
    padding: var(--space-4);
    background: var(--bg-card);
    border-radius: var(--radius-lg);
  }

  .docs-article {
    padding: var(--space-6);
  }

  .blog-article {
    padding: var(--space-6);
  }
}

/* -----------------------------------------------------------------------------
   What's New Section
   ----------------------------------------------------------------------------- */
.whats-new-section {
  padding: var(--space-16) var(--space-5);
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.08) 0%, transparent 100%);
  border-top: 1px solid rgba(16, 185, 129, 0.15);
  border-bottom: 1px solid rgba(16, 185, 129, 0.15);
}

.whats-new-container {
  max-width: var(--max-width-lg);
  margin: 0 auto;
  text-align: center;
}

.whats-new-container h2 {
  font-size: var(--text-5xl);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-10);
  background: linear-gradient(135deg, var(--emerald-500), var(--emerald-200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.improvements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.improvement-card {
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  transition: all var(--transition-slow);
}

.improvement-card:hover {
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(16, 185, 129, 0.15);
}

.improvement-metric {
  font-size: var(--text-6xl);
  font-weight: var(--font-bold);
  background: linear-gradient(135deg, var(--emerald-500), var(--indigo-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.improvement-label {
  font-size: var(--text-base);
  color: var(--text-secondary);
  font-weight: var(--font-medium);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-base);
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

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

@media (max-width: 480px) {
  .improvements-grid {
    grid-template-columns: 1fr;
  }

  .improvement-metric {
    font-size: var(--text-5xl);
  }
}

@media (max-width: 480px) {
  .hero-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .providers-grid {
    justify-content: center;
  }
  
  .provider-logo {
    padding: var(--space-2);
  }
  
  .curl-command {
    flex-direction: column;
    gap: var(--space-3);
  }
  
  .signup-options {
    flex-direction: column;
  }
}
