/* Online Breathwork - Modern Dark Theme 2026
   CSS with Clamp Variables, Breathing Animations, Fluid Design */

/* ============================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================ */
:root {
    /* Color Palette - Deep Purple & Mystical */
    --color-bg-primary: #050508;
    --color-bg-secondary: #0a0a0f;
    --color-bg-tertiary: #12121a;
    --color-bg-card: rgba(20, 20, 35, 0.6);
    
    --color-accent-primary: #8B2A9B;
    --color-accent-secondary: #A855A8;
    --color-accent-tertiary: #C084C0;
    --color-accent-glow: rgba(139, 42, 155, 0.4);
    
    --color-text-primary: #fafafa;
    --color-text-secondary: #a1a1aa;
    --color-text-muted: #71717a;
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #0a0a0f 0%, #1a0a2e 50%, #0a0a0f 100%);
    --gradient-accent: linear-gradient(135deg, #8B2A9B 0%, #A855A8 50%, #C084C0 100%);
    --gradient-glow: radial-gradient(circle at center, rgba(139, 42, 155, 0.3) 0%, transparent 70%);
    --gradient-text: linear-gradient(135deg, #fafafa 0%, #C084C0 100%);
    
    /* Typography Scale - Fluid with Clamp */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
    --text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1rem + 0.65vw, 1.375rem);
    --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.75rem);
    --text-2xl: clamp(1.5rem, 1.25rem + 1.25vw, 2.25rem);
    --text-3xl: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
    --text-4xl: clamp(2.5rem, 1.75rem + 3.75vw, 5rem);
    --text-5xl: clamp(3rem, 2rem + 5vw, 7rem);
    
    /* Spacing - Fluid */
    --space-xs: clamp(0.5rem, 0.4rem + 0.5vw, 0.75rem);
    --space-sm: clamp(0.75rem, 0.6rem + 0.75vw, 1.25rem);
    --space-md: clamp(1rem, 0.75rem + 1.25vw, 2rem);
    --space-lg: clamp(1.5rem, 1rem + 2.5vw, 3.5rem);
    --space-xl: clamp(2rem, 1.25rem + 3.75vw, 5rem);
    --space-2xl: clamp(3rem, 2rem + 5vw, 8rem);
    
    /* Layout */
    --container-max: 1400px;
    --container-padding: clamp(1rem, 5vw, 3rem);
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -4px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 40px rgba(139, 42, 155, 0.3);
    --shadow-glow-lg: 0 0 80px rgba(139, 42, 155, 0.4);
}

/* ============================================
   BASE & RESET
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-text-primary);
    background: var(--color-bg-primary);
    overflow-x: hidden;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

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

ul, ol {
    list-style: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--color-accent-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent-secondary);
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-padding);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-eyebrow {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent-secondary);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

.section-desc {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    max-width: 60ch;
    margin-inline: auto;
}

.section-lead {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

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

/* ============================================
   BREATHING AMBIENT BACKGROUND
   ============================================ */
.ambient-breath {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.breath-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(139, 42, 155, 0.15);
    animation: breathe-ring 8s ease-in-out infinite;
}

.ring-1 {
    width: 60vmax;
    height: 60vmax;
    animation-delay: 0s;
}

.ring-2 {
    width: 80vmax;
    height: 80vmax;
    animation-delay: -2s;
    opacity: 0.7;
}

.ring-3 {
    width: 100vmax;
    height: 100vmax;
    animation-delay: -4s;
    opacity: 0.5;
}

.ring-4 {
    width: 120vmax;
    height: 120vmax;
    animation-delay: -6s;
    opacity: 0.3;
}

@keyframes breathe-ring {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.15;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.3;
    }
}

/* Rising Bubbles */
.bubbles-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 100;
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -100px;
    background: radial-gradient(circle at 30% 30%, rgba(168, 85, 168, 0.8), rgba(139, 42, 155, 0.3));
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(139, 42, 155, 0.5);
    animation: rise linear infinite;
}

