@font-face {
    font-family: "WED Sans";
    src: url("/landing/fonts/Inter-Regular.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "WED Sans";
    src: url("/landing/fonts/Inter-Medium.ttf") format("truetype");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "WED Sans";
    src: url("/landing/fonts/Inter-SemiBold.ttf") format("truetype");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "WED Sans";
    src: url("/landing/fonts/Inter-Bold.ttf") format("truetype");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

:root {
    --wed-slate: #597185;
    --wed-slate-deep: #3f566a;
    --wed-mist: #aec0c9;
    --wed-blue-soft: #93a9b9;
    --wed-ivory: #ede9de;
    --wed-taupe-light: #ccc2b8;
    --wed-taupe: #b9afa3;
    --wed-display-font: "Degular", "WED Sans", "Helvetica Neue", Arial, sans-serif;
    --wed-body-font: "WED Sans", "Helvetica Neue", Arial, sans-serif;
}

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

[hidden] {
    display: none !important;
}

html, body {
    min-height: 100%;
}

.landing-body {
    min-height: 100vh;
    min-height: 100svh;
    background-color: var(--wed-slate);
    background-image:
        radial-gradient(ellipse 74% 58% at 74% 18%, rgba(174, 192, 201, 0.24) 0%, transparent 62%),
        linear-gradient(135deg, var(--wed-slate-deep) 0%, var(--wed-slate) 58%, var(--wed-taupe-light) 100%);
    font-family: var(--wed-body-font);
    color: var(--wed-ivory);
    position: relative;
    overflow-x: hidden;
}

.landing-body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.landing-page {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    min-height: 100svh;
    width: 100%;
}

.landing-page,
.landing-page * {
    -webkit-user-select: none;
    user-select: none;
}

.landing-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    background: var(--wed-ivory);
    overflow: hidden;
    animation: landing-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.landing-hero__media,
.landing-hero__veil,
.landing-hero__content {
    position: absolute;
    inset: 0;
}

.landing-hero__media {
    display: block;
}

.landing-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.landing-hero__veil {
    background:
        linear-gradient(90deg, rgba(89, 113, 133, 0) 0%, rgba(89, 113, 133, 0) 52%, rgba(89, 113, 133, 0.18) 66%, rgba(63, 86, 106, 0.86) 100%),
        linear-gradient(180deg, rgba(89, 113, 133, 0) 0%, rgba(89, 113, 133, 0.02) 54%, rgba(63, 86, 106, 0.28) 100%);
}

.landing-hero__content {
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    padding: clamp(30px, 4vw, 64px);
}

.landing-copy-column {
    width: 100%;
    max-width: min(590px, 35vw);
    padding-bottom: 0;
    transform: translateY(clamp(18px, 4vh, 46px));
}

.landing-headline {
    max-width: 100%;
    font-family: var(--wed-display-font);
    font-size: clamp(42px, 3.35vw, 68px);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.045em;
    text-wrap: balance;
    text-shadow: 0 12px 34px rgba(63, 86, 106, 0.28);
}

.landing-headline__line {
    display: block;
    color: var(--wed-ivory);
}

.landing-headline__accent {
    color: var(--wed-mist);
}

.landing-headline__line + .landing-headline__line {
    margin-top: 0.16em;
}

.landing-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    max-width: 560px;
}

.store-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 190px;
    height: 58px;
    padding: 0 18px;
    background: var(--wed-slate);
    border: 1px solid rgba(237, 233, 222, 0.28);
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    line-height: 1;
    transition: transform 200ms ease, background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
    box-shadow: 0 14px 28px rgba(63, 86, 106, 0.24);
}

.store-badge:hover {
    background: var(--wed-slate-deep);
    border-color: rgba(174, 192, 201, 0.68);
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.store-badge:active {
    transform: translateY(0);
}

.store-badge--soon {
    cursor: default;
    opacity: 0.68;
    box-shadow: none;
}

.store-badge--soon:hover {
    background: var(--wed-slate);
    border-color: rgba(237, 233, 222, 0.28);
    transform: none;
    box-shadow: none;
}

.store-badge__icon {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
}

.store-badge__icon--apple {
    fill: #ffffff;
}

.store-badge__icon--play {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
}

.store-badge__play-blue {
    fill: #00a6ff;
}

.store-badge__play-green {
    fill: #00d087;
}

.store-badge__play-yellow {
    fill: #ffd247;
}

.store-badge__play-red {
    fill: #ff4b55;
}

.store-badge__text {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.store-badge__label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
    color: rgba(237, 233, 222, 0.78);
}

.store-badge__store {
    font-size: 19px;
    font-weight: 800;
    letter-spacing: 0;
    white-space: nowrap;
    color: var(--wed-ivory);
}

.landing-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 12px;
    margin-top: 18px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(237, 233, 222, 0.58);
}

