html,
body {
    margin: 0;
    width: 100%;
    min-height: 100%;
    background: #08111f;
    color: #f5f7fb;
    font-family: Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

.landing {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.10), transparent 26%), radial-gradient(circle at 80% 30%, rgba(46, 124, 255, 0.10), transparent 24%), linear-gradient(180deg, #050b14 0%, #08111f 45%, #0b1526 100%);
}

.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0.45;
}

.bg-glow-1 {
    top: -120px;
    left: -120px;
    width: 360px;
    height: 360px;
    background: rgba(212, 175, 55, 0.22);
}

.bg-glow-2 {
    right: -120px;
    bottom: -120px;
    width: 420px;
    height: 420px;
    background: rgba(24, 104, 255, 0.18);
}

.hero {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 40px;
    padding: 40px 0;
}

.hero-media {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 420px;
}

.brand-top {
    margin-bottom: 20px;
    color: #d4af37;
    font-size: clamp(1.8rem, 3.8vw, 3.8rem);
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-align: center;
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.25), 0 0 28px rgba(212, 175, 55, 0.12);
}

.goose-wrap {
    position: relative;
    width: min(560px, 100%);
    will-change: transform;
}

.goose-bird {
    display: block;
    width: 100%;
    height: auto;
    transform-origin: center center;
    filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.46)) drop-shadow(0 0 24px rgba(212, 175, 55, 0.18));
    animation: gooseFloat 5.8s ease-in-out infinite, wingPulse 0.9s ease-in-out infinite;
}

    .goose-wrap::after {
        content: "";
        position: absolute;
        left: 14%;
        right: 10%;
        bottom: 2%;
        height: 18%;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.22) 0%, rgba(212, 175, 55, 0.05) 42%, transparent 72%);
        filter: blur(22px);
        animation: glowPulse 2.4s ease-in-out infinite;
    }

.goose-bird {
    display: block;
    width: 100%;
    height: auto;
    transform-origin: center center;
    filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.46)) drop-shadow(0 0 24px rgba(212, 175, 55, 0.18));
    animation: wingPulse 0.9s ease-in-out infinite;
}

.hero-copy {
    max-width: 520px;
}



.hero-copy h1 {
    margin: 0;
    font-size: clamp(2.4rem, 5vw, 5rem);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.hero-copy p {
    margin: 18px 0 0;
    max-width: 460px;
    font-size: clamp(1rem, 1.7vw, 1.25rem);
    line-height: 1.65;
    color: #9fb0c7;
}

@keyframes gooseFloat {
    0% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -16px, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes wingPulse {
    0% {
        transform: rotate(-1.5deg) scale(1);
    }

    50% {
        transform: rotate(1.5deg) scale(1.015);
    }

    100% {
        transform: rotate(-1.5deg) scale(1);
    }
}

@keyframes glowPulse {
    0% {
        opacity: 0.48;
        transform: scale(0.98);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.04);
    }

    100% {
        opacity: 0.48;
        transform: scale(0.98);
    }
}

@media (max-width: 980px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 14px;
        text-align: center;
        padding: 28px 0 48px;
    }

    .hero-media {
        min-height: auto;
        order: 1;
    }

    .hero-copy {
        max-width: 640px;
        margin: 0 auto;
        order: 2;
    }

        .hero-copy p {
            margin-left: auto;
            margin-right: auto;
        }

    .goose-wrap {
        width: min(460px, 92vw);
    }

    .brand-top {
        margin-bottom: 16px;
        letter-spacing: 0.18em;
    }
}

@media (max-width: 640px) {
    .hero {
        width: min(100% - 24px, 100%);
        min-height: 100vh;
        padding: 22px 0 34px;
        align-content: center;
    }

    .eyebrow {
        font-size: 0.72rem;
        letter-spacing: 0.14em;
        margin-bottom: 14px;
    }

    .hero-copy h1 {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .hero-copy p {
        font-size: 1rem;
        line-height: 1.55;
    }

    .goose-wrap {
        width: min(360px, 92vw);
    }

    .brand-top {
        font-size: clamp(1.6rem, 8vw, 2.4rem);
        letter-spacing: 0.14em;
    }
}

.enter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    min-height: 54px;
    margin-top: 22px;
    padding: 14px 24px;
    border: 1px solid rgba(212, 175, 55, 0.42);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0.10) 100%);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    color: #f5f7fb;
    font-size: 0.98rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

    .enter-btn:hover {
        transform: translateY(-1px);
        border-color: rgba(212, 175, 55, 0.7);
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.32), 0 0 18px rgba(212, 175, 55, 0.14);
    }

    .enter-btn:active {
        transform: translateY(0);
    }

@media (max-width: 980px) {
    .enter-btn {
        width: min(100%, 360px);
    }
}

@media (max-width: 640px) {
    .enter-btn {
        width: 100%;
        min-height: 56px;
        margin-top: 20px;
        padding: 15px 18px;
        border-radius: 16px;
        font-size: 0.95rem;
    }
}