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

body {
    font-family: 'Syne', sans-serif;
    background: #0b0d10;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 0 40px rgba(36, 107, 206, 0.3);
}

.tagline {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: #8891a0;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn.primary {
    background: #246BCE;
    color: #fff;
    border: 2px solid #246BCE;
}

.btn.primary:hover {
    background: #1a56a8;
    border-color: #1a56a8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(36, 107, 206, 0.4);
}

.btn.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #2a2f3a;
}

.btn.secondary:hover {
    border-color: #246BCE;
    background: rgba(36, 107, 206, 0.1);
    transform: translateY(-2px);
}
