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

body {
    font-family: 'Inter', sans-serif;
    background: var(--color-bg);
    color: var(--color-text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.logo {
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.hero {
    text-align: center;
    max-width: 560px;
}

.hero-icon {
    font-size: 4.5rem;
    display: block;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--color-text) 30%, var(--color-accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.btn-start {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-accent);
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.875rem 2.25rem;
    border-radius: 100px;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 24px var(--color-accent-glow-md);
}

.btn-start:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--color-accent-glow-lg);
}

.note {
    margin-top: 1rem;
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.chips {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3.5rem;
}

.chip {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--color-surface);
    color: var(--color-text-muted);
    font-size: 0.82rem;
    padding: 0.4rem 0.875rem;
    border-radius: 100px;
    border: 1px solid var(--color-border);
}

.chip-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent);
    flex-shrink: 0;
}

.page-footer {
    margin-top: 3.5rem;
    text-align: center;
}

.footer-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-bottom: 0.6rem;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem 1.1rem;
}

.footer-links a {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--color-accent-light);
    text-decoration: underline;
}
