@font-face {
    font-family: "Noto Sans KR";
    src: url("/css/font/notokr-regular.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Noto Sans KR";
    src: url("/css/font/notokr-medium.woff2") format("woff2");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "Noto Sans KR";
    src: url("/css/font/notokr-bold.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

:root {
    --black: #212121;
    --charcoal: #353531;
    --slate: #343e48;
    --olive: #75796c;
    --muted: #949494;
    --page-width: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--black);
    background: #fff;
    font-family: "Noto Sans KR", sans-serif;
    word-break: keep-all;
}

button,
input,
textarea,
select {
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.section-inner,
.features__inner,
.download__inner,
.footer__inner {
    width: min(var(--page-width), calc(100% - 48px));
    margin: 0 auto;
}

.top-stage {
    min-height: 2390px;
    padding-top: 114px;
    background: url("/images/mimo-landing/intro-background.svg") center top / 1920px 1859px no-repeat;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    min-height: 601px;
}

.hero__copy {
    width: 656px;
}

.hero__logo {
    width: 250px;
    height: auto;
    aspect-ratio: 24 / 7;
    object-fit: contain;
    margin-bottom: 48px;
}

.hero h1 {
    margin: 0;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -1px;
}

.store-buttons {
    display: flex;
    gap: 16px;
    margin-top: 48px;
}

.store-button {
    width: 250px;
    height: 75px;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 15px;
    background: #040707;
    cursor: pointer;
    transition: transform .22s ease, box-shadow .22s ease;
}

@media (hover: hover) and (pointer: fine) {
    .store-button:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
    }
}

.store-button:focus-visible {
    outline: 3px solid #f5ff00;
    outline-offset: 4px;
}

.store-button img {
    width: 100%;
    height: 100%;
}

.hero__visual {
    width: 404px;
    flex: 0 0 auto;
}

.intro {
    padding-top: 190px;
    text-align: center;
}

.intro__copy p {
    margin: 0 0 10px;
    color: var(--charcoal);
    font-size: 30px;
    line-height: 1;
    letter-spacing: -.6px;
}

.intro__copy h2 {
    margin: 0;
    color: var(--slate);
    font-size: 48px;
    line-height: 1.4;
    letter-spacing: -.96px;
}

.intro__services {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 70px;
}

.intro__services span {
    display: grid;
    width: 250px;
    height: 250px;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 20px rgba(14, 66, 41, .25);
    color: var(--charcoal);
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -.6px;
}

.intro__services span + span {
    margin-left: -40px;
}

.intro__services span:nth-child(2) {
    background: var(--olive);
    color: #fff;
}

.intro__services span:nth-child(3) {
    background: var(--charcoal);
    color: #fff;
}

.intro__arrow {
    width: 36px;
    height: 75px;
    margin: -20px auto 0;
}

.intro__phone-frame {
    width: 1200px;
    max-width: 100%;
    margin: 1px auto 0;
}

.intro__phone {
    width: 100%;
}

.features {
    padding: 111px 0 112px;
}

.features__inner {
    max-width: 1000px;
}

.features__title {
    margin: 0 0 120px;
    color: var(--muted);
    font-size: 40px;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
    letter-spacing: -.8px;
}

.features__title strong {
    color: var(--charcoal);
}

.feature {
    display: grid;
    grid-template-columns: 407px 1fr;
    align-items: start;
    gap: 124px;
    min-height: 525px;
}

.feature + .feature {
    margin-top: 50px;
}

.feature__copy {
    padding-top: 40px;
}

.feature__copy h3 {
    margin: 0 0 40px;
    font-size: 40px;
    line-height: 1.375;
    letter-spacing: -.8px;
}

.feature__copy p {
    margin: 0;
    color: #404040;
    font-size: 26px;
    line-height: 1.75;
    letter-spacing: -.52px;
}

.feature__visual {
    width: 477px;
    margin: -10px 0 0 -7px;
}

.download {
    height: 600px;
    overflow: hidden;
    color: #fff;
    background: var(--charcoal);
}

.download__inner {
    position: relative;
    height: 100%;
    padding-top: 129px;
}

.download__copy {
    position: relative;
    z-index: 2;
}

.download__badge {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    padding: 8px 20px;
    border-radius: 50px;
    background: #fff;
    color: var(--charcoal);
    font-size: 26px;
    font-weight: 500;
}

.download h2 {
    margin: 20px 0 10px;
    font-size: 40px;
    line-height: 1.5;
    letter-spacing: -.8px;
}

.download p {
    margin: 0;
    font-size: 26px;
    line-height: 1.3;
}

.download .store-buttons {
    margin-top: 60px;
}

.download__visual {
    position: absolute;
    z-index: 1;
    right: -76px;
    bottom: -1px;
    width: 800px;
    max-width: none;
}

.footer {
    height: 250px;
    color: #777;
    background: #262626;
}

.footer__inner {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
}

.footer__inner > img {
    width: 104px;
    height: 64px;
    opacity: .85;
}

.footer__info {
    font-size: 13px;
}

.footer__info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 10px;
}

.footer__info i {
    display: block;
    width: 1px;
    height: 8px;
    background: #666;
}

.footer__info small {
    display: block;
    margin-top: 20px;
    font-size: 12px;
}

.store-notice {
    position: fixed;
    z-index: 20;
    right: 24px;
    bottom: 24px;
    padding: 14px 18px;
    border-radius: 12px;
    background: rgba(20, 20, 20, .92);
    color: #fff;
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity .2s ease, transform .2s ease;
}

.store-notice.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1);
}

