/* ================================================
   LION'S GATE PORTAL 2025 - MYSTICAL PREMIUM DESIGN
   Deep cosmic aesthetic with ethereal gold shimmer
   ================================================ */

/* CSS Reset & Variables */
:root {
    /* Mystical Color Palette */
    --cosmic-black: #000000;
    --deep-space: #0a0616;
    --cosmic-purple: #1a0f2e;
    --mystic-violet: #2a1a4e;
    --ethereal-purple: #3d2a5a;
    
    /* Gold Spectrum with Mystical Glow */
    --pure-gold: #FFD700;
    --bright-gold: #FFEA00;
    --warm-gold: #FFC700;
    --rose-gold: #FFB6C1;
    --mystic-gold: #F4E4C1;
    
    /* Typography */
    --font-mystical: 'Cinzel', serif;
    --font-display: 'Cinzel', serif;
    --font-elegant: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Optimized Spacing System */
    --space-xs: 0.5rem;    /* 8px */
    --space-sm: 0.75rem;   /* 12px */
    --space-md: 1rem;      /* 16px */
    --space-lg: 1.5rem;    /* 24px */
    --space-xl: 2rem;      /* 32px */
    --space-2xl: 3rem;     /* 48px */
    --space-3xl: 4rem;     /* 64px */
    --space-4xl: 6rem;     /* 96px */
    
    /* Glow Effects */
    --glow-sm: 0 0 10px rgba(255, 215, 0, 0.6);
    --glow-md: 0 0 25px rgba(255, 215, 0, 0.5), 0 0 50px rgba(255, 215, 0, 0.3);
    --glow-lg: 0 0 40px rgba(255, 215, 0, 0.6), 0 0 80px rgba(255, 215, 0, 0.4), 0 0 120px rgba(255, 215, 0, 0.2);
    --glow-text: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 215, 0, 0.4);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    
    /* Container */
    --container-narrow: 800px;
    --container-default: 1000px;
    --container-wide: 1200px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background: var(--cosmic-black);
}

body {
    font-family: var(--font-elegant);
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    background: var(--cosmic-black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.02em;
}

/* Selection */
::selection {
    background: rgba(255, 215, 0, 0.3);
    color: #fff;
}

/* Container */
.container {
    max-width: var(--container-default);
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container-narrow {
    max-width: var(--container-narrow);
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-mystical);
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
    letter-spacing: 0.05em;
}

p {
    margin: 0;
    opacity: 0.95;
}

/* Gold Text Effects */
.gold-text {
    background: linear-gradient(
        45deg,
        var(--warm-gold) 0%,
        var(--bright-gold) 25%,
        var(--pure-gold) 50%,
        var(--bright-gold) 75%,
        var(--warm-gold) 100%
    );
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
    filter: drop-shadow(var(--glow-text));
}

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

/* Glow Text */
.glow-text {
    color: var(--pure-gold);
    text-shadow: var(--glow-md);
}

/* ================================================
   HERO SECTION - DEEP COSMIC MYSTICAL
   ================================================ */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cosmic-black);
    overflow: hidden;
}

/* Starfield will be generated by JavaScript for true randomization */


/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 700px;
    padding: var(--space-xl) var(--space-lg) var(--space-4xl);
    margin-top: var(--space-xl);
}

/* Portal Date */
.portal-date {
    font-family: var(--font-mystical);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 215, 0, 0.7);
    margin-bottom: var(--space-lg);
    animation: fade-in 1s ease-out;
}

/* Main 8:8 Portal Number */
.portal-number {
    font-family: var(--font-mystical);
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 300;
    line-height: 1;
    margin-bottom: var(--space-sm);
    position: relative;
    display: inline-block;
}

.portal-number span {
    background: linear-gradient(
        135deg,
        var(--warm-gold) 0%,
        var(--bright-gold) 20%,
        var(--pure-gold) 40%,
        var(--bright-gold) 60%,
        var(--warm-gold) 80%,
        var(--rose-gold) 100%
    );
    background-size: 200% 200%;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: golden-flow 4s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.5)) 
            drop-shadow(0 0 60px rgba(255, 215, 0, 0.3))
            drop-shadow(0 0 90px rgba(255, 215, 0, 0.2));
}

@keyframes golden-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Hero Title */
.hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: var(--space-md);
    letter-spacing: 0.1em;
}

.hero-title .line1 {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    display: block;
    opacity: 0.7;
    margin-bottom: var(--space-xs);
}

