/* ==========================================================================
   Sacred Elyments — Electric Botanical & Neo-Emerald Design System
   Typography: Modern Tech Luxury (Outfit + Plus Jakarta Sans)
   Palette: Punchy Electric Mint (#00F59B), Radiant Forest (#044A30),
            Vivid Violet (#7C3AED), & Neon Blossom (#FF2E93)
   Governed by: web-design-guidelines, ui-ux-pro-max & framer-motion-pro Skills
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap");

:root {
    /* Base High-Contrast Canvas */
    --bg-canvas: #F0F9F4;
    --bg-canvas-subtle: #E2F5EB;
    --bg-surface: #FFFFFF;
    
    /* Punchy Electric Botanical Palette */
    --color-emerald-deep: #02261A;
    --color-emerald-forest: #044A30;
    --color-emerald-vibrant: #00C875;
    --color-emerald-mint: #00F59B;
    --color-emerald-glow: rgba(0, 245, 155, 0.45);
    
    /* Punchy Vivid Violet & Neon Accents */
    --color-lavender-deep: #4C1D95;
    --color-lavender: #7C3AED;
    --color-lavender-light: #DDD6FE;
    --color-lavender-glow: rgba(124, 58, 237, 0.35);
    
    /* Neon Blossom & Radiant Amber */
    --color-blossom-rose: #FF2E93;
    --color-blossom-light: #FCE7F3;
    --color-amber-dew: #F59E0B;
    --color-amber-light: #FEF3C7;
    
    /* High-Contrast Typography */
    --text-primary: #04261A;
    --text-secondary: #1F4534;
    --text-muted: #4A6E5D;
    --border-glass: rgba(0, 200, 117, 0.25);
    --border-glass-hover: rgba(0, 245, 155, 0.65);
    
    /* Ultra-Luminous Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.88);
    --glass-nav: rgba(255, 255, 255, 0.35);
    --glass-tray: rgba(255, 255, 255, 0.96);
    --shadow-soft: 0 10px 30px -4px rgba(4, 74, 48, 0.10);
    --shadow-glass: 0 16px 40px -8px rgba(4, 74, 48, 0.14);
    --shadow-glow: 0 0 35px rgba(0, 245, 155, 0.35);

    /* Framer Motion Spring Timing Tokens */
    --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring-snappy: cubic-bezier(0.2, 0.8, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Layout & Touch Constraints */
    --touch-target-min: 48px;
    --safe-area-bottom: env(safe-area-inset-bottom, 16px);
}

/* Global Architectural Resets */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-canvas);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-canvas);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.65;
    min-height: 100vh;
    position: relative;
    padding-bottom: 0;
}

/* Typography Hierarchy: Outfit Headings + Plus Jakarta Sans Body */
h1, h2, h3, h4, h5, h6, .font-heading, .font-serif {
    font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
    letter-spacing: -0.025em;
}

p, span, a, button, input, textarea, select, .font-sans {
    font-family: "Plus Jakarta Sans", sans-serif;
}

/* High-Energy Vibrant Auroras */
body::before {
    content: "";
    position: fixed;
    top: -150px;
    right: -100px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 245, 155, 0.22) 0%, rgba(124, 58, 237, 0.16) 45%, rgba(240, 249, 244, 0) 75%);
    pointer-events: none;
    z-index: 0;
    filter: blur(50px);
    animation: auroraFloat1 16s ease-in-out infinite alternate;
}

body::after {
    content: "";
    position: fixed;
    bottom: -150px;
    left: -100px;
    width: 750px;
    height: 750px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.18) 0%, rgba(255, 46, 147, 0.14) 45%, rgba(240, 249, 244, 0) 75%);
    pointer-events: none;
    z-index: 0;
    filter: blur(60px);
    animation: auroraFloat2 20s ease-in-out infinite alternate;
}

@keyframes auroraFloat1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-60px, 40px) scale(1.12); }
}

@keyframes auroraFloat2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, -50px) scale(1.18); }
}

