/* ═══════════════════════════════════════════════════════════════════════════
   KISHOR KHABIYA JAIN - APPLE DESIGN SYSTEM v4.0 (Oceanic Aurora)
   Aesthetic: Hyper-Real Glass, Precision Alignment, Product-First Storytelling
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────────────────
   FONTS
   ───────────────────────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@400;500;600;700&display=swap');
/* Using standard fonts but styling them for premium feel */

/* ─────────────────────────────────────────────────────────────────────────────
   DESIGN TOKENS (CSS Variables)
   ───────────────────────────────────────────────────────────────────────────── */
/* ─────────────────────────────────────────────────────────────────────────────
   DESIGN TOKENS (CSS Variables)
   ───────────────────────────────────────────────────────────────────────────── */
/* ─────────────────────────────────────────────────────────────────────────────
   DESIGN TOKENS (CSS Variables)
   ───────────────────────────────────────────────────────────────────────────── */
/* ─────────────────────────────────────────────────────────────────────────────
   DESIGN TOKENS (CSS Variables)
   ───────────────────────────────────────────────────────────────────────────── */
:root {
    /* 🎨 PALETTE: Divine Aura (Panch Varna & Leshya)
       Based on the deep spiritual symbolism of Jainism. */

    /* Backgrounds - TRUST & MEDITATION (Dark Blue/Black - Sadhus)
       Represents the vastness of the universe and deep concentration. */
    --bg-depth: #020617;
    /* Cosmic Navy - Infinite Depth */
    --bg-surface: #0F172A;
    /* Deep Slate - Stability */
    --bg-elevated: #1E293B;
    /* Elevated Slate */

    /* Primary Light - PEACE & AHIMSA (White - Arihants)
       Pure, radiating light representing non-violence and purity. */
    --text-primary: #FFFFFF;
    /* Pure White */
    --text-secondary: rgba(255, 255, 255, 0.9);
    --text-tertiary: rgba(255, 255, 255, 0.7);

    /* Wisdom - JOY & DISCIPLINE (Yellow - Acharyas)
       Represents spiritual guidance and ethical living. */
    --accent-gold: #FACC15;
    /* Divine Yellow */
    --accent-gold-light: #FDE047;
    /* Enlightened Light */
    --accent-gold-dim: rgba(250, 204, 21, 0.4);
    --accent-gold-gradient: linear-gradient(135deg, #FDE047 0%, #FACC15 100%);

    /* Love - COMPASSIONATE AURA (Pink - Padma Leshya)
       A soft, spiritual pink representing the purest aura of love. */
    --accent-love: #F472B6;
    /* Lotus Pink */
    --accent-love-light: #FBCFE8;
    /* Pale Rose Aura */
    --accent-warmth: #FB923C;
    /* Warm Orange (Philanthropy) */

    /* 🔮 GLASSMORPHISM: "Crystal Clarity"
       Represents the clarity of soul (Atma). */
    --glass-bg: rgba(15, 23, 42, 0.98);
    --glass-border: rgba(255, 255, 255, 0.15);
    /* Pure White Border */
    --glass-highlight: rgba(255, 255, 255, 0.25);

    --glass-shadow:
        0 8px 32px -4px rgba(0, 0, 0, 0.6),
        0 0 20px -5px rgba(244, 114, 182, 0.2),
        /* Subtle Pink Aura */
        inset 0 0 20px rgba(255, 255, 255, 0.05);
    /* Inner clarity */

    --backdrop-blur: 40px;
    --backdrop-saturate: 160%;

    /* 📐 SPACING */
    --max-width: 1140px;
    --gutter: 24px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    /* ⚡ ANIMATION */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    /* Chronicle-style snappy ease */
    --duration-fast: 0.3s;
    --duration-base: 0.6s;

    /* 🌌 ZENITH PALETTE (Liquid Glass Theme) */
    --zenith-bg: #000000;
    /* Deep Void */
    --zenith-purple: #581c87;
    /* SPIRITUAL VIOLET (Replaced Magenta) */
    /* Deep Spiritual Violet */
    --zenith-gold: #fbbf24;
    /* Amber Gold */
    --zenith-highlight: rgba(255, 255, 255, 0.9);

    /* Zenith Gradients */
    --grad-zenith-blob-1: radial-gradient(circle, var(--zenith-purple) 0%, transparent 70%);
    --grad-zenith-blob-2: radial-gradient(circle, var(--zenith-gold) 0%, transparent 70%);
}

/* ─────────────────────────────────────────────────────────────────────────────
   RESET & BASE
   ───────────────────────────────────────────────────────────────────────────── */
*,
*::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 {
    background-color: var(--bg-depth);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

/* ─────────────────────────────────────────────────────────────────────────────
   TYPOGRAPHY
   ───────────────────────────────────────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
    /* Gradient: Gold for Legacy */
    background: var(--text-primary);
    /* Default to white */
    background-clip: border-box;
    /* Reset */
    -webkit-background-clip: border-box;
    -webkit-text-fill-color: initial;
    /* Divine Halo - Subtle Gold */
    /* filter: drop-shadow(0 0 20px rgba(246, 211, 101, 0.2)); */
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.6;
    letter-spacing: 0.005em;
    max-width: 65ch;
}



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

.text-balance {
    text-wrap: balance;
}

/* ─────────────────────────────────────────────────────────────────────────────
   LAYOUT UTILITIES
   ───────────────────────────────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}

.section {
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative;
    z-index: 10;
    /* Ensure content sits above glowing bg */
}

.grid {
    display: grid;
    gap: 32px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2.75rem;
    }
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.gap-sm {
    gap: 12px;
}

.gap-md {
    gap: 24px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   COMPONENTS: ETHEREAL CRYSTAL CARD
   ───────────────────────────────────────────────────────────────────────────── */
.glass-card {
    background: var(--bg-surface);
    /* backdrop-filter: blur(var(--backdrop-blur)) saturate(var(--backdrop-saturate)); */
    /* -webkit-backdrop-filter: blur(var(--backdrop-blur)) saturate(var(--backdrop-saturate)); */
    border: 1px solid var(--glass-border);
    border-top: 1px solid var(--glass-highlight);
    border-radius: var(--radius-lg);

    /* Crystal Glow */
    box-shadow: var(--glass-shadow);

    padding: 40px;
    transition: transform var(--duration-base) var(--ease-out-expo),
        box-shadow var(--duration-base) var(--ease-out-expo),
        border-color var(--duration-fast) ease;
}

.glass-card:hover {
    transform: translateY(-6px);
    /* INTENSE COMPASSIONATE GLOW */
    box-shadow:
        0 20px 50px -10px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(244, 114, 182, 0.25),
        /* Pink Aura */
        inset 0 0 30px rgba(255, 255, 255, 0.1);
    border-color: rgba(244, 114, 182, 0.4);
    border-color: rgba(244, 114, 182, 0.4);
}

/* ─────────────────────────────────────────────────────────────────────────────
   COMPONENTS: TRUE LIQUID GLASS (Apple "Prism" Material)
   ───────────────────────────────────────────────────────────────────────────── */
.glass-liquid {
    /* Base: Ultra-Transparent Crystal */
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.03) 0%,
            rgba(255, 255, 255, 0.01) 100%);

    /* The "Thick Glass" Refraction */
    backdrop-filter: blur(60px) saturate(200%);
    -webkit-backdrop-filter: blur(60px) saturate(200%);

    /* Chamfered Edge (3D Lighting) */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    /* Catch light on top */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    /* Shadow on bottom */

    border-radius: 40px;
    /* "Liquid" Softness */
    box-shadow:
        0 20px 40px -10px rgba(0, 0, 0, 0.5),
        /* Deep Depth */
        inset 0 0 0 1px rgba(255, 255, 255, 0.05),
        /* Inner Rim */
        inset 0 0 40px rgba(255, 255, 255, 0.02);
    /* Volume */

    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.glass-liquid:hover {
    transform: translateY(-5px) scale(1.005);
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.06) 0%,
            rgba(255, 255, 255, 0.02) 100%);
    box-shadow:
        0 30px 60px -12px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(255, 255, 255, 0.1),
        /* Ambient Glow */
        inset 0 0 20px rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}



/* ─────────────────────────────────────────────────────────────────────────────
   COMPONENTS: OBSIDIAN GLOW (Dark Premium Glass)
   ───────────────────────────────────────────────────────────────────────────── */
.glass-obsidian {
    position: relative;
    /* Deep Dark Base */
    /* Deep Dark Base - Lighter for "Apple" Clarity */
    background-color: rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 60px;
    /* Full structural roundness */
    overflow: hidden;

    /* 3D TILT ENGINE */
    transform-style: preserve-3d;
    will-change: transform;
    /* transition is handled by JS for tilt, but keep it for initial load */
}

/* 3D PARALLAX CONTENT (Text Floats Above) */
.glass-obsidian>* {
    transform: translateZ(30px);
    /* Pushes text closer to user */
    pointer-events: none;
    /* Let clicks pass through to card */
}

/* The Internal Glow (Gradient) */
/* The Internal Glow (Gradient) */
.glass-obsidian::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
    /* Gradient from Mouse Angle */
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            var(--glow-color, rgba(255, 255, 255, 0.1)) 0%,
            transparent 60%);
    transition: opacity 0.4s ease;

    /* ANIMATION: Breathing Light */
    animation: obsidian-pulse 5s ease-in-out infinite alternate;
}

/* ─────────────────────────────────────────────────────────────────────────────
   OPAL GLASS (Light/Holographic for Business) 
   ───────────────────────────────────────────────────────────────────────────── */
.glass-opal {
    position: relative;
    /* Frosty White Base */
    background-color: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    overflow: hidden;

    /* 3D TILT ENGINE */
    transform-style: preserve-3d;
    will-change: transform;
}

.glass-opal>* {
    transform: translateZ(30px);
    pointer-events: none;
}

/* Internal Holo-Glow */
.glass-opal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.4;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            var(--glow-color, rgba(255, 255, 255, 0.2)) 0%,
            transparent 60%);
    transition: opacity 0.4s ease;
    mix-blend-mode: screen;
    /* Brighter blending */
}

.glass-opal:hover::before {
    opacity: 0.6;
}

/* Pastel Glow Variants */
.glow-teal {
    --glow-color: #2DD4BF;
    border-left: 2px solid rgba(45, 212, 191, 0.5);
}

.glow-blue {
    --glow-color: #60A5FA;
    border-left: 2px solid rgba(96, 165, 250, 0.5);
}

.glow-purple {
    --glow-color: #C084FC;
    border-left: 2px solid rgba(192, 132, 252, 0.5);
}

.glow-green {
    --glow-color: #4ADE80;
    border-left: 2px solid rgba(74, 222, 128, 0.5);
}

/* PASTEL AURORA (Business Background) */
.aurora-pastel-1 {
    background: radial-gradient(circle, #2DD4BF, transparent 70%);
    /* Teal */
}

.aurora-pastel-2 {
    background: radial-gradient(circle, #C084FC, transparent 70%);
    /* Purple */
}

/* ─────────────────────────────────────────────────────────────────────────────
   ORGANIC GLASS (Warm/Earthy for Community) 
   ───────────────────────────────────────────────────────────────────────────── */
.glass-organic {
    position: relative;
    /* Warm Sand Tint */
    background-color: rgba(253, 224, 71, 0.03);
    /* Very subtle warm yellow/sand tint */
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    overflow: hidden;

    /* 3D TILT ENGINE */
    transform-style: preserve-3d;
    will-change: transform;
}

.glass-organic>* {
    transform: translateZ(30px);
    pointer-events: none;
}

/* Internal Earth-Glow */
.glass-organic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.4;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            var(--glow-color, rgba(255, 255, 255, 0.2)) 0%,
            transparent 60%);
    transition: opacity 0.4s ease;
    mix-blend-mode: screen;
}