.hero-title .line2 {
    display: block;
    background: linear-gradient(
        90deg,
        var(--warm-gold) 0%,
        var(--bright-gold) 50%,
        var(--warm-gold) 100%
    );
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shimmer 3s linear infinite;
    filter: drop-shadow(var(--glow-text));
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle strong {
    color: var(--pure-gold);
    text-shadow: var(--glow-sm);
}

/* CTA Button - Mystical Style */
.cta-mystical {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 1px solid var(--pure-gold);
    color: var(--pure-gold);
    padding: var(--space-lg) var(--space-2xl);
    font-family: var(--font-mystical);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.2),
        inset 0 0 20px rgba(255, 215, 0, 0.1);
}

.cta-mystical::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    transition: left 0.6s;
}

.cta-mystical:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 0 40px rgba(255, 215, 0, 0.4),
        inset 0 0 30px rgba(255, 215, 0, 0.2);
    text-shadow: var(--glow-sm);
}

.cta-mystical:hover::before {
    left: 100%;
}

/* Scroll Indicator - Minimal */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 1px solid var(--pure-gold);
    border-bottom: 1px solid var(--pure-gold);
    transform: rotate(45deg);
    animation: float 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(-5px); }
}

/* ================================================
   SECTION STRUCTURE - CLEAN & CENTERED
   ================================================ */
section {
    padding: var(--space-2xl) 0;
    position: relative;
}

/* Dark Sections */
.section-dark {
    background: var(--cosmic-black);
}

/* Deep Space Sections */
.section-deep {
    background: linear-gradient(180deg, var(--cosmic-black) 0%, var(--deep-space) 50%, var(--cosmic-black) 100%);
}

/* Purple Cosmic Sections */
.section-cosmic {
    background: 
        radial-gradient(ellipse at top, var(--cosmic-purple) 0%, transparent 60%),
        radial-gradient(ellipse at bottom, var(--mystic-violet) 0%, transparent 60%),
        var(--deep-space);
}

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

.section-subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 215, 0, 0.6);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-lg);
}

.section-title.gold {
    background: linear-gradient(
        90deg,
        var(--warm-gold) 0%,
        var(--bright-gold) 50%,
        var(--warm-gold) 100%
    );
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shimmer 3s linear infinite;
    filter: drop-shadow(var(--glow-text));
}

/* ================================================
   PORTAL ENERGY SECTION
   ================================================ */
.portal-energy {
    padding: var(--space-3xl) 0;
}

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

.energy-intro {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
    font-weight: 300;
}

.energy-intro .highlight {
    color: var(--pure-gold);
    text-shadow: var(--glow-sm);
    font-weight: 400;
}

.portal-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin: var(--space-2xl) 0;
}

.feature-card {
    background: rgba(255, 215, 0, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
    padding: var(--space-xl);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--pure-gold), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover {
    background: rgba(255, 215, 0, 0.06);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-5px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: var(--space-md);
    filter: drop-shadow(var(--glow-sm));
}

.feature-title {
    font-family: var(--font-mystical);
    font-size: 1.2rem;
    color: var(--pure-gold);
    margin-bottom: var(--space-sm);
    text-shadow: var(--glow-sm);
}

.feature-description {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* Portal Timeline */
.portal-timeline {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(138, 43, 226, 0.05) 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: var(--space-xl);
    margin: var(--space-2xl) 0;
    position: relative;
}

.portal-timeline::before {
    content: '✦';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: var(--pure-gold);
    background: var(--deep-space);
    padding: 0 var(--space-md);
}

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

.timeline-date {
    font-family: var(--font-mystical);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--pure-gold);
    text-shadow: var(--glow-md);
    margin-bottom: var(--space-md);
}

/* ================================================
   VALUE SECTION
   ================================================ */
.value-section {
    text-align: center;
    padding: var(--space-2xl) 0;
}

.value-display {
    margin: var(--space-2xl) 0;
}

.value-original {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    text-decoration: line-through;
    opacity: 0.5;
    margin-bottom: var(--space-sm);
}

.value-free {
    font-family: var(--font-mystical);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    background: linear-gradient(
        135deg,
        var(--warm-gold) 0%,
        var(--bright-gold) 25%,
        var(--pure-gold) 50%,
        var(--bright-gold) 75%,
        var(--warm-gold) 100%
    );
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shimmer 3s linear infinite;
    filter: drop-shadow(0 0 40px rgba(255, 215, 0, 0.6));
}

/* ================================================
   WHAT'S INCLUDED - PREMIUM CARDS
   ================================================ */
.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-2xl) 0;
}

