@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;600;700&display=swap');

:root {
    --deep-navy: #020617;
    --navy-light: #0f172a;
    --cyan: #22d3ee;
    --blue: #3b82f6;
    --surface-bg: #020617;
    --border-color: rgba(255, 255, 255, 0.08);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    
    /* Glassmorphism 2.0 Tokens */
    --glass-2-bg: rgba(255, 255, 255, 0.03);
    --glass-2-border: rgba(255, 255, 255, 0.1);
    --glass-2-blur: 16px;
    --glass-glow: rgba(34, 211, 238, 0.15);
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--deep-navy);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

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

header {
    background: rgba(10, 15, 27, 0.8);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: white;
}

.section {
    padding: 4rem 0;
}

.section-alt {
    background: rgba(255, 255, 255, 0.02);
}

.pt-header {
    padding-top: 8rem;
}

h1, h2, h3, h4 {
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.lead {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 800px;
}

.tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.public { background: rgba(34, 197, 94, 0.1); color: #22c55e; border: 1px solid rgba(34, 197, 94, 0.2); }
.private { background: rgba(239, 68, 68, 0.1); color: #ef4444; border: 1px solid rgba(239, 68, 68, 0.2); }
.free { background: rgba(34, 197, 94, 0.1); color: #22c55e; border: 1px solid rgba(34, 197, 94, 0.2); }
.paid { background: rgba(234, 179, 8, 0.1); color: #eab308; border: 1px solid rgba(234, 179, 8, 0.2); }

.cta-btn, .glass-btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.cta-btn {
    background: var(--blue);
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.cta-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.glass-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.glass-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--cyan);
    box-shadow: 0 0 20px var(--glass-glow);
}

/* Glassmorphism 2.0 Components */
.glass-panel {
    background: var(--glass-2-bg);
    backdrop-filter: blur(var(--glass-2-blur));
    -webkit-backdrop-filter: blur(var(--glass-2-blur));
    border: 1px solid var(--glass-2-border);
    border-radius: 20px;
}

.premium-card {
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-card:hover {
    transform: translateY(-8px);
    border-color: var(--cyan);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.5), 0 0 20px var(--glass-glow);
}

/* Luxury Scroller */
.luxury-scroll::-webkit-scrollbar {
    width: 4px;
}
.luxury-scroll::-webkit-scrollbar-track {
    background: transparent;
}
.luxury-scroll::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}
.luxury-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--cyan);
}

.compliance-cta {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}

.reg-cite {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    font-style: italic;
}

.crosslink-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

footer {
    background: var(--surface-bg);
    border-top: 1px solid var(--border-color);
    padding: 6rem 0 3rem;
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-inner a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-inner p { margin-bottom: 0.5rem; }

.footer-copy {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
    opacity: 0.6;
}

/* Status Indicator */
.status-indicator .pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@media (max-width: 768px) {
    .compliance-cta { grid-template-columns: 1fr; text-align: center; }
    .crosslink-bar { flex-direction: column; text-align: center; }
    .nav-links { display: none; }
}
