:root {
    --primary-color: #ff8fa3;
    --secondary-color: #a0c4ff;
    --bg-light: #ffffff;
    --text-main: #444444;
    --glass-bg: rgba(255, 255, 255, 0.4);
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

html {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    /* 1. 요청하신 그라데이션 적용: 상단(보라/화이트) -> 하단(연분홍/베이지) */
    background: linear-gradient(180deg,
            rgba(196, 189, 247, 1) 0%,
            rgba(214, 137, 248, 0.05) 10%,
            rgba(255, 226, 127, 0.3) 50%,
            rgba(214, 137, 248, 0.5) 100%);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    filter: brightness(0.85);
    /* 밝은 테마에 맞춰 이미지 밝기 조정 */
}

.logo {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.05rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* 2. 모든 섹션 배경을 투명하게 하여 body 그라데이션 노출 */
.intro-section,
.banner-section,
.process-section,
.status-section {
    background-color: transparent !important;
}

.intro-section .text-box {
    max-width: 800px;
    margin: 0 auto;
}

.text-box img {
    width: 80%;
    height: 40vh;
    margin: 5% 0%;
}

.sub-title {
    color: #a55eea;
    /* 보라색 계열 포인트 */
    font-weight: 700;
    letter-spacing: 0.2rem;
    font-size: 0.9rem;
}

.banner-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.banner-card {
    flex: 1;
    max-width: 400px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: #fff;
}

.banner-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.banner-card:hover img {
    transform: scale(1.05);
}

.banner-text {
    flex: 1.5;
}

.banner-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.3;
    word-break: keep-all;
}

.banner-desc {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    font-weight: 400;
    word-break: keep-all;
}

.process-section {
    padding: 100px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.roadmap {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.roadmap::before {
    content: '';
    position: absolute;
    left: 50%;
    width: 2px;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
    transform: translateX(-50%);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 60px 40px;
    border-radius: 40px;
    text-align: center;
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}

.glass-card {
    margin-bottom: 20%;
}

.roadmap-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-bottom: 60px;
    position: relative;
}

.roadmap-item:nth-child(even) {
    flex-direction: row-reverse;
}

.roadmap-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: #fff;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--secondary-color);
    z-index: 2;
}

.roadmap-item.active .roadmap-dot {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 143, 163, 0.4);
    color: #fff;
}

.roadmap-content {
    width: 42%;
    padding: 30px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .roadmap::before {
        left: 20px;
        transform: none;
    }

    .roadmap-item,
    .roadmap-item:nth-child(even) {
        flex-direction: row !important;
        justify-content: flex-start;
        padding-left: 60px;
        margin-bottom: 40px;
    }

    .roadmap-dot {
        left: 20px;
        transform: translateX(-50%);
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .roadmap-content {
        width: 100%;
        text-align: left;
    }

    .roadmap-content h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .roadmap-content p {
        font-size: 0.95rem;
        word-break: keep-all;
    }
}

.loading-bar {
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.05);
    margin: 30px 0;
    overflow: hidden;
    border-radius: 10px;
}

.progress {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #5dacff);
    animation: loading 2s infinite ease-in-out;
}

@keyframes loading {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

footer {
    padding: 10px 10px;
    background-color: transparent;
    background-color: #000;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.copyright {
    margin-bottom: 10px;

    font-size: 0.8rem;
    color: #999;
}

.veno-logo-section {
    height: 100vh;
    background-color: #000;
    background-attachment: fixed;
}

.veno-studio {
    position: relative;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    text-align: center;
}

.veno-studio p {
    color: #fff;
    font-size: 3.5rem;
    font-family: 'Noto Sans KR';
    font-weight: 900;
}

.veno-logo {
    top: 50%;
    width: 100%;
    height: 40vh;
}

@media (max-width: 768px) {
    html {
        width: 100%;
    }

    .banner-flex.row-reverse {
        flex-direction: column !important;
    }

    .text-box img {
        text-align: center;
        width: 100%;
        height: 25vh;
        margin: 5% 0%;
    }

    .banner-flex.row-reverse .banner-text {
        text-align: left;
    }

    .banner-flex {
        flex-direction: column !important;
        align-items: flex-start;
        text-align: left;
        gap: 30px;
    }

    .banner-card {
        order: 1;
        max-width: 100%;
        width: 100%;
    }

    .banner-text {
        order: 2;
        width: 100%;
        padding: 0;
    }

    .banner-title {
        font-size: 1.8rem;
    }

    .status-section {
        width: 100%;
        margin-left: 0;
        padding: 60px 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .veno-logo {
        top: 50%;
        width: 100%;
        height: 30vh;
    }

    .veno-studio p {
        font-size: 2.5rem;
    }

    .glass-card {
        width: 100%;
        max-width: 100%;
        padding: 40px 20px;
        margin: 0;
    }

    footer {
        margin-left: 0;
        padding: 60px 20px;
    }
}