/* Voice It — public landing / splash */
:root {
    --splash-ink: #f6f3ff;
    --splash-muted: rgba(246, 243, 255, 0.78);
    --splash-accent: #ffffff;
    --splash-btn: #1a3a5c;
    --splash-btn-hover: #0f2740;
    --splash-font-display: "Syne", sans-serif;
    --splash-font-body: "Source Sans 3", sans-serif;
}

.splash-page *,
.splash-page *::before,
.splash-page *::after {
    box-sizing: border-box;
}

.splash-page {
    margin: 0;
    min-height: 100vh;
    min-height: 100dvh;
    width: 100%;
    overflow-x: hidden;
    font-family: var(--splash-font-body);
    color: var(--splash-ink);
    background-color: #152238;
    background-image:
        linear-gradient(160deg, rgba(18, 21, 28, 0.55) 0%, rgba(26, 58, 92, 0.58) 42%, rgba(90, 45, 130, 0.66) 100%),
        url("../images/Group2133.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-font-smoothing: antialiased;
}

.splash-page::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 70% 45% at 15% 8%, rgba(255, 255, 255, 0.12), transparent 55%),
        linear-gradient(to top, rgba(10, 12, 18, 0.78) 0%, rgba(10, 12, 18, 0.28) 48%, transparent 100%);
}

.splash-shell {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    min-height: 100dvh;
    display: grid;
    grid-template-rows: auto 1fr auto;
    width: 100%;
    max-width: 72rem;
    margin: 0 auto;
    padding:
        max(1.1rem, env(safe-area-inset-top))
        max(1.15rem, env(safe-area-inset-right))
        max(1.1rem, env(safe-area-inset-bottom))
        max(1.15rem, env(safe-area-inset-left));
}

.splash-header {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.splash-header img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.28));
}

.splash-header span {
    font-family: var(--splash-font-display);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.splash-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 38rem;
    padding: 1.75rem 0 1.5rem;
}

.splash-eyebrow {
    margin: 0 0 0.85rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}

.splash-main h1 {
    margin: 0 0 0.85rem;
    font-family: var(--splash-font-display);
    font-size: clamp(2.1rem, 8vw, 4rem);
    font-weight: 800;
    line-height: 0.96;
    letter-spacing: -0.035em;
}

.splash-main p {
    margin: 0 0 1.6rem;
    max-width: 32rem;
    font-size: clamp(1rem, 2.6vw, 1.15rem);
    line-height: 1.55;
    color: var(--splash-muted);
}

.splash-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 1.75rem;
}

.splash-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.8rem 1.35rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.splash-actions a:hover {
    transform: translateY(-1px);
}

.splash-btn-primary {
    background: var(--splash-accent);
    color: var(--splash-btn);
}

.splash-btn-primary:hover {
    background: #f3f0ff;
    color: var(--splash-btn-hover);
}

.splash-btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.42);
}

.splash-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.splash-points {
    display: grid;
    gap: 0.7rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.splash-points li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.4;
}

.splash-points i {
    margin-top: 0.18rem;
    color: #d8c6ff;
    font-size: 0.85rem;
}

.splash-footer,
.brand-text {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.78rem;
    left: auto;
    transform: none;
}

@media (min-width: 768px) {
    .splash-shell {
        padding: 2rem 2.25rem 1.5rem;
    }

    .splash-actions a {
        min-width: 168px;
    }
}

@media (max-width: 575.98px) {
    .splash-actions {
        flex-direction: column;
    }

    .splash-actions a {
        width: 100%;
    }

    .splash-main {
        padding-top: 2.25rem;
    }
}

@media (max-height: 520px) and (orientation: landscape) {
    .splash-shell {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .splash-main {
        padding: 0.75rem 0;
    }

    .splash-main h1 {
        font-size: clamp(1.7rem, 6vw, 2.4rem);
    }

    .splash-points {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .splash-actions a {
        transition: none;
    }
}
