/* ===== CONSCIOUSNESS COLOR PALETTE ===== */
        :root {
            --fear-dark: #0a0408;
            --awakening-purple: #2a1a3a;
            --understanding-blue: #1a2a3a;
            --peace-emerald: #0f2a25;
            --liberation-gold: #f4d03f;
            --consciousness-cyan: #7af5d3;
            --friendship-rose: #ffb6c1;
            --trust-violet: #9c7bff;
            --arc-gold: #FFD700;
            --arc-navy: #1A1A2E;
        }

        * {
            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.7;
            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(122, 245, 211, 0.1);
            padding: 20px 40px;
            transition: all 0.3s ease;
        }

        nav.visible {
            background: rgba(10, 4, 8, 0.98);
            box-shadow: 0 4px 30px rgba(122, 245, 211, 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(--consciousness-cyan);
        }

        .nav-links a.active {
            color: var(--arc-gold);
        }

        /* ===== 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(122, 245, 211, 0.08) 0%, transparent 50%),
                        radial-gradient(ellipse at bottom, rgba(156, 123, 255, 0.05) 0%, transparent 50%);
        }

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

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

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.8; }
            50% { transform: scale(1.05); 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(--consciousness-cyan), var(--trust-violet));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
        }

        /* ===== PRODUCTS SHOWCASE ===== */
        .products-section {
            padding: 100px 40px;
            background: radial-gradient(ellipse at center, rgba(26, 42, 58, 0.3) 0%, transparent 70%);
        }

        .products-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .products-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .products-header h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--arc-gold);
        }

        .products-header p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .products-flow {
            display: flex;
            flex-direction: column;
            gap: 60px;
        }

        .product-wave {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 30px;
            padding: 60px;
            transition: all 0.6s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .product-wave.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .product-wave:hover {
            border-color: var(--consciousness-cyan);
            transform: translateX(10px);
            box-shadow: 0 20px 60px rgba(122, 245, 211, 0.1);
        }

        .product-wave:nth-child(even) {
            margin-left: 50px;
        }

        .product-wave:nth-child(even):hover {
            transform: translateX(-10px);
        }

        .product-badge {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(122, 245, 211, 0.1);
            border: 1px solid rgba(122, 245, 211, 0.3);
            border-radius: 20px;
            color: var(--consciousness-cyan);
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .product-badge.coming-soon {
            background: rgba(244, 208, 63, 0.1);
            border-color: rgba(244, 208, 63, 0.3);
            color: var(--liberation-gold);
        }

        .product-badge.testing {
            background: rgba(156, 123, 255, 0.1);
            border-color: rgba(156, 123, 255, 0.3);
            color: var(--trust-violet);
        }

        .product-icon {
            font-size: 4rem;
            margin-bottom: 20px;
        }

        .product-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: #fff;
        }

        .product-tagline {
            font-size: 1.1rem;
            color: var(--arc-gold);
            margin-bottom: 25px;
            font-weight: 500;
        }

        .product-description {
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 30px;
            line-height: 1.9;
            font-size: 1.05rem;
        }

        .product-features {
            list-style: none;
            margin-bottom: 35px;
        }

        .product-features li {
            padding: 10px 0;
            color: rgba(255, 255, 255, 0.8);
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1rem;
        }

        .product-features li::before {
            content: '✓';
            color: var(--consciousness-cyan);
            font-weight: bold;
            font-size: 1.2rem;
        }

        .product-pricing {
            display: flex;
            align-items: baseline;
            gap: 12px;
            margin-bottom: 30px;
        }

        .product-price {
            font-size: 3rem;
            font-weight: 700;
            color: var(--arc-gold);
        }

        .product-price-note {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.5);
        }

        .product-actions {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-block;
            padding: 16px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            text-align: center;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--consciousness-cyan), var(--trust-violet));
            color: #0a0408;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(122, 245, 211, 0.3);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(122, 245, 211, 0.3);
            color: var(--consciousness-cyan);
        }

        .btn-secondary:hover {
            background: rgba(122, 245, 211, 0.1);
            transform: translateY(-3px);
        }

        /* ===== NOTIFICATION SECTION ===== */
        .notification-section {
            margin-top: 80px;
            padding: 60px;
            background: linear-gradient(135deg, rgba(122, 245, 211, 0.05), rgba(156, 123, 255, 0.05));
            border-radius: 30px;
            border: 1px solid rgba(122, 245, 211, 0.15);
            text-align: center;
        }

        .notification-section h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.2rem;
            color: #fff;
            margin-bottom: 15px;
        }

        .notification-section p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 35px;
            font-size: 1.1rem;
        }

        .notification-section .privacy-note {
            margin-top: 25px;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.4);
        }

        /* ===== CONTACT SECTION ===== */
        .contact-section {
            padding: 100px 40px;
            background: radial-gradient(ellipse at center, rgba(15, 42, 37, 0.3) 0%, transparent 70%);
            text-align: center;
        }

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

        .contact-container h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.8rem;
            margin-bottom: 30px;
            color: var(--arc-gold);
        }

        .contact-container p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 40px;
        }

        .contact-methods {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .contact-method {
            text-decoration: none;
            color: var(--consciousness-cyan);
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .contact-method:hover {
            color: #fff;
            transform: translateY(-3px);
        }

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

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

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

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

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

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

            .products-section {
                padding: 60px 20px;
            }

            .product-wave {
                padding: 40px 30px;
            }

            .product-wave:nth-child(even) {
                margin-left: 0;
            }

            .product-actions {
                flex-direction: column;
            }

            .btn {
                width: 100%;
            }
        }
    
        /* ===== ARC SYSTEM SHARED HEADER / FOOTER ===== */
        #mainNav {
            position: fixed !important;
            top: 0 !important;
            left: 0 !important;
            right: 0 !important;
            z-index: 1000 !important;
            width: 100% !important;
            opacity: 1 !important;
            transform: none !important;
            pointer-events: auto !important;
            background: rgba(10, 4, 8, 0.95) !important;
            backdrop-filter: blur(20px) !important;
            -webkit-backdrop-filter: blur(20px) !important;
            border-bottom: 1px solid rgba(122, 245, 211, 0.10) !important;
            padding: 20px 40px !important;
            transition: background 0.3s ease, box-shadow 0.3s ease !important;
        }

        #mainNav:hover {
            background: rgba(10, 4, 8, 0.98) !important;
            box-shadow: 0 4px 30px rgba(122, 245, 211, 0.08) !important;
        }

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

        #mainNav .arc-nav-logo {
            flex: 0 0 auto;
            font-family: 'Cormorant Garamond', 'Inter', serif;
            font-size: 1.5rem;
            line-height: 1.2;
            font-weight: 600;
            color: #FFD700;
            text-decoration: none;
            white-space: nowrap;
        }

        #mainNav .arc-nav-links {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 35px;
            flex-wrap: nowrap;
        }

        #mainNav .arc-nav-links a {
            color: rgba(255,255,255,0.72);
            text-decoration: none;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            line-height: 1.2;
            font-weight: 500;
            white-space: nowrap;
            transition: color 0.25s ease, transform 0.25s ease;
        }

        #mainNav .arc-nav-links a:hover {
            color: #7af5d3;
            transform: translateY(-1px);
        }

        #mainNav .arc-nav-links a.active {
            color: #FFD700;
        }

        .arc-site-footer {
            padding: 56px 40px;
            background: #0a0408;
            border-top: 1px solid rgba(255,255,255,0.06);
            text-align: center;
        }

        .arc-site-footer .arc-footer-inner {
            max-width: 1100px;
            margin: 0 auto;
        }

        .arc-site-footer .arc-footer-brand {
            font-family: 'Cormorant Garamond', 'Inter', serif;
            font-size: 1.25rem;
            font-weight: 600;
            color: #FFD700;
            margin-bottom: 14px;
        }

        .arc-site-footer .arc-footer-links {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px 18px;
            margin-bottom: 18px;
        }

        .arc-site-footer .arc-footer-links a {
            color: #7af5d3;
            text-decoration: none;
            font-size: 0.92rem;
            transition: color 0.25s ease;
        }

        .arc-site-footer .arc-footer-links a:hover {
            color: #FFD700;
        }

        .arc-site-footer .arc-footer-copy {
            color: rgba(255,255,255,0.46);
            font-size: 0.88rem;
            line-height: 1.7;
            margin: 0;
        }

        @media (max-width: 980px) {
            #mainNav {
                padding: 16px 20px !important;
            }

            #mainNav .arc-nav-container {
                flex-direction: column;
                gap: 12px;
            }

            #mainNav .arc-nav-links {
                width: 100%;
                justify-content: center;
                gap: 12px 20px;
                flex-wrap: wrap;
            }

            #mainNav .arc-nav-links a {
                font-size: 0.88rem;
            }
        }

        @media (max-width: 560px) {
            #mainNav .arc-nav-logo {
                font-size: 1.3rem;
            }

            #mainNav .arc-nav-links {
                gap: 10px 14px;
            }

            #mainNav .arc-nav-links a {
                font-size: 0.82rem;
            }

            .arc-site-footer {
                padding: 44px 20px;
            }
        }
        /* ===== END ARC SYSTEM SHARED HEADER / FOOTER ===== */

/* Owner participation is a program, not another product */
.owner-participation-callout{margin:58px auto 0;max-width:1120px;padding:34px 36px;border-radius:22px;border:1px solid rgba(122,245,211,.24);background:linear-gradient(135deg,rgba(122,245,211,.07),rgba(156,123,255,.07));box-shadow:0 22px 60px rgba(0,0,0,.18),inset 0 1px 0 rgba(255,255,255,.07);display:grid;grid-template-columns:1fr auto;gap:28px;align-items:center}.owner-callout-kicker{display:block;font-size:.78rem;font-weight:800;letter-spacing:.12em;color:#7af5d3;margin-bottom:10px}.owner-participation-callout h3{font-size:1.6rem;margin-bottom:12px}.owner-participation-callout p{opacity:.76;line-height:1.75}.owner-callout-actions{white-space:nowrap}@media(max-width:760px){.owner-participation-callout{grid-template-columns:1fr}.owner-callout-actions{white-space:normal}}
