@font-face {
    font-family: "Outfit";
    src: url("../fonts/Outfit-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Outfit";
    src: url("../fonts/Outfit-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Outfit";
    src: url("../fonts/Outfit-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Outfit";
    src: url("../fonts/Outfit-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Outfit";
    src: url("../fonts/Outfit-ExtraBold.woff2") format("woff2");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    font-family: inherit;
}
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #ffffff;
}
body {
    overflow-x: hidden;
}
a {
    color: inherit;
    text-decoration: none;
}
button {
    font-family: inherit;
    border: none;
    cursor: pointer;
}
.page {
    width: 100%;
    min-width: 1200px;
    background: #ffffff;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
/* Header */
 .header {
    height: 80px;
    background: #ffffff;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    /* position: sticky;
    top: 0;
    z-index: 20; */
}
.header-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: #121212;
}
.brand-logo {
    width: 49px;
    height: 49px;
    object-fit: cover;
    display: block;
}
.brand-name {
    color: #161A18;
    font-size: 20px;
    font-weight: 600;
}
.download-top {
    min-width: 132px;
    height: 39px;
    padding: 0 18px;
    border-radius: 8px;
    background: #18151A;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}
/* Hero */
.hero {
    width: 100%;
    height: calc(100vw * 800 / 1440);
    max-height: 800px;
    background-image: url("../images/banner.png");
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}
.hero-content {
    padding-top: 10px;
}
.tag {
    display: inline-flex;
    align-items: center;
    height: 50px;
    padding: 0 18px;
    border-radius: 11px;
    background: #FF327E;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
}
.hero-title {
    margin: 0;
    color: #161A18;
    font-size: 88px;
    line-height: 90px;
}
.hero-title .title01 {
    font-weight: 700;
}
.hero-title .title02 {
    font-weight: 400;
}
.hero-desc {
    width: 520px;
    margin: 20px 0 34px;
    font-size: 22px;
    line-height: 32px;
    font-weight: 400;
    color: #161A18;
}
.store-row {
    display: flex;
    align-items: center;
    gap: 24px;
}
.store-btn {
    border-radius: 999px;
    background: #18181d;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: transform 0.2s ease, opacity 0.2s ease;
    padding: 10px 41px 12px 31px;
}
.store-btn:hover {
    transform: translateY(-2px);
    opacity: 0.94;
}
.store-btn img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}
.store-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}
.store-copy small {
    font-size: 11.56px;
    font-weight: 400;
    letter-spacing: 0.4px;
    opacity: 0.85;
    margin-bottom: 4px;
}
.store-copy strong {
    font-size: 18.78px;
    font-weight: 600;
    letter-spacing: -0.2px;
}
.chips {
    display: flex;
    gap: 14px;
    margin-top: 36px;
}
.chip {
    height: 34px;
    padding: 0 18px;
    border-radius: 7px;
    background: #ffffff;
    color: #17171b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
/* Features */
 .features-section {
    padding: 92px 0 104px;
    background: #ffffff;
}
.section-title {
    margin: 0;
    text-align: center;
    font-size: 60px;
    line-height: 70px;
    font-weight: 700;
    color: #161A18;
}
.section-desc {
    margin: 26px auto 0;
    text-align: center;
    font-size: 24px;
    line-height: 32px;
    color: rgba(0, 0, 0, 0.6);;
    font-weight: 400;
}
.feature-grid {
    width: 100%;
    margin: 70px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 61px 32px;
    justify-items: center;
    padding: 0 33px;
}
.feature-card {
    width: 342px;
    height: 210px;
    border-radius: 14px;
    padding: 56px 28px 28px;
    position: relative;
}
.feature-card:nth-child(1) {
    background: #ffe9e5;
}
.feature-card:nth-child(2) {
    background: #e1f2ff;
}
.feature-card:nth-child(3) {
    background: #f3e7ff;
}
.feature-card:nth-child(4) {
    background: #fff5d8;
}
.feature-card:nth-child(5) {
    background: #e9f8ec;
}
.feature-card:nth-child(6) {
    background: #eff0ff;
}
.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    position: absolute;
    left: 28px;
    top: -24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}
.feature-card h3 {
    margin: 0 0 16px;
    line-height: 1.2;
    font-weight: 600;
    font-size: 28px;
    color: #1C1B24;
}
.feature-card p {
    margin: 0;
    color: rgba(0, 0, 0, 0.5);
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    letter-spacing: -0.33px;
}
/* Plans */
 .plans-section {
    background: #ffe1ec;
    padding: 80px 0 96px;
}
.plans-desc {
    
}
.phone-row {
    margin-top: 55px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    align-items: flex-start;
}
.phone-img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 16px 20px rgba(0, 0, 0, 0.16));
}
.phone-row .phone-img:nth-child(2),
.phone-row .phone-img:nth-child(4) {
    margin-top: 48px;
}
.mock-phone {
    width: 192px;
    height: 405px;
    border: 9px solid #0b0b0d;
    border-radius: 34px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 16px 20px rgba(0, 0, 0, 0.16);
    margin-top: 86px;
}
.mock-screen {
    width: 100%;
    height: 100%;
    padding: 22px 12px;
    background: linear-gradient(180deg, #fff3f8 0%, #ffffff 100%);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mock-pill {
    width: 72px;
    height: 8px;
    border-radius: 999px;
    background: #111;
    margin: 0 auto 10px;
}
.mock-box {
    height: 54px;
    border-radius: 12px;
    background: #ffdce9;
}
.mock-box:nth-child(3) {
    background: #fff3d9;
}
.mock-box:nth-child(4) {
    background: #e6f4ff;
}
.mock-box:nth-child(5) {
    background: #ffe2e2;
}
.pace-row {
    margin-top: 126px;
    display: grid;
    grid-template-columns: 1.1fr 0.82fr;
    gap: 42px;
    align-items: center;
}
.pace-img {
    width: 100%;
    border-radius: 20px;
    display: block;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.1);
}
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.step-item {
    height: 89px;
    padding: 20px 0px 24px 24px;
    border-radius: 999px;
    background: #ffffff;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
}
.step-num {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #FFDDE9;
    color: #FF327E;
    font-size: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}