.included-card {
    background: rgba(26, 15, 46, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.1);
    padding: var(--space-xl);
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.included-card:hover {
    background: rgba(26, 15, 46, 0.4);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(255, 215, 0, 0.1);
}

.card-value {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    font-size: 0.8rem;
    color: var(--pure-gold);
    opacity: 0.7;
    letter-spacing: 0.1em;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    filter: drop-shadow(var(--glow-sm));
}

.card-title {
    font-family: var(--font-mystical);
    font-size: 1.1rem;
    color: var(--pure-gold);
    margin-bottom: var(--space-md);
    text-shadow: var(--glow-sm);
}

.card-features {
    list-style: none;
    text-align: left;
}

.card-features li {
    padding: var(--space-xs) 0;
    font-size: 0.9rem;
    opacity: 0.8;
    position: relative;
    padding-left: var(--space-lg);
}

.card-features li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--pure-gold);
    opacity: 0.6;
}

/* ================================================
   SCHEDULE - MYSTICAL TIMELINE
   ================================================ */
.schedule-section {
    padding: var(--space-3xl) 0;
}

.schedule-container {
    max-width: 900px;
    margin: 0 auto;
}

.schedule-day {
    margin-bottom: var(--space-xl);
    position: relative;
    padding-left: var(--space-3xl);
}

.day-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--cosmic-black);
    border: 2px solid var(--pure-gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mystical);
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.3),
        inset 0 0 20px rgba(255, 215, 0, 0.1);
}

.day-number {
    font-size: 1.8rem;
    color: var(--pure-gold);
    line-height: 1;
    text-shadow: var(--glow-sm);
    font-weight: 600;
}

.day-month {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--pure-gold);
    opacity: 0.9;
    font-weight: 500;
}

.day-content {
    background: rgba(255, 215, 0, 0.02);
    border: 1px solid rgba(255, 215, 0, 0.1);
    padding: var(--space-xl);
    min-height: 200px;
}

.day-content h3 {
    font-family: var(--font-mystical);
    font-size: 1.3rem;
    color: var(--pure-gold);
    margin-bottom: var(--space-sm);
    text-shadow: var(--glow-sm);
}

.day-theme {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: var(--space-md);
    font-style: italic;
}

.session-list {
    list-style: none;
}

.session {
    display: flex;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.session:last-child {
    border-bottom: none;
}

.session-time {
    color: var(--pure-gold);
    font-size: 0.85rem;
    min-width: 100px;
    opacity: 0.8;
}

.session-title {
    flex: 1;
    padding-left: var(--space-md);
    font-size: 0.95rem;
}

/* Peak Day Special */
.schedule-day.peak .day-marker {
    background: var(--cosmic-black);
    border: 3px solid var(--pure-gold);
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.6),
        0 0 60px rgba(255, 215, 0, 0.3),
        inset 0 0 30px rgba(255, 215, 0, 0.2);
}

.schedule-day.peak .day-number {
    color: var(--pure-gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    font-size: 2rem;
}

.schedule-day.peak .day-month {
    color: var(--bright-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.schedule-day.peak .day-content {
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.1);
}

/* ================================================
   ABOUT SECTION - MYSTICAL PROFILE
   ================================================ */
.about-section {
    padding: var(--space-3xl) 0;
}

.about-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-image {
    max-width: 400px;
    margin: 0 auto var(--space-2xl);
}

.allison-portrait {
    width: 100%;
    height: auto;
    display: block;
}

.about-name {
    font-family: var(--font-mystical);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--pure-gold);
    margin-bottom: var(--space-sm);
    text-shadow: var(--glow-md);
}

.about-title {
    font-size: 1rem;
    opacity: 0.7;
    margin-bottom: var(--space-xl);
    letter-spacing: 0.1em;
}

.about-bio {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: var(--space-xl);
    opacity: 0.9;
}

.credentials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin: var(--space-2xl) 0;
}

.credential-item {
    text-align: center;
}

.credential-icon {
    font-size: 1.5rem;
    color: var(--pure-gold);
    margin-bottom: var(--space-sm);
}

.credential-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ================================================
   TESTIMONIALS - MYSTICAL CARDS
   ================================================ */
.testimonials {
    padding: var(--space-3xl) 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin: var(--space-3xl) 0;
}