.b1 { left: 5%; width: 40px; height: 40px; animation-duration: 10s; animation-delay: 0s; }
.b2 { left: 12%; width: 25px; height: 25px; animation-duration: 7s; animation-delay: 0.5s; }
.b3 { left: 20%; width: 35px; height: 35px; animation-duration: 9s; animation-delay: 1s; }
.b4 { left: 28%; width: 18px; height: 18px; animation-duration: 12s; animation-delay: 1.5s; }
.b5 { left: 36%; width: 45px; height: 45px; animation-duration: 8s; animation-delay: 2s; }
.b6 { left: 44%; width: 22px; height: 22px; animation-duration: 11s; animation-delay: 2.5s; }
.b7 { left: 52%; width: 38px; height: 38px; animation-duration: 9s; animation-delay: 3s; }
.b8 { left: 60%; width: 28px; height: 28px; animation-duration: 10s; animation-delay: 3.5s; }
.b9 { left: 68%; width: 20px; height: 20px; animation-duration: 13s; animation-delay: 4s; }
.b10 { left: 76%; width: 42px; height: 42px; animation-duration: 8s; animation-delay: 4.5s; }
.b11 { left: 84%; width: 16px; height: 16px; animation-duration: 14s; animation-delay: 5s; }
.b12 { left: 92%; width: 30px; height: 30px; animation-duration: 10s; animation-delay: 5.5s; }
.b13 { left: 8%; width: 35px; height: 35px; animation-duration: 9s; animation-delay: 6s; }
.b14 { left: 48%; width: 50px; height: 50px; animation-duration: 11s; animation-delay: 6.5s; }
.b15 { left: 88%; width: 24px; height: 24px; animation-duration: 8s; animation-delay: 7s; }

@keyframes rise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    5% {
        opacity: 0.9;
    }
    95% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-120vh) scale(0.6);
        opacity: 0;
    }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) 0;
    transition: var(--transition-base);
}

.nav.scrolled {
    background: rgba(5, 5, 8, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 42, 155, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: var(--text-lg);
}

.logo-icon {
    color: var(--color-accent-primary);
    font-size: 1.5em;
}

.logo-text span {
    color: var(--color-accent-secondary);
}

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

.nav-link {
    position: relative;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: var(--transition-base);
}

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

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-line {
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    transition: var(--transition-base);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: var(--text-sm);
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-lg);
}

.btn-glow {
    background: var(--gradient-accent);
    color: white;
    box-shadow: 0 0 30px rgba(139, 42, 155, 0.5);
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.btn-glow:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 80px rgba(139, 42, 155, 0.9), 0 0 120px rgba(139, 42, 155, 0.4);
}

/* Magnetic button effect */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}

/* Float animation for buttons */
@keyframes btn-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.hero-cta .btn-glow {
    animation: btn-float 4s ease-in-out infinite;
}

.hero-cta .btn-outline {
    animation: btn-float 4s ease-in-out infinite 0.5s;
}

.btn-outline {
    background: transparent;
    color: var(--color-text-primary);
    border: 2px solid rgba(139, 42, 155, 0.5);
}

.btn-outline:hover {
    border-color: var(--color-accent-primary);
    background: rgba(139, 42, 155, 0.1);
}

.btn-secondary {
    background: var(--color-bg-tertiary);
    color: var(--color-text-primary);
    border: 1px solid rgba(139, 42, 155, 0.3);
}

.btn-secondary:hover {
    background: rgba(139, 42, 155, 0.1);
    border-color: var(--color-accent-primary);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: var(--text-base);
}

.btn-xlarge {
    padding: 1.25rem 2.5rem;
    font-size: var(--text-lg);
}

.btn-icon {
    width: 1.25em;
    height: 1.25em;
    transition: var(--transition-base);
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

/* ============================================
   LOGO
   ============================================ */
.logo-img {
    height: clamp(32px, 4vw, 42px);
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(139, 42, 155, 0.25));
    transition: height 0.3s ease, filter 0.3s ease, transform 0.3s ease;
}