.glass-organic:hover::before {
    opacity: 0.6;
}

/* Earth/Organic Glow Variants */
.glow-emerald {
    --glow-color: #10B981;
    border-left: 2px solid rgba(16, 185, 129, 0.5);
}

.glow-sand {
    --glow-color: #D97706;
    border-left: 2px solid rgba(217, 119, 6, 0.5);
}

/* EARTH AURORA (Community Background) */
.aurora-earth-1 {
    background: radial-gradient(circle, #10B981, transparent 70%);
    /* Emerald */
}

.aurora-earth-2 {
    background: radial-gradient(circle, #F59E0B, transparent 70%);
    /* Amber */
}

/* ─────────────────────────────────────────────────────────────────────────────
   PRISM GLASS (Vibrant/Iridescent for Impact) 
   ───────────────────────────────────────────────────────────────────────────── */
.glass-prism {
    position: relative;
    /* Crystal Clear White Tint */
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(50px) saturate(180%);
    -webkit-backdrop-filter: blur(50px) saturate(180%);

    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 40px;
    overflow: hidden;

    /* 3D TILT ENGINE */
    transform-style: preserve-3d;
    will-change: transform;
}

.glass-prism>* {
    transform: translateZ(30px);
    pointer-events: none;
}

/* Internal Holo-Glow */
.glass-prism::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            var(--glow-color, rgba(255, 255, 255, 0.3)) 0%,
            transparent 60%);
    transition: opacity 0.4s ease;
    mix-blend-mode: screen;
}

.glass-prism:hover::before {
    opacity: 0.8;
}

/* Prism Glow Variants */
.glow-magenta {
    --glow-color: #EC4899;
    border-left: 2px solid rgba(236, 72, 153, 0.6);
}

.glow-cyan {
    --glow-color: #06B6D4;
    border-left: 2px solid rgba(6, 182, 212, 0.6);
}