.testimonial-card {
    background: rgba(255, 215, 0, 0.02);
    border: 1px solid rgba(255, 215, 0, 0.1);
    padding: var(--space-xl);
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    background: rgba(255, 215, 0, 0.04);
    border-color: rgba(255, 215, 0, 0.2);
    transform: translateY(-5px);
}

.testimonial-quote {
    font-style: italic;
    line-height: 1.8;
    margin-bottom: var(--space-lg);
    opacity: 0.9;
}

.testimonial-author {
    font-family: var(--font-mystical);
    color: var(--pure-gold);
    font-size: 0.9rem;
    text-align: right;
}

/* ================================================
   FAQ SECTION - CLEAN MYSTICAL
   ================================================ */
.faq-section {
    padding: var(--space-3xl) 0;
}

.faq-container {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-family: var(--font-mystical);
    font-size: 1.1rem;
    color: var(--pure-gold);
    margin-bottom: var(--space-sm);
    text-shadow: var(--glow-sm);
}

.faq-answer {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.85;
}

/* ================================================
   FINAL CTA - PORTAL GATEWAY
   ================================================ */
.final-cta {
    padding: var(--space-3xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

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

.final-cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.final-heading {
    font-family: var(--font-mystical);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-lg);
    background: linear-gradient(
        90deg,
        var(--warm-gold) 0%,
        var(--bright-gold) 50%,
        var(--warm-gold) 100%
    );
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shimmer 3s linear infinite;
    filter: drop-shadow(var(--glow-lg));
}

.final-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
    opacity: 0.9;
}

.portal-symbol-large {
    font-family: var(--font-mystical);
    font-size: clamp(4rem, 8vw, 6rem);
    margin: var(--space-2xl) 0;
    background: linear-gradient(
        135deg,
        var(--warm-gold) 0%,
        var(--bright-gold) 25%,
        var(--pure-gold) 50%,
        var(--bright-gold) 75%,
        var(--warm-gold) 100%
    );
    background-size: 200% 200%;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: golden-flow 4s ease-in-out infinite;
    filter: drop-shadow(0 0 50px rgba(255, 215, 0, 0.6));
}

/* ================================================
   FOOTER - MINIMAL MYSTICAL
   ================================================ */
.footer {
    padding: var(--space-2xl) 0 var(--space-lg);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    text-align: center;
}

.footer-content {
    opacity: 0.6;
    font-size: 0.9rem;
}

.footer-links {
    margin: var(--space-md) 0;
}

.footer-links a {
    color: var(--pure-gold);
    text-decoration: none;
    margin: 0 var(--space-md);
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.7;
}

/* ================================================
   MODAL - MYSTICAL PORTAL ENTRY
   ================================================ */
/* Success Modal Redesign */
.success-modal {
    position: relative;
    background: linear-gradient(135deg, #000000 0%, #1a0f2e 50%, #000000 100%);
    border: 2px solid var(--pure-gold);
    border-radius: 20px;
    padding: 0;
    max-width: 500px;
    width: 90vw;
    max-height: 90vh;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 80px rgba(255, 215, 0, 0.2);
    overflow-y: auto;
}

.success-header {
    text-align: center;
    padding: 2rem 1.5rem 1rem;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(26, 15, 46, 0.2) 100%);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.success-icon {
    position: relative;
    margin-bottom: 1rem;
}

.portal-symbol {
    font-size: 3rem;
    font-weight: bold;
    color: var(--pure-gold);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    animation: portalGlow 2s ease-in-out infinite alternate;
}

.success-stars {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.star {
    position: absolute;
    color: var(--pure-gold);
    font-size: 1.2rem;
    animation: twinkle 2s ease-in-out infinite;
}

.star-1 {
    top: -20px;
    left: -30px;
    animation-delay: 0s;
}

.star-2 {
    top: -15px;
    right: -25px;
    animation-delay: 0.7s;
}

.star-3 {
    bottom: -20px;
    left: -20px;
    animation-delay: 1.4s;
}

.success-title {
    font-family: var(--font-mystical);
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--pure-gold);
    margin: 0 0 0.5rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.success-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
}

.success-body {
    padding: 1.5rem;
}

.success-message {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--pure-gold) 0%, #FFA500 100%);
    border-radius: 50%;
    color: #000;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.success-message p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.success-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.btn-primary,
.btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--pure-gold) 0%, #FFA500 100%);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #1a0f2e 0%, #2a1b3d 100%);
    color: var(--pure-gold);
    border: 2px solid var(--pure-gold);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #2a1b3d 0%, #3a2b4d 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.2);
}