.nav.scrolled .logo-img {
    height: clamp(26px, 3vw, 32px);
}

.logo:hover .logo-img {
    filter: drop-shadow(0 4px 20px rgba(139, 42, 155, 0.5));
    transform: scale(1.02);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--space-2xl) * 1.5) var(--container-padding) var(--space-2xl);
    overflow: hidden;
    background: var(--gradient-hero);
}

/* Hero Background Image */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    mix-blend-mode: screen;
    z-index: 0;
    animation: hero-pulse 6s ease-in-out infinite;
}

@keyframes hero-pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.5;
    }
    50% { 
        transform: scale(1.08);
        opacity: 0.7;
    }
}

/* If image fails to load, show gradient */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: -1;
}

/* Floating orbs for hero movement */
.hero .container::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 42, 155, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    top: 10%;
    left: -10%;
    animation: float-orb 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.hero .container::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(168, 85, 168, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    bottom: 20%;
    right: -5%;
    animation: float-orb 6s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 0;
}

@keyframes float-orb {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
    }
    33% { 
        transform: translate(30px, -30px) scale(1.1);
    }
    66% { 
        transform: translate(-20px, 20px) scale(0.95);
    }
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(139, 42, 155, 0.15);
    border: 1px solid rgba(139, 42, 155, 0.3);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s ease-out;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

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

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

.hero-subtitle {
    font-size: var(--text-xl);
    color: var(--color-text-secondary);
    max-width: 50ch;
    margin-inline: auto;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.8s ease-out 0.5s backwards;
}

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

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--color-accent-secondary);
}

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

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

/* Breath Visualizer */
.breath-visualizer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.breath-circle {
    width: clamp(300px, 50vw, 600px);
    height: clamp(300px, 50vw, 600px);
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(139, 42, 155, 0.15) 0%, transparent 70%);
    border: 1px solid rgba(139, 42, 155, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: breathe 8s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.inner-content {
    text-align: center;
}

.breath-text {
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-accent-tertiary);
    opacity: 0.6;
}

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

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-accent-primary);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.p1 { top: 20%; left: 20%; animation-delay: 0s; }
.p2 { top: 30%; right: 20%; animation-delay: -1s; }
.p3 { top: 60%; left: 15%; animation-delay: -2s; }
.p4 { top: 70%; right: 25%; animation-delay: -3s; }
.p5 { top: 40%; left: 10%; animation-delay: -4s; }
.p6 { top: 80%; right: 15%; animation-delay: -5s; }

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) scale(1.5);
        opacity: 0.8;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s infinite;
    opacity: 0.5;
}

.mouse {
    width: 24px;
    height: 36px;
    border: 2px solid var(--color-text-muted);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 6px;
    background: var(--color-text-muted);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(8px); opacity: 0; }
}

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

/* ============================================
   EVENTS SECTION
   ============================================ */
.events {
    position: relative;
    padding: var(--space-2xl) 0;
    background: var(--color-bg-secondary);
}

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

.event-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(139, 42, 155, 0.15);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-base);
    animation: fadeInUp 0.6s ease-out backwards;
}

.event-card:nth-child(1) { animation-delay: 0.1s; }
.event-card:nth-child(2) { animation-delay: 0.2s; }
.event-card:nth-child(3) { animation-delay: 0.3s; }

.event-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 42, 155, 0.4);
    box-shadow: var(--shadow-glow);
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) var(--space-md);
    background: rgba(139, 42, 155, 0.1);
    border-bottom: 1px solid rgba(139, 42, 155, 0.1);
}

.event-date-badge {
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-text-secondary);
}

.event-spots {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
}

.event-content {
    padding: var(--space-md);
}

.event-theme {
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent-secondary);
    margin-bottom: var(--space-xs);
}

.event-title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-sm);
    line-height: 1.2;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-md);
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-md);
    margin-top: var(--space-md);
    border-top: 1px solid rgba(139, 42, 155, 0.1);
}

