/**
 * Tu Devocionario Mariano - Landing Page Styles
 * Premium Design with Dark/Light Theme
 * Parallax effects, animations, and glassmorphism
 */

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */

:root {
  /* Dark Theme Colors (Default) */
  --navy-deep: #0F172A;
  --navy-mid: #1E2A44;
  --navy-light: #2D3A52;
  
  --gold-sacred: #D4AF77;
  --gold-light: #E8C48A;
  --gold-dark: #B89B5A;
  
  --ivory: #F8F1E3;
  --ivory-70: rgba(248, 241, 227, 0.7);
  --ivory-50: rgba(248, 241, 227, 0.5);
  --ivory-30: rgba(248, 241, 227, 0.3);
  
  --teal-accent: #4A9B9E;
  --burgundy-accent: #8B3A42;
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-blur: 16px;
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  
  /* Typography */
  --font-serif: 'Playfair Display', 'Merriweather', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Spacing */
  --space-4: 4px;
  --space-8: 8px;
  --space-12: 12px;
  --space-16: 16px;
  --space-20: 20px;
  --space-24: 24px;
  --space-32: 32px;
  --space-48: 48px;
  --space-64: 64px;
  --space-80: 80px;
  --space-96: 96px;
  --space-128: 128px;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 999px;
  
  /* Animations */
  --duration-fast: 150ms;
  --duration-normal: 300ms;
  --duration-slow: 500ms;
  --duration-dramatic: 700ms;
  
  --ease-out: cubic-bezier(0.0, 0, 0.2, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ============================================
   LIGHT THEME
   ============================================ */

[data-theme="light"] {
  --navy-deep: #FAF7F2;
  --navy-mid: #FFFFFF;
  --navy-light: #F5F0E8;
  
  --gold-sacred: #8B6914;
  --gold-light: #A67C00;
  --gold-dark: #6B5010;
  
  --ivory: #2C2C2E;
  --ivory-70: rgba(44, 44, 46, 0.7);
  --ivory-50: rgba(44, 44, 46, 0.5);
  --ivory-30: rgba(44, 44, 46, 0.3);
  
  --glass-bg: rgba(255, 255, 255, 0.9);
  --glass-border: rgba(139, 105, 20, 0.15);
  --glass-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* ============================================
   BASE RESET & TYPOGRAPHY
   ============================================ */

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

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

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  color: var(--ivory);
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Light theme body */
[data-theme="light"] body {
  background: linear-gradient(180deg, #FAF7F2 0%, #FFFFFF 50%, #F5F0E8 100%);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: var(--gold-sacred);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

a:hover {
  color: var(--gold-light);
}

/* ============================================
   CELESTIAL BACKGROUND
   ============================================ */

.stars-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.star {
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: twinkle 4s ease-in-out infinite;
  box-shadow: 0 0 3px rgba(212, 175, 119, 0.15);
}

[data-theme="light"] .star {
  display: none;
}

/* Light theme bubbles */
.light-bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, 
    rgba(255, 255, 255, 0.9) 0%, 
    rgba(212, 175, 119, 0.3) 50%, 
    rgba(139, 105, 20, 0.1) 100%);
  box-shadow: 
    inset -2px -2px 4px rgba(0, 0, 0, 0.05),
    inset 2px 2px 4px rgba(255, 255, 255, 0.8),
    0 4px 8px rgba(139, 105, 20, 0.1);
  animation: floatUp var(--float-duration, 15s) ease-in-out infinite;
  opacity: 0;
  pointer-events: none;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

@keyframes floatUp {
  0% { opacity: 0; transform: translateY(100vh) scale(0.5); }
  10% { opacity: 0.7; transform: translateY(80vh) scale(0.7); }
  50% { opacity: 0.5; transform: translateY(40vh) scale(1); }
  90% { opacity: 0.3; transform: translateY(-10vh) scale(0.8); }
  100% { opacity: 0; transform: translateY(-20vh) scale(0.6); }
}

/* ============================================
   CONTAINER
   ============================================ */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-24);
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-16);
  }
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-16) var(--space-24);
  transition: all var(--duration-normal) var(--ease-out);
}

.nav.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid var(--glass-border);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  color: var(--ivory);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

.nav-logo:hover {
  color: var(--gold-sacred);
}

.nav-logo-icon {
  font-size: 1.75rem;
  color: var(--gold-sacred);
}

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

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

