@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
    --background: #07070b;
    --surface: #111118;
    --surface-light: #181822;

    --primary: #8b5cf6;
    --primary-light: #a78bfa;
    --secondary: #3b82f6;

    --text: #ffffff;
    --muted: #a1a1aa;

    --border: rgba(255, 255, 255, 0.09);
    --border-hover: rgba(255, 255, 255, 0.16);

    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;

    --container: 1200px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;

    color: var(--text);
    background:
        radial-gradient(
            circle at top,
            rgba(139, 92, 246, 0.08),
            transparent 32%
        ),
        var(--background);

    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

.welcome {
    position: relative;

    min-height: 100vh;
    padding: 40px 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.welcome__content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 900px;

    text-align: center;
}

.welcome__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 28px;
    padding: 9px 14px;

    color: #d8ceff;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.24);
    border-radius: 999px;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.welcome__badge::before {
    content: '';

    width: 7px;
    height: 7px;

    background: var(--primary-light);
    border-radius: 50%;

    box-shadow: 0 0 14px rgba(167, 139, 250, 0.8);
}

.welcome h1 {
    max-width: 900px;
    margin: 0 auto;

    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(46px, 8vw, 88px);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.welcome h1 span {
    display: block;

    color: transparent;
    background: linear-gradient(
        110deg,
        #ffffff 5%,
        #b9a5ff 46%,
        #69a4ff 100%
    );

    background-clip: text;
    -webkit-background-clip: text;
}

.welcome p {
    max-width: 680px;
    margin: 28px auto 0;

    color: var(--muted);

    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.75;
}

.welcome__actions {
    margin-top: 36px;

    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    min-height: 50px;
    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid transparent;
    border-radius: var(--radius-sm);

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 180ms ease,
        background 180ms ease,
        border-color 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button--primary {
    color: white;
    background: linear-gradient(
        135deg,
        var(--primary),
        #7057e8
    );

    box-shadow: 0 14px 45px rgba(139, 92, 246, 0.22);
}

.button--primary:hover {
    background: linear-gradient(
        135deg,
        #9b70ff,
        #7762ec
    );
}

.button--secondary {
    color: #e4e4e7;
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--border);
}

.button--secondary:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--border-hover);
}

.welcome__categories {
    margin-top: 42px;

    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.welcome__categories span {
    padding: 9px 13px;

    color: #8f8f9c;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--border);
    border-radius: 10px;

    font-size: 12px;
    font-weight: 600;
}

.welcome__glow {
    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;
    filter: blur(100px);

    pointer-events: none;
}

.welcome__glow--one {
    top: -200px;
    left: -150px;

    background: rgba(139, 92, 246, 0.13);
}

.welcome__glow--two {
    right: -180px;
    bottom: -220px;

    background: rgba(59, 130, 246, 0.1);
}

@media (max-width: 640px) {
    .welcome {
        padding: 80px 20px;
    }

    .welcome h1 {
        font-size: clamp(42px, 14vw, 64px);
    }

    .welcome p {
        font-size: 16px;
    }

    .welcome__actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }
}