:root {
    --bg: #0b0b0c;
    --bg-2: #121215;
    --text: #ffffff;
    --muted: #cfcfd6;
    --pink: #ff2ea6;
    --pink-2: #ff63bf;
    --white: #ffffff;
    --card: #16161b;
    --stroke: #24242b;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
    color: var(--text);
    background: linear-gradient(180deg, var(--bg) 0%, #09090b 100%);
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(11, 11, 12, .8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--stroke);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    gap: 16px
}

.brand {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: .2px
}

.nav {
    display: flex;
    gap: 20px
}

.nav-link {
    color: var(--muted);
    text-decoration: none
}

.nav-link:hover {
    color: var(--white)
}

.hamburger {
    display: none;
    gap: 4px;
    background: transparent;
    border: 0;
    padding: 8px
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white)
}

.btn {
    appearance: none;
    border: 0;
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .08s ease, box-shadow .2s ease
}

.btn:active {
    transform: translateY(1px)
}

.btn-primary {
    color: #0a0a0b;
    font-size: 1.2rem;
    background: linear-gradient(90deg, var(--pink), var(--pink-2));
    box-shadow: 0 8px 24px rgba(255, 46, 166, .25)
}

.btn-outline {
    color: var(--white);
    background: transparent;
    border: 1px solid var(--stroke)
}

.btn-ghost {
    color: var(--white);
    background: transparent;
    border: 0;
    text-decoration: none
}

.w-full {
    width: 100%
}

.mt-3 {
    margin-top: .75rem
}

.mobile-menu {
    background: var(--bg-2);
    border-bottom: 1px solid var(--stroke)
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px 20px
}

.mobile-link {
    color: var(--muted);
    text-decoration: none
}

.hero {
    padding: 64px 0 24px
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 32px;
    align-items: center
}

.hero-title {
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    margin: 0 0 10px
}

.hero-sub {
    color: var(--muted);
    margin: 0 0 20px
}

.hero-cta {
    display: flex;
    gap: 12px;
    margin: 16px 0 24px
}

.hero-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    color: var(--muted)
}

.hero-bullets strong {
    color: var(--white)
}

.logo-wrap {
    display: flex;
    aspect-ratio: 1/1
}

.logo-wrap img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 50px;
}

.progress-sec {
    padding: 32px 0 24px
}

.card {
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: 16px;
    padding: 20px
}

.card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px
}

.card-head h2 {
    margin: 0;
    font-size: clamp(20px, 2.5vw, 28px)
}

.tag {
    border: 1px solid var(--stroke);
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--muted)
}

.muted {
    color: var(--muted);
    margin: 0 0 16px
}

.progress-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 8px 0 12px
}

.stat {
    background: rgba(255, 255, 255, .02);
    border: 1px solid var(--stroke);
    border-radius: 12px;
    padding: 12px
}

.stat .label {
    color: var(--muted);
    font-size: 12px
}

.stat .value {
    display: block;
    font-weight: 800;
    margin-top: 4px
}

.progress-bar {
    height: 14px;
    background: #0f0f13;
    border: 1px solid var(--stroke);
    border-radius: 999px;
    overflow: hidden
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--pink), var(--pink-2));
    transition: width .6s cubic-bezier(.22, 1, .36, 1)
}

.progress-actions {
    display: flex;
    gap: 10px;
    margin-top: 14px
}

.faq {
    padding: 40px 0
}

.section-title {
    font-size: clamp(22px, 3vw, 32px);
    margin: 0 0 16px
}

.faq-item {
    border: 1px solid var(--stroke);
    border-radius: 12px;
    padding: 12px 14px;
    margin: 10px 0;
    background: rgba(255, 255, 255, .02)
}

.faq-item>summary {
    cursor: pointer;
    font-weight: 700
}

.faq-item>p {
    color: var(--muted)
}

.footer {
    border-top: 1px solid var(--stroke);
    padding: 18px 0;
    background: var(--bg-2)
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px
}

.footer a {
    color: var(--muted);
    text-decoration: none
}

.footer a:hover {
    color: var(--white)
}

@media (max-width:960px) {
    .nav {
        display: none
    }

    .hamburger {
        display: inline-flex
    }

    .hero-grid {
        grid-template-columns: 1fr
    }

    .logo-wrap {
        max-width: 380px;
        margin: 0 auto
    }

    .progress-stats {
        grid-template-columns: 1fr
    }
}