/* PRISM AURORA (Impact Background) */
.aurora-prism-1 {
    background: radial-gradient(circle, #EC4899, transparent 70%);
    /* Magenta */
}

.aurora-prism-2 {
    background: radial-gradient(circle, #06B6D4, transparent 70%);
    /* Cyan */
}

/* ─────────────────────────────────────────────────────────────────────────────
   SPIRITUAL GLASS (Divine/Ethereal for Connect) 
   ───────────────────────────────────────────────────────────────────────────── */
.glass-spiritual {
    position: relative;
    /* Ultra-Transparent White Tint */
    background-color: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(40px) saturate(120%);
    -webkit-backdrop-filter: blur(40px) saturate(120%);

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    overflow: hidden;

    /* 3D TILT ENGINE */
    transform-style: preserve-3d;
    will-change: transform;
}

/* Rainbow Diffraction (Subtle Prism Edge) */
.glass-spiritual::after {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 40px;
    background: linear-gradient(120deg,
            rgba(192, 132, 252, 0) 20%,
            rgba(192, 132, 252, 0.3) 40%,
            rgba(244, 114, 182, 0.3) 60%,
            rgba(165, 201, 255, 0.3) 80%,
            rgba(255, 255, 255, 0) 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.6;
}

.glass-spiritual>* {
    transform: translateZ(30px);
    pointer-events: none;
}

/* Internal Spiritual-Glow */
.glass-spiritual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            var(--glow-color, rgba(255, 255, 255, 0.4)) 0%,
            transparent 70%);
    transition: opacity 0.5s ease;
    mix-blend-mode: soft-light;
}

.glass-spiritual:hover::before {
    opacity: 0.6;
}

/* Spiritual Glow Variants */
.glow-divine-lavender {
    --glow-color: #C084FC;
    border-left: 2px solid rgba(192, 132, 252, 0.6);
}

.glow-divine-pink {
    --glow-color: #F472B6;
    border-left: 2px solid rgba(244, 114, 182, 0.6);
}

/* SPIRITUAL AURORA (Connect Background) */
.aurora-spiritual-1 {
    background: radial-gradient(circle, #C084FC, transparent 75%);
    /* Soft Lavender */
    opacity: 0.5;
}

.aurora-spiritual-2 {
    background: radial-gradient(circle, #F472B6, transparent 75%);
    /* Soft Pink */
    opacity: 0.5;
}

/* ─────────────────────────────────────────────────────────────────────────────
   CRYSTAL TITANIUM (Light/Airy/Apple for Media) 
   ───────────────────────────────────────────────────────────────────────────── */
.glass-titanium {
    position: relative;
    /* High-Key White Tint */
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(60px) saturate(140%);
    -webkit-backdrop-filter: blur(60px) saturate(140%);

    border: 1px solid rgba(255, 255, 255, 0.35);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    /* Glowing top edge */

    border-radius: 40px;
    overflow: hidden;

    /* 3D TILT ENGINE */
    transform-style: preserve-3d;
    will-change: transform;
}

.glass-titanium>* {
    transform: translateZ(35px);
}

/* Internal Crystal-Glow */
.glass-titanium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.4;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            var(--glow-color, rgba(255, 255, 255, 0.6)) 0%,
            transparent 70%);
    transition: opacity 0.4s ease;
    mix-blend-mode: overlay;
}

.glass-titanium:hover::before {
    opacity: 0.8;
}

/* 🍎 ZENITH GLASS (Apple-Level Liquid) */
.glass-zenith {
    /* Ultra-Clear Base */
    background: rgba(20, 20, 20, 0.4);

    /* "Thick Glass" Refraction */
    backdrop-filter: blur(50px) saturate(180%);
    -webkit-backdrop-filter: blur(50px) saturate(180%);

    /* Delicate Rim Light (Gradient Border) */
    border: 1px solid transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);

    border-radius: 32px;

    /* Deep Shadows & Inner Glow */
    box-shadow:
        0 20px 50px -10px rgba(0, 0, 0, 0.5),
        /* Depth */
        inset 0 0 0 1px rgba(255, 255, 255, 0.05),
        /* Subtle Stroke */
        inset 0 1px 0 0 rgba(255, 255, 255, 0.2);
    /* Top internal highlight */

    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-zenith:hover {
    background: rgba(30, 30, 30, 0.5);
    transform: translateY(-4px) scale(1.01);
    box-shadow:
        0 40px 80px -20px rgba(0, 0, 0, 0.6),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(55px) saturate(200%);
}

/* Crystal Glow Variants */
.glow-crystal {
    --glow-color: #FFFFFF;
    border-left: 2px solid rgba(255, 255, 255, 0.6);
}

.glow-arctic {
    --glow-color: #A5C9FF;
    border-left: 2px solid rgba(165, 201, 255, 0.6);
}

/* CRYSTAL AURORA (Media Background) */
.aurora-crystal-1 {
    background: radial-gradient(circle, #A5C9FF, transparent 75%);
    /* Light Sky Blue */
    opacity: 0.6;
}

.aurora-crystal-2 {
    background: radial-gradient(circle, #F3E8FF, transparent 75%);
    /* Soft Lavender */
    opacity: 0.4;
}

.glow-amber {
    --glow-color: #D97706;
    border-left: 2px solid rgba(217, 119, 6, 0.5);
}

/* EARTH AURORA (Community Background) */
.aurora-earth-1 {
    background: radial-gradient(circle, #10B981, transparent 70%);
    /* Emerald */
}

.aurora-earth-2 {
    background: radial-gradient(circle, #F59E0B, transparent 70%);
    /* Amber */
}

.aurora-pastel-2 {
    background: radial-gradient(circle, #C084FC, transparent 70%);
    /* Purple */
}

@keyframes obsidian-pulse {
    0% {
        opacity: 0.6;
        filter: brightness(1);
    }

    100% {
        opacity: 0.8;
        filter: brightness(1.2);
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   UNIVERSAL CLOCK
   ───────────────────────────────────────────────────────────────────────────── */
.universal-clock {
    position: absolute;
    top: 24px;
    right: 24px;
    display: flex;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centered for circle */
    justify-content: center;
    z-index: 1000;
    font-family: 'Inter', sans-serif;
    pointer-events: none;

    /* Hue Circle Container */
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

/* HUE CIRCLE RING */
.universal-clock::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    padding: 2px;
    background: conic-gradient(from 0deg,
            #ff0000, #ff8800, #ffff00, #00ff00, #00ffff, #0000ff, #ff00ff, #ff0000);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    animation: rotate-hue 10s linear infinite;
    opacity: 0.8;
}

@keyframes rotate-hue {
    to {
        transform: rotate(360deg);
    }
}

.clock-time {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.05em;
}

.clock-date {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin-top: 4px;
}

@media (max-width: 768px) {
    .universal-clock {
        top: 16px;
        right: 16px;
    }

    .clock-time {
        font-size: 1rem;
    }

    .clock-date {
        font-size: 0.75rem;
    }
}



.glass-obsidian:hover {
    transform: translateX(10px);
    border-color: rgba(255, 255, 255, 0.3);
}

.glass-obsidian:hover::before {
    opacity: 1;
    animation-duration: 2s;
    /* Pump faster on interaction */
}

/* COLOR VARIANTS */
.glow-sunrise {
    --glow-color: rgba(245, 158, 11, 0.3);
    /* Amber/Gold */
    border-left: 1px solid rgba(245, 158, 11, 0.5);
}

.glow-foundation {
    --glow-color: rgba(234, 88, 12, 0.3);
    /* Burnt Orange */
    border-left: 1px solid rgba(234, 88, 12, 0.5);
}

.glow-passion {
    --glow-color: rgba(185, 28, 28, 0.3);
    /* Deep Red */
    border-left: 1px solid rgba(185, 28, 28, 0.5);
}

.glow-legacy {
    --glow-color: rgba(190, 24, 93, 0.3);
    /* Royal Pink */
    border-left: 1px solid rgba(190, 24, 93, 0.5);
}

/* HERO CRYSTAL (The Biography) */
.hero-crystal {
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.hero-crystal::before {
    /* Subtle Spectral Gradient (Iridescence) */
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg,
            transparent 0deg,
            rgba(255, 255, 255, 0.03) 120deg,
            transparent 180deg);
    animation: crystal-rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes crystal-rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* TIMELINE RIVER */
.timeline-river {
    position: relative;
    padding: 40px 0;
}

/* The "Stream" Line */
.timeline-river::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom,
            transparent,
            rgba(255, 255, 255, 0.1) 10%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0.1) 90%,
            transparent);
    transform: translateX(-50%);
    filter: blur(1px);
}

/* ─────────────────────────────────────────────────────────────────────────────
   COMPONENTS: BUTTONS
   ───────────────────────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-out-expo);
    border: 1px solid transparent;
}

.btn-primary {
    /* White (Peace) -> Pink (Love) -> Gold (Wisdom) */
    background: linear-gradient(135deg, #FFFFFF 0%, #FBCFE8 50%, #FDE047 100%);
    color: var(--bg-depth);
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(251, 207, 232, 0.5);
}

.btn-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(251, 207, 232, 0.7);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    /* backdrop-filter: blur(10px); */
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.02);
    border-color: var(--accent-love);
    box-shadow: 0 0 20px rgba(244, 114, 182, 0.25);
}

/* ─────────────────────────────────────────────────────────────────────────────
   NAVIGATION
   ───────────────────────────────────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1100px;
    height: 60px;
    z-index: 1000;

    background: rgba(2, 6, 23, 0.98);

    /* Cosmic Navy Tint */
    /* backdrop-filter: blur(32px) saturate(200%); */
    /* -webkit-backdrop-filter: blur(32px) saturate(200%); */
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);

    display: flex;
    align-items: center;
    padding: 0 12px;
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-logo {
    font-family: 'Playfair Display';
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 0.02em;
    color: var(--text-primary);
    white-space: nowrap;
}

.nav-logo .accent {
    color: var(--accent-love-light);
    /* Aura Glow on Logo */
    /* text-shadow: 0 0 15px rgba(244, 114, 182, 0.8), 0 0 25px rgba(244, 114, 182, 0.4); */
}

.nav-links {
    display: flex;
    gap: 4px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 10px 18px;
    border-radius: 100px;
    transition: all 0.3s var(--ease-out-expo);
}

.nav-links a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.nav-links a.active {
    background: var(--text-primary);
    color: var(--bg-depth) !important;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.nav-cta {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-warmth) 100%) !important;
    color: #000000 !important;
    padding: 10px 24px !important;
    border-radius: 100px;
    font-weight: 700 !important;
    font-size: 0.95rem;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
}

.nav-cta:hover {
    transform: scale(1.05) translateY(-1px) !important;
    box-shadow: 0 0 40px rgba(245, 158, 11, 0.7);
    background: linear-gradient(135deg, #FDE047 0%, #FACC15 100%) !important;
}

/* Mobile Menu Toggle logic remains the same */
.nav-toggle {
    display: none;
    background: none;
    border: none;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    margin: 5px 0;
}

@media(max-width: 900px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 32px;
        border-radius: 24px;
        border: 1px solid var(--glass-border);
        gap: 16px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
    }

    .nav-cta {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        cursor: pointer;
    }

    .nav-toggle span {
        width: 24px;
        height: 2px;
        background: white;
        transition: 0.3s;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   HERO SECTION
   ───────────────────────────────────────────────────────────────────────────── */
/* ─────────────────────────────────────────────────────────────────────────────
   HERO SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    /* Divine Light Beam */
    background: radial-gradient(circle at 50% -20%, rgba(255, 255, 255, 0.12), transparent 60%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-tagline {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-tertiary);
    /* Muted */
    margin-bottom: 16px;
    font-weight: 500;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    margin-bottom: 24px;
    /* Gradient: Peace (White) -> Love (Pink) -> Wisdom (Gold) */
    background: linear-gradient(135deg, #FFFFFF 20%, var(--accent-love-light) 60%, var(--accent-gold) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Divine Halo */
    /* filter: drop-shadow(0 0 25px rgba(244, 114, 182, 0.35)); */
}

/* "Khabiya Jain" - Gold Gradient + Glow */
/* "Khabiya" - Solid Yellow with Strong Glow */
.text-accent {
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: initial;
    /* Expert Fix: Crystal Clear Text with Atmospheric Glow */
    color: #FFE566;
    /* 1. Hardware acceleration for sharpness */
    transform: translateZ(0);
    /* 2. Antialiasing for crisp edges */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* 3. The "Glow" separated from the text edges */
    text-shadow:
        /* Tiny dark rim to define the edge (Sharpness) */
        0 px 1px rgba(0, 0, 0, 0.1),
        /* The Aura/Glow (Distance) */
        0 0 20px rgba(255, 215, 0, 0.6),
        0 0 40px rgba(255, 215, 0, 0.3);
}

/* 🍎 DEEP GLASS PORTRAIT (The Origin) */
.hero-portrait {
    aspect-ratio: 1;
    border-radius: 50px;
    /* Softer, more organic curvature */

    /* "Thick Glass" Material */
    background: transparent;
    border: none;
    /* Removing the border for "floating" effect */

    /* The Lens Effect */
    backdrop-filter: blur(10px);
    /* Subtle internal blur */

    position: relative;
    overflow: visible;
    /* Allowing glow to spill */

    /* Deep Refraction Shadow - The "Heft" of the glass */
    box-shadow:
        0 40px 80px -20px rgba(0, 0, 0, 0.8),
        /* Deep Anchor */
        inset 0 0 0 1px rgba(255, 255, 255, 0.1),
        /* Subtle Cut */
        inset 0 0 40px rgba(255, 255, 255, 0.05);
    /* Internal Volume */

    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-portrait:hover {
    transform: scale(1.02) translateY(-10px);
}

/* Glowing Aura - ORIGIN LIGHT */
.hero-portrait::before {
    content: '';
    position: absolute;
    inset: -20%;
    z-index: -1;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    filter: blur(40px);
    opacity: 0.6;
    animation: pulse-glow 6s ease-in-out infinite alternate;
}

/* Hero Portrait Glass Container for About Page */
/* Hero Portrait Glass Container for About Page */
.portrait-container-glass {
    position: relative;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    /* For 3D feel */
}

/* THE LOVING PRESENCE (Portrait) */
.portrait-loving {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 40px;
    /* Matching Obsidian curvature */

    /* The "Loving" Glow - Pink Aura */
    filter: drop-shadow(0 0 30px rgba(244, 114, 182, 0.3));

    /* Integration with Glass */
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);

    transition: all 0.8s ease;
    animation: portrait-breathe 6s ease-in-out infinite alternate;

    /* Texture blend */
    mix-blend-mode: normal;
    /* Ensure colors pop */
}

@keyframes portrait-breathe {
    0% {
        filter: drop-shadow(0 0 30px rgba(244, 114, 182, 0.3));
        /* Flip Horizontal + Initial positions */
        transform: scaleX(-1) scale(1) translateY(0);
    }

    100% {
        filter: drop-shadow(0 0 50px rgba(250, 204, 21, 0.25));
        /* Shift to Gold */
        /* Flip Horizontal + Breathe Up */
        transform: scaleX(-1) scale(1.02) translateY(-5px);
    }
}

.portrait-container-glass:hover .portrait-loving {
    filter: drop-shadow(0 0 60px rgba(244, 114, 182, 0.6)) brightness(1.05);
    /* Flip Horizontal + Hover Scale */
    transform: scaleX(-1) scale(1.03) translateY(-8px);
}

/* ─────────────────────────────────────────────────────────────────────────────
   🍎 OBSIDIAN CARD ENGINE (About Page Hero)
   Concept: Deep, Rich, Cinematic Biography Card
   Reference: "Second Pic" Style
   ───────────────────────────────────────────────────────────────────────────── */

.obsidian-card {
    /* Base Material: Deep Warm Obsidian */
    background: linear-gradient(145deg, #1c1313 0%, #2a1818 100%);

    /* Structure */
    border-radius: 48px;
    border: 1px solid rgba(255, 200, 150, 0.1);
    /* Subtle Warm Outline */
    padding: 0;
    /* Content controls padding */
    position: relative;
    overflow: hidden;

    /* Elevation */
    box-shadow:
        0 40px 100px -20px rgba(0, 0, 0, 0.7),
        /* Deep Shadow */
        inset 0 0 0 1px rgba(255, 255, 255, 0.05),
        /* Inner Rim */
        inset 0 0 60px rgba(245, 158, 11, 0.05);
    /* Inner Warm Glow */

    /* Layout */
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    /* Image takes slightly less */
    align-items: center;
    min-height: 600px;
}

/* Noise Texture Overlay */
.obsidian-card::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    /* Noise Pattern SVG */
    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.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: overlay;
}

/* 🍎 EDITORIAL TYPOGRAPHY */
.obsidian-drop-cap::first-letter {
    float: left;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 0.8;
    padding-right: 12px;
    padding-left: 4px;
    /* Liquid Gold Gradient on Letter */
    background: linear-gradient(135deg, #FFE566 0%, #D97706 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    margin-top: 4px;
}

/* The Flipped Portrait Container */
.obsidian-portrait-container {
    height: 100%;
    position: relative;
    overflow: hidden;
    /* Masking the image to blend into the card on the right */
    mask-image: linear-gradient(to right, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black 80%, transparent 100%);
}

.obsidian-portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* FLIP HORIZONTAL REQUEST */
    transform: scaleX(-1);
    object-position: top center;
    filter: brightness(1.1) contrast(1.1);
    /* Pop against dark background */
}

/* Content Side */
.obsidian-content {
    padding: 60px;
    position: relative;
    z-index: 2;
}

/* Stats Pill Row */
.obsidian-stats-row {
    display: flex;
    gap: 24px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.obsidian-stat-pill {
    /* Glass Pill Style */
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    /* Full Pill */
    padding: 16px 32px;
    text-align: center;
    flex: 1;
    /* Distribute evenly */
    min-width: 120px;
    transition: all 0.4s ease;
}

.obsidian-stat-pill:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(250, 204, 21, 0.3);
    /* Gold Hint */
    transform: translateY(-5px);
}

.stat-pill-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}

.stat-pill-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--accent-gold);
    /* Gold */
}

/* Responsive Obsidian */
@media (max-width: 1024px) {
    .obsidian-card {
        grid-template-columns: 1fr;
        grid-template-rows: 400px auto;
        gap: 0;
    }

    .obsidian-portrait-container {
        mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
        -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    }
}

@keyframes portrait-breathe {
    0% {
        filter: drop-shadow(0 0 30px rgba(244, 114, 182, 0.3));
        /* Flip Horizontal + Initial positions */
        transform: scaleX(-1) scale(1) translateY(0);
    }

    100% {
        filter: drop-shadow(0 0 50px rgba(250, 204, 21, 0.25));
        /* Shift to Gold */
        /* Flip Horizontal + Breathe Up */
        transform: scaleX(-1) scale(1.02) translateY(-5px);
    }
}

.portrait-container-glass:hover .portrait-loving {
    filter: drop-shadow(0 0 60px rgba(244, 114, 182, 0.6)) brightness(1.05);
    /* Flip Horizontal + Hover Scale */
    transform: scaleX(-1) scale(1.03);
}

@keyframes pulse-glow {
    0% {
        opacity: 0.7;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.15);
    }
}

@media(max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        order: 2;
    }

    .hero-image {
        order: 1;
        margin: 0 auto;
        width: 80%;
        max-width: 400px;
    }

    .hero-ctas {
        justify-content: center;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   ANIMATED BACKGROUND (Divine Aura)
   ───────────────────────────────────────────────────────────────────────────── */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: var(--bg-depth);
    overflow: hidden;
    /* Spotlights of Clarity */
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.05), transparent 50%),
        var(--bg-depth);
}

/* FILM GRAIN TEXTURE (The "Touch") */
.animated-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtle noise for "Paper/Film" feel */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/200 200'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 10;
    /* Above the gradients */
}

/* VIGNETTE (The "Spotlight") */
.animated-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Darken edges to focus on content (Infinite Depth) */
    background: radial-gradient(circle, transparent 40%, rgba(2, 6, 23, 0.8) 100%);
    pointer-events: none;
    z-index: 5;
}

/* ─────────────────────────────────────────────────────────────────────────────
   ETHEREAL RAIN CANVAS
   ───────────────────────────────────────────────────────────────────────────── */
#rain-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    /* Blend mode for subtle integration with the gradient bg */
    mix-blend-mode: plus-lighter;
}

