:root {
    color-scheme: dark;
    --brand-green: #77c88c;
    --brand-green-light: #a0dbb0;
    --surface: #191919;
    --text: #ffffff;
    --muted: #c9ceca;
}

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

body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    min-height: 100svh;
    padding: 32px 20px;
    color: var(--text);
    background:
        radial-gradient(circle at 50% 10%, rgba(119, 200, 140, 0.16), transparent 45%),
        linear-gradient(145deg, #0a100c 0%, var(--surface) 55%, #101511 100%);
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body::before {
    position: fixed;
    inset: 0;
    content: "";
    pointer-events: none;
    opacity: 0.22;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.container {
    position: relative;
    width: min(800px, 100%);
    min-width: 0;
    padding: 62px 60px 34px;
    text-align: center;
    background: rgba(25, 25, 25, 0.96);
    border: 1px solid rgba(160, 219, 176, 0.2);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
}

.container::before {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 4px;
    content: "";
    background: linear-gradient(90deg, var(--brand-green), var(--brand-green-light));
}

.brand {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto 30px;
}

.eyebrow {
    margin-bottom: 18px;
    color: var(--brand-green-light);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.5;
    text-transform: uppercase;
}

h1 {
    max-width: 640px;
    margin: 0 auto 24px;
    font-size: clamp(2.3rem, 6.7vw, 3.75rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.045em;
}

h1 span {
    color: var(--brand-green);
}

.intro {
    max-width: 580px;
    margin: 0 auto 30px;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.75;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 58px;
    padding: 16px 30px;
    color: #101b13;
    background: linear-gradient(100deg, var(--brand-green), var(--brand-green-light));
    border: 1px solid var(--brand-green-light);
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 750;
    line-height: 1.5;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.cta-button span {
    font-size: 1.25em;
    line-height: 1;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(119, 200, 140, 0.18);
}

.destination {
    max-width: 580px;
    margin: 27px auto 32px;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.75;
}

.text-link {
    display: block;
    margin-top: 5px;
    color: var(--brand-green-light);
    overflow-wrap: anywhere;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    column-gap: 24px;
    row-gap: 4px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.78rem;
    line-height: 1.5;
}

.footer-links a {
    padding: 8px 0;
    color: var(--muted);
    text-underline-offset: 4px;
}

.text-link:hover,
.footer-links a:hover {
    color: var(--text);
}

a:focus-visible {
    outline: 3px solid var(--text);
    outline-offset: 5px;
}

@media (max-width: 600px) {
    body {
        padding: 20px 14px;
    }

    .container {
        padding: 42px 24px 24px;
    }

    .brand {
        width: 245px;
        margin-bottom: 25px;
    }

    .intro {
        font-size: 1rem;
    }

    .cta-button {
        width: 100%;
        padding-inline: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cta-button {
        transition: none;
    }

    .cta-button:hover {
        transform: none;
    }
}