.event-footer .price {
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--color-text-secondary);
}

.events-footer {
    text-align: center;
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(139, 42, 155, 0.1);
}

.events-footer p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

/* Skeleton Loading */
.skeleton {
    background: var(--color-bg-tertiary);
}

.skeleton-image {
    aspect-ratio: 16/9;
    background: linear-gradient(90deg, var(--color-bg-tertiary) 25%, var(--color-bg-card) 50%, var(--color-bg-tertiary) 75%);
    background-size: 200% 100%;
    animation: shimmer-skeleton 1.5s infinite;
}

.skeleton-content {
    padding: var(--space-md);
}

.skeleton-line {
    height: 1rem;
    background: var(--color-bg-card);
    border-radius: var(--radius-sm);
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, var(--color-bg-card) 25%, rgba(139, 42, 155, 0.1) 50%, var(--color-bg-card) 75%);
    background-size: 200% 100%;
    animation: shimmer-skeleton 1.5s infinite;
}

.skeleton-line.short {
    width: 60%;
}

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

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits {
    position: relative;
    padding: var(--space-2xl) 0;
    background: var(--color-bg-primary);
}

.benefits::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('assets/images/benefits-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.benefits .container {
    position: relative;
    z-index: 1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.benefit-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--color-bg-card);
    border: 1px solid rgba(139, 42, 155, 0.1);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.benefit-item:hover {
    border-color: rgba(139, 42, 155, 0.3);
    transform: translateX(8px);
}

.benefit-icon {
    display: none;
}

.benefit-item {
    padding-left: var(--space-md);
    border-left: 3px solid rgba(139, 42, 155, 0.3);
}

.benefit-text h3 {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.benefit-text p {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* Benefits Visual */
.benefits-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.breath-prism {
    position: relative;
    width: 400px;
    height: 400px;
    filter: drop-shadow(0 0 40px rgba(139, 42, 155, 0.4));
}

.prism-layer {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: prism-breathe 4s ease-in-out infinite;
}

.layer-1 {
    background: radial-gradient(circle at center, rgba(139, 42, 155, 0.3) 0%, transparent 70%);
    animation-delay: 0s;
}

.layer-2 {
    inset: 20px;
    background: radial-gradient(circle at center, rgba(168, 85, 168, 0.25) 0%, transparent 70%);
    animation-delay: -1s;
}

.layer-3 {
    inset: 40px;
    background: radial-gradient(circle at center, rgba(192, 132, 192, 0.2) 0%, transparent 70%);
    animation-delay: -2s;
}

.prism-core {
    position: absolute;
    inset: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 30%, rgba(139, 42, 155, 0.3), var(--color-bg-secondary));
    border-radius: 50%;
    border: 3px solid rgba(139, 42, 155, 0.5);
    box-shadow: 
        inset 0 0 60px rgba(139, 42, 155, 0.3),
        0 0 60px rgba(139, 42, 155, 0.4);
    animation: core-pulse 4s ease-in-out infinite;
}

.core-symbol {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--color-accent-secondary), var(--color-accent-primary));
    box-shadow: 
        0 0 60px rgba(139, 42, 155, 0.8),
        0 0 120px rgba(139, 42, 155, 0.4),
        inset 0 0 30px rgba(255, 255, 255, 0.3);
    animation: core-breathe 3s ease-in-out infinite;
}

@keyframes core-breathe {
    0%, 100% { 
        transform: scale(0.9);
        box-shadow: 
            0 0 60px rgba(139, 42, 155, 0.8), 
            0 0 120px rgba(139, 42, 155, 0.4),
            inset 0 0 30px rgba(255, 255, 255, 0.3);
    }
    50% { 
        transform: scale(1.4);
        box-shadow: 
            0 0 150px rgba(139, 42, 155, 1), 
            0 0 300px rgba(139, 42, 155, 0.6),
            inset 0 0 50px rgba(255, 255, 255, 0.5);
    }
}

