:root {
    --brand-green: #4d8740;
    --strong-border: #111;
    --text-color: #f5f7f3;
    --text-muted: #dbe3d8;
}

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

html,
body {
    width: 100%;
    min-height: 100%;
    font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #111;
    color: var(--text-color);
}

body {
    position: relative;
    min-height: 100vh;
    display: grid;
    place-items: center;
    text-align: center;
    overflow-x: hidden;
    isolation: isolate;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        linear-gradient(rgba(1, 1, 1, 0.45), rgba(1, 1, 1, 0.45)),
        url("mapa.png") center center / cover no-repeat;
    opacity: 0.66;
    z-index: -3;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(
        ellipse at center,
        rgba(1, 1, 1, 0.1) 0%,
        rgba(1, 1, 1, 0.45) 70%,
        rgba(1, 1, 1, 0.62) 100%
    );
    z-index: -2;
}

main.content {
    width: min(920px, 92vw);
    padding: 2.25rem 1.25rem 12rem;
    position: relative;
    z-index: 2;
}

.logo {
    width: min(520px, 80vw);
    height: auto;
    display: block;
    margin: 0 auto 1.6rem;
    filter: drop-shadow(0 6px 10px rgba(1, 1, 1, 0.4));
}

h1 {
    font-size: clamp(1.15rem, 2.1vw, 1.95rem);
    line-height: 1.38;
    letter-spacing: 0.01em;
    font-weight: 700;
    color: var(--text-muted);
    margin: 0 auto 2rem;
    /*text-wrap: balance;*/
}

.buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.btn {
    appearance: none;
    border: 3px solid var(--strong-border);
    border-radius: 0;
    background-color: var(--brand-green);
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    padding: 0.85rem 1.2rem;
    min-width: 190px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.62rem;
    box-shadow: 0 6px 0 #111;
    transition:
        transform 120ms ease,
        box-shadow 120ms ease,
        filter 120ms ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 0 #111;
    filter: brightness(1.03);
}

.btn:active {
    transform: translateY(2px);
    box-shadow: 0 3px 0 #111;
}

.btn:focus-visible {
    outline: 3px dashed #ffffff;
    outline-offset: 3px;
}

.btn img,
.btn svg {
    width: 1.05rem;
    height: 1.05rem;
    flex: 0 0 1.05rem;
}

.landing-art {
    position: fixed;
    left: 50%;
    bottom: 0;
    width: min(100vw, 1920px);
    transform: translateX(-50%) translateY(6%);
    pointer-events: none;
    user-select: none;
    z-index: 1;
    opacity: 1;
    filter: drop-shadow(0 -4px 10px rgba(0, 0, 0, 0.35));
}

@media (max-width: 768px) {
    main.content {
        padding-bottom: 9.5rem;
    }

    .btn {
        width: min(92vw, 340px);
    }

    .landing-art {
        transform: translateX(-50%) translateY(20%);
    }
}
