/* ==========================================================================
   Rick Jefferson Digital Store - KaliVibeCoding Aesthetic
   Ocean Drive Pink | Malibu Sky Blue | Midnight Grid Charcoal
   ========================================================================== */

:root {
  --ocean-pink: #FF69B4;
  --malibu-blue: #87CEEB;
  --midnight: #1E1E24;
  --midnight-dark: #0a0a0f;
  --electric-white: #F0F0F0;
  --sunset-gold: #FFD700;
  --a1-green: #4ade80;
  --gradient: linear-gradient(135deg, var(--ocean-pink) 0%, var(--malibu-blue) 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--midnight-dark);
  color: var(--electric-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Animated Background */
.bg-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 105, 180, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 105, 180, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
}

.bg-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.bg-glow-1 {
  top: -200px;
  right: -200px;
  background: var(--ocean-pink);
  animation: float 20s ease-in-out infinite;
}

.bg-glow-2 {
  bottom: -200px;
  left: -200px;
  background: var(--malibu-blue);
  animation: float 25s ease-in-out infinite reverse;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 0;
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 105, 180, 0.1);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--electric-white);
}

.logo-icon {
  font-size: 28px;
}

.logo-text {
  font-family: 'Lobster', cursive;
  font-size: 24px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: var(--electric-white);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--ocean-pink);
}

.nav-cta {
  background: var(--gradient);
  color: var(--midnight);
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.nav-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 105, 180, 0.5);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 20px 80px;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 105, 180, 0.1);
  border: 1px solid var(--ocean-pink);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  color: var(--ocean-pink);
  margin-bottom: 30px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(240, 240, 240, 0.7);
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gradient);
  color: var(--midnight);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(255, 105, 180, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--electric-white);
  border: 2px solid var(--malibu-blue);
}

.btn-secondary:hover {
  background: var(--malibu-blue);
  color: var(--midnight);
}

.btn-outline {
  background: transparent;
  color: var(--electric-white);
  border: 2px solid var(--ocean-pink);
}

.btn-outline:hover {
  background: var(--ocean-pink);
  color: var(--midnight);
}

.btn-small {
  padding: 10px 25px;
  font-size: 14px;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 14px;
  color: rgba(240, 240, 240, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Floating Cards */
.hero-visual {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  display: none;
}

@media (min-width: 1200px) {
  .hero-visual {
    display: block;
  }
}

.floating-card {
  position: absolute;
  background: rgba(30, 30, 36, 0.9);
  border: 1px solid rgba(255, 105, 180, 0.3);
  padding: 15px 25px;
  border-radius: 15px;
  font-weight: 600;
  white-space: nowrap;
  animation: floatCard 6s ease-in-out infinite;
}

.card-1 { top: 0; right: 0; animation-delay: 0s; }
.card-2 { top: 80px; right: 100px; animation-delay: 1s; }
.card-3 { top: 160px; right: 50px; animation-delay: 2s; }
.card-4 { top: 240px; right: 120px; animation-delay: 3s; }

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

/* Sections */
.section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: rgba(135, 206, 235, 0.1);
  border: 1px solid var(--malibu-blue);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  color: var(--malibu-blue);
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: rgba(240, 240, 240, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* Credit Section */
.credit-section {
  background: linear-gradient(180deg, var(--midnight-dark) 0%, rgba(255, 105, 180, 0.05) 50%, var(--midnight-dark) 100%);
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.pricing-card {
  background: rgba(30, 30, 36, 0.8);
  border: 1px solid rgba(255, 105, 180, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: var(--ocean-pink);
}

.pricing-card.featured {
  border-color: var(--ocean-pink);
  background: linear-gradient(180deg, rgba(255, 105, 180, 0.1) 0%, rgba(30, 30, 36, 0.9) 100%);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: var(--midnight);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.price {
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price span {
  font-size: 1rem;
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  margin: 30px 0;
  text-align: left;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(240, 240, 240, 0.8);
}

/* Products Grid */
.category {
  margin-bottom: 60px;
}

.category-title {
  font-size: 1.5rem;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(255, 105, 180, 0.3);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.products-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.product-card {
  background: rgba(30, 30, 36, 0.8);
  border: 1px solid rgba(135, 206, 235, 0.2);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--malibu-blue);
  box-shadow: 0 20px 40px rgba(135, 206, 235, 0.1);
}

.product-card.small {
  padding: 25px;
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--sunset-gold);
  color: var(--midnight);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.product-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.product-card p {
  font-size: 0.9rem;
  color: rgba(240, 240, 240, 0.6);
  margin-bottom: 20px;
}

.product-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--a1-green);
  margin-bottom: 20px;
}

/* AI Section */
.ai-section {
  background: linear-gradient(180deg, var(--midnight-dark) 0%, rgba(135, 206, 235, 0.05) 50%, var(--midnight-dark) 100%);
}

.ai-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.ai-card {
  background: rgba(30, 30, 36, 0.9);
  border: 1px solid rgba(135, 206, 235, 0.3);
  border-radius: 25px;
  padding: 50px 40px;
  text-align: center;
  position: relative;
}

.ai-card.featured {
  border-color: var(--malibu-blue);
  background: linear-gradient(180deg, rgba(135, 206, 235, 0.1) 0%, rgba(30, 30, 36, 0.9) 100%);
}

.ai-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.ai-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.ai-price {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px;
}

.ai-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 30px;
}

.ai-card li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(240, 240, 240, 0.8);
}

.ai-card li::before {
  content: "✓ ";
  color: var(--a1-green);
  font-weight: bold;
}

/* Trust Section */
.trust-section {
  padding: 60px 0;
  border-top: 1px solid rgba(255, 105, 180, 0.1);
  border-bottom: 1px solid rgba(255, 105, 180, 0.1);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.trust-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.trust-item h4 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.trust-item p {
  font-size: 0.85rem;
  color: rgba(240, 240, 240, 0.6);
}

/* Footer */
.footer {
  padding: 80px 0 40px;
  background: var(--midnight);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.footer-brand p {
  color: rgba(240, 240, 240, 0.6);
  margin: 20px 0;
}

.footer-tagline {
  color: var(--ocean-pink) !important;
  font-style: italic;
}

.footer-links h5 {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--malibu-blue);
}

.footer-links a {
  display: block;
  color: rgba(240, 240, 240, 0.6);
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.3s;
}

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

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  color: rgba(240, 240, 240, 0.4);
  font-size: 0.85rem;
}

.footer-bottom p {
  margin: 5px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .hero {
    padding: 100px 20px 60px;
  }
  
  .hero-stats {
    gap: 30px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .ai-grid {
    grid-template-columns: 1fr;
  }
}

/* Animations on scroll */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card, .pricing-card, .ai-card {
  animation: fadeInUp 0.6s ease-out;
}
