@font-face {
    font-family: "Outfit";
    src: url("../fonts/Outfit-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0020-007F, U+00A0-00FF, U+2000-206F;
}
@font-face {
    font-family: "Outfit";
    src: url("../fonts/Outfit-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0020-007F, U+00A0-00FF, U+2000-206F;
}
@font-face {
    font-family: "Outfit";
    src: url("../fonts/Outfit-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0020-007F, U+00A0-00FF, U+2000-206F;
}
@font-face {
    font-family: "Outfit";
    src: url("../fonts/Outfit-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0020-007F, U+00A0-00FF, U+2000-206F;
}
@font-face {
    font-family: "Outfit";
    src: url("../fonts/Outfit-ExtraBold.woff2") format("woff2");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0020-007F, U+00A0-00FF, U+2000-206F;
}
* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    font-family: inherit;
}
html,
body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    background: #ffffff;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
}

.page {
    width: 100%;
    max-width: 430px;
    min-height: 100vh;
    margin: 0 auto;
    background: #ffffff;
    overflow: hidden;
    padding-bottom: 92px;
}

.container {
    width: 100%;
    padding: 0 20px;
}

/* Header */
.header {
    width: 100%;
    height: 60px;
    background: #eef6ff;
    border-bottom: 1px solid rgba(20, 24, 35, 0.08);
}

.header-inner {
    height: 100%;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #161A18;
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
}

.brand img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    flex: 0 0 auto;
}

.download-mini {
    padding: 10px 13px;
    border: none;
    border-radius: 8px;
    background: #18151A;
    color: #ffffff;
    font-size: 11px;
    line-height: 1;
    font-weight: 600;
    cursor: pointer;
}

/* Hero */
.hero {
    width: 100%;
    background: #f2e8f4;
    overflow: hidden;
}

.hero-bg {
    position: relative;
    width: 100%;
    aspect-ratio: 393 / 887;
    background-image: url("../images_m/banner.png");
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 42px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 13px 8px 17px;
    border-radius: 8px;
    background: #FF327E;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 13px;
    white-space: nowrap;
}

.hero-title {
    margin: 0;
    color: #161A18;
    font-size: 40px;
    line-height: 45px;
}

.hero-title .title01 {
    font-weight: 700;
}

.hero-title .title02 {
    font-weight: 400;
}

.hero-desc {
    width: 100%;
    margin: 10px 20px;
    color: rgba(22, 26, 24, 0.7);
    font-size: 13px;
    line-height: 17px;
    font-weight: 400;
    max-width: 353px;
}

.hero-chips {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero-chip {
    width: 212px;
    height: 36px;
    color: #202020;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 1;
    font-weight: 600;
    background: #FFFFFF;
    border-radius: 46px;
    border: 1px solid #DBA0A8;
}

/* Hero store buttons */
.hero-store {
    width: 100%;
    padding: 20px 18px 10px 22px;
    background: #FDE0E2;
    position: absolute;
    bottom: 127px;
}

.hero-store-btn {
    height: 46px;
    border-radius: 321px;
    background: #202020;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    box-shadow: 0 10px 22px rgba(20, 24, 38, 0.16);
}

.hero-store-btn img {
    object-fit: contain;
    flex: 0 0 auto;
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.store-text small {
    font-size: 6px;
    font-weight: 700;
    letter-spacing: 0.1px;
    margin-bottom: 4px;
}

.store-text strong {
    font-size: 13px;
    font-weight: 850;
    letter-spacing: -0.1px;
}

/* Common */
.section-title {
    margin: 0;
    text-align: center;
    color: #161A18;
    font-size: 28px;
    line-height: 32px;
    font-weight: 700;
}

.section-desc {
    margin: 7px auto 0;
    text-align: center;
    color: rgba(0, 0, 0, 0.6);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

/* Gentle */
.gentle {
    padding: 30px 0;
    background: #ffffff;
}

.feature-grid {
    margin-top: 44px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 44px;
}

.feature-card {
    position: relative;
    min-height: 126px;
    border-radius: 16px;
    padding: 38px 18px 20px;
}

.feature-card:nth-child(1) {
    background: #ffe9e5;
}

.feature-card:nth-child(2) {
    background: #e2f2ff;
}

.feature-card:nth-child(3) {
    background: #f2e6ff;
}

.feature-card:nth-child(4) {
    background: #fff5d8;
}

.feature-card:nth-child(5) {
    background: #e9f8ec;
}

.feature-card:nth-child(6) {
    background: #eff0ff;
}

.feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #ffffff;
    position: absolute;
    left: 18px;
    top: -22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.feature-icon img {
    object-fit: contain;
}

.feature-card h3 {
    margin: 0 0 10px;
    color: #1C1B24;
    font-size: 22px;
    line-height: 1.15;
    font-weight: 600;
}

.feature-card p {
    margin: 0;
    color: rgba(0, 0, 0, 0.5);
    font-size: 18px;
    letter-spacing: -0.33px;
    line-height: 28px;
    font-weight: 400;
}

/* Plans */
.plans {
    padding: 30px 0 44px;
    background: linear-gradient( 136deg, #FEF1F8 0%, #FFDDE9 100%);
    overflow: hidden;
}

.plans .container {
    padding-bottom: 0;
}

.phone-row {
    margin-top: 11px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-items: start;
}

.phone-card {
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    background: #ff4a99;
    box-shadow: 0 14px 28px rgba(255, 67, 145, 0.18);
}

.phone-card:nth-child(2),
.phone-card:nth-child(4) {
    margin-top: 28px;
}

.phone-card img {
    width: 100%;
    height: auto;
}

.bottom-flow {
    background: #ffffff;
    padding: 16px 0 44px;
}

.pace-img {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: none;
}

.steps-list {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.step-item {
    min-height: 78px;
    padding: 13px 16px 13px 12px;
    border: 1px solid #ECD1DD;
    border-radius: 12px;
    background: #ffffff;
    display: flex;
    align-items: center;
    gap: 13px;
    box-shadow: none;
}

.step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #FFDDE9;
    color: #FF327E;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.step-copy {
    flex: 1;
    min-width: 0;
}

.step-copy strong {
    display: block;
    color: #0D0A11;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 6px;
}

.step-copy span {
    display: block;
    color: rgba(0, 0, 0, 0.5);
    font-size: 13px;
    line-height: 18px;
    font-weight: 500;
}

.routine-card {
    margin-top: 26px;
    min-height: 190px;
    padding: 30px 18px 25px;
    border-radius: 14px;
    background: linear-gradient( 123deg, #FFB8CF 0%, #FD6B9C 100%);
    color: #ffffff;
    text-align: center;
}

.routine-card h2 {
    margin: 0;
    font-size: 28px;
    line-height: 32px;
    font-weight: 700;
}

.routine-card p {
    max-width: 310px;
    margin: 16px auto 0;
    color: #FFFFFF;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.download-footer {
    position: fixed;
    left: 50%;
    bottom: 0;
    z-index: 999;
    transform: translateX(-50%);
    width: 100%;
    max-width: 430px;
    padding: 17px 18px calc(12px + env(safe-area-inset-bottom));
    background: #FDE0E2;
    box-shadow: 0px -4px 20px 0px rgba(0,0,0,0.08);
}

.store-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: center;
}

.store-btn {
    height: 46px;
    border-radius: 999px;
    background: #17171c;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.store-btn img {
    width: 31px;
    height: 31px;
    object-fit: contain;
    flex: 0 0 auto;
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.store-text small {
    font-size: 8px;
    font-weight: 400;
    margin-bottom: 3px;
}

.store-text strong {
    font-size: 13px;
    font-weight: 600;
}

.home-indicator {
    width: 118px;
    height: 4px;
    margin: 13px auto 0;
    border-radius: 999px;
    background: #000000;
}

/* Small phones */
@media (max-width: 360px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .header-inner {
        padding-left: 16px;
        padding-right: 16px;
    }

    .brand {
        font-size: 14px;
    }

    .brand img {
        width: 34px;
        height: 34px;
    }

    .download-mini {
        height: 34px;
        padding: 0 14px;
        font-size: 10px;
    }

    .hero-content {
        left: 20px;
        right: 20px;
        top: 45px;
    }

    .hero-tag {
        height: 32px;
        padding: 0 14px;
        font-size: 12px;
        margin-bottom: 18px;
    }

    .hero-title {
        font-size: 40px;
        letter-spacing: -1.4px;
    }

    .hero-desc {
        max-width: 310px;
        font-size: 13px;
        margin-top: 17px;
    }

    .hero-chip {
        width: 235px;
        height: 39px;
        font-size: 15px;
    }

    .hero-store-btn {
        height: 45px;
        gap: 7px;
    }

    .hero-store-btn img {
        width: 22px;
        height: 22px;
    }

    .store-text small {
        font-size: 5px;
    }

    .store-text strong {
        font-size: 11px;
    }

    .phone-row {
        gap: 10px;
    }
}

/* Large phones */
@media (min-width: 390px) {
    
}

/* PC preview: keep mobile page centered */
@media (min-width: 768px) {
    body {
        background: #f7f7f7;
    }

    .page {
        box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04);
    }
}