.nav-link {
  color: var(--ivory-70);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

.nav-link:hover {
  color: var(--gold-sacred);
}

.nav-theme {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  color: var(--ivory);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
}

.nav-theme:hover {
  background: var(--glass-bg);
  border-color: var(--gold-sacred);
}

.nav-theme .icon-moon {
  display: none;
}

[data-theme="light"] .nav-theme .icon-sun {
  display: none;
}

[data-theme="light"] .nav-theme .icon-moon {
  display: block;
}

.nav-menu {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  color: var(--ivory);
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy-deep);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-normal) var(--ease-out);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: var(--space-24);
}

.mobile-menu-link {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--ivory);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

.mobile-menu-link:hover {
  color: var(--gold-sacred);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  padding: var(--space-12) var(--space-24);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--duration-fast) var(--ease-out);
}

.btn-lg {
  padding: var(--space-16) var(--space-32);
  font-size: 1.125rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-sacred), var(--gold-light));
  color: var(--navy-deep);
  box-shadow: 0 4px 16px rgba(212, 175, 119, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 119, 0.4);
  color: var(--navy-deep);
}

.btn-secondary {
  background: var(--glass-bg);
  color: var(--ivory);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--gold-sacred);
  color: var(--gold-sacred);
}

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

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-128) var(--space-24) var(--space-64);
  position: relative;
  overflow: hidden;
}

.hero-parallax {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  pointer-events: none;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 119, 0.15) 0%, transparent 70%);
  animation: heroGlow 4s ease-in-out infinite;
}

@keyframes heroGlow {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-cross {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 200px;
  color: var(--gold-sacred);
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

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

.hero-content {
  text-align: center;
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.hero-app-icon {
  margin-bottom: var(--space-24);
  animation: fadeInUp 0.6s var(--ease-out) both;
}

.hero-icon-img {
  width: 120px;
  height: 120px;
  border-radius: 24px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 8px 20px rgba(0, 0, 0, 0.2),
    0 0 40px rgba(212, 175, 119, 0.2);
  object-fit: cover;
  border: 3px solid var(--gold-sacred);
}

@media (max-width: 768px) {
  .hero-icon-img {
    width: 100px;
    height: 100px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  padding: var(--space-8) var(--space-20);
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-24);
  animation: fadeInUp 0.6s var(--ease-out) both;
}

.badge-icon {
  font-size: 1.25rem;
}

.badge-text {
  font-size: 0.875rem;
  color: var(--ivory-70);
  font-weight: 500;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--ivory);
  margin-bottom: var(--space-24);
  animation: fadeInUp 0.6s var(--ease-out) 0.1s both;
}

.hero-title-accent {
  color: var(--gold-sacred);
  display: block;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--ivory-70);
  max-width: 600px;
  margin: 0 auto var(--space-32);
  line-height: 1.7;
  animation: fadeInUp 0.6s var(--ease-out) 0.2s both;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-16);
  justify-content: center;
  margin-bottom: var(--space-48);
  animation: fadeInUp 0.6s var(--ease-out) 0.3s both;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-32);
  justify-content: center;
  animation: fadeInUp 0.6s var(--ease-out) 0.4s both;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-sacred);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--ivory-70);
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-32);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
  color: var(--ivory-50);
  font-size: 0.875rem;
  animation: bounce 2s ease-in-out infinite;
}

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

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

/* ============================================
   SECTION STYLES
   ============================================ */

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

.section-badge {
  display: inline-block;
  padding: var(--space-8) var(--space-20);
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--gold-sacred);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  color: var(--gold-sacred);
  font-weight: 600;
  margin-bottom: var(--space-16);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ivory);
  margin-bottom: var(--space-16);
}

[data-theme="light"] .section-title {
  color: var(--ivory);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--ivory-70);
  max-width: 600px;
  margin: 0 auto;
}

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

.features {
  padding: var(--space-128) 0;
  position: relative;
}

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

.feature-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-32);
  transition: all var(--duration-normal) var(--ease-out);
  animation: fadeInUp 0.6s var(--ease-out) both;
  animation-delay: var(--delay, 0s);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-sacred);
  box-shadow: 0 16px 48px rgba(212, 175, 119, 0.2);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: var(--space-20);
}

.feature-title {
  font-size: 1.5rem;
  color: var(--ivory);
  margin-bottom: var(--space-12);
}

[data-theme="light"] .feature-title {
  color: var(--ivory);
}