/* Subtle Organic Noise */
.texture-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.025'/%3E%3C/svg%3E");
    z-index: 999;
}

/* Punchy Radiant Gradient Text */
.text-gradient-aurora {
    background: linear-gradient(135deg, #044A30 0%, #00C875 35%, #7C3AED 75%, #FF2E93 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Frosted Ultra-Glassmorphism Cards */
.ethereal-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(190%);
    -webkit-backdrop-filter: blur(20px) saturate(190%);
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-glass);
}

.ethereal-glass-nav {
    background: rgba(4, 28, 20, 0.90) !important;
    backdrop-filter: blur(24px) saturate(190%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(190%) !important;
    border: 1px solid rgba(52, 211, 153, 0.35) !important;
    box-shadow: 0 16px 40px -4px rgba(0, 0, 0, 0.7), 0 0 25px rgba(16, 185, 129, 0.2) !important;
}

.ethereal-glass-nav #headerBrandTitle {
    color: #ffffff !important;
    font-weight: 900 !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.ethereal-glass-nav ul a {
    color: rgba(255, 255, 255, 0.92) !important;
    font-weight: 700 !important;
    transition: all 0.2s ease;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.ethereal-glass-nav ul a:hover {
    color: #6ee7b7 !important;
    text-shadow: 0 0 12px rgba(110, 231, 183, 0.8);
}

.ethereal-glass-nav ul a.active,
.ethereal-glass-nav ul a[class*="text-emerald-300"],
.ethereal-glass-nav ul a[class*="border-b-2"] {
    color: #6ee7b7 !important;
    font-weight: 900 !important;
    border-bottom: 2px solid #34d399 !important;
    text-shadow: 0 0 14px rgba(52, 211, 153, 0.9);
}

/* Ethereal Floating Custom Blend Tray */
.ethereal-glass-tray {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(0, 245, 155, 0.40);
    box-shadow: 0 20px 40px -10px rgba(4, 74, 48, 0.25), 0 0 25px rgba(0, 245, 155, 0.15);
}

@media (max-width: 768px) {
    #customBlendTray {
        bottom: calc(5.25rem + env(safe-area-inset-bottom, 0px)) !important;
        width: calc(100% - 1.5rem) !important;
        max-width: none !important;
    }
}

/* Accessibility Focus Visible */
:focus-visible {
    outline: 2px solid #00F59B !important;
    outline-offset: 3px !important;
}

/* ==========================================================================
   ETHEREAL TOAST NOTIFICATION SYSTEM
   ========================================================================== */
#sanctuaryToastContainer {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    pointer-events: none;
    max-width: calc(100vw - 2rem);
}

.sanctuary-toast {
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 15px 35px -5px rgba(4, 74, 48, 0.20), 0 0 15px rgba(0, 245, 155, 0.15);
    font-size: 0.8125rem;
    font-weight: 700;
    color: #04261A;
    border: 1.5px solid rgba(0, 245, 155, 0.45);
    animation: toastSlideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.sanctuary-toast.toast-alert {
    border-color: rgba(220, 38, 38, 0.45);
    background: rgba(254, 242, 242, 0.96);
    color: #991B1B;
    box-shadow: 0 15px 35px -5px rgba(220, 38, 38, 0.20);
}

.sanctuary-toast.toast-info {
    border-color: rgba(124, 58, 237, 0.45);
    background: rgba(245, 243, 255, 0.96);
    color: #581C87;
    box-shadow: 0 15px 35px -5px rgba(124, 58, 237, 0.20);
}

.sanctuary-toast.toast-exit {
    opacity: 0;
    transform: translateX(30px) scale(0.95);
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.92);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.ethereal-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 1.25rem;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s var(--ease-spring), border-color 0.25s ease, box-shadow 0.25s var(--ease-spring);
    will-change: transform;
}

.ethereal-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 245, 155, 0.7);
    box-shadow: 0 20px 45px -8px rgba(4, 74, 48, 0.16), 0 0 20px rgba(0, 245, 155, 0.15);
}