.reveal--right {
    transform: translateX(36px);
}

.reveal.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

@media (max-width: 1024px) {
    .top-stage {
        min-height: auto;
        padding-top: 72px;
        padding-bottom: 90px;
        background-size: auto 1660px;
    }

    .hero {
        gap: 20px;
    }

    .hero__copy {
        width: min(55%, 560px);
    }

    .hero h1 {
        font-size: clamp(34px, 4.5vw, 46px);
    }

    .hero__visual {
        width: min(38%, 360px);
    }

    .store-button {
        width: min(250px, 48%);
        height: auto;
        aspect-ratio: 10 / 3;
    }

    .intro {
        padding-top: 150px;
    }

    .intro__copy h2 {
        font-size: 40px;
    }

    .intro__services span {
        width: 210px;
        height: 210px;
        font-size: 25px;
    }

    .intro__phone-frame {
        width: min(48vw, 404px);
        aspect-ratio: 404 / 650;
        margin-top: 16px;
    }

    .intro__phone {
        position: static;
        width: 100%;
        height: auto;
        content: url("/images/mimo-landing/hero-phone.png");
        transform: none;
    }

    .features {
        padding-top: 90px;
    }

    .feature {
        grid-template-columns: minmax(320px, 407px) minmax(380px, 477px);
        gap: 40px;
    }

    .feature__copy h3 {
        font-size: 34px;
    }

    .feature__copy p {
        font-size: 22px;
    }

    .download__visual {
        right: -220px;
        opacity: .78;
    }
}

