:root {
            /* Light Mode Palette */
            --bg-body: #F8FAFC;
            --bg-surface: #FFFFFF;
            --bg-glass: rgba(255, 255, 255, 0.75);
            --bg-card: rgba(255, 255, 255, 0.85);
            --bg-card-hover: #FFFFFF;
            
            --border-color: rgba(226, 232, 240, 0.8);
            --border-highlight: rgba(99, 102, 241, 0.2);
            
            --text-heading: #0F172A;
            --text-body: #475569;
            --text-muted: #64748B;
            
            --primary: #4F46E5;
            --primary-hover: #4338CA;
            --primary-light: #EEF2FF;
            
            --accent: #8B5CF6;
            --accent-light: #F5F3FF;
            
            --emerald: #10B981;
            --emerald-light: #ECFDF5;
            
            --amber: #F59E0B;
            --rose: #F43F5E;
            
            --nav-bg: rgba(255, 255, 255, 0.85);
            --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
            --shadow-md: 0 8px 24px -4px rgba(15, 23, 42, 0.08);
            --shadow-lg: 0 20px 40px -12px rgba(15, 23, 42, 0.12);
            --shadow-glow: 0 10px 30px -5px rgba(79, 70, 229, 0.3);

            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 20px;
            --radius-full: 9999px;
            
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        [data-theme="dark"] {
            /* Dark Mode Palette (Obsidian & Electric Glow) */
            --bg-body: #090D16;
            --bg-surface: #111827;
            --bg-glass: rgba(17, 24, 39, 0.8);
            --bg-card: rgba(30, 41, 59, 0.7);
            --bg-card-hover: rgba(30, 41, 59, 0.95);
            
            --border-color: rgba(255, 255, 255, 0.08);
            --border-highlight: rgba(139, 92, 246, 0.3);
            
            --text-heading: #F8FAFC;
            --text-body: #94A3B8;
            --text-muted: #64748B;
            
            --primary: #6366F1;
            --primary-hover: #818CF8;
            --primary-light: rgba(99, 102, 241, 0.15);
            
            --accent: #A855F7;
            --accent-light: rgba(168, 85, 247, 0.15);
            
            --emerald: #10B981;
            --emerald-light: rgba(16, 185, 129, 0.15);
            
            --nav-bg: rgba(15, 23, 42, 0.85);
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
            --shadow-md: 0 8px 24px -4px rgba(0, 0, 0, 0.3);
            --shadow-lg: 0 20px 40px -12px rgba(0, 0, 0, 0.5);
            --shadow-glow: 0 10px 35px -5px rgba(129, 140, 248, 0.35);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: var(--bg-body);
            color: var(--text-body);
            line-height: 1.6;
            transition: background-color 0.4s ease, color 0.4s ease;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, .brand-font {
            font-family: 'Outfit', sans-serif;
            color: var(--text-heading);
            letter-spacing: -0.02em;
        }

        h1 { font-size: 2.25rem; font-weight: 800; line-height: 1.15; }
        h2 { font-size: 1.75rem; font-weight: 700; line-height: 1.25; }
        h3 { font-size: 1.25rem; font-weight: 600; line-height: 1.3; }

        @media (min-width: 768px) {
            h1 { font-size: 3.25rem; }
            h2 { font-size: 2.25rem; }
            h3 { font-size: 1.5rem; }
        }

        @media (min-width: 1024px) {
            h1 { font-size: 3.75rem; }
            h2 { font-size: 2.5rem; }
        }

        .subtitle {
            font-size: 1.1rem;
            color: var(--text-muted);
            font-weight: 400;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }

        @media (min-width: 768px) {
            .container { padding: 0 2rem; }
        }

        /* Ambient Glow Highlights */
        .ambient-glow {
            position: absolute;
            border-radius: 50%;
            filter: blur(90px);
            opacity: 0.4;
            pointer-events: none;
            z-index: 0;
        }
        
        .glow-1 {
            width: 400px;
            height: 400px;
            background: var(--primary);
            top: -100px;
            right: -100px;
        }

        .glow-2 {
            width: 350px;
            height: 350px;
            background: var(--accent);
            bottom: -50px;
            left: -100px;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            border-radius: var(--radius-md);
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 600;
            font-size: 0.925rem;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            border: 1px solid transparent;
            outline: none;
            white-space: nowrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: #FFFFFF;
            box-shadow: var(--shadow-glow);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 14px 28px -4px rgba(79, 70, 229, 0.4);
            filter: brightness(1.08);
        }

        .btn-secondary {
            background: var(--bg-surface);
            color: var(--text-heading);
            border-color: var(--border-color);
            box-shadow: var(--shadow-sm);
        }

        .btn-secondary:hover {
            background: var(--primary-light);
            color: var(--primary);
            border-color: var(--border-highlight);
            transform: translateY(-2px);
        }

        .btn-accent {
            background: linear-gradient(135deg, var(--emerald) 0%, #059669 100%);
            color: #FFFFFF;
            box-shadow: 0 8px 20px -4px rgba(16, 185, 129, 0.4);
        }

        .btn-accent:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 24px -4px rgba(16, 185, 129, 0.5);
            filter: brightness(1.08);
        }

        .btn-icon {
            padding: 0.6rem;
            border-radius: var(--radius-md);
            background: var(--bg-surface);
            color: var(--text-heading);
            border: 1px solid var(--border-color);
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .btn-icon:hover {
            background: var(--primary-light);
            color: var(--primary);
            border-color: var(--border-highlight);
            transform: scale(1.05);
        }

        /* Navigation Bar */
        .nav-bar {
            position: sticky;
            top: 0;
            z-index: 100;
            background: var(--nav-bg);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border-color);
            transition: var(--transition);
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 1.35rem;
            font-weight: 800;
            color: var(--text-heading);
            text-decoration: none;
            cursor: pointer;
        }

        .logo-icon {
            width: 34px;
            height: 34px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #FFFFFF;
            box-shadow: var(--shadow-glow);
            animation: pulseGlow 4s infinite alternate;
        }

        @keyframes pulseGlow {
            0% { transform: scale(1); box-shadow: 0 0 15px rgba(99, 102, 241, 0.4); }
            100% { transform: scale(1.05); box-shadow: 0 0 25px rgba(139, 92, 246, 0.7); }
        }

        .logo-text span {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .nav-links {
            display: none;
            align-items: center;
            gap: 0.35rem;
            list-style: none;
            background: var(--bg-card);
            padding: 0.35rem;
            border-radius: var(--radius-full);
            border: 1px solid var(--border-color);
        }

        @media (min-width: 900px) {
            .nav-links { display: flex; }
        }

        .nav-link {
            text-decoration: none;
            color: var(--text-body);
            font-weight: 500;
            font-size: 0.875rem;
            padding: 0.5rem 1.15rem;
            border-radius: var(--radius-full);
            transition: var(--transition);
            cursor: pointer;
            display: block;
        }

        .nav-link:hover {
            color: var(--text-heading);
            background: rgba(99, 102, 241, 0.08);
        }

        .nav-link.active {
            color: #FFFFFF;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            font-weight: 600;
            box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .mobile-menu-btn {
            display: flex;
        }

        @media (min-width: 900px) {
            .mobile-menu-btn { display: none; }
        }

        /* Mobile Drawer Nav */
        .mobile-drawer {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background: var(--bg-surface);
            z-index: 200;
            box-shadow: var(--shadow-lg);
            padding: 2rem 1.5rem;
            transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .mobile-drawer.active {
            right: 0;
        }

        .drawer-overlay {
            position: fixed;
            inset: 0;
            background: rgba(15, 23, 42, 0.6);
            backdrop-filter: blur(4px);
            z-index: 190;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .drawer-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        .mobile-nav-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .mobile-nav-links .nav-link {
            padding: 0.85rem 1.25rem;
            border-radius: var(--radius-md);
            font-size: 1rem;
        }

        /* Pages SPA Wrapper */
        .page {
            display: none;
            opacity: 0;
            transform: translateY(12px);
            transition: opacity 0.4s ease, transform 0.4s ease;
            min-height: calc(100vh - 200px);
        }

        .page.active {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        /* Hero Section */
        .hero {
            position: relative;
            padding: 4.5rem 0 3.5rem;
            overflow: hidden;
        }

        @media (min-width: 768px) {
            .hero { padding: 6rem 0 5rem; }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.4rem 1rem;
            border-radius: var(--radius-full);
            background: var(--primary-light);
            color: var(--primary);
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 1.5rem;
            border: 1px solid var(--border-highlight);
        }

        .hero-content {
            text-align: center;
            max-width: 860px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            margin-bottom: 1.25rem;
        }

        .gradient-text {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--emerald) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero .subtitle {
            margin-bottom: 2.5rem;
            max-width: 680px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Hero Stats Strip */
        .hero-stats {
            margin-top: 4rem;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        @media (min-width: 768px) {
            .hero-stats {
                grid-template-columns: repeat(4, 1fr);
                gap: 1.5rem;
            }
        }

        .stat-card {
            background: var(--bg-card);
            backdrop-filter: blur(12px);
            border: 1px solid var(--border-color);
            padding: 1.5rem 1rem;
            border-radius: var(--radius-md);
            text-align: center;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
        }

        .stat-card:hover {
            transform: translateY(-4px);
            border-color: var(--border-highlight);
            box-shadow: var(--shadow-md);
        }

        .stat-number {
            font-family: 'Outfit', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            color: var(--text-heading);
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .stat-label {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 500;
            margin-top: 0.25rem;
        }

        /* Features Grid Section */
        .features-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            padding: 2rem 0;
        }

        @media (min-width: 640px) {
            .features-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (min-width: 1024px) {
            .features-grid { grid-template-columns: repeat(3, 1fr); }
        }

        .feature-card {
            background: var(--bg-card);
            backdrop-filter: blur(12px);
            border: 1px solid var(--border-color);
            padding: 2rem 1.5rem;
            border-radius: var(--radius-lg);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            opacity: 0;
            transition: var(--transition);
        }

        .feature-card:hover {
            transform: translateY(-6px);
            background: var(--bg-card-hover);
            border-color: var(--border-highlight);
            box-shadow: var(--shadow-md);
        }

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

        .feature-icon-wrapper {
            width: 52px;
            height: 52px;
            border-radius: var(--radius-md);
            background: var(--primary-light);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
            font-size: 1.5rem;
            transition: var(--transition);
        }

        .feature-card:hover .feature-icon-wrapper {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: #FFFFFF;
            transform: scale(1.1) rotate(-3deg);
        }

        .feature-card h3 {
            margin-bottom: 0.75rem;
            font-size: 1.2rem;
        }

        .feature-card p {
            color: var(--text-body);
            font-size: 0.925rem;
            line-height: 1.6;
        }

        /* Daily Reflection Widget Card */
        .reflection-card {
            background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
            border: 1px solid var(--border-highlight);
            border-radius: var(--radius-lg);
            padding: 2.5rem;
            margin-top: 2rem;
            position: relative;
            overflow: hidden;
        }

        .reflection-header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        .reflection-tag {
            background: var(--primary);
            color: #FFFFFF;
            padding: 0.25rem 0.75rem;
            border-radius: var(--radius-full);
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .reflection-body {
            max-width: 800px;
        }

        .reflection-quote {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text-heading);
            margin-bottom: 0.75rem;
            font-style: italic;
            line-height: 1.5;
        }

        .reflection-verse {
            color: var(--primary);
            font-weight: 700;
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }

        /* Events Section & Filters */
        .event-layout {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            padding: 2.5rem 0;
        }

        @media (min-width: 992px) {
            .event-layout {
                grid-template-columns: 280px 1fr;
            }
        }

        .filter-card {
            background: var(--bg-card);
            backdrop-filter: blur(12px);
            border: 1px solid var(--border-color);
            padding: 1.5rem;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            position: sticky;
            top: 90px;
        }

        .filter-group {
            margin-bottom: 1.5rem;
        }

        .filter-group:last-child {
            margin-bottom: 0;
        }

        .filter-label {
            font-weight: 700;
            font-size: 0.875rem;
            color: var(--text-heading);
            margin-bottom: 0.75rem;
            display: block;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .search-input {
            width: 100%;
            padding: 0.75rem 1rem 0.75rem 2.5rem;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-color);
            background: var(--bg-surface);
            color: var(--text-heading);
            font-family: inherit;
            font-size: 0.9rem;
            outline: none;
            transition: var(--transition);
        }

        .search-input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
        }

        .search-box {
            position: relative;
            margin-bottom: 1.5rem;
        }

        .search-icon {
            position: absolute;
            left: 0.85rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            pointer-events: none;
        }

        .filter-options {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .filter-option {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            cursor: pointer;
            user-select: none;
        }

        .filter-option input[type="checkbox"] {
            width: 18px;
            height: 18px;
            accent-color: var(--primary);
            border-radius: 4px;
            cursor: pointer;
        }

        .filter-option label {
            font-size: 0.9rem;
            color: var(--text-body);
            cursor: pointer;
            transition: var(--transition);
        }

        .filter-option:hover label {
            color: var(--text-heading);
        }

        /* Event Cards */
        .events-grid {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .event-card {
            background: var(--bg-card);
            backdrop-filter: blur(12px);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
        }

        .event-card:hover {
            transform: translateY(-4px);
            border-color: var(--border-highlight);
            box-shadow: var(--shadow-md);
        }

        .event-banner {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: #FFFFFF;
            padding: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }

        .event-date-badge {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(8px);
            padding: 0.6rem 1rem;
            border-radius: var(--radius-md);
            text-align: center;
            min-width: 72px;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .event-date-day {
            font-family: 'Outfit', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            line-height: 1;
        }

        .event-date-month {
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            margin-top: 0.2rem;
        }

        .event-body {
            padding: 1.5rem;
        }

        .event-title {
            font-size: 1.3rem;
            margin-bottom: 0.35rem;
        }

        .event-runggun {
            color: var(--primary);
            font-weight: 600;
            font-size: 0.875rem;
            margin-bottom: 1rem;
        }

        .event-description {
            color: var(--text-body);
            font-size: 0.925rem;
            margin-bottom: 1.25rem;
            line-height: 1.6;
        }

        .event-meta-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 0.85rem;
            margin-bottom: 1.25rem;
            padding: 1rem;
            background: var(--bg-surface);
            border-radius: var(--radius-md);
            border: 1px solid var(--border-color);
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .meta-icon {
            color: var(--primary);
            display: flex;
            align-items: center;
        }

        .badge-list {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-bottom: 1.25rem;
        }

        .badge {
            padding: 0.3rem 0.75rem;
            border-radius: var(--radius-full);
            font-size: 0.75rem;
            font-weight: 600;
            background: var(--primary-light);
            color: var(--primary);
            border: 1px solid var(--border-highlight);
        }

        .event-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 1rem;
            border-top: 1px solid var(--border-color);
            flex-wrap: wrap;
            gap: 1rem;
        }

        .event-progress {
            flex: 1;
            min-width: 180px;
        }

        .progress-text {
            display: flex;
            justify-content: space-between;
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-bottom: 0.35rem;
            font-weight: 500;
        }

        .progress-bar {
            height: 6px;
            background: var(--border-color);
            border-radius: var(--radius-full);
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--primary), var(--emerald));
            border-radius: var(--radius-full);
        }

        /* Products Store Grid */
        .product-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            padding: 2rem 0;
        }

        @media (min-width: 640px) {
            .product-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (min-width: 1024px) {
            .product-grid { grid-template-columns: repeat(3, 1fr); }
        }

        .product-card {
            background: var(--bg-card);
            backdrop-filter: blur(12px);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
            display: flex;
            flex-direction: column;
        }

        .product-card:hover {
            transform: translateY(-6px);
            border-color: var(--border-highlight);
            box-shadow: var(--shadow-md);
        }

        .product-image-container {
            height: 180px;
            background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            position: relative;
        }

        .product-tag {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: rgba(15, 23, 42, 0.6);
            backdrop-filter: blur(8px);
            color: #FFFFFF;
            padding: 0.25rem 0.6rem;
            border-radius: var(--radius-full);
            font-size: 0.75rem;
            font-weight: 600;
        }

        .product-body {
            padding: 1.5rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .product-title {
            font-size: 1.15rem;
            margin-bottom: 0.35rem;
        }

        .product-seller {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 1rem;
        }

        .product-footer {
            margin-top: auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 1rem;
            border-top: 1px solid var(--border-color);
        }

        .product-price {
            font-family: 'Outfit', sans-serif;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary);
        }

        /* Roadmap Timeline Stepper */
        .timeline {
            position: relative;
            max-width: 900px;
            margin: 3rem auto 0;
            padding-left: 2rem;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 7px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(180deg, var(--primary), var(--accent), var(--border-color));
        }

        .timeline-item {
            position: relative;
            margin-bottom: 2.5rem;
        }

        .timeline-marker {
            position: absolute;
            left: -2rem;
            top: 0.2rem;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: var(--bg-surface);
            border: 3px solid var(--primary);
            box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
            z-index: 2;
        }

        .timeline-marker.done {
            background: var(--emerald);
            border-color: var(--emerald);
        }

        .timeline-card {
            background: var(--bg-card);
            backdrop-filter: blur(12px);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 1.75rem;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .timeline-card:hover {
            border-color: var(--border-highlight);
            transform: translateX(4px);
        }

        .timeline-status {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.25rem 0.65rem;
            border-radius: var(--radius-full);
            font-size: 0.75rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .status-completed { background: var(--emerald-light); color: var(--emerald); }
        .status-active { background: var(--primary-light); color: var(--primary); }
        .status-planning { background: rgba(148, 163, 184, 0.15); color: var(--text-muted); }

        .timeline-title {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .timeline-list {
            list-style: none;
            margin-top: 1rem;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .timeline-list li {
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-body);
        }

        /* Team Grid */
        .team-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-top: 2.5rem;
        }

        @media (min-width: 640px) {
            .team-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (min-width: 1024px) {
            .team-grid { grid-template-columns: repeat(3, 1fr); }
        }

        .team-card {
            background: var(--bg-card);
            backdrop-filter: blur(12px);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 1.75rem;
            text-align: center;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
        }

        .team-card:hover {
            transform: translateY(-6px);
            border-color: var(--border-highlight);
            box-shadow: var(--shadow-md);
        }

        .team-avatar {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.25rem;
            margin: 0 auto 1.25rem;
            box-shadow: var(--shadow-glow);
        }

        .team-name {
            font-size: 1.15rem;
            font-weight: 700;
        }

        .team-role {
            font-size: 0.85rem;
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .team-bio {
            font-size: 0.875rem;
            color: var(--text-muted);
            line-height: 1.5;
        }

        /* Forms Styling */
        .form-card {
            background: var(--bg-card);
            backdrop-filter: blur(12px);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 2.5rem;
            box-shadow: var(--shadow-md);
            max-width: 620px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 1.25rem;
        }

        .form-group label {
            display: block;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--text-heading);
            margin-bottom: 0.4rem;
        }

        .form-control {
            width: 100%;
            padding: 0.85rem 1.1rem;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-color);
            background: var(--bg-surface);
            color: var(--text-heading);
            font-family: inherit;
            font-size: 0.95rem;
            outline: none;
            transition: var(--transition);
        }

        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
        }

        /* Modal Component */
        .modal-backdrop {
            position: fixed;
            inset: 0;
            background: rgba(15, 23, 42, 0.7);
            backdrop-filter: blur(6px);
            z-index: 300;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .modal-backdrop.active {
            opacity: 1;
            pointer-events: auto;
        }

        .modal-window {
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            width: 100%;
            max-width: 520px;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: var(--shadow-lg);
            transform: scale(0.95) translateY(10px);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 2rem;
        }

        .modal-backdrop.active .modal-window {
            transform: scale(1) translateY(0);
        }

        .modal-window.large {
            max-width: 760px;
        }

        .modal-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--border-color);
        }

        .modal-close {
            background: transparent;
            border: none;
            color: var(--text-muted);
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .modal-close:hover {
            color: var(--text-heading);
            transform: rotate(90deg);
        }

        /* Toast Notification */
        .toast-container {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 400;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            pointer-events: none;
        }

        .toast {
            background: var(--bg-surface);
            color: var(--text-heading);
            border: 1px solid var(--emerald);
            padding: 1rem 1.5rem;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-lg);
            font-weight: 600;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            transform: translateX(120%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: auto;
        }

        .toast.show {
            transform: translateX(0);
        }

        /* Footer */
        footer, .footer-modern {
            border-top: 1px solid var(--border-highlight);
            background: linear-gradient(180deg, var(--bg-body) 0%, rgba(15, 23, 42, 0.95) 100%);
            padding: 4.5rem 0 2rem;
            margin-top: 6rem;
            position: relative;
            overflow: hidden;
        }

        /* Footer Newsletter Card Banner */
        .footer-newsletter {
            background: var(--bg-card);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border-highlight);
            border-radius: var(--radius-lg);
            padding: 2.25rem 2.5rem;
            margin-bottom: 3.5rem;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            box-shadow: var(--shadow-md);
            position: relative;
            overflow: hidden;
        }

        .footer-newsletter::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, var(--primary), var(--accent));
        }

        @media (min-width: 900px) {
            .footer-newsletter {
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
            }
        }

        .newsletter-content {
            max-width: 540px;
        }

        .newsletter-badge {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--primary);
            background: var(--primary-light);
            padding: 0.2rem 0.6rem;
            border-radius: var(--radius-full);
            margin-bottom: 0.5rem;
        }

        .newsletter-content h3 {
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--text-heading);
            margin-bottom: 0.35rem;
        }

        .newsletter-content p {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .newsletter-form {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
            width: 100%;
            max-width: 460px;
        }

        .newsletter-input {
            flex: 1;
            min-width: 220px;
            padding: 0.75rem 1.15rem;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-color);
            background: var(--bg-surface);
            color: var(--text-heading);
            font-family: inherit;
            font-size: 0.9rem;
            outline: none;
            transition: var(--transition);
        }

        .newsletter-input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
        }

        /* Footer Main Grid Layout (Stretches Full Width Across 4 Columns) */
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem;
            margin-bottom: 3.5rem;
            width: 100%;
        }

        @media (min-width: 640px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .footer-grid {
                grid-template-columns: 2.2fr repeat(3, 1fr);
                gap: 2.5rem;
            }
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-brand p {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.6;
            max-width: 340px;
        }

        .footer-status-pill {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.35rem 0.85rem;
            border-radius: var(--radius-full);
            background: rgba(16, 185, 129, 0.12);
            border: 1px solid rgba(16, 185, 129, 0.3);
            color: var(--emerald);
            font-size: 0.78rem;
            font-weight: 700;
            width: fit-content;
        }

        .status-dot-green {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--emerald);
            box-shadow: 0 0 8px var(--emerald);
            animation: pulseDot 2s infinite;
        }

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

        .footer-socials {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-top: 0.25rem;
        }

        .social-pill {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.35rem 0.75rem;
            border-radius: var(--radius-md);
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            color: var(--text-heading);
            font-size: 0.825rem;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
        }

        .social-pill:hover {
            background: var(--primary);
            color: #FFFFFF;
            border-color: var(--primary);
            transform: translateY(-2px);
            box-shadow: var(--shadow-sm);
        }

        .footer-col h4 {
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 1.25rem;
            color: var(--text-heading);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            position: relative;
            padding-bottom: 0.4rem;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 24px;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.88rem;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            cursor: pointer;
            word-break: break-all;
        }

        .footer-links a:hover {
            color: var(--primary);
            transform: translateX(4px);
        }

        .link-badge {
            font-size: 0.85rem;
        }

        /* Footer Bottom Bar */
        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .footer-bottom-flex {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
            justify-content: space-between;
            text-align: center;
        }

        @media (min-width: 768px) {
            .footer-bottom-flex {
                flex-direction: row;
                text-align: left;
            }
        }

        .footer-love {
            font-weight: 500;
        }

        .footer-badges {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-security-tag, .footer-version-tag {
            font-size: 0.75rem;
            font-family: monospace;
            padding: 0.2rem 0.6rem;
            border-radius: var(--radius-sm);
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            color: var(--text-muted);
        }

/* Responses Pooling Table & Card Styles */
.responses-container {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    margin-top: 1.5rem;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.responses-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
}

.responses-table th {
    background: var(--bg-surface);
    color: var(--text-heading);
    font-weight: 700;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
    white-space: nowrap;
}

.responses-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-body);
    vertical-align: middle;
}

.responses-table tr:hover {
    background: var(--primary-light);
}

.responses-table tr:last-child td {
    border-bottom: none;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
}

.badge-approved {
    background: var(--emerald-light);
    color: var(--emerald);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-pending {
    background: rgba(245, 158, 11, 0.15);
    color: var(--amber);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-rejected {
    background: rgba(244, 63, 94, 0.15);
    color: var(--rose);
    border: 1px solid rgba(244, 63, 94, 0.3);
}

.tab-switcher {
    display: inline-flex;
    gap: 0.5rem;
    background: var(--bg-card);
    padding: 0.35rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    background: transparent;
    color: var(--text-muted);
    transition: var(--transition);
}

.tab-btn.active {
    background: var(--primary);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

/* Subdomains Portal Section Styles */
.subdomain-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .subdomain-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .subdomain-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.subdomain-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.subdomain-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--emerald));
    opacity: 0;
    transition: var(--transition);
}

.subdomain-card:hover {
    transform: translateY(-6px);
    background: var(--bg-card-hover);
    border-color: var(--border-highlight);
    box-shadow: var(--shadow-lg);
}

.subdomain-card:hover::after {
    opacity: 1;
}

.subdomain-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.subdomain-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition);
}

.subdomain-card:hover .subdomain-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #FFFFFF;
    transform: scale(1.1) rotate(-4deg);
}

.subdomain-badge {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-full);
    background: var(--primary-light);
    color: var(--primary);
    border: 1px solid var(--border-highlight);
}

.subdomain-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-heading);
}

.subdomain-card p {
    font-size: 0.95rem;
    color: var(--text-body);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.subdomain-url-box {
    background: var(--bg-body);
    border: 1px dashed var(--border-color);
    border-radius: var(--radius-sm);
    padding: 0.6rem 0.85rem;
    font-family: monospace;
    font-size: 0.85rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    word-break: break-all;
}

.subdomain-url-box code {
    font-weight: 600;
}

.subdomain-link-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-family: monospace;
    color: var(--primary);
    background: var(--primary-light);
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--transition);
}

.subdomain-link-tag:hover {
    background: var(--primary);
    color: #FFFFFF;
}

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

