
        :root {
            --bg-dark: #0a0a0a;
            --nav-bg: rgba(12, 12, 12, 0.85);
            --accent-blue: #c41230;
            --accent-red: #c41230;
            --accent-red-bright: #d71920;
            --text-main: #ffffff;
            --text-muted: #b0b8c1;
            --btn-light: #f3c8cf;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        body {
            background-color: var(--bg-dark);
            background-image:
                radial-gradient(circle at 85% 0%, rgba(196,18,48,0.30) 0%, transparent 55%),
                radial-gradient(circle at 10% 100%, rgba(196,18,48,0.18) 0%, transparent 55%),
                linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
            color: var(--text-main);
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }

        /* --- BACKGROUND WAVES --- */
        .waves {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 300px;
            z-index: -1;
            opacity: 0.4;
        }

        /* --- HEADER NAVIGATION --- */
        .header-wrapper {
            width: 100%;
            display: flex;
            justify-content: center;
            padding: 25px 20px;
            position: fixed;
            top: 0;
            z-index: 1000;
        }

        .navbar-capsule {
            display: flex;
            align-items: center;
            gap: 20px;
            background: var(--nav-bg);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 100px;
            padding: 8px 10px 8px 30px;
            width: 100%;
            max-width: 1100px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .logo {
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            color: #fff;
        }
        .logo svg {
            display: block;
        }
        .site-logo-icon {
            width: 38px;
            height: 38px;
            border-radius: 12px;
            display: grid;
            place-items: center;
            background: linear-gradient(180deg, rgba(196, 18, 48, 0.55), rgba(0, 0, 0, 0.25));
            border: 1px solid rgba(255, 255, 255, 0.08);
            flex-shrink: 0;
        }
        .site-logo-icon svg {
            width: 24px;
            height: 24px;
        }
        .site-logo-copy {
            display: inline-flex;
            align-items: center;
            line-height: 1;
            gap: 2px;
            font-size: 0.82rem;
            font-weight: 800;
            letter-spacing: 0.02em;
        }
        .site-logo-copy .site-logo-word {
            background: linear-gradient(90deg, #ffffff, #f3c8cf);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
            letter-spacing: 0.5px;
        }

        .nav-links {
            display: flex;
            gap: 35px;
            flex: 1;
            justify-content: center;
            min-width: 0;
        }

        .navbar-end {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
            margin-left: auto;
        }

        .nav-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s;
            padding-bottom: 4px;
            border-bottom: 2px solid transparent;
        }

        .nav-links a:hover {
            color: white;
        }

        .nav-links a.active {
            color: #fff;
            border-bottom-color: #2b82ad;
        }

        .nav-auth {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .nav-auth .nav-email {
            font-size: 0.85rem;
            opacity: 0.8;
            max-width: 180px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .nav-auth .nav-logout-btn {
            background: #e74c3c;
        }

        .notif-bell-wrap {
            position: relative;
            flex-shrink: 0;
            display: flex;
            align-items: center;
        }

        .notif-bell-btn {
            background: none;
            border: none;
            color: var(--text-muted);
            font-size: 1.15rem;
            cursor: pointer;
            position: relative;
            padding: 8px 10px;
            line-height: 1;
            transition: color 0.2s;
        }

        .notif-bell-btn:hover {
            color: #fff;
        }

        .notif-dot {
            display: none;
            position: absolute;
            top: 4px;
            right: 6px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #e74c3c;
        }

        .notif-dropdown {
            display: none;
            position: absolute;
            top: calc(100% + 10px);
            right: 0;
            width: 340px;
            max-height: 420px;
            overflow-y: auto;
            background: rgba(13, 27, 62, 0.98);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 14px;
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
            z-index: 2000;
            padding: 0;
        }

        .notif-dropdown-title {
            padding: 14px 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            font-weight: 700;
            font-size: 0.95rem;
        }

        #notifEmpty {
            display: none;
            text-align: center;
            padding: 30px 16px;
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        #notifEmpty i {
            font-size: 1.5rem;
            display: block;
            margin-bottom: 8px;
            opacity: 0.3;
        }

        .login {
            color: white;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
        }

        .btn-pill-sm {
            background: var(--accent-blue);
            color: white;
            border: none;
            padding: 10px 24px;
            border-radius: 100px;
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            transition: transform 0.2s, background 0.3s;
        }

        .btn-pill-sm {
            text-decoration: none;
            display: inline-block;
        }
        .btn-pill-sm:hover {
            background: #3694c2;
            transform: translateY(-1px);
        }

        /* --- HERO SECTION --- */
        .hero {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 160px 10% 80px 10%;
            max-width: 1400px;
            margin: 0 auto;
            gap: 40px;
        }

        .hero-content {
            flex: 1;
            max-width: 550px;
        }

        .hero-content h1 {
            font-size: clamp(2.5rem, 5vw, 4.2rem);
            font-weight: 300;
            line-height: 1.1;
            margin-bottom: 35px;
            letter-spacing: -1px;
        }

        .hero-content p {
            font-size: 1.2rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 45px;
            max-width: 480px;
        }

        .btn-main {
            background-color: var(--btn-light);
            color: #1a2a3a;
            border: none;
            padding: 18px 42px;
            border-radius: 100px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: opacity 0.3s;
        }

        .btn-main:hover {
            opacity: 0.9;
        }

        /* --- PHONE MOCKUP --- */
        .hero-image {
            flex: 1;
            display: flex;
            justify-content: center;
            perspective: 1200px;
        }

        .phone-container {
            width: 300px;
            height: 610px;
            background: #000;
            border: 10px solid #1a1a1a;
            border-radius: 45px;
            transform: rotateY(-15deg) rotateX(5deg);
            box-shadow: 40px 60px 100px rgba(0,0,0,0.6);
            overflow: hidden;
            position: relative;
        }

        .phone-screen {
            background: #f8f9fc;
            height: 100%;
            width: 100%;
            padding: 20px;
            display: flex;
            flex-direction: column;
            color: #1a1a1a;
        }

        .phone-header {
            display: flex;
            justify-content: space-between;
            font-size: 0.75rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .chart-circle {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            margin: 20px auto;
            background: conic-gradient(#4facfe 0% 35%, #00f2fe 35% 60%, #70e1f5 60% 85%, #ffd1ff 85% 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .chart-circle::after {
            content: '';
            width: 150px;
            height: 150px;
            background: white;
            border-radius: 50%;
            position: absolute;
        }

        .chart-text {
            z-index: 1;
            text-align: center;
        }

        .chart-text .val { font-weight: 800; font-size: 1.1rem; display: block; }
        .chart-text .pct { color: #2ecc71; font-size: 0.7rem; font-weight: 700; }

        .list-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            font-size: 0.85rem;
        }

        /* --- CHAT BUBBLE --- */
        .chat-icon {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #1a1a1a;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0,0,0,0.4);
        }

        /* --- FEATURE HUB SECTION --- */
        .hub-section {
            background: #f5f7fa;
            color: #1a2a3a;
            padding: 100px 5% 80px;
        }

        .hub-heading {
            text-align: center;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 600;
            margin-bottom: 60px;
            letter-spacing: -0.5px;
            line-height: 1.2;
        }

        .hub-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .hub-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 32px 24px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .hub-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        }

        .hub-card-mockup {
            width: 140px;
            height: 200px;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hub-card-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .hub-card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            margin-bottom: 12px;
            gap: 12px;
        }

        .hub-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0;
        }

        .hub-card-desc {
            color: #5a6570;
            font-size: 0.95rem;
            line-height: 1.5;
            margin-bottom: 20px;
            flex: 1;
        }

        .hub-card-desc sup {
            font-size: 0.65em;
        }

        .btn-learn {
            background: #2b82ad;
            color: white;
            border: none;
            padding: 10px 22px;
            border-radius: 100px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            align-self: flex-start;
        }

        .btn-learn:hover {
            background: #3694c2;
        }

        .hub-footnotes {
            max-width: 1200px;
            margin: 40px auto 0;
            padding: 0 5%;
            font-size: 0.8rem;
            color: #6b7280;
        }

        .hub-footnotes sup {
            font-size: 0.7em;
        }

        /* --- Feature Showcase Section --- */
        .action-section {
            background: #f4f6f8;
            color: #0b1f35;
            padding: 100px 5% 80px;
        }

        .action-container {
            max-width: 1100px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 300;
            margin-bottom: 40px;
            color: #546b81;
        }

        .hero-video-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto 80px;
            border-radius: 20px;
            overflow: hidden;
            background: #000;
        }

        .hero-video-container video {
            width: 100%;
            height: auto;
            aspect-ratio: 16 / 9;
            display: block;
            object-fit: cover;
        }

        .feature-title {
            text-align: center;
            font-size: clamp(1.8rem, 3vw, 2.2rem);
            font-weight: 300;
            margin-bottom: 60px;
            color: #546b81;
        }

        .feature-grid {
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .feature-content {
            flex: 1;
        }

        .sub-label {
            display: block;
            text-transform: uppercase;
            font-size: 0.75rem;
            font-weight: 700;
            margin-bottom: 15px;
            letter-spacing: 0.5px;
            color: #546b81;
        }

        .feature-content h3 {
            font-size: clamp(1.5rem, 2.5vw, 2rem);
            line-height: 1.2;
            margin-bottom: 20px;
            color: #3e526a;
        }

        .feature-content p {
            color: #546b81;
            font-size: 1rem;
            margin-bottom: 30px;
            max-width: 400px;
        }

        .nav-buttons {
            display: flex;
            gap: 15px;
        }

        .nav-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid #e1e8ed;
            background: #ffffff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
        }

        .nav-btn:hover {
            background: #e1e8ed;
        }

        .nav-btn svg {
            color: #0b1f35;
        }

        .feature-visual {
            flex: 1;
            background-color: #ebf0f5;
            border-radius: 12px;
            padding: 60px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .slide-number {
            position: absolute;
            top: 20px;
            right: 25px;
            font-size: 0.7rem;
            color: #546b81;
        }

        .ui-card {
            background: white;
            padding: 25px;
            border-radius: 15px;
            width: 100%;
            max-width: 340px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .buying-power-label {
            font-size: 0.8rem;
            color: #546b81;
        }

        .ui-card .amount {
            font-size: 1.8rem;
            font-weight: 700;
            margin: 5px 0 15px 0;
            color: #0b1f35;
        }

        .card-description {
            font-size: 0.75rem;
            color: #546b81;
            margin-bottom: 20px;
        }

        .toggle-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
            border: 1px solid #e1e8ed;
            border-radius: 10px;
            margin-bottom: 15px;
        }

        .toggle-label {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            font-size: 0.9rem;
            color: #0b1f35;
        }

        .switch {
            position: relative;
            display: inline-block;
            width: 44px;
            height: 24px;
        }

        .switch input { opacity: 0; width: 0; height: 0; }

        .switch .slider {
            position: absolute;
            cursor: pointer;
            top: 0; left: 0; right: 0; bottom: 0;
            background-color: #ccc;
            transition: .4s;
            border-radius: 24px;
        }

        .switch .slider:before {
            position: absolute;
            content: "";
            height: 18px; width: 18px;
            left: 3px; bottom: 3px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }

        .switch input:checked + .slider { background-color: #2b82ad; }
        .switch input:checked + .slider:before { transform: translateX(20px); }

        .input-group {
            padding: 10px 15px;
            border: 1px solid #e1e8ed;
            border-radius: 10px;
        }

        .input-group label {
            display: block;
            font-size: 0.65rem;
            color: #546b81;
            margin-bottom: 2px;
        }

        .input-group input {
            border: none;
            font-size: 0.9rem;
            font-weight: 600;
            width: 100%;
            outline: none;
            color: #0b1f35;
        }

        /* --- FOOTER --- */
        .m1-footer {
            background-color: #f4f8fb;
            padding: 60px 8% 40px;
            color: #002244;
        }

        .footer-top {
            text-align: center;
            font-size: 14px;
            margin-bottom: 30px;
        }

        .footer-top a {
            color: #2a6ead;
            text-decoration: none;
        }

        .footer-divider {
            border: 0;
            border-top: 1px solid #d1d9e0;
            margin-bottom: 50px;
            width: 100%;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-logo {
            flex: 0 0 50px;
        }

        .footer-logo svg {
            fill: #002244;
            width: 32px;
            height: 32px;
        }

        .footer-column {
            flex: 1;
            min-width: 150px;
            margin-bottom: 30px;
        }

        .footer-column h3 {
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 20px;
            color: #333;
        }

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

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

        .footer-column ul li a {
            color: #2a6ead;
            text-decoration: underline;
            font-size: 14px;
            transition: color 0.2s;
        }

        .footer-column ul li a:hover {
            color: #002244;
        }

        .social-col {
            flex: 0 0 200px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
        }

        .social-icons a {
            color: #2a6ead;
            font-size: 20px;
            text-decoration: none;
        }

        .app-badges {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .app-badges img {
            width: 135px;
            height: auto;
            cursor: pointer;
            border-radius: 4px;
        }

        /* --- HAMBURGER BUTTON --- */
        .hamburger {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 10;
            flex-direction: column;
            gap: 5px;
            flex-shrink: 0;
        }
        .hamburger span {
            display: block;
            width: 22px;
            height: 2px;
            background: #fff;
            border-radius: 2px;
            transition: all 0.3s;
        }
        .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .hamburger.open span:nth-child(2) { opacity: 0; }
        .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        /* --- MOBILE DROPDOWN MENU --- */
        .mobile-dropdown {
            display: none;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .mobile-dropdown-links {
            display: flex;
            flex-direction: column;
            padding: 8px 0;
        }
        .mobile-dropdown-links a {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 13px 24px;
            color: #fff;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: background 0.2s;
            border-radius: 10px;
            margin: 0 10px;
        }
        .mobile-dropdown-links a:hover {
            background: rgba(255,255,255,0.08);
        }
        .mobile-dropdown-links a.active {
            background: rgba(43,130,173,0.15);
            color: #fff;
            border-left: 3px solid #2b82ad;
        }
        .mobile-dropdown-links a.active i {
            color: #2b82ad;
        }
        .mobile-dropdown-links a i {
            width: 22px;
            text-align: center;
            color: rgba(255,255,255,0.4);
            font-size: 0.95rem;
        }
        .mobile-dropdown-footer {
            display: flex;
            padding: 14px 20px 6px;
            border-top: 1px solid rgba(255,255,255,0.08);
            margin-top: 4px;
        }
        .mobile-logout-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #e74c3c;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            padding: 8px 14px;
            border-radius: 10px;
            transition: background 0.2s;
        }
        .mobile-logout-btn:hover { background: rgba(231,76,60,0.1); }
        .mobile-login-btn {
            display: block;
            text-align: center;
            padding: 12px;
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 50px;
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
        }
        .mobile-signup-btn {
            display: block;
            text-align: center;
            padding: 12px;
            background: #2b82ad;
            border-radius: 50px;
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
        }

        /* --- RESPONSIVENESS --- */
        @media (max-width: 968px) {
            .hamburger { display: flex; }
            .mobile-dropdown { display: block; }
            .nav-links, .nav-auth { display: none; }

            .navbar-end {
                gap: 6px;
            }

            .notif-bell-btn {
                padding: 8px;
            }

            .notif-dropdown {
                right: 0;
                width: min(340px, calc(100vw - 32px));
            }

            .header-wrapper {
                flex-direction: column;
                align-items: stretch;
                padding: 14px 12px;
                background: var(--nav-bg);
                backdrop-filter: blur(12px);
                -webkit-backdrop-filter: blur(12px);
                border-bottom: 1px solid rgba(255,255,255,0.06);
                transition: background 0.3s;
            }
            .header-wrapper.menu-open {
                background: rgba(13, 27, 62, 0.97);
            }
            .navbar-capsule {
                width: 100%;
                padding: 0 6px;
                background: none;
                backdrop-filter: none;
                -webkit-backdrop-filter: none;
                border: none;
                border-radius: 0;
                box-shadow: none;
            }

            .hero { flex-direction: column; text-align: center; padding-top: 120px; }
            .hero-content { display: flex; flex-direction: column; align-items: center; }
            .hero-image { transform: scale(0.8); margin-top: -40px; }
            .hub-cards { grid-template-columns: 1fr; }
            .hub-section { padding: 60px 5% 60px; }
            .feature-grid { flex-direction: column; text-align: center; }
            .feature-content p { margin: 0 auto 30px auto; }
            .nav-buttons { justify-content: center; }
            .action-section { padding: 60px 5% 60px; }
            .feature-visual { padding: 40px 20px; }
            .footer-content { flex-direction: column; padding-left: 20px; }
            .footer-column { width: 100%; }
            .signup-container { flex-direction: column; text-align: center; gap: 40px; }
            .signup-card { max-width: 100%; }
        }

        /* --- FLASH MESSAGES --- */
        .flash-messages {
            position: fixed;
            top: 90px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1100;
        }
        .flash {
            padding: 12px 24px;
            border-radius: 8px;
            margin-bottom: 8px;
            font-size: 0.95rem;
        }
        .flash.success { background: #2ecc71; color: white; }
        .flash.error { background: #e74c3c; color: white; }

        /* --- LOGIN PAGE --- */
        .login-page {
            min-height: calc(100vh - 200px);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 120px 20px 80px;
        }
        .login-box {
            background: rgba(23, 37, 74, 0.5);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 16px;
            padding: 40px;
            width: 100%;
            max-width: 400px;
        }
        .login-box h1 {
            font-size: 1.8rem;
            font-weight: 300;
            margin-bottom: 30px;
            text-align: center;
        }
        .login-box label {
            display: block;
            font-size: 0.9rem;
            margin-bottom: 8px;
            color: var(--text-muted);
        }
        .login-box input[type="email"],
        .login-box input[type="password"] {
            width: 100%;
            padding: 14px 18px;
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 10px;
            background: rgba(255,255,255,0.05);
            color: white;
            font-size: 1rem;
            margin-bottom: 20px;
        }
        .login-box input::placeholder {
            color: rgba(255,255,255,0.4);
        }
        .login-box button[type="submit"] {
            width: 100%;
            padding: 14px;
            background: var(--accent-blue);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            margin-top: 10px;
        }
        .login-box button[type="submit"]:hover {
            background: #3694c2;
        }

        /* --- SIGNUP PAGE --- */
        .signup-page {
            padding: 120px 5% 80px;
        }
        .signup-container {
            display: flex;
            max-width: 1000px;
            margin: 0 auto 60px;
            gap: 80px;
            align-items: center;
        }
        .signup-card {
            background: transparent;
            backdrop-filter: none;
            border: none;
            border-radius: 0;
            padding: 40px;
            width: 100%;
            max-width: 410px;
            box-shadow: none;
        }
        .signup-card .input-group {
            position: relative;
            margin-bottom: 15px;
        }
        .signup-card .input-group input {
            width: 100%;
            padding: 16px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 8px;
            color: white;
            font-size: 14px;
        }
        .signup-card .input-group input::placeholder {
            color: rgba(255,255,255,0.4);
        }
        .signup-card .password-group {
            margin-bottom: 10px;
        }
        .signup-card .password-toggle {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            opacity: 0.6;
            color: var(--text-muted);
        }
        .signup-card .password-hint {
            font-size: 11px;
            color: var(--text-muted);
            text-align: center;
            margin-bottom: 20px;
            line-height: 1.4;
        }
        .signup-card .disclaimer {
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 20px;
            line-height: 1.5;
        }
        .signup-card .disclaimer a {
            color: var(--text-main);
            text-decoration: underline;
        }
        .signup-card .btn-join {
            width: 100%;
            padding: 16px;
            background: var(--btn-light);
            border: none;
            border-radius: 25px;
            color: #0b0d10;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            margin-bottom: 25px;
            transition: opacity 0.2s;
        }
        .signup-card .btn-join:hover {
            opacity: 0.9;
        }
        .signup-card .login-link {
            text-align: center;
            font-size: 14px;
            color: var(--text-muted);
        }
        .signup-card .login-link a {
            color: var(--btn-light);
            text-decoration: underline;
        }
        .signup-content h1 {
            font-size: clamp(2rem, 4vw, 3.2rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }
        .signup-content p {
            color: var(--text-muted);
            font-size: 1.1rem;
            line-height: 1.6;
        }
        .store-section {
            display: flex;
            gap: 40px;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }
        .store-item {
            display: flex;
            flex-direction: column;
            gap: 5px;
            font-size: 13px;
        }
        .store-header {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            color: var(--text-main);
        }
        .store-header svg {
            color: var(--text-main);
        }
        .rating {
            font-size: 12px;
            color: var(--text-muted);
        }
        .as-of {
            font-size: 10px;
            color: rgba(255,255,255,0.4);
        }

        /* ── Xholding red theme polish for logged-in pages ── */
        .nav-links a.active { color: var(--accent-red) !important; }
        .notif-bell-btn:hover { color: var(--accent-red); }

        /* ── Shop strip (dashboard / invest / portfolio) ── */
        .shop-strip {
            margin-top: 16px;
            padding: 22px 24px;
            background: #121212;
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 16px;
        }
        .shop-strip-head {
            display: flex; justify-content: space-between; align-items: flex-end;
            margin-bottom: 18px; flex-wrap: wrap; gap: 12px;
        }
        .shop-strip-head h2 {
            font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 4px;
        }
        .shop-strip-head p { font-size: 0.8rem; color: #9ca3af; }
        .shop-strip-all {
            font-size: 0.85rem; font-weight: 600; color: #c41230;
            text-decoration: none; white-space: nowrap;
        }
        .shop-strip-all:hover { color: #ff6b6b; }
        .shop-strip-section { margin-bottom: 22px; }
        .shop-strip-section:last-child { margin-bottom: 0; }
        .shop-strip-label {
            display: inline-flex; align-items: center; gap: 8px;
            font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
            text-transform: uppercase; color: #9ca3af; margin-bottom: 12px;
        }
        .shop-strip-label .dot {
            width: 8px; height: 8px; border-radius: 50%; display: inline-block;
        }
        .shop-strip-label .dot-red { background: var(--accent-red); }
        .shop-strip-label .dot-blue { background: #2b82ad; }
        .shop-strip-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
            gap: 12px;
        }
        .shop-strip-card {
            background: #0d0d0d;
            border: 1px solid rgba(255,255,255,0.07);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            color: #fff;
            display: flex; flex-direction: column;
            transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
        }
        .shop-strip-card:hover {
            border-color: var(--accent-red);
            transform: translateY(-3px);
            box-shadow: 0 10px 26px rgba(196,18,48,0.22);
        }
        .shop-strip-img {
            width: 100%; height: 90px;
            background-size: cover; background-position: center;
            background-color: #1a1a1a;
        }
        .shop-strip-body { padding: 10px 12px 12px; display: flex; flex-direction: column; gap: 4px; }
        .shop-strip-tag {
            align-self: flex-start;
            font-size: 8px; font-weight: 700; letter-spacing: 0.06em;
            text-transform: uppercase; color: #fff;
            background: rgba(196,18,48,0.4);
            padding: 2px 6px; border-radius: 4px;
        }
        .shop-strip-tag.starlink { background: rgba(43,130,173,0.5); }
        .shop-strip-card h3 {
            font-size: 0.78rem; font-weight: 600; line-height: 1.3;
            color: #fff;
            display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
            overflow: hidden;
            margin: 0;
        }
        .shop-strip-price { font-size: 0.9rem; font-weight: 800; color: #4ade80; }
        .shop-strip-cta { font-size: 0.66rem; font-weight: 600; color: #c41230; }

        @media (max-width: 600px) {
            .shop-strip { padding: 18px; border-radius: 14px; }
            .shop-strip-head h2 { font-size: 1.05rem; }
            .shop-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
            .shop-strip-img { height: 78px; }
        }
    
