:root {
    --bg-color: #050505;
    --card-bg: #111111;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --accent: #3B82F6;
    /* Vibrant Blue */
    --accent-glow: rgba(59, 130, 246, 0.3);
    --border: #27272a;
    --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

body {
    font-family: var(--font-stack);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

h1 {
    font-size: 3.5rem;
    background: linear-gradient(to right, #fff, #a1a1aa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Layout */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

nav a {
    color: var(--text-secondary);
    margin-left: 2rem;
    font-size: 0.95rem;
    font-weight: 500;
}

nav a:hover {
    color: var(--text-primary);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--accent);
    filter: blur(150px);
    opacity: 0.1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 50%;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent);
    color: #000;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    margin-top: 1rem;
    box-shadow: 0 0 20px var(--accent-glow);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--accent-glow);
}

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

.card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 20px;
    transition: transform 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--text-secondary);
}

.icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 4rem auto;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    color: var(--text-primary);
}

.legal-content ul {
    margin-left: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 4rem 0;
    border-top: 1px solid var(--border);
    margin-top: 4rem;
}

footer .links {
    margin-bottom: 2rem;
}

footer a {
    margin: 0 1rem;
    color: var(--text-secondary);
}

.copy {
    font-size: 0.9rem;
    color: #555;
}

/* Mobile */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .hero {
        padding: 4rem 0;
    }

    nav {
        display: none;
    }

    /* Simplified for mobile */
}