.feature-description {
  font-size: 1rem;
  color: var(--ivory-70);
  line-height: 1.6;
}

/* ============================================
   SCREENSHOTS SECTION
   ============================================ */

.screenshots {
  padding: var(--space-128) 0;
  background: var(--navy-deep);
  position: relative;
}

[data-theme="light"] .screenshots {
  background: linear-gradient(180deg, #F5F0E8 0%, #FFFFFF 100%);
}

.screenshots-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-32);
}

.screenshots-main {
  width: 100%;
  max-width: 400px;
  position: relative;
}

.screenshot-slide {
  display: none;
  animation: fadeIn var(--duration-normal) var(--ease-out);
}

.screenshot-slide.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.screenshot-phone {
  position: relative;
  width: 100%;
  padding-bottom: 200%;
  background: var(--navy-deep);
  border: 12px solid #1a1a2e;
  border-radius: 40px;
  box-shadow: 
    0 50px 100px rgba(0, 0, 0, 0.5),
    inset 0 0 0 2px rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

[data-theme="light"] .screenshot-phone {
  border-color: #ddd;
}

.screenshot-screen {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.screenshot-content {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0F172A 0%, #1E2A44 100%);
  padding: var(--space-16);
  display: flex;
  flex-direction: column;
}

[data-theme="light"] .screenshot-content {
  background: linear-gradient(180deg, #FAF7F2 0%, #FFFFFF 100%);
}

/* Mock UI Elements */
.mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-12) 0;
  margin-bottom: var(--space-16);
}

.mock-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--gold-sacred);
}

.mock-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--ivory);
}

.mock-back {
  color: var(--ivory-70);
  font-size: 1.25rem;
}

.mock-hero {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-24);
  margin-bottom: var(--space-20);
  text-align: center;
}

.mock-hero-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--ivory);
  margin-bottom: var(--space-8);
}

.mock-hero-subtitle {
  font-size: 0.875rem;
  color: var(--ivory-70);
  margin-bottom: var(--space-12);
}

.mock-btn {
  display: inline-block;
  padding: var(--space-8) var(--space-20);
  background: linear-gradient(135deg, var(--gold-sacred), var(--gold-light));
  color: var(--navy-deep);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-full);
}

.mock-btn-large {
  display: block;
  width: 100%;
  padding: var(--space-16);
  background: linear-gradient(135deg, var(--gold-sacred), var(--gold-light));
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 1.125rem;
  text-align: center;
  border-radius: var(--radius-xl);
  margin-top: auto;
}

.mock-section {
  margin-bottom: var(--space-16);
}

.mock-section-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--gold-sacred);
  margin-bottom: var(--space-12);
}

.mock-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
}

.mock-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-16);
  font-size: 0.75rem;
  color: var(--ivory);
  text-align: center;
}

.mock-nav {
  display: flex;
  justify-content: space-around;
  padding: var(--space-12) 0;
  margin-top: auto;
  border-top: 1px solid var(--glass-border);
}

.mock-nav-item {
  font-size: 0.625rem;
  color: var(--ivory-50);
}

.mock-nav-item.active {
  color: var(--gold-sacred);
}

/* Rosary mock */
.mock-rosary {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: var(--space-32);
}

.mock-rosary-circle {
  width: 120px;
  height: 120px;
  border: 4px solid var(--teal-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--gold-sacred);
  margin-bottom: var(--space-20);
}

.mock-beads {
  display: flex;
  gap: var(--space-8);
}

.mock-beads span {
  width: 16px;
  height: 16px;
  background: var(--navy-mid);
  border: 2px solid var(--gold-sacred);
  border-radius: 50%;
}

.mock-mystery {
  text-align: center;
  margin-bottom: var(--space-20);
}

.mock-mystery-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--ivory);
  margin-bottom: var(--space-4);
}

.mock-mystery-progress {
  font-size: 0.875rem;
  color: var(--ivory-70);
}

/* Daily mock */
.mock-daily-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
  flex: 1;
}

.mock-daily-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-16);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
  position: relative;
}

.mock-daily-badge {
  position: absolute;
  top: var(--space-8);
  right: var(--space-8);
  background: var(--gold-sacred);
  color: var(--navy-deep);
  font-size: 0.625rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.mock-daily-icon {
  font-size: 2rem;
}

.mock-daily-title {
  font-size: 0.875rem;
  color: var(--ivory);
}

/* Candle mock */
.mock-candle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  position: relative;
}