.btn-icon {
    width: 1.2rem;
    height: 1.2rem;
    flex-shrink: 0;
}

.info-icon {
    width: 1.2rem;
    height: 1.2rem;
    flex-shrink: 0;
}

.portal-info {
    margin-bottom: 1.5rem;
}

.info-card {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
}

.info-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}


.info-title {
    font-weight: 600;
    color: var(--pure-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-content {
    color: rgba(255, 255, 255, 0.9);
}

.info-date {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.info-time {
    font-size: 0.9rem;
    opacity: 0.8;
}

.success-footer {
    text-align: center;
}

.btn-close {
    background: var(--gradient-primary);
    color: #000;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-close:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

@keyframes portalGlow {
    0% {
        text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    }
    100% {
        text-shadow: 0 0 50px rgba(255, 215, 0, 1), 0 0 80px rgba(255, 215, 0, 0.6);
    }
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.4;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Responsive for Success Modal */
@media (max-width: 768px) {
    .modal-overlay {
        padding: 0.5rem;
        align-items: flex-start;
        padding-top: 2rem;
    }
    
    .success-modal {
        margin: 0;
        width: 100%;
        max-width: none;
        max-height: calc(100vh - 4rem);
        overflow-y: auto;
    }
    
    .success-header {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .success-body {
        padding: 1.5rem;
    }
    
    .portal-symbol {
        font-size: 2.8rem;
    }
    
    .success-title {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }
    
    .success-subtitle {
        font-size: 1.1rem;
        line-height: 1.4;
    }
    
    .success-message p {
        font-size: 1.2rem;
        line-height: 1.5;
        margin-bottom: 0;
    }
    
    .check-icon {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        min-height: 3.5rem;
    }
    
    .btn-icon {
        width: 1.4rem;
        height: 1.4rem;
    }
    
    .info-card {
        padding: 1.25rem;
    }
    
    .info-title {
        font-size: 1rem;
        letter-spacing: 0.75px;
    }
    
    .info-date {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .info-time {
        font-size: 1rem;
    }
    
    .btn-close {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
        min-height: 3rem;
    }
    
    .success-actions {
        gap: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .portal-info {
        margin-bottom: 2rem;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    /* Global padding adjustments */
    .container,
    .container-narrow {
        padding: 0 var(--space-lg);
    }
    
    section {
        padding: var(--space-xl) var(--space-md);
    }
    
    .hero-content {
        padding: var(--space-2xl) var(--space-lg) var(--space-3xl);
        gap: var(--space-md);
    }
    
    .hero-subtitle {
        padding: 0 var(--space-lg);
        max-width: 95%;
    }
    
    .feature-card,
    .included-card,
    .testimonial-card {
        padding: var(--space-lg) var(--space-md);
        margin-bottom: var(--space-md);
    }
    
    .day-content {
        padding: var(--space-lg) var(--space-md);
    }
    
    /* Modal adjustments */
    .modal-overlay {
        padding: 0.25rem;
        padding-top: 1rem;
    }
    
    .success-modal {
        margin: 0;
        width: 100%;
        max-height: calc(100vh - 2rem);
    }
    
    .success-header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .success-body {
        padding: 1.25rem;
    }
    
    .success-title {
        font-size: 1.5rem;
    }
    
    .success-subtitle {
        font-size: 1rem;
    }
    
    .success-message p {
        font-size: 1.1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.875rem 1.25rem;
        font-size: 1rem;
    }
    
    .portal-date {
        font-size: 1.1rem;
        letter-spacing: 0.15em;
        margin-bottom: var(--space-xl);
        padding: var(--space-xs) var(--space-md);
    }
    
    .hero-title {
        margin-bottom: var(--space-xl);
    }
    
    .hero-subtitle {
        margin-bottom: var(--space-2xl);
        padding: var(--space-md) var(--space-lg);
        font-size: 1.3rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .card-features li {
        font-size: 0.95rem;
    }
    
    .final-note {
        font-size: 0.9rem;
    }
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    overflow-y: auto;
    padding: var(--space-lg);
    align-items: center;
    justify-content: center;
}

.modal-overlay.show {
    display: flex;
}

.modal-container {
    background: var(--deep-space);
    border: 1px solid var(--pure-gold);
    max-width: 500px;
    width: 100%;
    margin: 0;
    position: relative;
    box-shadow: 
        0 0 60px rgba(255, 215, 0, 0.2),
        inset 0 0 60px rgba(255, 215, 0, 0.05);
}

.modal-header {
    padding: var(--space-xl);
    text-align: center;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.modal-header h2 {
    font-family: var(--font-mystical);
    font-size: 1.8rem;
    color: var(--pure-gold);
    text-shadow: var(--glow-md);
}

.modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: none;
    border: none;
    color: var(--pure-gold);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.modal-close:hover {
    opacity: 1;
}

.modal-content {
    padding: var(--space-xl);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    color: var(--pure-gold);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: var(--space-md);
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--pure-gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.consent-group {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin: var(--space-xl) 0;
}

.consent-group input[type="checkbox"] {
    margin-top: 0.2rem;
    accent-color: var(--pure-gold);
}

.submit-button {
    width: 100%;
    padding: var(--space-lg);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 1px solid var(--pure-gold);
    color: var(--pure-gold);
    font-family: var(--font-mystical);
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.submit-button:hover {
    box-shadow: 
        0 0 40px rgba(255, 215, 0, 0.4),
        inset 0 0 30px rgba(255, 215, 0, 0.2);
    text-shadow: var(--glow-sm);
}

/* ================================================
   RESPONSIVE DESIGN - MOBILE FIRST ENHANCEMENTS
   ================================================ */
@media (max-width: 768px) {
    :root {
        --space-xs: 0.375rem;   /* 6px */
        --space-sm: 0.625rem;   /* 10px */
        --space-md: 0.875rem;   /* 14px */
        --space-lg: 1.25rem;    /* 20px */
        --space-xl: 1.75rem;    /* 28px */
        --space-2xl: 2.5rem;    /* 40px */
        --space-3xl: 3rem;      /* 48px */
        --space-4xl: 4rem;      /* 64px */
    }
    
    /* Global mobile typography */
    body {
        font-size: 1.2rem;
        line-height: 1.6;
        overflow-x: hidden;
    }
    
    * {
        word-wrap: break-word;
        overflow-wrap: break-word;
        box-sizing: border-box;
    }
    
    p {
        font-size: 1.2rem;
        line-height: 1.6;
        text-align: center;
        margin-bottom: var(--space-lg);
        max-width: 100%;
    }
    
    h1, h2, h3, h4, h5, h6 {
        text-align: center;
        margin-bottom: var(--space-lg);
        max-width: 100%;
        word-wrap: break-word;
    }
    
    .container,
    .container-narrow {
        padding: 0 var(--space-xl);
        margin: 0 auto;
        max-width: 100%;
        box-sizing: border-box;
        text-align: center;
    }
    
    /* Hero adjustments */
    .hero-content {
        padding: var(--space-3xl) var(--space-xl) var(--space-4xl);
        margin: 0 auto;
        max-width: 100%;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-lg);
    }
    
    .portal-number span {
        font-size: 5rem;
        text-shadow: 
            0 0 30px rgba(255, 215, 0, 1),
            0 0 60px rgba(255, 215, 0, 0.8),
            0 0 90px rgba(255, 215, 0, 0.5);
        margin-bottom: var(--space-xl);
        display: block;
    }
    
    .portal-date {
        font-size: 1.2rem;
        letter-spacing: 0.2em;
        margin-bottom: var(--space-2xl);
        text-shadow: 
            0 0 10px rgba(255, 215, 0, 0.8),
            0 0 20px rgba(255, 215, 0, 0.6),
            0 0 30px rgba(255, 215, 0, 0.4);
        font-weight: 600;
        background: rgba(0, 0, 0, 0.6);
        padding: var(--space-sm) var(--space-lg);
        border-radius: 25px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 215, 0, 0.3);
        display: inline-block;
    }
    
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: var(--space-2xl);
        text-shadow: 
            0 0 20px rgba(255, 215, 0, 0.8),
            0 0 40px rgba(255, 215, 0, 0.5);
    }
    
    .hero-title .line1 {
        font-size: 1.8rem;
        margin-bottom: var(--space-sm);
        display: block;
    }
    
    .hero-title .line2 {
        text-shadow: 
            0 0 25px rgba(255, 215, 0, 0.9),
            0 0 50px rgba(255, 215, 0, 0.6),
            0 0 75px rgba(255, 215, 0, 0.3);
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
        padding: 0 var(--space-xl);
        text-align: center;
        line-height: 1.5;
        margin: 0 auto var(--space-3xl);
        max-width: 90%;
        text-shadow: 
            0 0 15px rgba(255, 255, 255, 0.8),
            0 0 30px rgba(255, 215, 0, 0.4);
        background: rgba(0, 0, 0, 0.4);
        padding: var(--space-lg) var(--space-xl);
        border-radius: 15px;
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    /* CTA Button Mobile */
    .cta-mystical {
        padding: var(--space-lg) var(--space-2xl);
        font-size: 1.2rem;
        display: block;
        max-width: 320px;
        margin: 0 auto;
        text-align: center;
    }
    
    /* Section spacing */
    section {
        padding: var(--space-2xl) var(--space-lg);
        margin: 0 auto;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .section-title {
        font-size: 2.5rem;
        margin-bottom: var(--space-xl);
        text-align: center;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        text-align: center;
        margin-bottom: var(--space-lg);
    }
    
    /* Portal features */
    .portal-features {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .feature-card {
        padding: var(--space-xl) var(--space-lg);
        text-align: center;
        margin-bottom: var(--space-lg);
        box-sizing: border-box;
    }
    
    .feature-card h3 {
        font-size: 1.4rem;
        margin-bottom: var(--space-md);
    }
    
    .feature-card p {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    /* Value display */
    .value-free {
        font-size: 3rem;
    }
    
    /* What's included cards */
    .included-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .included-card {
        padding: var(--space-xl) var(--space-lg);
        text-align: center;
        margin-bottom: var(--space-lg);
        box-sizing: border-box;
    }
    
    .card-title {
        font-size: 1.4rem !important;
        margin-bottom: var(--space-md);
    }
    
    .card-features li {
        font-size: 1rem;
        margin-bottom: var(--space-sm);
        line-height: 1.4;
    }
    
    .card-value {
        font-size: 1.2rem !important;
        font-weight: bold;
    }
    
    .card-icon {
        font-size: 2rem;
    }
    
    /* Schedule */
    .schedule-day {
        padding-left: 0;
        margin-bottom: var(--space-lg);
    }
    
    .day-marker {
        position: static;
        margin: 0 auto var(--space-md);
        width: 50px;
        height: 50px;
    }
    
    .day-number {
        font-size: 1.5rem;
    }
    
    .day-content {
        padding: var(--space-xl) var(--space-lg);
        text-align: center;
        margin-bottom: var(--space-lg);
        box-sizing: border-box;
    }
    
    .day-content h3 {
        font-size: 1.5rem;
        margin-bottom: var(--space-md);
    }
    
    .session {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
        text-align: center;
        margin-bottom: var(--space-md);
    }
    
    .session-time {
        font-weight: 600;
        color: var(--pure-gold);
        font-size: 1rem;
    }
    
    .session-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .day-theme {
        font-size: 0.95rem;
        margin-bottom: var(--space-md);
        opacity: 0.9;
    }
    
    /* About section */
    .about-container {
        text-align: center;
    }
    
    .about-image {
        max-width: 300px;
        margin: 0 auto var(--space-xl);
    }
    
    .about-name {
        font-size: 2rem;
        text-align: center;
        margin-bottom: var(--space-md);
    }
    
    .about-title {
        font-size: 1.3rem;
        text-align: center;
        margin-bottom: var(--space-lg);
    }
    
    .about-bio {
        font-size: 1.2rem;
        text-align: center;
        line-height: 1.6;
        margin-bottom: var(--space-xl);
    }
    
    .credentials {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
        justify-items: center;
    }
    
    .credential-text {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .credential-icon {
        font-size: 1.2rem;
    }
    
    /* Testimonials */
    .testimonial-grid {
        gap: var(--space-lg);
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        text-align: center;
        padding: var(--space-xl) var(--space-lg);
        margin-bottom: var(--space-lg);
        box-sizing: border-box;
    }
    
    .testimonial-quote {
        font-size: 1.2rem;
        line-height: 1.6;
        margin-bottom: var(--space-lg);
    }
    
    .testimonial-author {
        font-size: 1.1rem;
    }
    
    /* FAQ */
    .faq-container {
        text-align: center;
    }
    
    .faq-item {
        margin-bottom: var(--space-xl);
        padding-bottom: var(--space-lg);
        text-align: center;
    }
    
    .faq-question {
        font-size: 1.3rem;
        margin-bottom: var(--space-md);
        text-align: center;
    }
    
    .faq-answer {
        font-size: 1.2rem;
        line-height: 1.6;
        text-align: center;
    }
    
    /* Final CTA */
    .portal-symbol-large {
        font-size: 4.5rem;
        margin: var(--space-xl) 0;
        text-align: center;
    }
    
    .final-text {
        font-size: 1.3rem;
        text-align: center;
        line-height: 1.6;
        margin-bottom: var(--space-lg);
    }
    
    .final-heading {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: var(--space-xl);
    }
    
    .final-note {
        font-size: 0.95rem;
        text-align: center;
        margin-top: var(--space-lg);
        opacity: 0.9;
    }
    
    .spots-remaining {
        font-weight: 600;
        color: var(--pure-gold);
    }
    
    /* Modal */
    .modal-container {
        margin: 0;
        width: 100%;
        max-height: calc(100vh - 4rem);
        overflow-y: auto;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .form-group label {
        font-size: 1rem;
        margin-bottom: var(--space-sm);
    }
    
    .form-group input,
    .form-group select {
        font-size: 1.1rem;
        padding: var(--space-md);
    }
    
    .consent-group label {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .submit-button {
        font-size: 1.2rem;
        padding: var(--space-lg) var(--space-xl);
        min-height: 3.5rem;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    :root {
        --space-xs: 0.25rem;    /* 4px */
        --space-sm: 0.5rem;     /* 8px */
        --space-md: 0.75rem;    /* 12px */
        --space-lg: 1rem;       /* 16px */
        --space-xl: 1.5rem;     /* 24px */
        --space-2xl: 2rem;      /* 32px */
        --space-3xl: 2.5rem;    /* 40px */
        --space-4xl: 3rem;      /* 48px */
    }
    
    /* Typography scaling */
    html {
        font-size: 14px;
    }
    
    /* Hero fine-tuning */
    .portal-number span {
        font-size: 4rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-title .line1 {
        font-size: 1rem;
    }
    
    /* Container padding */
    .container {
        padding: 0 var(--space-md);
    }
    
    /* Cards full width */
    .feature-card,
    .included-card,
    .testimonial-card {
        margin: 0 calc(-1 * var(--space-md));
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    
    /* Credentials single column on very small */
    .credentials {
        grid-template-columns: 1fr;
    }
    
    /* Schedule mobile optimization */
    .day-content h3 {
        font-size: 1.1rem;
    }
    
    .session-title {
        font-size: 0.85rem;
    }
    
    /* About section */
    .about-image {
        max-width: 250px;
    }
    
    /* Blockquotes */
    blockquote {
        font-size: 0.9rem;
        padding: var(--space-md);
    }
}

/* Landscape mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: var(--space-2xl) 0;
    }
    
    .portal-number span {
        font-size: 3.5rem;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    .cta-mystical,
    button,
    input,
    select,
    textarea {
        min-height: 44px;
    }
    
    /* Remove hover effects on touch */
    .feature-card:hover,
    .included-card:hover,
    .testimonial-card:hover {
        transform: none;
    }
}

/* ================================================
   ANIMATIONS & INTERACTIONS
   ================================================ */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fade-in 1s ease-out;
}

/* Smooth transitions for interactive elements */
a, button, input, select, textarea {
    transition: all 0.3s ease;
}

/* Focus styles */
:focus {
    outline: 2px solid var(--pure-gold);
    outline-offset: 2px;
}

/* Selection */
::selection {
    background: rgba(255, 215, 0, 0.3);
    color: #fff;
}

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

::-webkit-scrollbar-track {
    background: var(--cosmic-black);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 215, 0, 0.5);
}

/* ================================================
   ADDITIONAL MYSTICAL COMPONENTS
   ================================================ */

/* Divine Laws */
.divine-laws {
    text-align: center;
    margin: var(--space-2xl) 0;
}

.law-text {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: var(--space-lg);
    font-weight: 300;
    opacity: 0.9;
}

.divine-quote {
    font-family: var(--font-mystical);
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-style: italic;
    text-align: center;
    line-height: 1.6;
    margin: var(--space-2xl) 0;
    padding: var(--space-xl);
    background: rgba(255, 215, 0, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
}

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

.truth-statement {
    text-align: center;
    margin: var(--space-2xl) 0;
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.7;
}

.truth-statement p {
    margin-bottom: var(--space-lg);
}

/* Final Note */
.final-note {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: var(--space-lg);
}