.step-text strong {
    display: block;
    font-size: 20px;
    font-weight: 500;
    color: #0D0A11;
    margin-bottom: 5px;
}
.step-text span {
    display: block;
    font-size: 12px;
    color: rgba(13, 10, 17, 0.5);
    font-weight: 500;
}
/* CTA */
 .cta {
    padding: 88px 0 94px;
    background: radial-gradient( 322.66% 57.01% at 56.39% 59.69%, #FD6B9C 0%, #FFB8CF 100%);
    color: #ffffff;
    text-align: center;
}
.cta h2 {
    margin: 0;
    font-size: 60px;
    line-height: 70px;
    font-weight: 700;
}
.cta p {
    margin: 28px auto 38px;
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.96);
}
.cta .store-row {
    justify-content: center;
}
/* Responsive */
 @media (max-width: 1280px) {
    .page {
        min-width: 1024px;
    }
    .hero-title {
        font-size: 66px;
    }
    .hero-desc {
        width: 470px;
    }
    .phone-card {
        height: 520px;
    }
    .mock-phone {
        width: 172px;
        height: 365px;
    }
}
@media (max-width: 768px) {
    .page {
        min-width: 0;
    }
    .header {
        height: 64px;
    }
    .download-top {
        min-width: 110px;
        height: 34px;
        padding: 0 14px;
    }
    .hero {
        min-height: auto;
        padding: 70px 0 360px;
        background-position: center bottom;
    }
    .hero-content {
        width: 100%;
    }
    .hero-title {
        font-size: 46px;
        letter-spacing: -1.6px;
    }
    .hero-desc {
        width: 100%;
        font-size: 15px;
    }
    .store-row {
        gap: 12px;
        flex-wrap: wrap;
    }
    .store-btn {
        width: 160px;
    }
    .chips {
        flex-wrap: wrap;
    }
    .features-section, .plans-section, .cta {
        padding: 64px 0;
    }
    .section-title, .cta h2 {
        font-size: 34px;
    }
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }
    .phone-row {
        grid-template-columns: 1fr 1fr;
    }
    .pace-row {
        grid-template-columns: 1fr;
    }
}