:root {
    --bg: #f6f9fc;
    --text: #0a2540;
    --accent: #635bff;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    padding: 0 20px;
    overflow: hidden;
}

.gradient-overlay {
    position: absolute;
    top: -30%;
    left: -20%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at top left, #635bff 0%, #00c2ff 50%, transparent 80%);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
    transform: rotate(15deg);
}

h1, p, .btn {
    position: relative;
    z-index: 1;
}

h1 {
    font-size: 3rem;
    max-width: 800px;
    font-weight: 700;
    margin-bottom: 20px;
}

p {
    font-size: 1.25rem;
    color: #4f5b69;
    max-width: 600px;
    margin-bottom: 40px;
}

.btn {
    background: var(--accent);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s ease;
}

.btn:hover {
    background: #5145cd;
}

.footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    color: #8898aa;
    z-index: 1;
}