:root {
    --bg: #07070a;
    --text: #ffffff;
    --ctatext: #ffffffe2;
    --muted: #a6a6b3;
    --btn-bg: #18181fb4;
    --btn-bg-hover: #5349294c;
    --textGlow: #ffd599;
}

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

html,
body {
    height: 100dvh;
}

html {
    background: url("background.png") center/cover no-repeat var(--bg);
    background-attachment: fixed;
}


body {
    margin: 0;
    font-family: "Manrope", system-ui, sans-serif;
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    line-height: 1.35;
    overflow-x: hidden;
}

.page {
    position: relative;
    height: 100dvh;       /* lock to viewport */
    overflow: hidden;    /* no scrolling */
    display: flex;
    flex-direction: column;
}

/* Top bar */
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    opacity: 0.95;
}

.brand-badge {
    height: 1.3rem;
    object-fit: contain;
    display: block;
    translate: 0rem -0.0em;
}

.brand-text {
    font-size: 1.3rem;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;         /* it will auto-shrink so the footer doesn't get covered */
    padding: 0 24px;
    gap: 24px;
}

.headline {
    margin: 0 0 0px;
    font-weight: 600;
    font-size: clamp(40px, 3.2rem, 84px);
    letter-spacing: -.02em;
    color: #ffffff;
}

.headline .muted {
    font-weight: 100;
    color: #ffffff;
    opacity: .85;
}

.subheadline {
    margin: 0 0 0.5rem;
    font-weight: 300;
    font-size: 1.1rem;
    letter-spacing: -.03em;
    color: #e7e7e7;
    opacity: 0.7;
}

.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: var(--btn-bg);
    border: 1px solid rgba(255, 255, 255, .08);
    color: var(--ctatext);
    font-weight: 700;
    text-decoration: none;
    transition: .18s ease;
    font-size: 0.8rem;
}

@keyframes springPress {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.89);
    }

    100% {
        transform: scale(0.94);
    }
}

.cta:hover {
    background: var(--btn-bg-hover);
    transform: scale(0.97);
    animation: springPress .20s cubic-bezier(.25, .46, .45, 1);
    color: var(--textGlow);
}

.cta:active {
        transform: translateY(0);
}

/* Footer */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    gap: clamp(18px, 2vw, 32px);
    justify-content: flex-end;
    flex-wrap: wrap;
    padding: 20px clamp(18px, 3vw, 28px) 28px;
}

.footer a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.footer a:hover {
    color: var(--textGlow);
}

@media (max-width:640px) {
    .footer {
        justify-content: center;
    }
}