.mock-flame {
  font-size: 5rem;
  animation: flameGlow 2s ease-in-out infinite;
}

@keyframes flameGlow {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.mock-candle-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212, 175, 119, 0.3) 0%, transparent 70%);
  animation: glowPulse 3s ease-in-out infinite;
}

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

.mock-petition {
  padding: var(--space-16);
}

.mock-petition-input {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-12);
  color: var(--ivory-50);
  font-size: 0.875rem;
  margin-bottom: var(--space-12);
}

.mock-candles-count {
  text-align: center;
  font-size: 0.75rem;
  color: var(--ivory-70);
}

/* Real Screenshot Images */
.screenshot-real {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: contain;
  border-radius: 28px;
  box-shadow: 
    0 50px 100px rgba(0, 0, 0, 0.4),
    0 20px 40px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .screenshot-real {
    max-width: 260px;
  }
}

/* Screenshots Nav */
.screenshots-nav {
  display: flex;
  gap: var(--space-12);
  flex-wrap: wrap;
  justify-content: center;
}

.screenshot-nav-btn {
  padding: var(--space-12) var(--space-24);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  color: var(--ivory-70);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
}

.screenshot-nav-btn:hover,
.screenshot-nav-btn.active {
  background: var(--gold-sacred);
  border-color: var(--gold-sacred);
  color: var(--navy-deep);
}

/* ============================================
   COMMUNITY SECTION
   ============================================ */

.community {
  padding: var(--space-128) 0;
  position: relative;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-24);
  margin-bottom: var(--space-64);
}

.community-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-32);
  text-align: center;
  transition: all var(--duration-normal) var(--ease-out);
  animation: fadeInUp 0.6s var(--ease-out) both;
  animation-delay: var(--delay, 0s);
}

.community-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-sacred);
}

.community-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-16);
}

.community-title {
  font-size: 1rem;
  color: var(--ivory-70);
  margin-bottom: var(--space-8);
}

.community-stat {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-sacred);
  margin-bottom: var(--space-8);
}

.community-description {
  font-size: 0.875rem;
  color: var(--ivory-50);
}

/* Testimonial */
.community-testimonial {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  animation: fadeInUp 0.6s var(--ease-out) both;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--ivory);
  line-height: 1.8;
  margin-bottom: var(--space-32);
  position: relative;
}

[data-theme="light"] .testimonial-quote {
  color: var(--ivory);
}

.testimonial-quote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 4rem;
  color: var(--gold-sacred);
  opacity: 0.3;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold-sacred), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-deep);
  font-weight: 600;
  font-size: 1.25rem;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.testimonial-name {
  font-weight: 600;
  color: var(--ivory);
}

.testimonial-location {
  font-size: 0.875rem;
  color: var(--ivory-70);
}

/* ============================================
   COMING SOON SECTION
   ============================================ */

.coming-soon {
  padding: var(--space-128) 0;
  background: var(--navy-mid);
  position: relative;
}

[data-theme="light"] .coming-soon {
  background: linear-gradient(180deg, #FFFFFF 0%, #F5F0E8 100%);
}

.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-24);
}

.coming-soon-item {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-24);
  text-align: center;
  transition: all var(--duration-normal) var(--ease-out);
  animation: fadeInUp 0.6s var(--ease-out) both;
  animation-delay: var(--delay, 0s);
  position: relative;
  overflow: hidden;
}

.coming-soon-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent, rgba(212, 175, 119, 0.05));
  opacity: 0;
  transition: opacity var(--duration-fast) var(--ease-out);
}

.coming-soon-item:hover::before {
  opacity: 1;
}

.coming-soon-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-16);
}

.coming-soon-title {
  font-size: 1.125rem;
  color: var(--ivory);
  margin-bottom: var(--space-8);
}

[data-theme="light"] .coming-soon-title {
  color: var(--ivory);
}

.coming-soon-description {
  font-size: 0.875rem;
  color: var(--ivory-70);
  margin-bottom: var(--space-16);
}

.coming-soon-badge {
  display: inline-block;
  padding: var(--space-4) var(--space-12);
  background: rgba(212, 175, 119, 0.15);
  border: 1px solid var(--gold-sacred);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  color: var(--gold-sacred);
  font-weight: 600;
}

/* ============================================
   DOWNLOAD SECTION
   ============================================ */

.download {
  padding: var(--space-128) 0;
  position: relative;
  overflow: hidden;
}

