:root {
    --bg-color: #050505;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --accent: #8b5cf6; /* High-end electric violet */
    --accent-glow: rgba(139, 92, 246, 0.3);
    --card-bg: rgba(255, 255, 255, 0.02);
    --card-border: rgba(255, 255, 255, 0.06);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Subtle background mesh gradient effect for technical feel */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 30%, rgba(139, 92, 246, 0.04) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

.global-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 4rem;
}

.brand {
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    color: var(--text-primary);
}

.status-badge {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    padding: 0.5rem 1rem;
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: 4px;
    text-transform: uppercase;
    box-shadow: 0 0 20px var(--accent-glow);
    background: rgba(139, 92, 246, 0.05);
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem 6rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-paradigm {
    text-align: center;
    max-width: 960px;
    margin-bottom: 7rem;
    animation: fadeIn 1.2s ease-out;
}

.hero-paradigm h1 {
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-paradigm p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.8;
}

.technical-moat {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    width: 100%;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 2.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    animation: slideUp 1s ease-out backwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 10px 40px -10px rgba(139, 92, 246, 0.1);
}

.feature-card h2 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.6;
}

.gateway-footer {
    padding: 0 2rem 4rem;
    text-align: center;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    margin-bottom: 3rem;
}

.gateway-footer p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.7;
    max-width: 600px;
    margin-inline: auto;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 92, 246, 0.15);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}

.cta-button:hover {
    border-color: rgba(139, 92, 246, 0.5);
    color: #fff;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.cta-button:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.legal-links {
    position: fixed;
    bottom: 1.5rem;
    left: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #334155;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.legal-links a {
    color: #334155;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #64748b;
}

.legal-links .separator {
    color: #1e293b;
}

.footer-right-cluster {
    position: fixed;
    bottom: 1.5rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.careers-link {
    color: #334155;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.careers-link .muted {
    text-decoration: line-through;
    opacity: 0.5;
}

.careers-link .active {
    color: #64748b;
}

.investor-lock {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #334155;
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.investor-lock:hover {
    color: #64748b;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
    .legal-links, .footer-right-cluster {
        position: static;
        justify-content: center;
        flex-direction: column;
        margin-top: 2rem;
        gap: 1rem;
    }
    
    .gateway-footer {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .global-header {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .hero-paradigm h1 {
        font-size: 2.25rem;
    }
    
    .technical-moat {
        gap: 1rem;
    }
}
