 /* ================= VARIABLES (MATCHING PANEL.HTML) ================= */
        :root {
            --primary: #00e676; /* Vivid Green */
            --primary-glow: rgba(0, 230, 118, 0.4);
            --secondary: #69f0ae;
            --accent: #ff3d00; /* Vivid Orange/Red */
            --gold: #ffd700;
            --bg-dark: #050505;
            --surface: rgba(30, 30, 35, 0.6); /* Glassy dark */
            --glass-border: rgba(255, 255, 255, 0.1);
            --text-main: #ffffff;
            --text-muted: #a0a0a0;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --radius: 16px;
        }

        /* ================= GLOBAL RESET & BODY ================= */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: "Outfit", sans-serif;
            background-color: var(--bg-dark);
            /* Radial Gradient Background from Panel */
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(0, 230, 118, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(41, 98, 255, 0.08) 0%, transparent 40%);
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a { text-decoration: none; color: inherit; transition: var(--transition); }
        ul { list-style: none; }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ================= BUTTONS ================= */
        .cta-button {
            background: var(--primary);
            color: #000;
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 700;
            font-family: "Outfit", sans-serif;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 0 15px rgba(0, 230, 118, 0.2);
            font-size: 1rem;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 25px var(--primary-glow);
        }

        .secondary-button {
            background: transparent;
            color: var(--text-main);
            border: 1px solid var(--glass-border);
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            margin-left: 15px;
        }

        .secondary-button:hover {
            border-color: var(--text-main);
            background: rgba(255,255,255,0.05);
        }

        /* ================= HEADER ================= */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            background: rgba(5, 5, 5, 0.8);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid var(--glass-border);
        }

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

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: -1px;
        }

        .logo i { color: var(--primary); }
        .logo span { 
            background: linear-gradient(90deg, #fff, var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        nav ul { display: flex; gap: 30px; }
        
        nav a {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-muted);
        }

        nav a:hover { color: var(--primary); }

        /* ================= HERO SECTION ================= */
        .hero {
            padding: 180px 0 100px;
            text-align: center;
            position: relative;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
            letter-spacing: -1px;
        }

        .hero h1 span {
            color: var(--primary);
            text-shadow: 0 0 20px var(--primary-glow);
        }

        .hero p {
            font-size: 1.2rem;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto 40px;
        }

        /* ================= COMMON SECTION STYLES ================= */
        section { padding: 100px 0; }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 60px;
            background: linear-gradient(to right, #fff, #ccc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* ================= FEATURES GRID ================= */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background: var(--surface);
            border: 1px solid var(--glass-border);
            padding: 30px;
            border-radius: var(--radius);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(12px);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            border-color: rgba(0, 230, 118, 0.3);
            box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
        }

        .feature-icon {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 20px;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 230, 118, 0.1);
            border-radius: 12px;
        }

        .feature-card h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .feature-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* ================= PREMIUM SECTION ================= */
        .premium-features {
            background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0, 230, 118, 0.05), rgba(0,0,0,0));
            border-top: 1px solid var(--glass-border);
            border-bottom: 1px solid var(--glass-border);
        }

        .premium-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .premium-text h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .premium-features-list li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 15px;
            color: var(--text-muted);
        }

        .premium-features-list i {
            color: var(--gold); /* Gold used in panel for stats */
            width: 20px;
            text-align: center;
        }

        .premium-features-list strong { color: #fff; }

        .premium-image {
            position: relative;
        }

        .premium-image::before {
            content: '';
            position: absolute;
            inset: -20px;
            background: var(--primary);
            filter: blur(80px);
            opacity: 0.15;
            z-index: -1;
        }

        .premium-image img {
            width: 100%;
            border-radius: var(--radius);
            border: 1px solid var(--glass-border);
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
        }

        /* ================= PRIVACY SECTION ================= */
        .privacy-section {
            text-align: center;
        }

        .privacy-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .privacy-features-list {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin: 40px 0;
        }

        .privacy-features-list li {
            background: rgba(255,255,255,0.03);
            border: 1px solid var(--glass-border);
            padding: 15px 25px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: "JetBrains Mono", monospace;
            font-size: 0.85rem;
        }

        .privacy-features-list i { color: var(--text-muted); }

        .cryptocurrency-icons {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 20px;
        }

        .crypto-icon {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-muted);
            font-weight: 600;
        }
        
        .crypto-icon i { font-size: 1.5rem; color: #fff; }

        /* ================= TESTIMONIALS ================= */
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: var(--surface);
            border: 1px solid var(--glass-border);
            padding: 30px;
            border-radius: var(--radius);
        }

        .testimonial-content p {
            font-style: italic;
            color: #ddd;
            margin-bottom: 20px;
        }

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

        .author-avatar {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
        }

        .author-info h4 { font-size: 0.9rem; margin-bottom: 2px; }
        .author-info p { font-size: 0.75rem; color: var(--text-muted); margin: 0; }

        /* ================= PRICING ================= */
        .pricing-grid {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .pricing-card {
            background: var(--surface);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius);
            padding: 40px;
            width: 100%;
            max-width: 380px;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .pricing-card.popular {
            border-color: var(--primary);
            box-shadow: 0 0 30px rgba(0, 230, 118, 0.1);
            background: linear-gradient(160deg, rgba(30, 30, 35, 0.9), rgba(0, 230, 118, 0.05));
        }

        .popular-tag {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary);
            color: #000;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 800;
            letter-spacing: 1px;
        }

        .pricing-header { text-align: center; margin-bottom: 30px; }
        .pricing-name { color: var(--text-muted); font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; }
        .pricing-price { font-size: 3rem; font-weight: 800; margin: 10px 0; color: #fff; }
        .pricing-period { color: var(--text-muted); font-size: 0.9rem; }

        .pricing-features-simple { margin-bottom: 30px; }
        .pricing-features-simple li {
            margin-bottom: 12px;
            color: var(--text-muted);
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .pricing-features-simple i { color: var(--primary); }

        .pricing-card .cta-button { width: 100%; margin-top: auto; }

        /* ================= FOOTER ================= */
        footer {
            background: #000;
            border-top: 1px solid var(--glass-border);
            padding: 80px 0 0;
            margin-top: 100px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 60px;
        }

        .footer-column h3 {
            font-size: 1.1rem;
            margin-bottom: 20px;
            color: #fff;
        }

        .footer-column p {
            color: var(--text-muted);
            font-size: 0.9rem;
            max-width: 300px;
        }

        .footer-column ul li { margin-bottom: 10px; }
        .footer-column ul li a { color: var(--text-muted); font-size: 0.9rem; }
        .footer-column ul li a:hover { color: var(--primary); }

        .social-links { display: flex; gap: 15px; margin-top: 20px; }
        .social-links a { 
            width: 35px; height: 35px; 
            background: rgba(255,255,255,0.1); 
            display: flex; align-items: center; justify-content: center; 
            border-radius: 50%; color: #fff;
        }
        .social-links a:hover { background: var(--primary); color: #000; }

        .copyright {
            text-align: center;
            padding: 30px 0;
            border-top: 1px solid rgba(255,255,255,0.05);
            color: #555;
            font-size: 0.8rem;
        }

        /* Disclaimer Bar - Adapted for Dark Theme */
        .medical-disclaimer-bar {
            background-color: #1a1a1f;
            color: #888;
            padding: 20px 0;
            border-top: 1px solid #333;
            text-align: center;
            font-size: 0.75rem;
            line-height: 1.5;
        }
        
        .medical-disclaimer-bar strong {
            color: var(--accent); /* Using the alert red/orange from panel */
            display: block;
            margin-bottom: 5px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .premium-container { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            nav { display: none; } /* Simplified for mobile */
        }
		
/* ================= CSP COMPLIANCE UTILITIES ================= */

/* Replaces inline style on the Logo image */
.logo-img {
    height: 40px;
    width: auto;
}

/* Replaces inline style on the Premium placeholder image */
.premium-dashboard-preview {
    background: #121212;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-family: 'JetBrains Mono', monospace;
    width: 100%; /* Ensure it fits container */
    border-radius: var(--radius); /* Match existing styling */
    border: 1px solid var(--glass-border);
}

/* Replaces inline style on Privacy section paragraph */
.privacy-subtext {
    color: var(--text-muted);
}

/* Replaces inline style on "ACCEPTED CRYPTO" heading */
.crypto-heading {
    margin-top: 30px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    color: var(--primary);
}

/* Replaces inline style on the Free Tier button */
.btn-bottom-align {
    width: 100%;
    margin: auto 0 0 0;
}