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

html, body {
    height: 100%;
}

body {
    font-family: 'Outfit', sans-serif;
    background: #06080f;
    color: #fff;
    overflow-x: hidden;
}

.page {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-rows: 1fr auto;
}

/* Background image */
.bg {
    position: fixed;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?auto=format&w=1920&q=80&fit=crop');
    background-size: cover;
    background-position: center 45%;
    z-index: 0;
}

.bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(6, 8, 15, 0.55) 0%,
        rgba(6, 8, 15, 0.78) 55%,
        rgba(6, 8, 15, 0.92) 100%
    );
}

/* Hero content */
.hero {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem 6rem;
    min-height: calc(100vh - 56px);
}

.inner {
    max-width: 680px;
    animation: up 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@media (prefers-reduced-motion: reduce) {
    .inner { animation: none; }
}

@keyframes up {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

h1 {
    font-size: clamp(4.5rem, 18vw, 11rem);
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 0.92;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 241, 210, 0.90);
    text-stroke: 2px rgba(255, 241, 210, 0.90);
    margin-bottom: 2rem;
}

.desc {
    font-size: clamp(0.95rem, 2.2vw, 1.05rem);
    font-weight: 300;
    color: rgba(235, 220, 190, 0.80);
    line-height: 1.85;
    max-width: 400px;
    margin: 0 auto 2.75rem;
    text-shadow: 0 1px 20px rgba(0, 0, 0, 0.5);
}

.btn {
    display: inline-block;
    padding: 0.875rem 2.25rem;
    background: rgba(255, 241, 210, 0.92);
    color: #06080f;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background 180ms ease, transform 180ms ease;
}

.btn:hover {
    background: #fff;
    transform: translateY(-2px);
}

/* Footer */
footer {
    position: relative;
    z-index: 1;
    padding: 1.1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.7rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.28);
    letter-spacing: 0.1em;
}

footer a {
    color: rgba(255, 255, 255, 0.28);
    text-decoration: none;
    transition: color 180ms ease;
}

footer a:hover {
    color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 480px) {
    footer {
        flex-direction: column;
        text-align: center;
        gap: 0.4rem;
    }
}
