/* ==========================================================================
   Splash
   ========================================================================== */

:root {
    --color-accent: #e24910;
    --color-background: #181818;
    --color-surface: rgba(34, 34, 34, 0.88);
    --color-text: #ffffff;
    --color-muted: #b8b8b8;
    --color-border: rgba(255, 255, 255, 0.12);
    --color-shadow: rgba(0, 0, 0, 0.45);

    --splash-radius: 22px;
    --splash-width: 720px;
}

/* Base */

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--color-text);
    background: var(--color-background);
}

/* Layout */

.splash {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    isolation: isolate;
}

.splash-background,
.splash-overlay,
.splash-motion {
    position: fixed;
    inset: 0;
}

.splash-background {
    z-index: -3;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 34rem),
        var(--color-background);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.splash-overlay {
    z-index: -2;
    background:
        linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.78),
            rgba(0, 0, 0, 0.46)
        );
}

.splash-motion {
    z-index: -1;
    pointer-events: none;
}

.splash-container {
    width: min(100% - 32px, var(--splash-width));
    min-height: 100vh;
    margin: 0 auto;
    display: grid;
    align-content: center;
    gap: 12px;
    padding: 48px 0;
}

/* Card */

.splash-card {
    width: 100%;
    padding: clamp(28px, 6vw, 56px);
    border: 1px solid var(--color-border);
    border-radius: var(--splash-radius);
    background: var(--color-surface);
    box-shadow: 0 24px 80px var(--color-shadow);
   /*backdrop-filter: blur(18px);*/
}

.splash-logo {
    display: block;
    /*width: min(260px, 72vw);*/
    height: auto;
    color: var(--color-text);
    width: min(180px, 45vw);


}

.splash-logo-text {
    color: var(--color-text);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Content */

.splash-status {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin: 0 0 18px;
    padding: 8px 12px;
    border: 1px solid rgba(226, 73, 16, 0.42);
    border-radius: 999px;
    color: var(--color-accent);
    background: rgba(226, 73, 16, 0.14);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.splash-headline {
    max-width: 13ch;
    margin: 0;
    font-size: clamp(2.25rem, 6vw, 4.5rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.splash-description {
    /*max-width: 52ch;*/
    max-width: 34rem;
    margin: 28px 0 0;
    color: var(--color-muted);
    font-size: clamp(1rem, 2.2vw, 1.18rem);
    line-height: 1.7;
}

/* Features */

.splash-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
}

.splash-feature {
    padding: 12px 14px;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    color: var(--color-muted);
    background: rgba(255, 255, 255, 0.045);
}

.splash-feature::before {
    content: "✓";
    margin-right: 8px;
    color: var(--color-accent);
    font-weight: 800;
}

/* Buttons */

.splash-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}
.splash-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    transition:
        transform 160ms ease,
        border-color 160ms ease,
        background 160ms ease;
}



.splash-button:hover {
    transform: translateY(-2px);
}

.splash-button-primary {
    color: #111111;
    background: var(--color-accent);
}

.splash-button-secondary {
    color: var(--color-text);
    border: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.06);
}

/* Footer */

.splash-footer {
    margin-top: 36px;
    color: var(--color-muted);
    font-size: 0.86rem;
    opacity: 0.72;
}

/* Mobile */

@media (max-width: 560px) {
    .splash-container {
        width: min(100% - 24px, var(--splash-width));
        padding: 24px 0;
    }

    .splash-card {
        border-radius: 18px;
    }

    .splash-features {
        grid-template-columns: 1fr;
    }

    .splash-buttons {
        flex-direction: column;
    }

    .splash-button {
        width: 100%;
    }











}