@media (max-width: 820px) {
    .section-inner,
    .features__inner,
    .download__inner,
    .footer__inner {
        width: min(100% - 40px, var(--page-width));
    }

    .top-stage {
        padding-top: 48px;
        padding-bottom: 60px;
        background: linear-gradient(180deg, #fafafa 0, #f1f1f1 43%, #ddd 70%, #fff 70.1%);
    }

    .hero {
        min-height: auto;
        flex-direction: column;
        gap: 0;
        text-align: center;
    }

    .hero__copy {
        width: 100%;
    }

    .hero__logo {
        width: 210px;
        height: auto;
        aspect-ratio: 24 / 7;
        margin: 0 auto 32px;
    }

    .hero h1 {
        font-size: clamp(30px, 8.4vw, 42px);
        line-height: 1.35;
    }

    .hero .store-buttons {
        justify-content: center;
        margin-top: 34px;
    }

    .hero__visual {
        width: min(78vw, 390px);
        margin-top: 48px;
    }

    .intro {
        padding-top: 110px;
    }

    .intro__copy p {
        font-size: 20px;
    }

    .intro__copy h2 {
        font-size: 30px;
        line-height: 1.45;
    }

    .intro__copy h2 br {
        display: none;
    }

    .intro__services {
        margin-top: 50px;
    }

    .intro__services span {
        width: 36vw;
        max-width: 150px;
        height: 36vw;
        max-height: 150px;
        font-size: clamp(14px, 4vw, 19px);
    }

    .intro__services span + span {
        margin-left: -22px;
    }

    .intro__arrow {
        width: 24px;
        height: auto;
        margin-top: -10px;
    }

    .intro__phone-frame {
        width: min(80vw, 360px);
    }

    .features {
        padding: 90px 0;
    }

    .features__title {
        margin-bottom: 72px;
        font-size: 30px;
    }

    .feature {
        display: flex;
        min-height: 0;
        flex-direction: column;
        gap: 32px;
    }

    .feature + .feature {
        margin-top: 100px;
    }

    .feature__copy {
        padding-top: 0;
    }

    .feature__copy h3 {
        margin-bottom: 22px;
        font-size: 30px;
    }

    .feature__copy p {
        font-size: 19px;
        line-height: 1.7;
    }

    .feature__visual {
        width: min(100%, 477px);
        margin: 0 auto;
    }

    .download {
        height: auto;
        min-height: clamp(780px, 130vw, 960px);
    }

    .download__inner {
        min-height: inherit;
        padding: 74px 0 0;
    }

    .download__badge {
        min-height: 42px;
        font-size: 18px;
    }

    .download h2 {
        font-size: 29px;
        line-height: 1.5;
    }

    .download h2 br {
        display: none;
    }

    .download p {
        font-size: 19px;
    }

    .download .store-buttons {
        margin-top: 38px;
    }

    .download__visual {
        right: 50%;
        bottom: -10px;
        width: min(150vw, 560px);
        opacity: 1;
        transform: translate(56%, 30px);
    }

    .download__visual.reveal.is-visible {
        transform: translateX(56%);
    }

    .footer {
        height: auto;
        padding: 48px 0;
    }

    .footer__inner {
        align-items: flex-start;
        gap: 42px;
    }

    .footer__inner > img {
        width: 78px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .top-stage {
        padding-top: 36px;
        padding-bottom: 40px;
    }

    .hero__logo {
        width: min(190px, 62vw);
        margin-bottom: 26px;
    }

    .hero h1 {
        font-size: clamp(27px, 7.5vw, 32px);
    }

    .hero .store-buttons {
        gap: 10px;
        margin-top: 30px;
    }

    .hero__visual {
        margin-top: 40px;
    }

    .intro {
        padding-top: 90px;
    }

    .intro__services {
        margin-top: 42px;
    }

    .features {
        padding: 56px 0 76px;
    }

    .features__title {
        margin-bottom: 60px;
        font-size: 27px;
    }

    .feature + .feature {
        margin-top: 82px;
    }

    .feature__copy h3 {
        font-size: 27px;
    }

    .feature__copy p {
        font-size: 18px;
    }

    .download__inner {
        padding-top: 62px;
    }

    .download h2 {
        font-size: 27px;
    }

    .download .store-buttons {
        gap: 10px;
        margin-top: 32px;
    }

    .footer {
        padding: 42px 0;
    }

    .footer__inner {
        flex-direction: column;
        gap: 28px;
    }

    .footer__info {
        width: 100%;
    }
}

@media (max-width: 360px) {
    .section-inner,
    .features__inner,
    .download__inner,
    .footer__inner {
        width: calc(100% - 32px);
    }

    .intro__copy h2 {
        font-size: 27px;
    }

    .intro__services span {
        font-size: 14px;
    }

    .download h2 {
        font-size: 25px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal,
    .store-button,
    .store-notice {
        transition: none;
    }
}
