:root {
    color-scheme: light;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
}

.welcome-page {
    align-items: center;
    background:
        linear-gradient(to bottom, rgba(7, 12, 22, 0.15), rgba(11, 20, 35, 0.86)),
        linear-gradient(120deg, rgba(2, 6, 22, 0.7), rgba(12, 20, 38, 0.75)),
        url("/images/welcome-hero.svg") center/cover no-repeat;
    color: #f3f6ff;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 32px 18px 40px;
    position: relative;
}

.welcome-overlay {
    backdrop-filter: blur(0.5px);
    background:
        radial-gradient(circle at 15% 20%, rgba(77, 141, 255, 0.18), transparent 45%),
        radial-gradient(circle at 80% 80%, rgba(90, 255, 195, 0.16), transparent 45%);
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.welcome-shell {
    margin: auto;
    max-width: 880px;
    position: relative;
    width: min(92vw, 880px);
    z-index: 1;
}

.welcome-kicker {
    letter-spacing: 0.08em;
    margin: 0 0 12px;
    text-transform: uppercase;
    color: #93bcff;
    font-size: 12px;
    font-weight: 700;
}

.welcome-headline {
    margin: 0 0 8px;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.02;
    letter-spacing: -0.02em;
}

.welcome-strapline {
    color: #d7e3fc;
    font-size: 18px;
    line-height: 1.45;
    margin: 0 0 24px;
}

.welcome-card {
    background: rgba(11, 19, 32, 0.68);
    border: 1px solid rgba(178, 198, 229, 0.22);
    border-radius: 20px;
    box-shadow: 0 24px 50px rgba(2, 7, 20, 0.38);
    padding: 22px;
}

.welcome-card h2 {
    font-size: 22px;
    letter-spacing: -0.01em;
    margin: 0 0 10px;
}

.welcome-goal {
    color: #c6d4ee;
    line-height: 1.58;
    margin: 0 0 12px;
}

.welcome-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.welcome-feature {
    background: rgba(18, 27, 41, 0.82);
    border: 1px solid rgba(157, 182, 223, 0.24);
    border-radius: 14px;
    display: grid;
    gap: 8px;
    padding: 14px;
}

.welcome-feature h3 {
    margin: 0;
    font-size: 15px;
}

.welcome-feature p {
    color: #bdd1ef;
    font-size: 13px;
    line-height: 1.55;
    margin: 0;
}

.welcome-footer {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
    gap: 10px;
    margin-top: 14px;
}

.welcome-link {
    color: #f1f5ff;
    display: inline-block;
    text-underline-offset: 3px;
}

.welcome-footer span {
    color: #7896c4;
}

@media (min-width: 760px) {
    .welcome-card {
        padding: 28px;
    }

    .welcome-card h2 {
        font-size: 26px;
    }
}
