:root {
    --bg: #050505;
    --accent: #7c3aed;
    --text: #ffffff;
    --dim: #a1a1aa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background: var(--bg);
    color: var(--text);
    height: 100vh;
    overflow: hidden;
}

.background {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at top, #2e1065, transparent 60%);
    z-index: -1;
}

/* Glass Effect */
.glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.hero {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(90%, 520px);
    padding: 50px;
    text-align: center;
}

.hero h1 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.subtitle {
    color: var(--dim);
    line-height: 1.7;
}

.section {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(90%, 520px);
    padding: 50px;
    text-align: left;
}

.section h2 {
    margin-bottom: 16px;
}

.section p,
.section li {
    color: var(--dim);
    line-height: 1.7;
}

ul {
    list-style: none;
    padding-left: 0;
}

li {
    margin-bottom: 10px;
}

button {
    margin-top: 24px;
    padding: 12px 32px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.primary {
    background: white;
    color: black;
}

.secondary {
    background: var(--accent);
    color: white;
}

.hidden {
    display: none;
}