/* ─────────────────────────────────────────────────────────────────────────────
   LEGACY PARTICLES (DISABLED)
   ───────────────────────────────────────────────────────────────────────────── */
/*
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background-image: radial-gradient(white 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.05;
}
*/

/* ─────────────────────────────────────────────────────────────────────────────
   ETHEREAL FLOW (Cursor Glow)
   ───────────────────────────────────────────────────────────────────────────── */
.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    z-index: -1;
    pointer-events: none;

    /* Spiritual Light: White Core -> Soft Pink Aura -> Transparent */
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(244, 114, 182, 0.05) 30%, transparent 70%);

    /* Positioning using CSS variables updated by JS */
    transform: translate(calc(var(--cursor-x, -50%) - 50%), calc(var(--cursor-y, -50%) - 50%));

    /* Fluid Lag for "Water" feel */
    transition: transform 0.15s cubic-bezier(0.2, 0, 0.2, 1);

    /* Illuminates the dark background nicely */
    mix-blend-mode: plus-lighter;
}

/* Disable Cursor Glow on Touch Devices */
@media (hover: none) and (pointer: coarse) {
    .cursor-glow {
        display: none;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   LIQUID TOUCH EFFECT (Minimal Glass Ripple)
   ───────────────────────────────────────────────────────────────────────────── */
.liquid-ripple {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;

    /* Center the element for transform scaling */
    transform: translate(-50%, -50%);

    /* The "Liquid Glass" Look */
    background: rgba(255, 255, 255, 0.1);
    /* backdrop-filter: blur(12px) saturate(160%); */
    /* -webkit-backdrop-filter: blur(12px) saturate(160%); */
    border: 1px solid rgba(255, 255, 255, 0.3);
    mix-blend-mode: overlay;

    animation: ripple-expand 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes ripple-expand {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.5;
    }

    100% {
        transform: translate(-50%, -50%) scale(15);
        /* Expands to ~300px */
        opacity: 0;
    }
}

/* 
   THE BLOBS:
   1. Divine Gold (Top Left) - Wisdom (Acharyas)
   2. Padma Pink (Bottom Right) - Love/Compassionate Aura (Leshya)
*/
/* 
   THE VOLUMETRIC AURORAS ("The Breath")
   Instead of just "blobs", these are living lights.
*/
.aurora-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    /* Soft Volumetric Blur */
    opacity: 0.6;
    mix-blend-mode: hard-light;
    /* INTERACTION: Colors "burn" into the dark bg */
    /* INTERACTION: Colors "burn" into the dark bg */
    /* Remove drift, handled by cosmic system now, or keep for internal organic movement? 
       Let's keep organic drift BUT ALSO rotate the whole system. */
    animation: aurora-drift 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

/* THE COSMIC CLOCKWORK (New Wrapper) */
.cosmic-system {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    animation: cosmic-clock 60s linear infinite;
    /* Subliminal Rotation */
}

@keyframes cosmic-clock {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.aurora-1 {
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, #DB2777, transparent 70%);
    /* Deep Pink (Left side as per ref) */
    top: -30%;
    left: -10%;
    animation-delay: 0s;
}

.aurora-2 {
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, #F59E0B, transparent 70%);
    /* Amber/Gold (Right side as per ref) */
    bottom: -20%;
    right: -10%;
    animation-delay: -10s;
}

/* BREATHING ANIMATION */
@keyframes aurora-drift {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }

    50% {
        opacity: 0.7;
        /* Breathe In */
    }

    100% {
        transform: translate(30px, 50px) scale(1.1);
        opacity: 0.5;
        /* Breathe Out */
    }
}

@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, 50px) scale(1.1);
    }

}

/* .particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background-image: radial-gradient(white 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.05;
} */

/* ─────────────────────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────────────────────── */
.footer {
    border-top: 1px solid var(--glass-border);
    background: var(--bg-depth);
    padding: 80px 0 32px;
}

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

.footer-brand p {
    margin-top: 16px;
    font-size: 0.95rem;
    color: var(--text-tertiary);
}

.footer-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    color: var(--text-tertiary);
    font-size: 0.875rem;
}

@media(max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media(max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   COMPONENTS: STATS & PHILOSOPHY
   ───────────────────────────────────────────────────────────────────────────── */
.stat-card {
    text-align: center;
    padding: 32px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, white 20%, var(--accent-gold));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.value-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.value-desc {
    font-size: 0.95rem;
    color: var(--text-tertiary);
}

/* ─────────────────────────────────────────────────────────────────────────────
   TIMELINE PILLS (Horizontal)
   ───────────────────────────────────────────────────────────────────────────── */
.timeline-pills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    /* Center horizontally */
    margin-bottom: 40px;
}

.timeline-pill {
    background: rgba(255, 255, 255, 0.03);
    /* Subtle glass */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    /* Full pill shape */
    padding: 12px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 140px;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
}

.timeline-pill:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.3);
}

.pill-year {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 4px;
}

.pill-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ─────────────────────────────────────────────────────────────────────────────
   COMPONENTS: TIMELINE (VERTICAL - LEGACY)
   ───────────────────────────────────────────────────────────────────────────── */
.timeline {
    position: relative;
    padding-left: 24px;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.timeline-item {
    position: relative;
    padding-left: 32px;
    margin-bottom: 48px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -29px;
    top: 6px;
    width: 12px;
    height: 12px;
    background: var(--accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
}

.timeline-title {
    font-size: 1.25rem;
    margin: 8px 0;
}

.timeline-desc {
    font-size: 0.95rem;
}

/* ─────────────────────────────────────────────────────────────────────────────
   COMPONENTS: INITIATIVES
   ───────────────────────────────────────────────────────────────────────────── */
.initiative-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

.initiative-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.initiative-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.initiative-desc {
    flex-grow: 1;
    margin-bottom: 24px;
}

.initiative-link {
    font-weight: 600;
    color: var(--accent-gold);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.initiative-link:hover {
    gap: 12px;
    /* Animated arrow push */
}

/* ─────────────────────────────────────────────────────────────────────────────
   COMPONENTS: SOCIAL HUB (Apple Card Style)
   ───────────────────────────────────────────────────────────────────────────── */
.social-card {
    padding: 0;
    /* Image goes edge to edge */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: left;
    height: 100%;
}

.social-thumbnail {
    position: relative;
    height: 180px;
    background: #111;
    overflow: hidden;
}

.social-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.social-card:hover .social-thumbnail-img {
    transform: scale(1.05);
}

.social-thumbnail-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.social-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent-ocean);
    color: white;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 700;
}

.social-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.social-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.8rem;
    color: white;
}

.social-icon.youtube {
    background: #FF0000;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon.facebook {
    background: #1877F2;
}

.social-icon.twitter {
    background: #000000;
    border: 1px solid #333;
}

.social-header-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.social-platform {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-tertiary);
}

.social-handle {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.social-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    margin-bottom: auto;
    /* Push stats down */
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-primary);
}

.social-stats {
    display: flex;
    gap: 16px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--glass-border);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.social-follow-btn {
    margin-top: 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-gold);
}

/* ─────────────────────────────────────────────────────────────────────────────
   COMPONENTS: TESTIMONIALS
   ───────────────────────────────────────────────────────────────────────────── */
.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-quote {
    font-size: 1.25rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--bg-surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--accent-gold);
    border: 1px solid var(--glass-border);
}

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

.testimonial-role {
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

/* Reveal Animations (Simple Fade Up) */
/* Reveal Animations (Chronicle Physics) */
.reveal,
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    transition: opacity 1.2s var(--ease-out-expo), transform 1.2s var(--ease-out-expo);
    will-change: opacity, transform;
}

.reveal.in-view,
.scroll-reveal.in-view {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Depth Integration: Blur to Sharp Focus */
.blur-bg {
    filter: none;
    opacity: 0.6;
    transform: scale(1.05);
    /* Slight zoom out effect */
    transition: filter 1.5s var(--ease-out-expo),
        opacity 1.5s var(--ease-out-expo),
        transform 1.5s var(--ease-out-expo);
    will-change: filter, opacity, transform;
}

.blur-bg.in-view {
    filter: blur(0);
    opacity: 1;
    transform: scale(1);
}

/* Fade Up Text */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
    will-change: opacity, transform;
}

.fade-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

@keyframes revealAnim {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Continuous Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

.float {
    animation: float 6s ease-in-out infinite;
}

/* ─────────────────────────────────────────────────────────────────────────────
   UTILITY CLASSES FOR SECTIONS
   ───────────────────────────────────────────────────────────────────────────── */
.text-gold {
    color: var(--accent-gold);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

.value-card {
    text-align: center;
}

.timeline-year {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 12px;
}


/* ─────────────────────────────────────────────────────────────────────────────
   FONTS
   ───────────────────────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* ─────────────────────────────────────────────────────────────────────────────
   CSS VARIABLES (Design Tokens) - ENHANCED
   ───────────────────────────────────────────────────────────────────────────── */
:root {
    /* ═══════════════════════════════════════════════════════════════════════════
       DESIGN SYSTEM v3.2: "APPLE ELEGANCE"
       Aesthetic: Hyper-Real Glass & International Quality Alignment
       ═══════════════════════════════════════════════════════════════════════════ */

    /* CORE COLORS */
    --color-bg: #050505;
    --color-bg-elevated: #0a0a0b;
    /* ROSE GOLD GRADIENT (User Requested) */
    --gradient-rose: linear-gradient(135deg, #FFD586 0%, #FF9EAC 100%);

    /* ACCENTS */
    --accent-gold: #D4AF37;
    /* Gold */
    --color-accent-soft: rgba(212, 175, 55, 0.15);

    /* NEUTRALS */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.85);
    /* Increased for readability */
    --text-tertiary: rgba(255, 255, 255, 0.6);
    /* Increased for readability */

    /* GLASSMORPHISM */
    --glass-bg: rgba(15, 23, 42, 0.98);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-bright: rgba(255, 255, 255, 0.15);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);

    /* TRUST PALETTE (Deep Aurora) */
    --trust-deep: #020C12;
    /* Deepest Navy/Black */
    --trust-main: #0A2331;
    /* Rich Dark Teal */
    --trust-light: #163C4D;
    /* Muted Blue */

    /* WARMTH PALETTE (Gold/Amber) */
    --warmth-main: #D4AF37;
    /* Metallic Gold */
    --warmth-light: #F2D57E;
    /* Soft Gold */
    --warmth-glow: rgba(212, 175, 55, 0.4);

    /* BLURS */
    --blur-std: 0px;
    --blur-lg: 0px;

    /* LAYOUT & SPACING */
    --container-width: 1200px;
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 80px;

    /* ANIMATIONS */
    --ease-apple: cubic-bezier(0.25, 0.1, 0.25, 1);
    --trans-std: 0.4s var(--ease-apple);
    --trans-slow: 0.8s var(--ease-apple);
}

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

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

body {
    font-family: var(--font-body);
    background: var(--trust-deep);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    /* Apple-like fluid scrolling */
}

::selection {
    background: var(--warmth-main);
    color: var(--trust-deep);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-base);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ─────────────────────────────────────────────────────────────────────────────
   PREMIUM ANIMATED BACKGROUND (Oceanic Aurora)
   ───────────────────────────────────────────────────────────────────────────── */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--trust-deep);
    overflow: hidden;
}