.download::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212, 175, 119, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.download-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.download-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ivory);
  margin-bottom: var(--space-24);
}

[data-theme="light"] .download-title {
  color: var(--ivory);
}

.download-description {
  font-size: 1.125rem;
  color: var(--ivory-70);
  max-width: 600px;
  margin: 0 auto var(--space-48);
}

.download-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-16);
  justify-content: center;
  margin-bottom: var(--space-32);
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-16);
  padding: var(--space-16) var(--space-24);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  text-decoration: none;
  transition: all var(--duration-fast) var(--ease-out);
}

.store-btn:hover {
  border-color: var(--gold-sacred);
  transform: translateY(-2px);
}

.store-btn-icon {
  width: 32px;
  height: 32px;
  color: var(--ivory);
}

.store-btn-play .store-btn-icon {
  color: var(--gold-sacred);
}

.store-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.store-btn-small {
  font-size: 0.75rem;
  color: var(--ivory-70);
}

.store-btn-large {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ivory);
}

[data-theme="light"] .store-btn-large {
  color: var(--ivory);
}

.store-btn-play {
  background: linear-gradient(135deg, var(--gold-sacred), var(--gold-light));
  border-color: transparent;
}

.store-btn-play .store-btn-small,
.store-btn-play .store-btn-large {
  color: var(--navy-deep);
}

.store-btn-apple.store-btn-disabled {
  opacity: 0.7;
  cursor: not-allowed;
  position: relative;
}

.store-btn-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--teal-accent);
  color: white;
  font-size: 0.625rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.download-info {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-24);
  justify-content: center;
}

.download-info-item {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  color: var(--ivory-70);
  font-size: 0.875rem;
}

.download-info-item svg {
  color: var(--gold-sacred);
}

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

.footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--glass-border);
  padding: var(--space-64) 0 var(--space-32);
}

[data-theme="light"] .footer {
  background: linear-gradient(180deg, #F5F0E8 0%, #E8E4DE 100%);
}

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

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

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

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

.footer-logo-icon {
  font-size: 1.5rem;
  color: var(--gold-sacred);
}

.footer-logo-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--ivory);
}

[data-theme="light"] .footer-logo-text {
  color: var(--ivory);
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--gold-sacred);
  margin-bottom: var(--space-12);
}

.footer-description {
  font-size: 0.875rem;
  color: var(--ivory-70);
}

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

@media (max-width: 480px) {
  .footer-links {
    grid-template-columns: 1fr;
    gap: var(--space-24);
  }
}

.footer-column-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: var(--space-16);
}

[data-theme="light"] .footer-column-title {
  color: var(--ivory);
}

.footer-link {
  display: block;
  font-size: 0.875rem;
  color: var(--ivory-70);
  margin-bottom: var(--space-8);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

.footer-link:hover {
  color: var(--gold-sacred);
}

.footer-social {
  display: flex;
  gap: var(--space-12);
  margin-top: var(--space-16);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  color: var(--ivory);
  transition: all var(--duration-fast) var(--ease-out);
}

.social-link:hover {
  background: var(--gold-sacred);
  border-color: var(--gold-sacred);
  color: var(--navy-deep);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-16);
  padding-top: var(--space-32);
  border-top: 1px solid var(--glass-border);
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--ivory-50);
}

.footer-quote {
  font-family: var(--font-serif);
  font-size: 0.875rem;
  font-style: italic;
  color: var(--gold-sacred);
}

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

[data-animate="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s var(--ease-out);
  transition-delay: var(--delay, 0s);
}

[data-animate="fade-up"].animate {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 768px) {
  .hero {
    padding: var(--space-96) var(--space-16) var(--space-48);
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-stats {
    gap: var(--space-20);
  }
  
  .features,
  .screenshots,
  .community,
  .coming-soon,
  .download {
    padding: var(--space-64) 0;
  }
  
  .section-header {
    margin-bottom: var(--space-32);
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .screenshots-main {
    max-width: 300px;
  }
  
  .download-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-scroll {
    display: none;
  }
  
  .btn-lg {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

:focus-visible {
  outline: 2px solid var(--gold-sacred);
  outline-offset: 2px;
}

/* Skip to content link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--gold-sacred);
  color: var(--navy-deep);
  padding: var(--space-8) var(--space-16);
  z-index: 10000;
  transition: top var(--duration-fast) var(--ease-out);
}

.skip-link:focus {
  top: 0;
}