:root {
    --bg-deep: #0f172a;
    --bg-dark: #1e1b4b;
    --brand-primary: #6366f1;
    --brand-secondary: #a855f7;
    --text-main: #f8fafc;
    --text-dim: #94a3b8;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-deep);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, var(--bg-dark) 0%, var(--bg-deep) 100%);
    z-index: -1;
}

header {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fff 0%, var(--brand-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    text-align: center;
}

h1 {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
}

.hero p {
    font-size: 1.5rem;
    color: var(--text-dim);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.cta-button {
    display: inline-block;
    background: var(--brand-primary);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 99px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

/* Feature Grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 6rem;
}

.feature-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 2rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--brand-primary);
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 6rem auto;
    background: var(--glass);
    padding: 4rem;
    border-radius: 2rem;
    border: 1px solid var(--glass-border);
}

.legal-content h2 {
    margin: 2rem 0 1rem;
    color: var(--brand-primary);
}

.legal-content p, .legal-content li {
    color: var(--text-dim);
    margin-bottom: 1rem;
}

footer {
    padding: 6rem 2rem;
    text-align: center;
    color: var(--text-dim);
    font-size: 0.9rem;
}

.footer-links {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--brand-primary);
}

@media (max-width: 768px) {
    h1 { font-size: 3rem; }
    .hero { padding-top: 4rem; }
}