/* The Deep Aurora (Trust & Warmth) */
.animated-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 15% 50%, rgba(225, 173, 134, 0.08) 0%, transparent 40%),
        /* Love-tinted warmth */
        radial-gradient(circle at 85% 30%, rgba(212, 175, 55, 0.06) 0%, transparent 40%),
        /* Gold warmth */
        radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 60%);
    /* Trust blue */
    filter: blur(80px);
    animation: auroraMove 25s ease-in-out infinite alternate;
}

.animated-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 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.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.5;
    /* Film grain texture */
    pointer-events: none;
}

@keyframes auroraMove {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-2%, -2%) scale(1.05);
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
/* ─────────────────────────────────────────────────────────────────────────────
   COMMUNITY PAGE: TRUE LIQUID GLASS (Forest/Earth Theme)
   Concept: Growth, Service, Harmony. Organic movement.
   ───────────────────────────────────────────────────────────────────────────── */
.bg-community-liquid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #02120b;
    /* Deep Forest Void */
    overflow: hidden;
}

/* Reuse the noise texture for consistency */
.bg-community-liquid::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    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.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.07;
    z-index: 2;
    pointer-events: none;
    mix-blend-mode: overlay;
}

/* COMMUNITY ORBS */
.orb-community-1 {
    /* Emerald (Growth) */
    top: 15%;
    left: 15%;
    width: 55vmax;
    height: 55vmax;
    background: radial-gradient(circle at center, #064e3b, transparent 70%);
    animation: floatOrb1 25s infinite alternate;
}

.orb-community-2 {
    /* Amber (Service/Energy) */
    bottom: 10%;
    right: 5%;
    width: 45vmax;
    height: 45vmax;
    background: radial-gradient(circle at center, #b45309, transparent 70%);
    animation: floatOrb2 22s infinite alternate;
}

.orb-community-3 {
    /* Teal (Trust/Global) */
    top: 50%;
    left: 45%;
    width: 40vmax;
    height: 40vmax;
    background: radial-gradient(circle at center, #115e59, transparent 70%);
    animation: floatOrb3 28s infinite alternate;
}

/* ─────────────────────────────────────────────────────────────────────────────
   COMMUNITY PAGE: EARTH GLASS (Card Styles)
   Concept: Clear, premium glass that sits naturally in the forest void.
   ───────────────────────────────────────────────────────────────────────────── */
.glass-earth {
    /* Ultra-Clear Base with hint of warmth */
    background: rgba(255, 255, 255, 0.03);

    /* "Thick Glass" Refraction */
    backdrop-filter: blur(50px) saturate(180%);
    -webkit-backdrop-filter: blur(50px) saturate(180%);

    /* Delicate Rim Light (Gold/Green tint) */
    border: 1px solid transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);

    border-radius: 32px;

    /* Deep Shadows & Inner Glow */
    box-shadow:
        0 20px 50px -10px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.15);
    /* Top highlight */

    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-earth:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-4px) scale(1.01);
    box-shadow:
        0 40px 80px -20px rgba(0, 0, 0, 0.6),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(55px) saturate(200%);
}

.text-earth-gold {
    color: #F59E0B;
    /* Amber/Gold for accents */
    text-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
}

.text-earth-emerald {
    color: #34d399;
    /* Emerald Green */
    text-shadow: 0 0 20px rgba(52, 211, 153, 0.4);
}

/* ─────────────────────────────────────────────────────────────────────────────
   IMPACT PAGE: TRUE LIQUID GLASS (Ocean/Humanity Theme)
   Concept: Scale, Depth, Prosperity.
   ───────────────────────────────────────────────────────────────────────────── */
.bg-impact-liquid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #050a14;
    /* Deep Ocean Void */
    overflow: hidden;
}

/* Reuse the noise texture */
.bg-impact-liquid::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    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.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.06;
    z-index: 2;
    pointer-events: none;
    mix-blend-mode: overlay;
}

/* IMPACT ORBS */
.orb-impact-1 {
    /* Royal Blue (Scale/Global) */
    top: 10%;
    right: 15%;
    width: 60vmax;
    height: 60vmax;
    background: radial-gradient(circle at center, #1e3a8a, transparent 70%);
    animation: floatOrb1 28s infinite alternate;
}

.orb-impact-2 {
    /* Warm Gold (Prosperity) */
    bottom: 5%;
    left: 10%;
    width: 50vmax;
    height: 50vmax;
    background: radial-gradient(circle at center, #b45309, transparent 70%);
    animation: floatOrb2 24s infinite alternate;
}

.orb-impact-3 {
    /* Soft Rose (Compassion) */
    top: 45%;
    left: 40%;
    width: 45vmax;
    height: 45vmax;
    background: radial-gradient(circle at center, #be185d, transparent 70%);
    animation: floatOrb3 30s infinite alternate;
}

/* IMPACT GLASS (Crystal Clear) */
/* IMPACT GLASS (Crystal Clear & Premium) */
.glass-impact {
    /* Pure Crystal Base */
    background: rgba(255, 255, 255, 0.03);

    /* "Diamond" Refraction - Enhanced */
    backdrop-filter: blur(50px) saturate(180%);
    -webkit-backdrop-filter: blur(50px) saturate(180%);

    /* Sharp, High-Tech Borders */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);

    border-radius: 32px;
    /* Smoother Radius */

    /* Clean Shadows with Depth */
    box-shadow:
        0 20px 50px -10px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.1);

    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-impact:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow:
        0 40px 80px -20px rgba(0, 0, 0, 0.6),
        inset 0 0 0 1px rgba(255, 255, 255, 0.15),
        0 0 30px rgba(255, 255, 255, 0.05);
    /* Halo */
}

/* ─────────────────────────────────────────────────────────────────────────────
   MEDIA PAGE: TRUE LIQUID GLASS (Digital Ether Theme)
   Concept: Radiance, Flow, Connectivity.
   ───────────────────────────────────────────────────────────────────────────── */
.bg-media-liquid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #090518;
    /* Deep Indigo Void */
    overflow: hidden;
}

/* Reuse the noise texture */
.bg-media-liquid::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    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.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.06;
    z-index: 2;
    pointer-events: none;
    mix-blend-mode: overlay;
}

/* MEDIA ORBS */
.orb-media-1 {
    /* Electric Violet (Creativity) */
    top: 5%;
    left: 10%;
    width: 55vmax;
    height: 55vmax;
    background: radial-gradient(circle at center, #7c3aed, transparent 70%);
    animation: floatOrb1 25s infinite alternate;
}

.orb-media-2 {
    /* Bright Cyan (Tech/Future) */
    bottom: 10%;
    right: 5%;
    width: 50vmax;
    height: 50vmax;
    background: radial-gradient(circle at center, #06b6d4, transparent 70%);
    animation: floatOrb2 22s infinite alternate;
}

.orb-media-3 {
    /* Pure Silver (Clarity) */
    top: 40%;
    left: 45%;
    width: 40vmax;
    height: 40vmax;
    background: radial-gradient(circle at center, #94a3b8, transparent 70%);
    animation: floatOrb3 28s infinite alternate;
}

/* MEDIA GLASS (High Gloss Screen) */
.glass-media {
    /* Glossy Screen Base */
    background: rgba(255, 255, 255, 0.04);

    /* High Blur for depth */
    backdrop-filter: blur(60px) saturate(200%);
    -webkit-backdrop-filter: blur(60px) saturate(200%);

    /* Tech Borders */
    border: 1px solid transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);

    border-radius: 20px;
    /* Slightly sharper cards */

    /* Digital Glow Shadow */
    box-shadow:
        0 20px 50px -10px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.3);
    /* Strong top highlight */

    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-media:hover {
    background: rgba(255, 255, 255, 0.08);
    /* Brighter hover */
    transform: translateY(-5px) scale(1.01);
    box-shadow:
        0 30px 70px -15px rgba(124, 58, 237, 0.15),
        /* Violet glow */
        inset 0 0 0 1px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.5);
}



/* ─────────────────────────────────────────────────────────────────────────────
   CONNECT PAGE: TRUE LIQUID GLASS (Liquid Dawn Theme)
   Concept: Love, Trust, Warmth, Openness.
   ───────────────────────────────────────────────────────────────────────────── */
.bg-connect-liquid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #0f0505;
    /* Deep Warm Void */
    overflow: hidden;
}

/* Reuse the noise texture */
.bg-connect-liquid::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    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.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.05;
    z-index: 2;
    pointer-events: none;
    mix-blend-mode: overlay;
}

/* CONNECT ORBS */
.orb-connect-1 {
    /* Compassion Rose (Love) */
    top: 20%;
    left: 20%;
    width: 60vmax;
    height: 60vmax;
    background: radial-gradient(circle at center, #f43f5e, transparent 70%);
    animation: floatOrb1 28s infinite alternate;
}

.orb-connect-2 {
    /* Serene Teal (Trust) */
    bottom: 10%;
    right: 10%;
    width: 50vmax;
    height: 50vmax;
    background: radial-gradient(circle at center, #14b8a6, transparent 70%);
    animation: floatOrb2 25s infinite alternate;
}

.orb-connect-3 {
    /* Golden Dawn (Warmth) */
    top: 50%;
    left: 50%;
    width: 45vmax;
    height: 45vmax;
    background: radial-gradient(circle at center, #f59e0b, transparent 70%);
    animation: floatOrb3 30s infinite alternate;
}

/* CONNECT GLASS (Soft, Inviting, Rose Gold) */
.glass-connect {
    /* Soft Warm Base */
    background: rgba(255, 245, 245, 0.03);

    /* Soft Blur for warmth */
    backdrop-filter: blur(45px) saturate(180%);
    -webkit-backdrop-filter: blur(45px) saturate(180%);

    /* Rose Gold / Warm Borders */
    border: 1px solid transparent;
    border-top: 1px solid rgba(255, 200, 200, 0.15);
    /* Soft Rose highlight */
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 200, 200, 0.05);

    border-radius: 28px;
    /* Organic curves */

    /* Soft Shadows */
    box-shadow:
        0 20px 50px -10px rgba(0, 0, 0, 0.4),
        inset 0 0 0 1px rgba(255, 200, 200, 0.03),
        inset 0 1px 0 0 rgba(255, 220, 220, 0.1);

    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-connect:hover {
    background: rgba(255, 245, 245, 0.06);
    transform: translateY(-5px) scale(1.005);
    box-shadow:
        0 30px 70px -15px rgba(244, 63, 94, 0.15),
        /* Rose glow */
        inset 0 0 0 1px rgba(255, 200, 200, 0.1),
        inset 0 1px 0 0 rgba(255, 230, 230, 0.2);
}

.bg-business-liquid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #0F0F12;
    /* Deep Charcoal Base */
    overflow: hidden;
}

/* The Grain: Essential for 'Material' feel */
.bg-business-liquid::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    /* Subtle noise texture */
    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.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.07;
    z-index: 2;
    pointer-events: none;
    mix-blend-mode: overlay;
}

/* ORB CONTAINER */
.liquid-orb-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: blur(80px);
    /* Heavy diffusion */
    z-index: 1;
}

/* SHARED ORB STYLES */
.orb {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: screen;
    /* Glows against the dark base */
    opacity: 0.6;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-iteration-count: infinite;
    will-change: transform;
    /* Hint for Mobile GPU Acceleration */
}

