/* SuccessPortal Landing Pages - Base Styles */
/* Design System: Clean, intentional, modern, modular, conversion-driven */

:root {
  /* Primary Brand Colors */
  --sp-primary: #6366f1;
  --sp-primary-dark: #4f46e5;
  --sp-primary-light: #818cf8;
  
  /* Secondary Colors */
  --sp-secondary: #10b981;
  --sp-secondary-dark: #059669;
  
  /* Accent Colors */
  --sp-accent: #f59e0b;
  
  /* Neutrals */
  --sp-dark: #111827;
  --sp-gray-900: #1f2937;
  --sp-gray-800: #374151;
  --sp-gray-700: #4b5563;
  --sp-gray-600: #6b7280;
  --sp-gray-500: #9ca3af;
  --sp-gray-400: #d1d5db;
  --sp-gray-300: #e5e7eb;
  --sp-gray-200: #f3f4f6;
  --sp-gray-100: #f9fafb;
  --sp-white: #ffffff;
  
  /* Ecosystem Brand Colors */
  --sp-atw-color: #6366f1;
  --sp-ccc-color: #10b981;
  --sp-jarod-color: #f59e0b;
  
  /* Typography */
  --sp-font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --sp-font-display: 'Plus Jakarta Sans', var(--sp-font-sans);
  
  /* Spacing Scale */
  --sp-space-xs: 0.25rem;
  --sp-space-sm: 0.5rem;
  --sp-space-md: 1rem;
  --sp-space-lg: 1.5rem;
  --sp-space-xl: 2rem;
  --sp-space-2xl: 3rem;
  --sp-space-3xl: 4rem;
  --sp-space-4xl: 6rem;
  
  /* Border Radius */
  --sp-radius-sm: 0.375rem;
  --sp-radius-md: 0.5rem;
  --sp-radius-lg: 0.75rem;
  --sp-radius-xl: 1rem;
  --sp-radius-2xl: 1.5rem;
  --sp-radius-full: 9999px;
  
  /* Shadows */
  --sp-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --sp-shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --sp-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --sp-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Base Typography */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sp-font-sans);
  color: var(--sp-gray-800);
  line-height: 1.6;
}

/* Utility Classes */
.sp-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: var(--sp-space-lg);
  padding-right: var(--sp-space-lg);
}

.sp-section {
  padding-top: var(--sp-space-4xl);
  padding-bottom: var(--sp-space-4xl);
}

/* Gradient Backgrounds */
.sp-gradient-primary {
  background: linear-gradient(135deg, var(--sp-primary) 0%, var(--sp-primary-dark) 100%);
}

.sp-gradient-dark {
  background: linear-gradient(135deg, var(--sp-dark) 0%, var(--sp-gray-900) 100%);
}

.sp-gradient-mesh {
  background-color: var(--sp-gray-100);
  background-image: 
    radial-gradient(at 40% 20%, rgba(99, 102, 241, 0.1) 0px, transparent 50%),
    radial-gradient(at 80% 0%, rgba(16, 185, 129, 0.1) 0px, transparent 50%),
    radial-gradient(at 0% 50%, rgba(245, 158, 11, 0.1) 0px, transparent 50%);
}

/* Button Styles */
.sp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: var(--sp-radius-lg);
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}

.sp-btn-primary {
  background: var(--sp-primary);
  color: var(--sp-white);
}

.sp-btn-primary:hover {
  background: var(--sp-primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--sp-shadow-lg);
}

.sp-btn-secondary {
  background: var(--sp-white);
  color: var(--sp-primary);
  border: 2px solid var(--sp-primary);
}

.sp-btn-secondary:hover {
  background: var(--sp-primary);
  color: var(--sp-white);
}

/* Ecosystem Colors */
.sp-atw { color: var(--sp-atw-color); }
.sp-ccc { color: var(--sp-ccc-color); }
.sp-jarod { color: var(--sp-jarod-color); }

.sp-bg-atw { background-color: var(--sp-atw-color); }
.sp-bg-ccc { background-color: var(--sp-ccc-color); }
.sp-bg-jarod { background-color: var(--sp-jarod-color); }

/* Card Styles */
.sp-card {
  background: var(--sp-white);
  border-radius: var(--sp-radius-xl);
  box-shadow: var(--sp-shadow-md);
  padding: var(--sp-space-xl);
  transition: all 0.3s ease;
}

.sp-card:hover {
  box-shadow: var(--sp-shadow-xl);
  transform: translateY(-2px);
}

