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

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    background-color: #87cb28;
    font-family: "Lucida Console", monospace;
    color: #000;
}

.container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    gap: 0;
}

.eyebrow {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 18px;
}

h1 {
    font-size: clamp(40px, 8vw, 72px);
    margin: 0;
    letter-spacing: 3px;
    line-height: 1;
    position: relative;
    display: inline-block;
}

h1::after {
    content: "";
    display: block;
    margin: 18px auto 0;
    width: 48px;
    height: 3px;
    background-color: #000;
    opacity: 0.25;
}

p {
    font-size: clamp(14px, 2vw, 18px);
    max-width: 580px;
    margin: 28px 0 0;
    line-height: 1.7;
    opacity: 0.8;
}

.cta {
    margin-top: 40px;
    display: inline-block;
    padding: 12px 32px;
    border: 2px solid rgba(0, 0, 0, 0.4);
    font-family: "Lucida Console", monospace;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}

.cta:hover {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.7);
}

.footer {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 24px;
    font-size: 12px;
    letter-spacing: 1px;
    opacity: 0.5;
}

.footer a {
    color: inherit;
    text-decoration: none;
}

.footer a:hover {
    opacity: 1;
    text-decoration: underline;
}