/* Punchy Electric Spring Interactive Buttons */
.btn-emerald {
    background: linear-gradient(135deg, #044A30 0%, #00C875 55%, #00F59B 100%);
    color: #FFFFFF !important;
    font-weight: 800;
    font-size: 0.8125rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 9999px;
    padding: 0.875rem 2.25rem;
    min-height: var(--touch-target-min);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 16px rgba(0, 200, 117, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    position: relative;
    border: none;
    outline: none;
    -webkit-appearance: none;
    isolation: isolate;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.btn-emerald:hover {
    box-shadow: 0 6px 22px rgba(0, 200, 117, 0.55), 0 0 20px rgba(0, 245, 155, 0.4);
    transform: translateY(-2px);
}

.btn-emerald:active {
    transform: translateY(0) scale(0.98);
}

.btn-ghost-glass {
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(12px);
    color: #044A30;
    font-weight: 800;
    font-size: 0.8125rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 9999px;
    padding: 0.875rem 2rem;
    min-height: var(--touch-target-min);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 1.5px solid rgba(0, 200, 117, 0.35);
    transition: transform 0.25s var(--ease-spring-snappy), background 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
    will-change: transform;
}

.btn-ghost-glass:hover {
    background: #FFFFFF;
    border-color: #00F59B;
    box-shadow: 0 10px 25px -4px rgba(0, 200, 117, 0.25);
    transform: translateY(-2px);
}

/* ==========================================================================
   7 HUMAN CHAKRAS COLOR SPECTRUM & BADGES
   Muladhara (Root: Red) | Svadhisthana (Sacral: Orange) | Manipura (Solar: Gold)
   Anahata (Heart: Emerald) | Vishuddha (Throat: Cyan) | Ajna (Third Eye: Indigo)
   Sahasrara (Crown: Violet) | Universal (Rescue: Sun Gold)
   ========================================================================== */

/* 1. Root Chakra (Muladhara - Ruby Red / Fear & Survival) */
.badge-fear { background: rgba(220, 38, 38, 0.16); color: #991B1B; border: 1.5px solid rgba(220, 38, 38, 0.45); font-weight: 700; }
.card-theme-fear {
    background: linear-gradient(165deg, rgba(254, 242, 242, 0.96) 0%, rgba(255, 255, 255, 0.98) 100%);
    border: 1.5px solid rgba(220, 38, 38, 0.30);
    box-shadow: 0 10px 30px -4px rgba(220, 38, 38, 0.12);
}
.card-theme-fear:hover {
    border-color: rgba(220, 38, 38, 0.80);
    box-shadow: 0 20px 45px -6px rgba(220, 38, 38, 0.28), 0 0 25px rgba(220, 38, 38, 0.20);
}

/* 2. Sacral Chakra (Svadhisthana - Sunset Orange / Overcare & Attachment) */
.badge-overcare { background: rgba(234, 88, 12, 0.16); color: #9A3412; border: 1.5px solid rgba(234, 88, 12, 0.45); font-weight: 700; }
.card-theme-overcare {
    background: linear-gradient(165deg, rgba(255, 247, 237, 0.96) 0%, rgba(255, 255, 255, 0.98) 100%);
    border: 1.5px solid rgba(234, 88, 12, 0.30);
    box-shadow: 0 10px 30px -4px rgba(234, 88, 12, 0.12);
}
.card-theme-overcare:hover {
    border-color: rgba(234, 88, 12, 0.80);
    box-shadow: 0 20px 45px -6px rgba(234, 88, 12, 0.28), 0 0 25px rgba(234, 88, 12, 0.20);
}

/* 3. Solar Plexus Chakra (Manipura - Solar Gold / Uncertainty & Willpower) */
.badge-uncertainty { background: rgba(217, 119, 6, 0.16); color: #92400E; border: 1.5px solid rgba(217, 119, 6, 0.45); font-weight: 700; }
.card-theme-uncertainty {
    background: linear-gradient(165deg, rgba(254, 252, 232, 0.96) 0%, rgba(255, 255, 255, 0.98) 100%);
    border: 1.5px solid rgba(217, 119, 6, 0.35);
    box-shadow: 0 10px 30px -4px rgba(217, 119, 6, 0.12);
}
.card-theme-uncertainty:hover {
    border-color: rgba(217, 119, 6, 0.85);
    box-shadow: 0 20px 45px -6px rgba(217, 119, 6, 0.30), 0 0 25px rgba(217, 119, 6, 0.22);
}

/* 4. Heart Chakra (Anahata - Emerald Green / Insufficient Interest & Life Love) */
.badge-interest { background: rgba(5, 150, 105, 0.16); color: #064E3B; border: 1.5px solid rgba(5, 150, 105, 0.45); font-weight: 700; }
.card-theme-interest {
    background: linear-gradient(165deg, rgba(236, 253, 245, 0.96) 0%, rgba(255, 255, 255, 0.98) 100%);
    border: 1.5px solid rgba(5, 150, 105, 0.32);
    box-shadow: 0 10px 30px -4px rgba(5, 150, 105, 0.12);
}
.card-theme-interest:hover {
    border-color: rgba(16, 185, 129, 0.85);
    box-shadow: 0 20px 45px -6px rgba(5, 150, 105, 0.28), 0 0 25px rgba(16, 185, 129, 0.22);
}

/* 5. Throat Chakra (Vishuddha - Aquamarine Cyan / Loneliness & Expression) */
.badge-loneliness { background: rgba(2, 132, 199, 0.16); color: #075985; border: 1.5px solid rgba(2, 132, 199, 0.45); font-weight: 700; }
.card-theme-loneliness {
    background: linear-gradient(165deg, rgba(240, 249, 255, 0.96) 0%, rgba(255, 255, 255, 0.98) 100%);
    border: 1.5px solid rgba(2, 132, 199, 0.30);
    box-shadow: 0 10px 30px -4px rgba(2, 132, 199, 0.12);
}
.card-theme-loneliness:hover {
    border-color: rgba(2, 132, 199, 0.80);
    box-shadow: 0 20px 45px -6px rgba(2, 132, 199, 0.28), 0 0 25px rgba(2, 132, 199, 0.22);
}

/* 6. Third Eye Chakra (Ajna - Royal Indigo / Despondency & Higher Wisdom) */
.badge-despondency { background: rgba(67, 56, 202, 0.16); color: #312E81; border: 1.5px solid rgba(67, 56, 202, 0.45); font-weight: 700; }
.card-theme-despondency {
    background: linear-gradient(165deg, rgba(238, 242, 255, 0.96) 0%, rgba(255, 255, 255, 0.98) 100%);
    border: 1.5px solid rgba(67, 56, 202, 0.30);
    box-shadow: 0 10px 30px -4px rgba(67, 56, 202, 0.12);
}
.card-theme-despondency:hover {
    border-color: rgba(79, 70, 229, 0.80);
    box-shadow: 0 20px 45px -6px rgba(67, 56, 202, 0.28), 0 0 25px rgba(79, 70, 229, 0.22);
}

/* 7. Crown Chakra (Sahasrara - Amethyst Violet / Over-Sensitivity & Divine Light) */
.badge-sensitivity { background: rgba(124, 58, 237, 0.16); color: #581C87; border: 1.5px solid rgba(124, 58, 237, 0.45); font-weight: 700; }
.card-theme-sensitivity {
    background: linear-gradient(165deg, rgba(250, 245, 255, 0.96) 0%, rgba(255, 255, 255, 0.98) 100%);
    border: 1.5px solid rgba(124, 58, 237, 0.30);
    box-shadow: 0 10px 30px -4px rgba(124, 58, 237, 0.12);
}
.card-theme-sensitivity:hover {
    border-color: rgba(124, 58, 237, 0.80);
    box-shadow: 0 20px 45px -6px rgba(124, 58, 237, 0.28), 0 0 25px rgba(124, 58, 237, 0.22);
}

/* Special Universal Prana (Rescue Remedy - Golden Sunlight) */
.badge-rescue { background: linear-gradient(135deg, rgba(245, 158, 11, 0.25), rgba(220, 38, 38, 0.15)); color: #78350F; border: 1.5px solid rgba(245, 158, 11, 0.7); font-weight: 700; }
.card-theme-rescue {
    background: linear-gradient(165deg, rgba(254, 240, 138, 0.94) 0%, rgba(255, 255, 255, 0.98) 100%);
    border: 2px solid rgba(245, 158, 11, 0.55);
    box-shadow: 0 12px 35px -4px rgba(245, 158, 11, 0.25);
}
.card-theme-rescue:hover {
    border-color: rgba(245, 158, 11, 0.95);
    box-shadow: 0 24px 50px -6px rgba(245, 158, 11, 0.45), 0 0 30px rgba(245, 158, 11, 0.30);
}

/* Framer Motion Staggered Scroll Reveal */
.motion-init {
    opacity: 0;
    transform: translateY(28px) scale(0.97);
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.motion-revealed {
    opacity: 1;
    transform: translateY(0px) scale(1);
}

/* Click Ripple Pulse */
.motion-click-pulse {
    position: fixed;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 245, 155, 0.7), rgba(124, 58, 237, 0));
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0);
    animation: clickPulseAnim 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    z-index: 9999;
}

@keyframes clickPulseAnim {
    0% { transform: translate(-50%, -50%) scale(0); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(4); opacity: 0; }
}

/* Responsive Modes */
@media (min-width: 1024px) {
    .desktop-view-container {
        max-width: 1200px;
        margin: 0 auto;
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .mobile-bottom-nav {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .tab-view-container {
        max-width: 768px;
        margin: 0 auto;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    button, a, input, select {
        min-height: 48px;
    }
    .mobile-bottom-nav {
        display: none !important;
    }
}

@media (max-width: 767px) {
    body {
        padding-bottom: 0 !important;
    }
    .mobile-bottom-nav {
        display: none !important;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 45;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-top: 1.5px solid rgba(0, 200, 117, 0.35);
        padding: 0.5rem 0.75rem calc(var(--safe-area-bottom) + 0.25rem);
        justify-content: space-around;
        align-items: center;
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.08), 0 0 20px rgba(0, 245, 155, 0.15);
    }
    .mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-size: 0.65rem;
        font-weight: 800;
        color: var(--text-secondary);
        padding: 0.25rem 0.5rem;
        border-radius: 0.75rem;
        transition: color 0.2s ease, background 0.2s ease;
        min-width: 54px;
    }
    .mobile-nav-item.active, .mobile-nav-item:active {
        color: #044A30;
        background: rgba(0, 245, 155, 0.20);
    }
    .mobile-nav-item .material-symbols-outlined {
        font-size: 22px;
        margin-bottom: 2px;
    }
    #essenceModalContainer > div {
        border-radius: 1.5rem 1.5rem 0 0 !important;
        max-height: 88vh !important;
        margin-top: auto;
    }
    #customBlendTray {
        bottom: 74px !important;
        width: 94% !important;
    }
    #essenceFilterBar {
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }
    #essenceFilterBar > button {
        scroll-snap-align: start;
    }
}

/* Custom Scrollbars */
::-webkit-scrollbar { width: 7px; height: 7px; }
::-webkit-scrollbar-track { background: var(--bg-canvas); }
::-webkit-scrollbar-thumb { background: rgba(0, 200, 117, 0.45); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #00F59B; }

.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* View Transitions */
.view-animate-in {
    animation: springFadeIn 0.45s var(--ease-spring) forwards;
}

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

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

/* ==========================================================================
   AWARD-WINNING ALCHEMICAL PHILOSOPHY & EXTRACTION DEEP DIVE STYLES
   ========================================================================== */

.alchemical-hero-badge {
    background: linear-gradient(135deg, rgba(0, 200, 117, 0.15), rgba(124, 58, 237, 0.12));
    border: 1px solid rgba(0, 200, 117, 0.35);
    box-shadow: 0 4px 20px rgba(0, 245, 155, 0.15);
}

.frequency-spectrum-bar {
    height: 10px;
    border-radius: 9999px;
    background: linear-gradient(90deg, #EF4444 0%, #F59E0B 25%, #10B981 50%, #06B6D4 75%, #8B5CF6 100%);
    position: relative;
}

.frequency-indicator-dot {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 22px;
    border-radius: 9999px;
    background: #FFFFFF;
    border: 3px solid #0D4732;
    box-shadow: 0 0 15px rgba(0, 245, 155, 0.8);
    animation: frequencyPulse 2.5s ease-in-out infinite alternate;
}

@keyframes frequencyPulse {
    0% { left: 15%; box-shadow: 0 0 12px rgba(239, 68, 68, 0.7); }
    100% { left: 88%; box-shadow: 0 0 20px rgba(139, 92, 246, 0.9); }
}

.onion-layer-btn {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.onion-layer-btn.active {
    background: linear-gradient(135deg, #062E20, #044A30);
    color: #FFFFFF !important;
    border-color: #00F59B !important;
    box-shadow: 0 8px 24px rgba(4, 74, 48, 0.25), 0 0 15px rgba(0, 245, 155, 0.3);
    transform: translateY(-2px);
}

.alchemical-step-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(4, 74, 48, 0.12);
    border-radius: 1.5rem;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.alchemical-step-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 200, 117, 0.5);
    box-shadow: 0 16px 36px -8px rgba(4, 74, 48, 0.14), 0 0 20px rgba(0, 245, 155, 0.2);
}

.method-active-tab {
    background: #062E20 !important;
    color: #FFFFFF !important;
    box-shadow: 0 6px 20px rgba(6, 46, 32, 0.3);
}

.matrix-card {
    border-left: 4px solid #10B981;
    transition: transform 0.2s ease;
}
.matrix-card:hover {
    transform: translateX(4px);
}


/* ==========================================================================
   MOBILE HEADER, ACCESSIBLE DRAWER & SLEEK STEP WIZARD STYLES
   ========================================================================== */

.mobile-nav-drawer-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    color: #0B251B;
    text-decoration: none !important;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid transparent;
}

.mobile-nav-drawer-item:hover, .mobile-nav-drawer-item:active {
    background: rgba(0, 200, 117, 0.12);
    border-color: rgba(0, 200, 117, 0.3);
    color: #044A30 !important;
    transform: translateX(4px);
}

.mobile-nav-drawer-item.active {
    background: linear-gradient(135deg, rgba(4, 74, 48, 0.1), rgba(0, 200, 117, 0.15));
    border-color: rgba(0, 200, 117, 0.4);
    color: #044A30 !important;
    font-weight: 700;
}

/* Sleek Booking Wizard Timeline */
.wizard-step-circle {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 10;
}

.wizard-step-circle.active {
    background: linear-gradient(135deg, #044A30, #0D4732);
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(4, 74, 48, 0.3), 0 0 12px rgba(0, 245, 155, 0.4);
    border: 2px solid #00F59B;
}

.wizard-step-circle.inactive {
    background: #FFFFFF;
    color: #4A6E5D;
    border: 2px solid rgba(4, 74, 48, 0.15);
}

.wizard-step-circle.completed {
    background: #044A30;
    color: #00F59B;
    border: 2px solid #00C875;
}


/* Typewriter Cursor Animation */
.typewriter-cursor {
    display: inline-block;
    font-weight: 300;
    margin-left: 2px;
    animation: typewriterBlink 0.85s infinite ease-in-out;
}

@keyframes typewriterBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
