        /* Hero */
        .page-hero {
            padding-top: calc(var(--navbar-height) + var(--disclaimer-height) + 80px);
            padding-bottom: 80px;
            text-align: center;
            background: radial-gradient(circle at center, rgba(204, 255, 0, 0.1) 0%, transparent 60%);
        }

        .page-title {
            font-size: clamp(40px, 5vw, 64px);
            font-weight: 700 !important;
            margin-bottom: 24px;
            color: var(--white);
        }

        .highlight {
            color: var(--lime-green);
        }

        .page-subtitle {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.7);
            max-width: 800px;
            margin: 0 auto;
        }

        /* Content Sections */
        .section {
            padding: 80px 40px;
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
            box-sizing: border-box;
        }

        .content-title {
            font-size: 32px;
            color: var(--lime-light);
            margin-bottom: 24px;
            font-family: var(--font-display);
            text-align: center;
        }

        /* Compensation Plan Grid */
        .income-streams {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .stream-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 40px;
            border-radius: 24px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .stream-card:hover {
            border-color: var(--lime-green);
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-5px);
        }

        .stream-number {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(204, 255, 0, 0.1);
            color: var(--lime-green);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700 !important;
            font-size: 18px;
        }

        .stream-title {
            color: var(--white);
            font-size: 24px;
            margin-bottom: 16px;
            font-family: var(--font-display);
        }

        .stream-desc {
            color: rgba(255, 255, 255, 0.8);
            font-size: 16px;
            margin-bottom: 24px;
            line-height: 1.6;
        }

        .stream-list {
            list-style: none;
            padding: 0;
        }

        .stream-list li {
            margin-bottom: 12px;
            color: rgba(255, 255, 255, 0.7);
            padding-left: 20px;
            position: relative;
        }

        .stream-list li::before {
            content: "✓";
            color: var(--lime-green);
            position: absolute;
            left: 0;
            top: 0;
        }

        /* Stats Bar */
        .stats-bar {
            display: flex;
            justify-content: center;
            gap: 60px;
            margin: 60px 0;
            flex-wrap: wrap;
            padding: 40px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 20px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-value {
            font-size: 48px;
            font-weight: 700 !important;
            color: var(--lime-green);
            font-family: var(--font-display);
        }

        .stat-label {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 8px;
        }

        /* Footer */
        .footer {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 80px 40px 40px;
            background: var(--near-black);
            margin-top: 80px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-section h3 {
            color: var(--lime-green) !important;
            margin-bottom: 24px;
            font-size: 18px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
        }

        .footer-links a:hover {
            color: var(--lime-green);
        }

        .footer-bottom {
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
            color: rgba(255, 255, 255, 0.4);
            font-size: 14px;
        }

        /* Primary Button */
        .btn-primary {
            display: inline-block;
            background: var(--lime-green);
            color: var(--black);
            padding: 16px 32px;
            border-radius: 50px;
            font-weight: 700 !important;
            margin-top: 20px;
        }

        .btn-primary:hover {
            background: var(--bright-green);
            transform: translateY(-2px);
            color: var(--black);
        }

        /* Disclaimer */
        .disclaimer {
            background: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 8px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.6;
            margin-bottom: 30px;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Redirect Modal */
        .redirect-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(5px);
            z-index: 10000;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .redirect-modal.active {
            display: flex;
            opacity: 1;
        }

        .redirect-content {
            background: #1a1a1a;
            border: 1px solid rgba(204, 255, 0, 0.2);
            box-shadow: 0 0 30px rgba(204, 255, 0, 0.1);
            padding: 32px;
            border-radius: 16px;
            max-width: 440px;
            width: 90%;
            text-align: center;
        }

        .redirect-icon {
            font-size: 40px;
            color: var(--lime-green);
            margin-bottom: 20px;
        }

        .redirect-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            margin-top: 24px;
        }