@keyframes prism-breathe {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.15); opacity: 0.8; }
}

@keyframes core-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(139, 42, 155, 0.3); }
    50% { box-shadow: 0 0 40px rgba(139, 42, 155, 0.6); }
}

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

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works {
    position: relative;
    padding: var(--space-2xl) 0;
    background: var(--color-bg-secondary);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 800px;
    margin-inline: auto;
}

.step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-lg);
    align-items: center;
    padding: var(--space-lg) 0;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 2rem;
    right: 2rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 42, 155, 0.3), transparent);
}

.step-number {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--color-accent-primary);
    opacity: 0.5;
    width: 4rem;
    text-align: center;
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--color-text-secondary);
    font-size: var(--text-base);
    line-height: 1.6;
}

.step-visual {
    display: none;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    position: relative;
    padding: var(--space-2xl) 0;
    background: var(--color-bg-primary);
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('assets/images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    mix-blend-mode: screen;
    z-index: 0;
}

.cta-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-breath {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.breath-1 {
    width: 600px;
    height: 600px;
    background: var(--color-accent-primary);
    top: -200px;
    left: -200px;
    animation: cta-float 10s ease-in-out infinite;
}

.breath-2 {
    width: 500px;
    height: 500px;
    background: var(--color-accent-secondary);
    bottom: -150px;
    right: -150px;
    animation: cta-float 10s ease-in-out infinite reverse;
}

@keyframes cta-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 50px) scale(1.1); }
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 700px;
    margin-inline: auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

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

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    position: relative;
    padding: var(--space-2xl) 0;
    background: var(--color-bg-secondary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    max-width: 1000px;
    margin-inline: auto;
}

.faq-item {
    background: var(--color-bg-card);
    border: 1px solid rgba(139, 42, 155, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item:hover {
    border-color: rgba(139, 42, 155, 0.2);
}

.faq-item[open] {
    border-color: rgba(139, 42, 155, 0.3);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md);
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 500;
    cursor: pointer;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--color-accent-secondary);
    transition: var(--transition-base);
}

.faq-icon::before {
    width: 12px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 2px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item[open] .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    padding: 0 var(--space-md) var(--space-md);
    color: var(--color-text-secondary);
    font-size: var(--text-sm);
    line-height: 1.7;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-bg-primary);
    border-top: 1px solid rgba(139, 42, 155, 0.1);
    padding: var(--space-xl) 0 var(--space-md);
}

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

.footer-brand .logo {
    margin-bottom: var(--space-sm);
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: var(--text-sm);
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a,
.footer-contact a {
    color: var(--color-text-secondary);
    font-size: var(--text-sm);
    transition: var(--transition-fast);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--color-accent-secondary);
}

.footer-contact p {
    color: var(--color-text-secondary);
    font-size: var(--text-sm);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(139, 42, 155, 0.1);
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

.footer-tagline {
    color: var(--color-accent-primary);
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
[data-reveal] {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Staggered children animation */
[data-reveal] > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

[data-reveal].revealed > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
[data-reveal].revealed > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
[data-reveal].revealed > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
[data-reveal].revealed > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
[data-reveal].revealed > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }

/* WOW Effect - Glow pulse on reveal */
[data-reveal].revealed {
    animation: reveal-glow 1s ease-out;
}

@keyframes reveal-glow {
    0% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
    100% { filter: brightness(1); }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .benefits-visual {
        order: -1;
        min-height: 300px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(5, 5, 8, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: var(--space-lg);
        transition: var(--transition-slow);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-link {
        font-size: var(--text-xl);
    }
    
    .menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .menu-toggle.active .menu-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active .menu-line:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .menu-line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .step {
        grid-template-columns: auto 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand p {
        max-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .breath-prism {
        width: 200px;
        height: 200px;
    }
    
    .core-symbol {
        font-size: 2.5rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

/* Print Styles */
@media print {
    .nav, .hero-visual, .scroll-indicator, .cta-background {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
}