/* MVP Page Styles */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");

* {
    box-sizing: border-box;
}

body {
    font-family: "Pretendard", sans-serif;
    color: #ffffff;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mvp-hero {
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mvp-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(closest-side, rgba(0, 212, 255, 0.18), transparent 60%),
                radial-gradient(closest-side, rgba(0, 153, 204, 0.16), transparent 65%);
    opacity: 0.9;
    pointer-events: none;
}

.mvp-hero .hero-content {
    position: relative;
    z-index: 1;
}

.mvp-hero .hero-title {
    margin: 0 0 18px;
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: -0.6px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mvp-hero .hero-subtitle {
    margin: 0 auto 12px;
    max-width: 900px;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
}

.mvp-hero .hero-subtitle strong {
    color: #00d4ff;
}

.mvp-hero .hero-lead {
    margin: 0 auto 26px;
    max-width: 900px;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.8;
}

.mvp-hero .hero-lead strong {
    color: #00d4ff;
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    padding: 14px 26px;
    font-weight: 800;
}

.btn-ghost {
    background: transparent;
    border: 2px solid rgba(0, 212, 255, 0.45);
    color: #00d4ff;
}

.mvp-section {
    padding: 90px 0;
}

.mvp-section-accent {
    background: rgba(0, 212, 255, 0.08);
    border-top: 1px solid rgba(0, 212, 255, 0.22);
    border-bottom: 1px solid rgba(0, 212, 255, 0.22);
    backdrop-filter: blur(10px);
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header h2 {
    margin: 0 0 14px;
    font-size: 2.4rem;
    font-weight: 900;
    letter-spacing: -0.4px;
    color: #ffffff;
}

.section-header p {
    margin: 0 auto;
    max-width: 860px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
    font-size: 1.05rem;
}

.section-header p strong {
    color: #00d4ff;
}

.mvp-card {
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 34px;
    border: 1px solid rgba(0, 212, 255, 0.18);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.mvp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.mvp-item {
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 18px;
    padding: 22px 22px;
}

.mvp-title {
    color: white;
    font-weight: 900;
    font-size: 1.1rem;
    margin: 0 0 10px;
}

.mvp-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
}

.mvp-footnote {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.7;
    text-align: center;
}

.mvp-footnote strong {
    color: #00d4ff;
}

.build-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.build-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 26px 22px;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.build-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 212, 255, 0.35);
    box-shadow: 0 12px 30px rgba(0, 212, 255, 0.10);
}

.build-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.10);
    border: 1px solid rgba(0, 212, 255, 0.25);
    margin-bottom: 14px;
    font-size: 1.3rem;
    color: #00d4ff;
}

.build-card h3 {
    margin: 0 0 10px;
    font-size: 1.25rem;
    font-weight: 900;
    color: #ffffff;
}

.build-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.75;
}

.mvp-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.mvp-step {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 26px 22px;
}

.mvp-step-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(0, 212, 255, 0.12);
    border: 1px solid rgba(0, 212, 255, 0.28);
    color: #00d4ff;
    font-weight: 900;
    margin-bottom: 12px;
}

.mvp-step h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 900;
}

.mvp-step p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.75;
}

.mvp-cta {
    padding: 90px 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 153, 204, 0.1) 100%);
}

.cta-card {
    max-width: 980px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.22);
    border-radius: 20px;
    padding: 46px 34px;
    text-align: center;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.cta-card h2 {
    margin: 0 0 14px;
    color: white;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.3px;
}

.cta-card p {
    margin: 0 auto 22px;
    max-width: 820px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .build-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mvp-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mvp-hero {
        padding: 100px 0 60px;
    }

    .mvp-hero .hero-title {
        font-size: 2.4rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .mvp-grid {
        grid-template-columns: 1fr;
    }

    .build-grid,
    .mvp-process-grid {
        grid-template-columns: 1fr;
    }

    .cta-card {
        padding: 34px 18px;
    }
}