/* ORB 1: Amethyst (Wisdom/Luxury) */
.orb-1 {
    top: 10%;
    left: 10%;
    width: 50vmax;
    height: 50vmax;
    background: radial-gradient(circle at center, #701a75, transparent 70%);
    animation: floatOrb1 20s infinite alternate;
}

/* ORB 2: Gold (Value/Wealth) */
.orb-2 {
    bottom: 20%;
    right: 10%;
    width: 40vmax;
    height: 40vmax;
    background: radial-gradient(circle at center, #b45309, transparent 70%);
    /* Deep Amber */
    animation: floatOrb2 25s infinite alternate;
}

/* ORB 3: Emerald (Growth/Sustainability) */
.orb-3 {
    top: 40%;
    left: 40%;
    width: 45vmax;
    height: 45vmax;
    background: radial-gradient(circle at center, #064e3b, transparent 70%);
    animation: floatOrb3 30s infinite alternate;
}

@keyframes floatOrb1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(20%, 30%) scale(1.1);
    }
}

@keyframes floatOrb2 {
    0% {
        transform: translate(0, 0) scale(1.1);
    }

    100% {
        transform: translate(-20%, -10%) scale(0.9);
    }
}

@keyframes floatOrb3 {
    0% {
        transform: translate(0, 0) scale(0.9);
    }

    50% {
        transform: translate(15%, -15%) scale(1.1);
    }

    100% {
        transform: translate(-10%, 20%) scale(1);
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   ABOUT PAGE: TRUE LIQUID GLASS (Apple VisionOS Style)
   Concept: Optical Clarity. Thick, bending light.
   ───────────────────────────────────────────────────────────────────────────── */
.glass-liquid {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    /* Extremely subtle fill */
    backdrop-filter: blur(40px) saturate(180%);
    /* Heavy blur, high saturation */
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* The Effect: Inset shadows create the illusion of thickness */
    box-shadow:
        0 4px 24px -1px rgba(0, 0, 0, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    overflow: hidden;
}

.glass-liquid::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(255, 255, 255, 0.01) 40%,
            rgba(255, 255, 255, 0.01) 60%,
            rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
    z-index: 1;
}

.glass-liquid:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.005);
    box-shadow:
        0 20px 40px -4px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.3);
}

/* ─────────────────────────────────────────────────────────────────────────────
   BUSINESS SECTOR CARDS (Ambient Glow)
   Concept: Distinct Atmospheric Zoning.
   ───────────────────────────────────────────────────────────────────────────── */
.sector-card {
    position: relative;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: var(--space-xl);
    overflow: hidden;
    transition: all 0.5s var(--ease-apple);
    height: 100%;
}

/* The Ambient Glow Source */
.sector-card::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    transition: opacity 0.5s ease;
}

.sector-card:hover {
    transform: translateY(-8px);
}

.sector-card:hover::before {
    opacity: 0.6;
}

/* Sector Specific Coloring */
.sector-health {
    border: 1px solid rgba(45, 212, 191, 0.3);
    /* Teal border */
}

.sector-health::before {
    background: radial-gradient(circle, #2dd4bf 0%, transparent 70%);
}

.sector-health .initiative-icon {
    background: #2dd4bf;
    color: #000;
}

.sector-realestate {
    border: 1px solid rgba(212, 175, 55, 0.3);
    /* Gold border */
}

.sector-realestate::before {
    background: radial-gradient(circle, #d4af37 0%, transparent 70%);
}

.sector-realestate .initiative-icon {
    background: #d4af37;
    color: #000;
}

.sector-infra {
    border: 1px solid rgba(168, 85, 247, 0.3);
    /* Purple border */
}

.sector-infra::before {
    background: radial-gradient(circle, #a855f7 0%, transparent 70%);
}

.sector-infra .initiative-icon {
    background: #a855f7;
    color: #fff;
}

.sector-energy {
    border: 1px solid rgba(34, 197, 94, 0.3);
    /* Green border */
}

.sector-energy::before {
    background: radial-gradient(circle, #22c55e 0%, transparent 70%);
}

.sector-energy .initiative-icon {
    background: #22c55e;
    color: #000;
}

/* Text Overrides for Clarity inside dark cards */
.sector-card h3 {
    color: var(--accent-gold);
    position: relative;
    z-index: 2;
}

.sector-card p,
.sector-card li {
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}

.sector-card .initiative-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--accent-gold-light);
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 10px var(--warmth-glow);
    animation: particleFloat 20s infinite ease-in-out;
}

/* Randomized particles */
.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 30%;
    animation-delay: 4s;
}

.particle:nth-child(3) {
    left: 50%;
    animation-delay: 8s;
}

.particle:nth-child(4) {
    left: 70%;
    animation-delay: 2s;
}

.particle:nth-child(5) {
    left: 90%;
    animation-delay: 6s;
}

.particle:nth-child(6) {
    left: 80%;
    animation-delay: 5s;
}

.particle:nth-child(7) {
    left: 90%;
    animation-delay: 3s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(110vh) scale(0);
        opacity: 0;
    }

    20% {
        opacity: 0.6;
        transform: translateY(80vh) scale(1);
    }

    80% {
        opacity: 0.4;
    }

    100% {
        transform: translateY(-10vh) scale(0);
        opacity: 0;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   APPLE-STYLE LIQUID TYPOGRAPHY
   Concept: Molten Light & Deep Clarity
   ───────────────────────────────────────────────────────────────────────────── */
.text-liquid-gold {
    background: linear-gradient(135deg,
            #ffffff 0%,
            #ffe4e6 20%,
            /* Soft Rose */
            #fbbf24 40%,
            /* Warm Gold */
            #f43f5e 60%,
            /* Compassion Rose */
            #ffffff 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: liquidTextFlow 8s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 20px rgba(244, 63, 94, 0.2));
}

@keyframes liquidTextFlow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.font-thin-sans {
    font-family: var(--font-body);
    font-weight: 200;
    /* Extra Light */
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.9);
}

.font-display-italic {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 700;
}

/* Apple-Style Glass Pill for Subtitle */
.hero-subtitle-pill {
    display: inline-block;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.02em;
    margin-top: var(--space-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hero-subtitle-pill:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* ─────────────────────────────────────────────────────────────────────────────
   TYPOGRAPHY - APPLE HUMAN INTERFACE STYLE
   ───────────────────────────────────────────────────────────────────────────── */
:is(h1, h2, h3, h4, h5, h6) {
    font-family: var(--font-display);
    color: var(--text-primary);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    /* Massive, confident titles */
    font-weight: 700;
    /* Gentle gradient text */
    background: linear-gradient(135deg, #fff 30%, var(--accent-gold-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 20px rgba(255, 255, 255, 0.15));
}

h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
}

h4 {
    font-family: var(--font-body);
    /* Switch to Inter for smaller headings */
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--warmth-main);
}

p {
    font-size: 1.125rem;
    /* Larger, readable body text */
    color: var(--text-secondary);
    max-width: 60ch;
    line-height: 1.7;
    font-weight: 400;
}



.text-love {
    color: var(--love-main);
}

.text-muted {
    color: var(--text-tertiary);
}

.text-warm {
    color: var(--text-warm);
}

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

/* Elegant Text Glow (Interactive) */
.glow-text {
    transition: text-shadow 0.3s var(--ease-apple);
}

.glow-text:hover {
    /* text-shadow: 0 0 40px var(--warmth-glow); */
    color: var(--text-primary);
}

/* ─────────────────────────────────────────────────────────────────────────────
   LAYOUT
   ───────────────────────────────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

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


.section {
    padding: var(--space-3xl) 0;
    position: relative;
}

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

.section-header p {
    margin: var(--space-sm) auto 0;
    max-width: 600px;
    font-size: 1.1rem;
}

.grid {
    display: grid;
    gap: var(--space-lg);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .grid-4,
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .section {
        padding: var(--space-xl) 0;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   PREMIUM GLASS CARDS
   ───────────────────────────────────────────────────────────────────────────── */
.glass-card {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--backdrop-blur));
    -webkit-backdrop-filter: blur(var(--backdrop-blur));
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: var(--transition-base);
    overflow: hidden;
}

/* Top Shine Effect */
.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.2) 20%,
            rgba(255, 255, 255, 0.5) 50%,
            rgba(255, 255, 255, 0.2) 80%,
            transparent 100%);
    opacity: 0.7;
}

/* Bottom Glow */
.glass-card::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: 10%;
    right: 10%;
    height: 50%;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.4) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-slow);
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-8px);
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    box-shadow: var(--shadow-glow);
}

.glass-card:hover::after {
    opacity: 1;
    bottom: -30%;
}

.glass-card-accent {
    border-color: rgba(201, 162, 39, 0.25);
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.2), rgba(201, 162, 39, 0.05));
}

.glass-card-accent:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 20px 60px rgba(201, 162, 39, 0.2);
}

/* ─────────────────────────────────────────────────────────────────────────────
   PREMIUM BUTTONS (Liquid Metal & Glass)
   ───────────────────────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 9999px;
    transition: all 0.4s var(--ease-bounce);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    letter-spacing: -0.01em;
}

/* Liquid Shine Effect */
.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transform: skewX(-15deg);
    transition: 0.5s;
}

.btn:hover::after {
    left: 100%;
    transition: 0.7s;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--trust-deep);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow:
        0 4px 12px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 12px 32px rgba(212, 175, 55, 0.5),
        inset 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--text-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-icon {
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 50%;
    background: var(--glass-panel);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-apple);
    backdrop-filter: blur(var(--blur-md));
}

.btn-icon:hover {
    background: var(--warmth-main);
    color: var(--trust-deep);
    border-color: var(--accent-gold-light);
    transform: scale(1.1) rotate(6deg);
    box-shadow: 0 0 20px var(--warmth-glow);
}

/* ─────────────────────────────────────────────────────────────────────────────
   HERO SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--space-3xl);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-accent-glow) 0%, transparent 70%);
    filter: blur(80px);
    opacity: 0.4;
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-2xl);
    align-items: center;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-tagline {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: var(--space-sm);
}

.hero-title {
    margin-bottom: var(--space-md);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
    max-width: 600px;
}

.hero-ctas {
    display: flex;
    gap: var(--space-sm);
}

/* Action Buttons Grid (Mobile Optimized) */
.action-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 600px) {
    .action-buttons {
        flex-direction: column;
        width: 100%;
    }

    .action-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .hero-ctas .btn {
        width: 100%;
    }
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-portrait {
    width: 480px;
    height: 600px;
    border-radius: 40px;
    /* Removed border and background for floating effect */
    border: none;
    overflow: visible;
    /* Allow glow to spill out */
    position: relative;
    z-index: 1;

    /* The Steve Jobs Aesthetic: Cinematic Backlight (No Box Shadow on container) */
    box-shadow: none;

    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* radiant glow behind the portrait */
/* Cinematic Spotlight Aura */
.hero-portrait::before {
    content: '';
    position: absolute;
    inset: -20%;
    z-index: -1;
    background: radial-gradient(circle at center,
            rgba(255, 215, 0, 0.2) 0%,
            /* Warm Gold Core */
            rgba(255, 255, 255, 0.05) 50%,
            transparent 70%);
    filter: blur(50px);
    border-radius: 50%;
    opacity: 0.6;
    transition: opacity 0.6s ease;
}

.hero-portrait:hover::before {
    opacity: 1;
}

/* Inner container for the image to respect radius */
/* Inner container with Mask Fade */
.hero-portrait-inner {
    width: 100%;
    height: 100%;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    background: transparent;
    /* Seamless Fade at Bottom */
    mask-image: linear-gradient(to bottom,
            black 70%,
            transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom,
            black 70%,
            transparent 100%);
}

/* Internal Glow Overlay (Steve Jobs Style) */
/* Removed Internal Glow Overlay for cleaner look */

.hero-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 0.8s var(--ease-apple);
}

.hero-portrait:hover img {
    transform: scale(1.05);
}

/* Mobile Optimization for Hero Portrait (Steve Jobs Aesthetic) */
@media (max-width: 768px) {
    .hero-portrait {
        width: 320px;
        height: 420px;
        margin-top: 2rem;
        /* Breathing room */
    }

    /* Enhanced Mobile Glow - More visible on phone */
    /* Enhanced Mobile Glow - More visible on phone */
    /* Enhanced Mobile Glow - Rich Gold & Pink (Steve Jobs "Aura") */
    .hero-portrait::before {
        inset: -60px;
        background: radial-gradient(circle at center,
                rgba(255, 215, 0, 0.55) 0%,
                /* Intense Gold Core */
                rgba(236, 72, 153, 0.45) 45%,
                /* Vibrant Pink/Magenta Halo */
                rgba(139, 92, 246, 0.2) 65%,
                /* Deep Violet fade */
                transparent 85%);
        opacity: 1;
        filter: blur(50px);
    }

    /* "Steve Enhance": Slight pop to the image contrast on mobile */
    .hero-portrait img {
        filter: contrast(1.1) brightness(1.05);
    }
}

.hero-decoration {
    position: absolute;
    border-radius: var(--radius-lg);
    z-index: 0;
    pointer-events: none;
}

.hero-decoration-1 {
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--glass-border);
}

