*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body{
    height: 100%;
}

.hero{
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    background: #000;
}

.bg{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    z-index: 0;
}

.hero::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.05) 25%, rgba(0,0,0,0.15) 60%, rgba(0,0,0,0.55) 100%);
    z-index: 1;
}

/* top bar — logo now carries the flanking pronunciation built in */
.topbar{
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1.25rem, 3vw, 2rem) 1.5rem;
}

/* Controls the logo's on-screen size. Bump the clamp values below
   (min, preferred, max) to make it bigger or smaller. */
.wordmark{
    margin-top: 1rem;
    height: clamp(28px, 4vw, 40px);
    width: auto;
}

/* main content */
.content{
    position: relative;
    z-index: 2;
    margin: auto auto 0 auto;
    padding: 0 1.5rem clamp(3rem, 8vw, 4rem);
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

h1{
    font-family: 'Funnel Display', sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: clamp(2.8rem, 9vw, 7.5rem);
    line-height: 1.02;
    letter-spacing: -0.01em;
    text-align: right;
    margin-bottom: 1.25rem;
}

.content p{
    font-family: 'Funnel Sans', sans-serif;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    font-size: clamp(1.2rem, 1.6vw, 1.05rem);
    line-height: 1.6;
    max-width: 420px;
    text-align: left;
    margin-bottom: 0.9rem;
}

.waitlist{
    font-family: 'Funnel Sans', sans-serif;
    font-weight: 500;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    padding-bottom: 2px;
    transition: border-color 0.2s ease;
}

.waitlist:hover{
    border-color: #fff;
}

/* ticker */
.ticker{
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: 0.9rem 0;
}

.ticker-track{
    display: flex;
    width: max-content;
    gap: clamp(1.5rem, 4vw, 3rem);
    animation: scroll 70s linear infinite;
}

.ticker-track span{
    font-family: 'Funnel Sans', sans-serif;
    font-weight: 500;
    font-size: clamp(0.75rem, 1.6vw, 0.9rem);
    letter-spacing: 0.05em;
    color: #fff;
    white-space: nowrap;
}

.ticker-track span:nth-child(even){
    opacity: 0.4;
}

@keyframes scroll{
    from{ transform: translateX(0); }
    to{ transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce){
    .ticker-track{
        animation: none;
    }
}

/* mobile */
@media (max-width: 480px){
    .topbar{
        padding: 1.25rem 1rem;
    }

    .wordmark{
        height: 38px;
    }

    .content{
       
        align-items: flex-start;
        padding: 0 1.25rem 2.5rem;
    }

    h1{
        padding: 0 1rem;
        font-size: 2.9rem;
        text-align: left;
    }

    .content p{
        padding: 0 1rem;
        font-size: 1rem;
        max-width: 100%;
        text-align: left;
    }

    .waitlist{
        margin: 0 1rem;
    }
}