.landing-footer__link {
    color: rgba(237, 233, 222, 0.78);
    text-decoration: none;
    transition: color 180ms ease;
}

.landing-footer__link:hover {
    color: var(--wed-ivory);
}

.landing-footer__sep {
    color: rgba(174, 192, 201, 0.46);
}

@keyframes landing-rise {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 1024px) {
    .landing-hero {
        min-height: 760px;
    }

    .landing-copy-column {
        max-width: min(470px, 43vw);
    }
}

@media (min-width: 901px) and (min-aspect-ratio: 9 / 4) {
    .landing-hero__media {
        background: var(--wed-ivory);
    }

    .landing-hero__bg {
        object-fit: contain;
    }
}

@media (max-width: 900px) {
    :root {
        --landing-mobile-copy-top: clamp(58px, 9svh, 94px);
        --landing-mobile-headline-size: clamp(25px, 7.1vw, 31px);
        --landing-mobile-badge-width: clamp(135px, 41vw, 158px);
        --landing-mobile-badge-height: 46px;
    }

    .landing-body {
        background-color: var(--wed-ivory);
        background-image:
            radial-gradient(ellipse 82% 56% at 52% 0%, rgba(174, 192, 201, 0.28) 0%, transparent 70%),
            linear-gradient(180deg, var(--wed-ivory) 0%, var(--wed-taupe-light) 100%);
    }

    .landing-hero {
        min-height: 100vh;
        min-height: 100svh;
        background: var(--wed-ivory);
        overflow: hidden;
    }

    .landing-hero__media {
        position: absolute;
        inset: 0;
        height: 100%;
        overflow: hidden;
    }

    .landing-hero__bg {
        object-position: center top;
    }

    .landing-hero__veil {
        display: block;
        background:
            linear-gradient(145deg, rgba(63, 86, 106, 0.9) 0%, rgba(89, 113, 133, 0.78) 28%, rgba(89, 113, 133, 0.2) 48%, rgba(89, 113, 133, 0) 62%),
            linear-gradient(180deg, rgba(89, 113, 133, 0) 54%, rgba(89, 113, 133, 0.16) 100%);
    }

    .landing-hero__content {
        position: absolute;
        inset: 0;
        align-items: flex-start;
        justify-content: flex-start;
        padding: max(var(--landing-mobile-copy-top), calc(env(safe-area-inset-top) + 42px)) 18px max(18px, calc(env(safe-area-inset-bottom) + 18px));
        background: transparent;
    }

    .landing-copy-column {
        width: fit-content;
        max-width: calc(100vw - 36px);
        min-height: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 0;
        transform: none;
    }

    .landing-headline {
        max-width: min(21rem, calc(100vw - 36px));
        font-size: var(--landing-mobile-headline-size);
        line-height: 1;
        letter-spacing: -0.04em;
        text-align: left;
        color: var(--wed-ivory);
        text-shadow: 0 10px 28px rgba(63, 86, 106, 0.34);
    }

    .landing-headline__line {
        color: inherit;
    }

    .landing-headline__accent {
        color: var(--wed-mist);
    }

    .landing-cta {
        margin-top: 14px;
        width: fit-content;
        max-width: calc(100vw - 36px);
        flex-direction: row;
        flex-wrap: nowrap;
        align-self: flex-start;
        align-items: center;
        gap: 8px;
    }

    .store-badge {
        width: var(--landing-mobile-badge-width);
        height: var(--landing-mobile-badge-height);
        gap: 9px;
        padding: 0 12px;
    }

    .store-badge__icon {
        width: 25px;
        height: 25px;
        flex-basis: 25px;
    }

    .store-badge__icon--play {
        width: 27px;
        height: 27px;
        flex-basis: 27px;
    }

    .store-badge__label {
        font-size: 8px;
    }

    .store-badge__store {
        font-size: 15px;
    }

    .landing-footer {
        position: absolute;
        left: 18px;
        right: 18px;
        bottom: max(20px, calc(env(safe-area-inset-bottom) + 18px));
        margin-top: 0;
        font-weight: 700;
        color: var(--wed-slate);
        -webkit-text-stroke: 0;
        text-shadow: 0 1px 10px rgba(237, 233, 222, 0.92);
    }

    .landing-footer__link {
        color: var(--wed-slate);
    }

    .landing-footer__sep {
        color: rgba(89, 113, 133, 0.5);
    }
}

@media (max-width: 380px) {
    :root {
        --landing-mobile-copy-top: clamp(50px, 7svh, 70px);
        --landing-mobile-headline-size: clamp(22px, 6.5vw, 25px);
        --landing-mobile-badge-width: 135px;
        --landing-mobile-badge-height: 44px;
    }

    .landing-cta {
        margin-top: 8px;
    }
}

@media (min-width: 901px) and (max-height: 760px) {
    .landing-hero {
        min-height: 100vh;
        min-height: 100svh;
    }
}
