
        :root {
            --navy: #0b2b45;
            --gold: #caa34f;
            --muted: #6b7a86;
            --bg: #fbfbfb;
            --container: 1100px;
            --radius: 14px;
            --success: #2e7d32;
            --error: #d32f2f;
        }

        html, body {
            height: 100%;
            margin: 0;
            font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
            color: var(--navy);
            background: var(--bg);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            line-height: 1.6;
            scroll-behavior: smooth;
        }

        /* Layout container */
        .wrap {
            max-width: var(--container);
            margin: 0 auto;
            padding: 36px 24px;
        }

        /* Header / Nav - FIXED NAVIGATION */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(255,255,255,0.95);
            border-bottom: 1px solid rgba(11,43,69,0.06);
            box-shadow: 0 2px 10px rgba(11,43,69,0.08);
        }

        .nav-inner {
            max-width: var(--container);
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 20px;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 14px;
            text-decoration: none;
            color: var(--navy);
        }

        .brand h1 {
            font-family: "Playfair Display", serif;
            font-size: 20px;
            margin: 0;
            font-weight: 700;
            letter-spacing: 0.6px;
        }

        nav ul {
            display: flex;
            gap: 18px;
            list-style: none;
            margin: 0;
            padding: 0;
            align-items: center;
        }

        nav a {
            color: var(--navy);
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            padding: 8px 10px;
            border-radius: 8px;
            transition: all 0.2s ease;
        }

        nav a:hover {
            background: rgba(10,30,45,0.04);
        }

        /* Financial Ticker - FIXED POSITIONING */
        .ticker-container {
            background: var(--navy);
            color: white;
            padding: 0;
            overflow: hidden;
            position: fixed;
            top: 80px; /* Position below the fixed header */
            left: 0;
            right: 0;
            z-index: 99; /* Below header but above content */
            border-bottom: 1px solid rgba(255,255,255,0.1);
            height: 40px;
            display: flex;
            align-items: center;
        }

        .ticker-label {
            position: absolute;
            left: 0;
            top: 0;
            background: var(--gold);
            color: var(--navy);
            padding: 0 16px;
            font-weight: 700;
            font-size: 13px;
            z-index: 2;
            height: 100%;
            display: flex;
            align-items: center;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .ticker-wrapper {
            width: 100%;
            overflow: hidden;
            padding-left: 100px;
        }

        .ticker-content {
            display: flex;
            animation: ticker-scroll 60s linear infinite;
            white-space: nowrap;
            width: max-content;
        }

        .ticker-item {
            display: flex;
            align-items: center;
            padding: 0 20px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s ease;
            height: 40px;
            text-decoration: none;
            color: white;
            white-space: nowrap;
        }

        .ticker-item:hover {
            background: rgba(255,255,255,0.1);
        }

        .ticker-symbol {
            font-weight: 600;
            margin-right: 6px;
        }

        .ticker-price {
            font-weight: 700;
            margin-right: 4px;
        }

        .ticker-change {
            display: flex;
            align-items: center;
            font-size: 12px;
            margin-left: 8px;
        }

        .ticker-change.positive {
            color: #4caf50;
        }

        .ticker-change.negative {
            color: #f44336;
        }

        @keyframes ticker-scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .ticker-container:hover .ticker-content {
            animation-play-state: paused;
        }

        /* Hero with Professional Stock Room Background */
        .hero {
            position: relative;
            padding: 160px 0 100px; /* Increased top padding to account for header + ticker */
            background: 
                linear-gradient(135deg, rgba(11,43,69,0.88) 0%, rgba(11,43,69,0.75) 100%),
                url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            color: white;
            overflow: hidden;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            margin-top: 0; /* Remove any margin that might be pushing content down */
        }

        /* Video and Overlay Styles */
        .hero-video-background {
            display: none; /* Hidden on mobile by default */
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1; 
        }
        .hero-video-background video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .hero-overlay {
            display: none; /* Hidden on mobile by default */
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(11,43,69,0.88) 0%, rgba(11,43,69,0.75) 100%);
            z-index: 2;
        }


        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(202,163,79,0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(202,163,79,0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(202,163,79,0.08) 0%, transparent 50%);
            animation: pulse 15s ease-in-out infinite;
            pointer-events: none;
            z-index: 3; /* Ensure pulse is on top of the video overlay */
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        .hero .tagline {
            color: white;
            font-size: 42px;
            margin-bottom: 20px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .hero .sub {
            color: rgba(255,255,255,0.85);
            font-size: 18px;
            max-width: 600px;
            text-shadow: 0 1px 2px rgba(0,0,0,0.2);
        }

        .hero .pill {
            background: rgba(202,163,79,0.25);
            color: var(--gold);
            border: 1px solid rgba(202,163,79,0.4);
            text-shadow: none;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 18px;
            border-radius: 10px;
            border: 0;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
            font-family: inherit;
            font-size: 15px;
        }

        .btn-primary {
            background: var(--navy);
            color: white;
            box-shadow: 0 6px 18px rgba(11,43,69,0.12);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 22px rgba(11,43,69,0.18);
        }

        .btn-outline {
            background: transparent;
            border: 1.5px solid var(--gold);
            color: var(--gold);
            font-weight: 700;
        }

        .btn-outline:hover {
            background: rgba(202,163,79,0.08);
        }

        /* Hero card */
        .hero-card {
            background: rgba(255,255,255,0.95);
            border-radius: 12px;
            padding: 20px;
            border: 1px solid rgba(11,43,69,0.06);
            box-shadow: 0 10px 30px rgba(11,43,69,0.04);
            display: flex;
            gap: 14px;
            align-items: center;
            max-width: 560px;
            transition: all 0.3s ease;
            margin-top: 30px;
            backdrop-filter: blur(10px);
        }

        .hero-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 14px 36px rgba(11,43,69,0.08);
        }

        .hero-card .meta {
            font-size: 14px;
            color: var(--muted);
        }

        /* Partnership Image Section */
        .partnership-image-container {
            position: absolute;
            right: 5%;
            top: 50%;
            transform: translateY(-50%);
            width: 400px;
            height: 250px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .partnership-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Sections */
        section {
            padding: 56px 0;
            border-top: 1px solid rgba(11,43,69,0.03);
        }

        .section-title {
            font-family: "Playfair Display", serif;
            font-size: 22px;
            margin: 0 0 12px 0;
            color: var(--navy);
        }

        .lead {
            color: var(--muted);
            margin: 0 0 20px 0;
            max-width: 820px;
        }

        /* About */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 420px;
            gap: 28px;
            align-items: start;
        }

        .values {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 8px;
        }

        .value {
            background: white;
            border-radius: 12px;
            padding: 14px;
            border: 1px solid rgba(11,43,69,0.04);
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .value:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(11,43,69,0.06);
        }

        .value-icon {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background: rgba(202,163,79,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        /* Services */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            margin-top: 24px;
        }

        .service {
            background: white;
            border-radius: 12px;
            padding: 28px;
            border: 1px solid rgba(11,43,69,0.04);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(11,43,69,0.04);
            display: flex;
            flex-direction: column;
        }

        .service::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gold);
        }

        .service:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(11,43,69,0.08);
        }

        .service h4 {
            margin: 0 0 16px 0;
            font-family: "Playfair Display", serif;
            font-size: 20px;
            color: var(--navy);
        }

        .service p {
            color: var(--muted);
            margin: 0 0 20px 0;
            line-height: 1.6;
            flex-grow: 1;
        }

        .service-features {
            list-style: none;
            padding: 0;
            margin: 0 0 24px 0;
        }

        .service-features li {
            padding: 8px 0;
            border-bottom: 1px solid rgba(11,43,69,0.04);
            color: var(--muted);
            display: flex;
            align-items: center;
        }

        .service-features li:last-child {
            border-bottom: none;
        }

        .service-features li:before {
            content: '✓';
            color: var(--gold);
            font-weight: bold;
            margin-right: 10px;
        }

        .service-cta {
            margin-top: auto;
        }

        /* Exclusive Investing Section */
        .exclusive-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            margin-top: 18px;
        }

        .exclusive-item {
            background: white;
            padding: 16px;
            border-radius: 12px;
            border: 1px solid rgba(11,43,69,0.04);
            transition: all 0.2s ease;
            position: relative;
            overflow: hidden;
        }

        .exclusive-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--navy);
        }

        .exclusive-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(11,43,69,0.06);
        }

        .exclusive-item h5 {
            margin: 0 0 8px 0;
            font-size: 16px;
        }

        .exclusive-item p {
            color: var(--muted);
            font-size: 14px;
            margin: 0;
        }

        /* Investment Opportunities Section */
        .opportunities-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            margin-top: 18px;
        }

        .opportunity {
            background: white;
            padding: 18px;
            border-radius: 12px;
            border: 1px solid rgba(11,43,69,0.04);
            min-height: 140px;
            transition: all 0.2s ease;
            position: relative;
            overflow: hidden;
        }

        .opportunity::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gold);
        }

        .opportunity:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(11,43,69,0.06);
        }

        .opportunity h4 {
            margin: 0 0 10px 0;
            font-family: "Playfair Display", serif;
        }

        /* Platform Features Section */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            margin-top: 18px;
        }

        .feature {
            background: white;
            padding: 18px;
            border-radius: 12px;
            border: 1px solid rgba(11,43,69,0.04);
            min-height: 140px;
            transition: all 0.2s ease;
            position: relative;
            overflow: hidden;
        }

        .feature::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--navy);
        }

        .feature:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(11,43,69,0.06);
        }

        .feature h4 {
            margin: 0 0 10px 0;
            font-family: "Playfair Display", serif;
        }

        /* Contact */
        .contact-wrap {
            display: grid;
            grid-template-columns: 1fr 420px;
            gap: 28px;
            align-items: start;
        }

        .contact-card {
            background: white;
            border-radius: 12px;
            padding: 18px;
            border: 1px solid rgba(11,43,69,0.04);
        }

        form .row {
            display: flex;
            gap: 12px;
            margin-bottom: 12px;
        }

        form input, form textarea {
            width: 100%;
            padding: 12px;
            border-radius: 10px;
            border: 1px solid rgba(11,43,69,0.09);
            font-size: 14px;
            font-family: inherit;
            color: var(--navy);
            transition: all 0.2s ease;
            box-sizing: border-box;
        }

        form input:focus, form textarea:focus {
            outline: none;
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(202,163,79,0.1);
        }

        textarea {
            min-height: 140px;
            resize: vertical;
        }

        .form-note {
            font-size: 13px;
            color: var(--muted);
            margin-top: 10px;
        }

        /* Form validation styles */
        .form-error {
            color: var(--error);
            font-size: 13px;
            margin-top: 4px;
            display: none;
        }

        .input-error {
            border-color: var(--error) !important;
        }

        .form-success {
            background-color: rgba(46, 125, 50, 0.08);
            border: 1px solid rgba(46, 125, 50, 0.2);
            border-radius: 10px;
            padding: 16px;
            margin-top: 16px;
            display: none;
        }

        .form-success p {
            color: var(--success);
            margin: 0;
            font-weight: 600;
        }

        /* Loading spinner */
        .spinner {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255,255,255,.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 1s ease-in-out infinite;
            margin-right: 8px;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Footer */
        footer {
            padding: 28px 0;
            color: var(--muted);
            font-size: 14px;
            background: linear-gradient(to bottom, rgba(11,43,69,0.03), rgba(11,43,69,0.01));
        }

        .footer-content {
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 24px;
        }

        .footer-disclaimer {
            font-size: 12px;
            line-height: 1.5;
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid rgba(11,43,69,0.08);
        }

        /* small helper */
        .muted {
            color: var(--muted);
        }

        .pill {
            display: inline-block;
            background: rgba(202,163,79,0.08);
            color: var(--gold);
            padding: 6px 10px;
            border-radius: 999px;
            font-weight: 700;
        }

        /* Logo styling */
        .logo-container {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 56px;
            height: 56px;
            background: var(--navy);
            border-radius: 10px;
            color: white;
        }

        /* Hero grid fix */
        .hero-grid {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 3; /* Changed from 2 to 3 to be on top of the overlay */
        }

        .hero-content {
            flex: 1;
            max-width: 600px;
        }

        .cta-row {
            display: flex;
            gap: 12px;
            align-items: center;
            margin-top: 24px;
        }

        /* Image sections */
        .image-section {
            position: relative;
            padding: 80px 0;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .image-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(11,43,69,0.7);
        }

        .image-section .wrap {
            position: relative;
            z-index: 2;
        }

        .image-section .section-title {
            color: white;
        }

        .image-section .lead {
            color: rgba(255,255,255,0.85);
        }

        /* Stats section */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 24px;
        }

        .stat-card {
            text-align: center;
            padding: 24px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(11,43,69,0.06);
        }

        .stat-number {
            font-size: 36px;
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 8px;
        }

        .stat-description {
            color: var(--muted);
            font-size: 14px;
        }

        /* Section CTA */
        .section-cta {
            text-align: center;
            margin-top: 32px;
        }

        /* Registration Form Styles */
        .registration-hero {
            padding: 160px 0 80px;
            background: linear-gradient(135deg, rgba(11,43,69,0.92) 0%, rgba(11,43,69,0.85) 100%);
            color: white;
            text-align: center;
        }

        .registration-hero h1 {
            font-family: "Playfair Display", serif;
            font-size: 36px;
            margin: 0 0 16px 0;
        }

        .registration-hero p {
            font-size: 18px;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.9;
        }

        .registration-container {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
            margin: 60px 0;
        }

        .registration-form {
            background: white;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 4px 20px rgba(11,43,69,0.08);
            border: 1px solid rgba(11,43,69,0.06);
        }

        .form-section {
            margin-bottom: 32px;
            padding-bottom: 24px;
            border-bottom: 1px solid rgba(11,43,69,0.08);
        }

        .form-section:last-of-type {
            border-bottom: none;
        }

        .form-section h3 {
            font-family: "Playfair Display", serif;
            font-size: 20px;
            margin: 0 0 20px 0;
            color: var(--navy);
            padding-bottom: 8px;
            border-bottom: 2px solid var(--gold);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 16px;
        }

        .form-group {
            margin-bottom: 16px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--navy);
            font-size: 14px;
        }

        .form-group label.required:after {
            content: "*";
            color: var(--error);
            margin-left: 4px;
        }

        .form-group input, .form-group select, .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid rgba(11,43,69,0.15);
            border-radius: 8px;
            font-size: 15px;
            font-family: inherit;
            transition: all 0.2s ease;
            box-sizing: border-box;
        }

        .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
            outline: none;
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(202,163,79,0.1);
        }

        .radio-group {
            display: flex;
            gap: 20px;
            margin-top: 8px;
        }

        .radio-option {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .radio-option input {
            width: auto;
        }

        .form-note {
            font-size: 13px;
            color: var(--muted);
            margin-top: 8px;
            line-height: 1.5;
        }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin: 20px 0;
        }

        .checkbox-group input {
            width: auto;
            margin-top: 4px;
        }

        .checkbox-group label {
            margin-bottom: 0;
            font-weight: normal;
        }

        .submit-btn {
            background: var(--navy);
            color: white;
            border: none;
            padding: 14px 28px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.2s ease;
            width: 100%;
            margin-top: 20px;
        }

        .submit-btn:hover {
            background: #0a2338;
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(11,43,69,0.15);
        }

        /* Registration Sidebar */
        .registration-sidebar {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 4px 20px rgba(11,43,69,0.08);
            border: 1px solid rgba(11,43,69,0.06);
            height: fit-content;
            position: sticky;
            top: 140px;
        }

        .sidebar-section {
            margin-bottom: 32px;
            padding-bottom: 24px;
            border-bottom: 1px solid rgba(11,43,69,0.08);
        }

        .sidebar-section:last-of-type {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .sidebar-section h4 {
            font-family: "Playfair Display", serif;
            font-size: 18px;
            margin: 0 0 16px 0;
            color: var(--navy);
        }

        .sidebar-section p {
            color: var(--muted);
            font-size: 14px;
            line-height: 1.6;
            margin: 0 0 12px 0;
        }

        .sidebar-section ul {
            color: var(--muted);
            font-size: 14px;
            line-height: 1.6;
            padding-left: 20px;
            margin: 0;
        }

        .sidebar-section li {
            margin-bottom: 8px;
        }

        .contact-info {
            background: rgba(202,163,79,0.08);
            padding: 16px;
            border-radius: 8px;
            margin-top: 16px;
        }

        .contact-info p {
            margin: 0;
            font-size: 14px;
        }

        .contact-info a {
            color: var(--navy);
            font-weight: 600;
            text-decoration: none;
        }

        .contact-info a:hover {
            text-decoration: underline;
        }

        /* Page sections */
        .page-section {
            display: none;
        }

        .page-section.active {
            display: block;
        }

        /* Hamburger Menu */
        .hamburger-menu {
            display: none;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 24px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 210;
        }

        .hamburger-menu span {
            width: 100%;
            height: 3px;
            background-color: var(--navy);
            border-radius: 2px;
        }

        /* Mobile Menu Overlay */
        .mobile-menu-overlay {
            height: 100%;
            width: 0;
            position: fixed;
            z-index: 200;
            top: 0;
            left: 0;
            background-color: rgba(11, 43, 69, 0.98);
            overflow-x: hidden;
            transition: 0.5s;
        }

        .mobile-menu-content {
            position: relative;
            top: 20%;
            width: 100%;
            text-align: center;
            margin-top: 30px;
        }

        .mobile-menu-overlay a {
            padding: 15px;
            text-decoration: none;
            font-size: 24px;
            color: white;
            display: block;
            transition: 0.3s;
        }

        .mobile-menu-overlay a:hover,
        .mobile-menu-overlay a:focus {
            color: var(--gold);
        }

        .mobile-menu-overlay .close-btn {
            position: absolute;
            top: 15px;
            right: 35px;
            font-size: 50px;
            line-height: 1;
        }


        /* Responsive */
        @media (max-width: 1000px) {
            .about-grid, .contact-wrap, .registration-container {
                grid-template-columns: 1fr;
            }
            
            .services-grid, .exclusive-grid, .opportunities-grid, .features-grid, .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
            
            .hero {
                padding: 140px 0 60px; /* Adjusted for mobile */
            }
            
            .registration-sidebar {
                position: static;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .ticker-label {
                position: relative;
                display: block;
                text-align: center;
                margin-bottom: 20px;
                width: 100%;
                justify-content: center;
            }
            
            .ticker-wrapper {
                padding-left: 0;
            }
            
            .ticker-container {
                height: auto;
                flex-direction: column;
                padding: 21px 0;
                top: 75px; /* Adjusted for smaller header on mobile */
            }
            
            .partnership-image-container {
                position: relative;
                right: auto;
                top: auto;
                transform: none;
                width: 100%;
                margin-top: 30px;
            }
            
            .hero-grid {
                flex-direction: column;
            }
        }

        @media (max-width: 768px) {
            /* Mobile Navigation */
            .desktop-nav {
                display: none;
            }

            .hamburger-menu {
                display: flex;
                position: absolute;
                right: 20px;
                top: 50%;
                transform: translateY(-50%);
            }

            .nav-inner {
                justify-content: center; /* Center the brand logo */
                position: relative;
            }

            .brand .brand-text {
                display: none; /* Hide text, only show logo icon */
            }
            
            /* Previous 640px rules */
            .hero-card {
                max-width: 100%;
            }
            
            .services-grid, .exclusive-grid, .opportunities-grid, .features-grid, .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .brand h1 {
                font-size: 18px;
            }
            
            .tagline {
                font-size: 26px;
            }
            
            .cta-row {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .ticker-item {
                padding: 0 12px;
                font-size: 12px;
            }
            
            .hero {
                padding: 120px 0 40px; /* Adjusted for mobile */
            }
            
            .ticker-container {
                top: 60px; /* Further adjusted for mobile */
            }
            
            .registration-form {
                padding: 24px;
            }
            
            .registration-sidebar {
                padding: 20px;
            }
            
            .registration-hero h1 {
                font-size: 28px;
            }
            
            .registration-hero p {
                font-size: 16px;
            }
        }

        /* Media Query to show video on Desktop */
        @media (min-width: 769px) { /* Activates on screens wider than 768px */
            
            /* 1. Show the video and overlay */
            .hero-video-background,
            .hero-overlay {
                display: block;
            }

            /* 2. Remove the image background and gradient from .hero (now handled by the overlay) */
            .hero {
                background: var(--navy); /* Just a fallback background color */
                background-attachment: scroll; /* 'fixed' is no longer needed */
            }
        }