
        /* ===== CONSCIOUSNESS PALETTE WITH WARMTH ===== */
        :root {
            --fear-dark: #0a0408;
            --peace-emerald: #0f2a25;
            --liberation-gold: #f4d03f;
            --consciousness-cyan: #7af5d3;
            --friendship-rose: #ffb6c1;
            --trust-violet: #9c7bff;
            --arc-gold: #FFD700;
            --warm-pink: #ff9eb8;
            --soft-teal: #7dd3c0;
        }

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

        body {
            font-family: 'Inter', sans-serif;
            background: var(--fear-dark);
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.8;
            overflow-x: hidden;
        }

        /* ===== NAVIGATION ===== */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(10, 4, 8, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 158, 184, 0.15);
            padding: 20px 40px;
            transition: all 0.3s ease;
        }

        nav.visible {
            background: rgba(10, 4, 8, 0.98);
            box-shadow: 0 4px 30px rgba(255, 158, 184, 0.1);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--arc-gold);
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            gap: 35px;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--warm-pink);
        }

        /* ===== HERO SECTION ===== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 140px 40px 100px;
            background: radial-gradient(ellipse at top, rgba(255, 158, 184, 0.1) 0%, transparent 50%),
                        radial-gradient(ellipse at bottom, rgba(125, 211, 192, 0.08) 0%, transparent 50%);
        }

        .hero-content {
            max-width: 900px;
        }

        .hero-symbol {
            font-size: 5rem;
            margin-bottom: 30px;
            animation: gentle-pulse 4s ease-in-out infinite;
        }

        @keyframes gentle-pulse {
            0%, 100% { transform: scale(1); opacity: 0.85; }
            50% { transform: scale(1.03); opacity: 1; }
        }

        .hero-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 30px;
            color: #fff;
        }

        .hero-title .highlight {
            background: linear-gradient(135deg, var(--warm-pink), var(--soft-teal));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.9;
            margin-bottom: 40px;
        }

        .price-badge {
            display: inline-block;
            padding: 15px 45px;
            background: linear-gradient(135deg, rgba(255, 158, 184, 0.15), rgba(125, 211, 192, 0.15));
            border: 2px solid var(--warm-pink);
            border-radius: 50px;
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            font-weight: 600;
            color: var(--arc-gold);
            margin-bottom: 35px;
            box-shadow: 0 10px 40px rgba(255, 158, 184, 0.2);
        }

        .cta-button {
            display: inline-block;
            padding: 18px 50px;
            background: linear-gradient(135deg, var(--warm-pink), var(--soft-teal));
            color: #0a0408;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 35px rgba(255, 158, 184, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 45px rgba(255, 158, 184, 0.4);
        }

        /* ===== FEATURES SECTION ===== */
        .features {
            padding: 100px 40px;
            background: radial-gradient(ellipse at center, rgba(15, 42, 37, 0.2) 0%, transparent 70%);
        }

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

        .section-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3rem;
            font-weight: 600;
            text-align: center;
            margin-bottom: 80px;
            color: var(--arc-gold);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .feature-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 158, 184, 0.15);
            border-radius: 30px;
            padding: 50px;
            transition: all 0.5s ease;
        }

        .feature-card:hover {
            border-color: var(--warm-pink);
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(255, 158, 184, 0.15);
        }

        .feature-icon {
            font-size: 3.5rem;
            margin-bottom: 25px;
        }

        .feature-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--warm-pink);
        }

        .feature-description {
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.9;
            font-size: 1.05rem;
        }

        /* ===== WHY DIFFERENT SECTION ===== */
        .why-different {
            padding: 100px 40px;
            background: radial-gradient(ellipse at center, rgba(255, 158, 184, 0.08) 0%, transparent 70%);
        }

        .difference-list {
            max-width: 900px;
            margin: 0 auto;
        }

        .difference-item {
            display: flex;
            align-items: flex-start;
            gap: 25px;
            margin-bottom: 40px;
            padding: 35px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
            border-radius: 25px;
            border-left: 4px solid var(--warm-pink);
            transition: all 0.4s ease;
        }

        .difference-item:hover {
            transform: translateX(10px);
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
        }

        .difference-icon {
            font-size: 2.5rem;
            flex-shrink: 0;
        }

        .difference-text h4 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--arc-gold);
        }

        .difference-text p {
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.9;
        }

        /* ===== SECURITY SECTION ===== */
        .security {
            padding: 100px 40px;
            background: radial-gradient(ellipse at center, rgba(125, 211, 192, 0.1) 0%, transparent 70%);
        }

        .security-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .security-item {
            text-align: center;
            padding: 35px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
            border-radius: 25px;
            border: 1px solid rgba(125, 211, 192, 0.2);
            transition: all 0.4s ease;
        }

        .security-item:hover {
            border-color: var(--soft-teal);
            transform: translateY(-5px);
        }

        .security-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--soft-teal);
        }

        .security-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.4rem;
            margin-bottom: 10px;
            color: var(--arc-gold);
        }

        .security-item p {
            color: rgba(255, 255, 255, 0.7);
        }

        /* ===== PURCHASE SECTION ===== */
        .purchase {
            padding: 100px 40px;
            text-align: center;
            background: radial-gradient(ellipse at center, rgba(255, 158, 184, 0.1) 0%, transparent 70%);
        }

        .purchase-box {
            max-width: 700px;
            margin: 0 auto;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
            backdrop-filter: blur(15px);
            border: 2px solid rgba(255, 158, 184, 0.3);
            border-radius: 40px;
            padding: 60px 50px;
            box-shadow: 0 25px 70px rgba(255, 158, 184, 0.2);
        }

        .purchase-price {
            font-family: 'Cormorant Garamond', serif;
            font-size: 4.5rem;
            color: var(--arc-gold);
            margin-bottom: 15px;
        }

        .purchase-subtitle {
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 45px;
            font-size: 1.2rem;
        }

        .payment-options h3 {
            font-family: 'Cormorant Garamond', serif;
            color: var(--warm-pink);
            margin-bottom: 30px;
            font-size: 1.6rem;
        }

        .payment-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
        }

        .payment-btn {
            padding: 15px 35px;
            border-radius: 50px;
            font-size: 1.05rem;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            font-weight: 600;
        }

        .paypal-btn {
            background: #0070BA;
            color: white;
            border: none;
        }

        .paypal-btn:hover {
            background: #005ea6;
            transform: translateY(-3px);
        }

        .crypto-btn {
            background: transparent;
            color: var(--soft-teal);
            border: 2px solid var(--soft-teal);
        }

        .crypto-btn:hover {
            background: var(--soft-teal);
            color: #0a0408;
            transform: translateY(-3px);
        }

        .crypto-addresses {
            background: rgba(0, 0, 0, 0.3);
            border-radius: 25px;
            padding: 35px;
            text-align: left;
            display: none;
            margin-top: 25px;
        }

        .crypto-addresses.show {
            display: block;
        }

        .crypto-address {
            margin-bottom: 20px;
            padding: 15px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 15px;
            border: 1px solid rgba(125, 211, 192, 0.2);
        }

        .crypto-label {
            color: var(--soft-teal);
            font-weight: 600;
            display: block;
            margin-bottom: 8px;
        }

        .crypto-value {
            color: rgba(255, 255, 255, 0.9);
            font-family: monospace;
            font-size: 0.9rem;
            word-break: break-all;
            background: rgba(0, 0, 0, 0.4);
            padding: 10px;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .crypto-value:hover {
            background: rgba(0, 0, 0, 0.6);
            color: var(--soft-teal);
        }

        /* ===== FOOTER ===== */
        footer {
            padding: 60px 40px;
            background: var(--fear-dark);
            border-top: 1px solid rgba(255, 158, 184, 0.1);
            text-align: center;
        }

        footer p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.95rem;
            line-height: 1.9;
        }

        footer a {
            color: var(--warm-pink);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        footer a:hover {
            color: var(--arc-gold);
        }

        .footer-note {
            margin-top: 20px;
            color: var(--arc-gold);
            font-size: 0.9rem;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            .nav-links {
                gap: 20px;
                font-size: 0.85rem;
            }

            .hero {
                padding: 120px 20px 80px;
            }

            .hero-symbol {
                font-size: 3.5rem;
            }

            .price-badge {
                font-size: 2rem;
                padding: 12px 35px;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .feature-card {
                padding: 35px;
            }

            .difference-item {
                flex-direction: column;
                text-align: center;
            }

            .purchase-box {
                padding: 40px 30px;
            }

            .purchase-price {
                font-size: 3.5rem;
            }
        }
    