.hero-decoration-2 {
    bottom: -40px;
    left: -40px;
    width: 100px;
    height: 100px;
    background: var(--color-accent-glow);
    filter: blur(40px);
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-portrait {
        width: 280px;
        height: 350px;
        font-size: 5rem;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   STATS SECTION - ENHANCED
   ───────────────────────────────────────────────────────────────────────────── */
/* ─────────────────────────────────────────────────────────────────────────────
   STATS SECTION - APPLE ETCHED GLASS
   ───────────────────────────────────────────────────────────────────────────── */
.stats {
    padding: var(--space-2xl) 0;
}

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

.stat-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    position: relative;
    background: var(--glass-panel);
    backdrop-filter: blur(var(--blur-md));
    -webkit-backdrop-filter: blur(var(--blur-md));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    transition: all 0.4s var(--ease-apple);
    overflow: hidden;
}

/* Prismatic Glow on Hover */
.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 120%, hsla(var(--warmth-hue), 80%, 60%, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
}

.stat-card:hover {
    transform: translateY(-8px);
    background: var(--glass-panel-hover);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 255, 255, 0.3);
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 700;
    /* Clean white with subtle gradient */
    background: linear-gradient(135deg, #fff, var(--accent-gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: var(--space-xs);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.stat-label {
    font-size: 1.05rem;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   TIMELINE - GLASS THREAD
   ───────────────────────────────────────────────────────────────────────────── */
.timeline {
    position: relative;
    padding-left: var(--space-2xl);
    max-width: 800px;
    margin: 0 auto;
}

/* The Thread of Trust */
.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom,
            transparent,
            var(--warmth-main),
            rgba(255, 255, 255, 0.1));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-bottom: var(--space-2xl);
    padding-left: var(--space-md);
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: calc(-1 * var(--space-2xl) + 5px);
    /* Center on line */
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--warmth-main);
    box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.1);
    transition: all 0.4s var(--ease-spring);
    z-index: 2;
}

.timeline-item:hover::before {
    transform: scale(1.5);
    box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.2), 0 0 20px var(--warmth-glow);
    background: #fff;
}

/* Glass Card for Timeline Content */
.timeline-content {
    background: var(--glass-panel);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(var(--blur-sm));
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.timeline-item:hover .timeline-content {
    background: var(--glass-panel-hover);
    transform: translateX(10px);
    border-color: var(--glass-border-light);
}

.timeline-year {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--trust-deep);
    background: var(--accent-gold-light);
    padding: 4px 12px;
    border-radius: 9999px;
    margin-bottom: var(--space-sm);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.timeline-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────────────────────────
   VALUES / FEATURES GRID - APPLE CARDS
   ───────────────────────────────────────────────────────────────────────────── */
.value-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--glass-panel);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(var(--blur-lg));
    border-radius: var(--radius-xl);
    transition: all 0.4s var(--ease-apple);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: var(--glass-panel-hover);
    box-shadow: var(--shadow-md), 0 0 40px rgba(59, 130, 246, 0.1);
    /* Trust glow */
    border-color: rgba(255, 255, 255, 0.3);
}

.value-icon {
    font-size: 4rem;
    margin-bottom: var(--space-lg);
    display: inline-block;
    background: var(--gradient-rose);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: var(--transition-spring);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(10deg);
}

.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.value-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────────────────────────
   INITIATIVE CARDS
   ───────────────────────────────────────────────────────────────────────────── */
.initiative-card {
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    transition: all 0.4s var(--ease-apple);
}

.initiative-card:hover {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: var(--glass-border-light);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.initiative-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: var(--space-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    color: var(--warmth-main);
    transition: var(--transition-spring);
}

.initiative-card:hover .initiative-icon {
    background: var(--warmth-main);
    color: var(--trust-deep);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 25px var(--warmth-glow);
}

.initiative-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.initiative-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    flex-grow: 1;
    line-height: 1.6;
}

.initiative-link {
    font-size: 1rem;
    font-weight: 600;
    color: var(--warmth-main);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-base);
}

.initiative-link:hover {
    gap: 12px;
    text-shadow: 0 0 10px var(--warmth-glow);
}

/* ─────────────────────────────────────────────────────────────────────────────
   SOCIAL HUB - PREMIUM ENHANCED
   ───────────────────────────────────────────────────────────────────────────── */
.social-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-xl);
    background: var(--glass-panel);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    transition: var(--transition-spring);
    cursor: pointer;
    text-decoration: none;
    height: 100%;
}

.social-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Thumbnail Container */
.social-thumbnail {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.social-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-apple);
}

.social-card:hover .social-thumbnail-img {
    transform: scale(1.08);
}

.social-thumbnail-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 9, 16, 0.5) 0%, transparent 100%);
}

/* Live/Recent Badge */
.social-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.social-badge.live {
    background: rgba(255, 59, 48, 0.9);
    /* Apple Red */
    color: white;
    animation: pulseLive 2s ease-in-out infinite;
}

.social-badge.recent {
    background: rgba(255, 255, 255, 0.9);
    color: var(--trust-deep);
}

@keyframes pulseLive {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Card Content */
.social-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.social-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-card:hover .social-icon {
    transform: scale(1.1) rotate(-5deg);
    transition: 0.3s var(--ease-bounce);
}

/* Platform Colors */
.social-icon.youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.4);
}

.social-icon.instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    box-shadow: 0 4px 20px rgba(225, 48, 108, 0.4);
}

.social-icon.facebook {
    background: linear-gradient(135deg, #1877f2, #0d65d9);
    color: white;
    box-shadow: 0 4px 20px rgba(24, 119, 242, 0.4);
}

.social-icon.twitter {
    background: linear-gradient(135deg, #000000, #14171a);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.social-icon.linkedin {
    background: linear-gradient(135deg, #0077b5, #005885);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 119, 181, 0.4);
}

.social-icon.wikipedia {
    background: linear-gradient(135deg, #636363, #3a3a3a);
    color: white;
    box-shadow: 0 4px 20px rgba(99, 99, 99, 0.3);
}

.social-header-info {
    flex: 1;
    min-width: 0;
}

.social-platform {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
}

.social-handle {
    font-size: 0.85rem;
    color: var(--accent-gold);
    font-weight: 500;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.social-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: var(--space-sm);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Stats Bar */
.social-stats {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.social-stat {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.social-stat-icon {
    font-size: 0.9rem;
}

.social-stat-value {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

/* Follow Button */
.social-follow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 10px var(--space-md);
    margin-top: var(--space-sm);
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dim));
    color: var(--trust-deep);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    text-decoration: none;
}

.social-follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.4);
}

/* Platform-specific follow buttons */
.social-card.youtube .social-follow-btn {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
}

.social-card.instagram .social-follow-btn {
    background: linear-gradient(135deg, #e1306c, #c13584);
    color: white;
}

.social-card.facebook .social-follow-btn {
    background: linear-gradient(135deg, #1877f2, #0d65d9);
    color: white;
}

.social-card.twitter .social-follow-btn {
    background: linear-gradient(135deg, #000, #333);
    color: white;
}

.social-card.linkedin .social-follow-btn {
    background: linear-gradient(135deg, #0077b5, #005885);
    color: white;
}

/* Social Hub Grid for Connect Page */
.social-hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

/* Responsive */
@media (max-width: 768px) {
    .social-thumbnail {
        height: 120px;
    }

    .social-stats {
        flex-wrap: wrap;
        gap: var(--space-sm);
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   TESTIMONIALS - ENHANCED
   ───────────────────────────────────────────────────────────────────────────── */
.testimonial-card {
    padding: var(--space-xl);
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-lg);
    position: relative;
    padding-left: var(--space-lg);
    line-height: 1.8;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3.5rem;
    color: var(--accent-gold);
    font-family: var(--font-display);
    line-height: 1;
    opacity: 0.8;
}

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

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--trust-main), var(--trust-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--accent-gold);
    border: 2px solid rgba(201, 162, 39, 0.3);
}

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

.testimonial-role {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ─────────────────────────────────────────────────────────────────────────────
   FORMS - ENHANCED
   ───────────────────────────────────────────────────────────────────────────── */
/* ─────────────────────────────────────────────────────────────────────────────
   FORMS - LIQUID GLASS
   ───────────────────────────────────────────────────────────────────────────── */
.form-group {
    margin-bottom: var(--space-lg);
    position: relative;
}

.form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: var(--space-xs);
    transition: var(--transition-base);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1.25rem 1.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);

    /* True Glass Aesthetics */
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);

    transition: all 0.3s var(--ease-apple);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-gold-light);
    box-shadow:
        0 0 0 4px rgba(212, 175, 55, 0.15),
        0 10px 30px -5px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.form-group:focus-within .form-label {
    color: var(--warmth-main);
    transform: translateX(4px);
}

.form-textarea {
    min-height: 180px;
    resize: vertical;
}

/* ─────────────────────────────────────────────────────────────────────────────
   FOOTER - DEEP TRUST
   ───────────────────────────────────────────────────────────────────────────── */
.footer {
    position: relative;
    padding: var(--space-3xl) 0 var(--space-lg);
    overflow: hidden;

    /* Deep Trust Background */
    background: var(--trust-deep);
    border-top: 1px solid var(--glass-border);
}

/* Ambient glow from bottom */
.footer::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: 20%;
    right: 20%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.15), transparent 70%);
    filter: blur(100px);
    pointer-events: none;
}

/* Glass panel for content */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
    position: relative;
    z-index: 10;
}

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

.footer-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.footer-logo .accent {
    color: var(--warmth-main);
    text-shadow: 0 0 20px var(--warmth-glow);
}

.footer-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: var(--transition-spring);
}

