:root {
    --primary: #673ab7;
    --secondary: #9c27b0;
    --accent: #00e5ff;
    --bg-dark: #0f172a;
    --glass: rgba(255, 255, 255, 0.05);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --font-family: 'Outfit', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
    background: radial-gradient(circle at top left, #1e1b4b, var(--bg-dark));
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 4rem;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    background: linear-gradient(to right, var(--accent), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 2rem;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--accent);
}

.hero {
    text-align: center;
    padding: 4rem 0;
}

h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--primary);
    background: linear-gradient(120deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.cta-button {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    color: white;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 20px -10px rgba(103, 58, 183, 0.5);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -10px rgba(103, 58, 183, 0.7);
}

.card-glass {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    margin: 4rem auto;
    text-align: center;
}

.card-glass h2 {
    margin-top: 0;
    font-size: 1.5rem;
}

footer {
    text-align: center;
    color: var(--text-muted);
    margin-top: 4rem;
    font-size: 0.9rem;
}
