
:root {
    --ocean: #0a2342;
    --deep: #061529;
    --sky: #1a6fa8;
    --aqua: #00c2cc;
    --gold: #f0c040;
    --sand: #fdf6e3;
    --white: #ffffff;
    --muted: rgba(255, 255, 255, 0.55);
    --glass: rgba(255, 255, 255, 0.07);
    --glass-border: rgba(255, 255, 255, 0.14);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

main.sub {
    font-family: 'Noto Sans KR', sans-serif;
    background: var(--deep);
    color: var(--white);
    overflow-x: hidden;
}
main.sub section.new_section.titleBox_none {
    margin-top: 0px !important;
}

body div.wrap:not(.m_myMain) .product-container + main.sub {
    padding-top: calc(var(--safeAreaTop2) + 90px); 
    padding-top: calc(var(--safeAreaTop1) + 90px); 
}

/* ─── HERO ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px 120px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(26, 111, 168, 0.45) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(0, 194, 204, 0.18) 0%, transparent 60%),
        linear-gradient(170deg, #061529 0%, #0a2342 55%, #0d1e3a 100%);
}

/* animated wave lines */
.waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 220px;
    overflow: hidden;
    pointer-events: none;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 160'%3E%3Cpath fill='%230a2342' fill-opacity='0.6' d='M0,80 C360,160 1080,0 1440,80 L1440,160 L0,160 Z'/%3E%3C/svg%3E") repeat-x bottom;
    background-size: 50% 100%;
    animation: waveMove 10s linear infinite;
    opacity: 0.5;
}

.wave:nth-child(2) {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 160'%3E%3Cpath fill='%231a6fa8' fill-opacity='0.3' d='M0,40 C480,130 960,10 1440,60 L1440,160 L0,160 Z'/%3E%3C/svg%3E") repeat-x bottom;
    background-size: 50% 100%;
    animation: waveMove 14s linear infinite reverse;
    opacity: 0.4;
}

@keyframes waveMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* floating dots */
.dots {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.dot {
    position: absolute;
    border-radius: 50%;
    background: var(--aqua);
    opacity: 0;
    animation: floatDot 8s ease-in-out infinite;
}

@keyframes floatDot {
    0% {
        opacity: 0;
        transform: translateY(0) scale(1);
    }

    30% {
        opacity: 0.35;
    }

    70% {
        opacity: 0.2;
    }

    100% {
        opacity: 0;
        transform: translateY(-120px) scale(0.5);
    }
}

/* hero badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 194, 204, 0.15);
    border: 1px solid rgba(0, 194, 204, 0.4);
    color: var(--aqua);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 28px;
    animation: fadeDown 0.8s ease both;
}

.hero-badge svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.hero-title {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: clamp(38px, 8vw, 76px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 12px;
    animation: fadeDown 0.9s 0.1s ease both;
}

.hero-title span {
    background: linear-gradient(135deg, var(--aqua), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(15px, 2.5vw, 19px);
    color: var(--muted);
    font-weight: 300;
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 48px;
    animation: fadeDown 1s 0.2s ease both;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold);
    color: var(--deep);
    font-size: 13px;
    font-weight: 700;
    padding: 7px 18px;
    border-radius: 100px;
    animation: fadeDown 1.1s 0.3s ease both;
}

.scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    font-size: 11px;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

.scroll-hint svg {
    width: 20px;
    opacity: 0.5;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── CABLE CAR ICON GRAPHIC ─── */
.cable-art {
    position: absolute;
    top: 0;
    right: 0;
    width: min(500px, 55%);
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.12;
}

.cable-art svg {
    width: 100%;
    height: 100%;
}

/* ─── SECTION WRAPPER ─── */
.section {
    padding: 100px 24px;
    position: relative;
}

.section-inner {
    max-width: 800px;
    margin: 0 auto;
}

.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--aqua);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-label::before,
.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 194, 204, 0.4));
}

.section-label::after {
    background: linear-gradient(to left, transparent, rgba(0, 194, 204, 0.4));
}

.section-title {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

/* ─── STEPS ─── */
.steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 0 28px;
    position: relative;
}

/* vertical line */
.step-item:not(:last-child) .step-line::after {
    content: '';
    position: absolute;
    top: 60px;
    left: 29px;
    width: 2px;
    height: calc(100% + 0px);
    background: linear-gradient(to bottom, rgba(0, 194, 204, 0.5), rgba(0, 194, 204, 0.05));
}

.step-line {
    position: relative;
}

.step-num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sky), var(--aqua));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 0 0 4px rgba(0, 194, 204, 0.15), 0 8px 24px rgba(0, 194, 204, 0.25);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.step-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 28px 32px;
    margin-bottom: 32px;
    backdrop-filter: blur(8px);
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
    border-color: rgba(0, 194, 204, 0.4);
    transform: translateX(4px);
    box-shadow: 0 12px 40px rgba(0, 194, 204, 0.1);
}

.step-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--aqua);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.step-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-name svg {
    width: 20px;
    height: 20px;
    fill: var(--aqua);
    flex-shrink: 0;
}

.step-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.75;
}

.step-desc li {
    list-style: none;
    padding-left: 0;
    margin-bottom: 8px;
}

.step-desc li::before {
    content: none;
}

.step-desc li+li {
    margin-top: 6px;
}

.step-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 194, 204, 0.12);
    border: 1px solid rgba(0, 194, 204, 0.25);
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 13px;
    color: var(--aqua);
    font-weight: 500;
    margin-top: 14px;
    word-break: break-all;
    transition: background 0.2s, border-color 0.2s;
}

.step-pill:hover {
    background: rgba(0, 194, 204, 0.22);
    border-color: rgba(0, 194, 204, 0.5);
}

/* ─── DIVIDER ─── */
.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 0 auto;
    max-width: 700px;
}

/* ─── BRING SECTION ─── */
.bring-section {
    padding: 80px 24px;
    background: linear-gradient(160deg, rgba(10, 35, 66, 0.9), rgba(6, 21, 41, 0.95));
}

.bring-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 0;
}

.bring-card {
    background: linear-gradient(135deg, rgba(26, 111, 168, 0.2), rgba(0, 194, 204, 0.08));
    border: 1px solid rgba(0, 194, 204, 0.25);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.bring-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 194, 204, 0.12), transparent);
}

.bring-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 194, 204, 0.15);
}

.bring-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sky), var(--aqua));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(0, 194, 204, 0.3);
}

.bring-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.bring-num {
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--aqua);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.bring-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 10px;
}

.bring-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

/* ─── NOTICE ─── */
.notice-section {
    padding: 80px 24px 100px;
}

.notice-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.notice-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 20px 24px;
    transition: background 0.3s;
}

.notice-item:hover {
    background: rgba(255, 255, 255, 0.07);
}

.notice-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
    background: rgba(240, 192, 64, 0.15);
    border: 1px solid rgba(240, 192, 64, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.notice-dot svg {
    width: 16px;
    height: 16px;
    fill: var(--gold);
}

.notice-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.notice-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.65;
}

.notice-text strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* ─── FOOTER ─── */
.footer {
    background: var(--deep);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 40px 24px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.25);
}

.footer strong {
    color: rgba(255, 255, 255, 0.45);
}

/* ─── MOBILE ─── */
@media (max-width: 600px) {
    .step-item {
        grid-template-columns: 44px 1fr;
        gap: 0 18px;
    }

    .step-num {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    .step-item:not(:last-child) .step-line::after {
        left: 21px;
        top: 44px;
    }

    .step-card {
        padding: 22px 20px;
    }

    .bring-card {
        padding: 28px 20px;
    }
}