.footer-social-link:hover {
    background: var(--text-primary);
    color: var(--trust-deep);
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.footer-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--warmth-main);
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.3), transparent);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 1rem;
    color: var(--text-tertiary);
    /* Start subtle */
    transition: all 0.3s var(--ease-apple);
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: var(--text-primary);
    padding-left: 12px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s var(--ease-apple);
    color: var(--warmth-main);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: var(--text-tertiary);
    position: relative;
    z-index: 10;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
        margin: 0 auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-title::after {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   PAGE HEADERS - ENHANCED
   ───────────────────────────────────────────────────────────────────────────── */
.page-header {
    padding: calc(80px + var(--space-3xl)) 0 var(--space-xl);
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 50% 30%, rgba(201, 162, 39, 0.1) 0%, transparent 60%),
        linear-gradient(to bottom, rgba(26, 54, 93, 0.3), transparent);
    z-index: -1;
}

.page-title {
    margin-bottom: var(--space-md);
}

.page-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ─────────────────────────────────────────────────────────────────────────────
   UTILITIES
   ───────────────────────────────────────────────────────────────────────────── */
.mb-sm {
    margin-bottom: var(--space-sm);
}

.mb-md {
    margin-bottom: var(--space-md);
}

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

.mb-xl {
    margin-bottom: var(--space-xl);
}

.mt-sm {
    margin-top: var(--space-sm);
}

.mt-md {
    margin-top: var(--space-md);
}

.mt-lg {
    margin-top: var(--space-lg);
}

.mt-xl {
    margin-top: var(--space-xl);
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-sm {
    gap: var(--space-sm);
}

.gap-md {
    gap: var(--space-md);
}

.gap-lg {
    gap: var(--space-lg);
}

.hidden {
    display: none;
}

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

/* ─────────────────────────────────────────────────────────────────────────────
   PREMIUM ANIMATIONS
   ───────────────────────────────────────────────────────────────────────────── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    }

    50% {
        box-shadow: 0 0 40px rgba(201, 162, 39, 0.4);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-fadeIn {
    animation: fadeIn 0.6s ease forwards;
}

.animate-scaleIn {
    animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-slideLeft {
    animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-slideRight {
    animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-glow {
    animation: glow 3s ease-in-out infinite;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
}

/* ─────────────────────────────────────────────────────────────────────────────
   HOVER EFFECTS
   ───────────────────────────────────────────────────────────────────────────── */
.hover-lift {
    transition: var(--transition-spring);
}

.hover-lift:hover {
    transform: translateY(-8px);
}

.hover-glow {
    transition: var(--transition-base);
}

.hover-glow:hover {
    box-shadow: var(--shadow-glow);
}

.hover-scale {
    transition: var(--transition-spring);
}

.hover-scale:hover {
    transform: scale(1.03);
}

/* ─────────────────────────────────────────────────────────────────────────────
   SCROLL REVEAL (Enhanced for scroll animations)
   ───────────────────────────────────────────────────────────────────────────── */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
    will-change: opacity, transform;
    transition: opacity 0.8s ease-out, transform 0.8s var(--ease-out-expo);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
}

.reveal.in-view,
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
}

.reveal-left.in-view,
.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
}

.reveal-right.in-view,
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
}

.reveal-scale.in-view,
.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* ─────────────────────────────────────────────────────────────────────────────
   FEATURED SPOTLIGHT SECTION - Premium Highlight Styles
   ───────────────────────────────────────────────────────────────────────────── */
.featured-section {
    position: relative;
    padding-top: var(--space-xl);
    padding-bottom: var(--space-3xl);
}

.featured-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(201, 162, 39, 0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.featured-card {
    position: relative;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.3), rgba(201, 162, 39, 0.08), rgba(26, 54, 93, 0.2)) !important;
    border: 2px solid rgba(201, 162, 39, 0.4) !important;
    box-shadow:
        0 0 60px rgba(201, 162, 39, 0.15),
        0 25px 80px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(201, 162, 39, 0.3);
    animation: featuredGlow 3s ease-in-out infinite;
}

.featured-card:hover {
    border-color: var(--accent-gold) !important;
    box-shadow:
        0 0 100px rgba(201, 162, 39, 0.25),
        0 30px 100px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(201, 162, 39, 0.5);
}

.text-accent {
    color: var(--accent-gold) !important;
    /* text-shadow:
        0 0 10px rgba(250, 204, 21, 0.5),
        0 0 20px rgba(250, 204, 21, 0.3),
        0 0 30px rgba(250, 204, 21, 0.1); */
}

@keyframes featuredGlow {

    0%,
    100% {
        box-shadow:
            0 0 60px rgba(201, 162, 39, 0.15),
            0 25px 80px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(201, 162, 39, 0.3);
    }

    50% {
        box-shadow:
            0 0 80px rgba(201, 162, 39, 0.25),
            0 30px 90px rgba(0, 0, 0, 0.35),
            inset 0 1px 0 rgba(201, 162, 39, 0.4);
    }
}

/* Featured Badge */
.featured-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dim));
    color: var(--trust-deep);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    box-shadow:
        0 4px 20px rgba(201, 162, 39, 0.4),
        0 0 30px rgba(201, 162, 39, 0.2);
    animation: badgePulse 2s ease-in-out infinite;
    z-index: 10;
}

.badge-star {
    font-size: 1rem;
    animation: starSpin 4s linear infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
        box-shadow:
            0 4px 20px rgba(201, 162, 39, 0.4),
            0 0 30px rgba(201, 162, 39, 0.2);
    }

    50% {
        transform: translateX(-50%) scale(1.03);
        box-shadow:
            0 6px 30px rgba(201, 162, 39, 0.5),
            0 0 50px rgba(201, 162, 39, 0.3);
    }
}

@keyframes starSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Featured Icon Wrapper */
.featured-icon-wrapper {
    position: relative;
    display: inline-block;
}

.featured-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

/* Featured Title */
.featured-title {
    font-size: 1.5rem !important;
    font-family: var(--font-display);
    /* text-shadow: 0 0 40px rgba(212, 175, 55, 0.4); */
}

/* Featured List */
.featured-list {
    margin-top: var(--space-md);
    list-style: none;
    line-height: 2.2;
}

.featured-list li {
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition-fast);
}

.featured-list li:hover {
    color: var(--accent-gold);
    transform: translateX(8px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .featured-badge {
        padding: 8px 20px;
        font-size: 0.7rem;
    }

    .featured-section {
        padding-top: var(--space-lg);
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PARALLAX & DEPTH SYSTEM
   ═══════════════════════════════════════════════════════════════════════════ */

/* Floating Orbs Container */
.parallax-orbs-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    will-change: transform;
    transition: transform 0.3s ease-out;
}

/* Parallax Layers */
.parallax-layer {
    will-change: transform;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

.parallax-back {
    transform: translateZ(-100px) scale(2);
}

.parallax-mid {
    transform: translateZ(-50px) scale(1.5);
}

.parallax-content {
    transform: translateZ(0);
}

/* Hero Enhanced for Parallax */
.parallax-enabled .hero {
    perspective: 1000px;
    overflow: hidden;
}

.parallax-enabled .hero-content {
    transition: opacity 0.1s ease;
}

/* Self-Drawing Timeline */
.timeline-draw-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 0;
    background: linear-gradient(180deg,
            var(--accent-gold) 0%,
            var(--accent-gold-light) 50%,
            var(--accent-gold) 100%);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4), 0 0 40px rgba(212, 175, 55, 0.4);
    transition: height 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

/* Light Sweep Effect */
.has-light-sweep {
    position: relative;
    overflow: hidden;
}

.has-light-sweep::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(201, 162, 39, 0.1) 50%,
            transparent 100%);
    transform: skewX(-25deg);
    transition: none;
    pointer-events: none;
}

.light-sweep-active::after {
    animation: lightSweep 1.5s ease-out forwards;
}

@keyframes lightSweep {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

/* Scroll Reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    transition: opacity 0.8s ease-out, transform 0.8s var(--ease-out-expo);
    will-change: opacity, transform;
}

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

/* Staggered reveal for grids */
.scroll-reveal:nth-child(1) {
    transition-delay: 0s;
}

.scroll-reveal:nth-child(2) {
    transition-delay: 0.1s;
}

.scroll-reveal:nth-child(3) {
    transition-delay: 0.2s;
}

.scroll-reveal:nth-child(4) {
    transition-delay: 0.3s;
}

.scroll-reveal:nth-child(5) {
    transition-delay: 0.4s;
}

.scroll-reveal:nth-child(6) {
    transition-delay: 0.5s;
}

/* Enhanced Card 3D Tilt on Hover */
.parallax-enabled .card,
.parallax-enabled .initiative-card,
.parallax-enabled .value-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
}

.parallax-enabled .card:hover,
.parallax-enabled .initiative-card:hover,
.parallax-enabled .value-card:hover {
    transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
}

/* Disable parallax on mobile */
.parallax-disabled .parallax-orbs-container {
    display: none;
}

.parallax-disabled .scroll-reveal {
    opacity: 1;
    transform: none;
}

/* Smooth Scroll */
html.parallax-enabled {
    scroll-behavior: smooth;
}

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {

    .floating-orb,
    .parallax-layer,
    .scroll-reveal,
    .timeline-draw-line,
    .has-light-sweep::after {
        animation: none !important;
        transition: none !important;
    }

    .scroll-reveal {
        opacity: 1;
        transform: none;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   GLOBAL LAYOUT FIXES & ALIGNMENT
   ───────────────────────────────────────────────────────────────────────────── */

/* Fix for fixed navigation overlapping content on subpages */
.page-header {
    padding-top: 180px;
    /* Accounts for floating dock + spacing */
    padding-bottom: var(--space-3xl);
    text-align: center;
    position: relative;
    z-index: 10;
}

.page-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, #fff 30%, var(--accent-gold-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /* filter: drop-shadow(0 2px 20px rgba(255, 255, 255, 0.1)); */
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

/* Consistent Section Spacing */
.section {
    padding: var(--space-3xl) 0;
    position: relative;
}

/* --- Scroll Reveal Implementation --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--trans-slow), transform var(--trans-slow);
    will-change: transform, opacity;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity var(--trans-slow), transform var(--trans-slow);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity var(--trans-slow), transform var(--trans-slow);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* Global Grid Consistency */
.grid {
    display: grid;
    gap: var(--space-xl);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   UTILITY CLASSES (Expanded)
   ───────────────────────────────────────────────────────────────────────────── */

/* Alignment */
.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

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

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* Display & Flex */
.flex-wrap {
    flex-wrap: wrap;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Spacing - Padding */
.p-sm {
    padding: var(--space-sm);
}

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

.p-lg {
    padding: var(--space-lg);
}

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

.p-3xl {
    padding: var(--space-3xl);
}

/* Spacing - Gaps */
.gap-sm {
    gap: var(--space-sm);
}

.gap-md {
    gap: var(--space-md);
}

.gap-lg {
    gap: var(--space-lg);
}

.gap-xl {
    gap: var(--space-xl);
}

.gap-3xl {
    gap: var(--space-3xl);
}

/* Lists */
.list-none {
    list-style: none;
}

.leading-loose {
    line-height: 2;
}

.leading-relaxed {
    line-height: 1.6;
}

/* Text Colors (Helpers) */
.text-primary {
    color: var(--text-primary);
}

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

.text-tertiary {
    color: var(--text-tertiary);
}



/* Backgrounds */
.bg-glass {
    background: var(--glass-bg);
}

.bg-surface {
    background: var(--bg-surface);
}

/* Extra Utilities */
.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.flex-col {
    flex-direction: column;
}

.btn-icon-lg {
    width: 56px;
    height: 56px;
    font-size: 1rem;
}