/* Base Custom Styles extracted from index.html */
:root {
            --glow: rgba(59, 130, 246, 0.1);
        }
        
        body {
            background-color: #020617;
            color: rgba(248, 250, 252, 0.92);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
            font-feature-settings: "cv02", "cv03", "cv04", "cv11";
            overflow-x: hidden;
            letter-spacing: -0.01em;
        }
        
        h1, h2, h3, h4, h5, h6 {
            letter-spacing: -0.03em;
            color: rgba(255, 255, 255, 0.98);
        }
        
        p {
            line-height: 1.75;
            letter-spacing: -0.005em;
        }

        .grain {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 50;
            opacity: 0.04;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
        }

        .glass {
            background: rgba(15, 23, 42, 0.7);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .hero-glow {
            position: absolute;
            top: -10%;
            left: 50%;
            transform: translateX(-50%);
            width: 80vw;
            height: 60vh;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
            z-index: 0;
            pointer-events: none;
        }

        .text-gradient {
            background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .btn-glow {
            box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
        }

        .terminal-shadow {
            box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.8);
        }

        .ops-shell {
            background:
                linear-gradient(180deg, rgba(15, 23, 42, 0.94), rgba(2, 6, 23, 0.96)),
                radial-gradient(circle at top left, rgba(59, 130, 246, 0.18), transparent 40%);
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 48px 120px -48px rgba(15, 23, 42, 0.9);
        }

        .ops-card {
            position: relative;
            overflow: hidden;
            border-radius: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
            padding: 1.25rem;
        }

        .ops-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), transparent 45%);
            pointer-events: none;
        }

        .ops-kicker {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 10px;
            font-weight: 900;
            letter-spacing: 0.28em;
            text-transform: uppercase;
            color: rgba(148, 163, 184, 0.8);
        }

        .ops-divider {
            height: 1px;
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent);
        }

        .ops-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.75rem;
            border: 1px solid rgba(255, 255, 255, 0.06);
            background: rgba(2, 6, 23, 0.45);
            border-radius: 0.95rem;
            padding: 0.85rem 0.95rem;
        }

        .ops-chip {
            display: inline-flex;
            align-items: center;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.04);
            padding: 0.35rem 0.7rem;
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: rgba(226, 232, 240, 0.9);
        }

        .ops-code {
            border-radius: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.06);
            background: rgba(2, 6, 23, 0.62);
            padding: 1rem;
            font-family: "SFMono-Regular", "SF Mono", ui-monospace, Menlo, monospace;
            font-size: 12px;
            line-height: 1.7;
            color: rgba(226, 232, 240, 0.82);
        }

        .ops-flow {
            display: grid;
            gap: 0.9rem;
        }

        .ops-flow-step {
            position: relative;
            border-radius: 1.25rem;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(15, 23, 42, 0.72);
            padding: 1rem 1rem 1rem 1.15rem;
        }

        .ops-flow-step::after {
            content: "↓";
            position: absolute;
            left: 50%;
            bottom: -1rem;
            transform: translateX(-50%);
            color: rgba(148, 163, 184, 0.55);
            font-size: 14px;
        }

        .ops-flow-step:last-child::after {
            content: "";
        }
/* Shared Classes for Privacy & Terms */
.legal-container {
    max-width: 860px;
    margin: 40px auto;
    padding: 60px 48px;
    border-radius: 1.5rem;
}
.legal-container h1 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
    font-family: 'Plus Jakarta Sans', '-apple-system', 'BlinkMacSystemFont', 'PingFang SC', sans-serif;
}
.legal-container h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: block;
    font-family: 'Plus Jakarta Sans', '-apple-system', 'BlinkMacSystemFont', 'PingFang SC', sans-serif;
    letter-spacing: -0.02em;
}
.legal-container p { margin-bottom: 1.5rem; font-weight: 400; color: rgba(248, 250, 252, 0.75); line-height: 1.85; }
.legal-container ul { list-style-type: disc; padding-left: 1.5rem; margin-bottom: 1.75rem; color: rgba(248, 250, 252, 0.75); line-height: 1.85; }
.legal-container li { margin-bottom: 0.75rem; }
.legal-meta { font-size: 0.875rem; color: rgba(148, 163, 184, 0.6); font-family: "SFMono-Regular", Menlo, monospace; text-transform: uppercase; letter-spacing: 0.08em; }
.legal-summary-box { background: rgba(59, 130, 246, 0.05); padding: 1.5rem; border-radius: 1rem; border: 1px solid rgba(59, 130, 246, 0.2); margin: 2rem 0; }
.legal-summary-box h3 { color: #3B82F6; font-weight: 700; margin-bottom: 1rem; }
