* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background: radial-gradient(circle at top, #172554, #050816 55%, #020617);
    color: white;
    font-family: Inter, Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    padding: 40px 25px;
    max-width: 700px;
}

.logo {
    width: 220px;
    max-width: 70%;
    margin-bottom: 25px;
}

h1 {
    font-size: 42px;
    margin: 10px 0;
}

.subtitle {
    font-size: 20px;
    color: #cbd5e1;
}

.features {
    margin: 35px 0;
    font-size: 18px;
    line-height: 2;
}

.buttons a {
    display: inline-block;
    margin: 8px;
    padding: 12px 22px;
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
    color: white;
    text-decoration: none;
}

.buttons a:hover {
    background: rgba(255,255,255,0.2);
}
