@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&display=swap');

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    color: #fff;
    font-family: 'Inter', sans-serif;
    overflow: hidden; /* Keeps it as a single, punchy viewport */
}

/* Minimalist Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 5%;
}

.logo { font-weight: 700; font-size: 1.4rem; letter-spacing: -0.5px; }
.logo span { color: #555; font-weight: 300; }

.login-link { text-decoration: none; color: #aaa; font-size: 0.9rem; }
.login-link:hover { color: #fff; }

/* Main Section */
main {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80vh;
    position: relative;
}

/* The gradient rings from image_f428ea.png */
.hero-art-underlay {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 700px;
}

h1 { 
    font-size: 5rem; 
    line-height: 0.9;
    letter-spacing: -3px; 
    margin-bottom: 1.5rem;
}

p { 
    color: #888; 
    font-size: 1.2rem; 
    margin-bottom: 3rem;
    line-height: 1.6;
}

.btn {
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn.primary {
    background: #fff;
    color: #000;
}

.btn.primary:hover {
    background: #ccc;
    transform: translateY(-2px);
}
