/* 타이포: 본문 = Noto Sans KR (../notosans/), 제목·강조 = Paperlogy (../paperlogy/) */
@font-face {
    font-family: "Noto Sans KR";
    src: url("../notosans/NotoSansKR-Regular.ttf") format("truetype");
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Noto Sans KR";
    src: url("../notosans/NotoSansKR-Medium.ttf") format("truetype");
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "Noto Sans KR";
    src: url("../notosans/NotoSansKR-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "Noto Sans KR";
    src: url("../notosans/NotoSansKR-Bold.ttf") format("truetype");
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "Noto Sans KR";
    src: url("../notosans/NotoSansKR-Black.ttf") format("truetype");
    font-weight: 900;
    font-display: swap;
}

/* 제목·강조 — paperlogy */
@font-face {
    font-family: Paperlogy;
    src: url("../paperlogy/Paperlogy-4Regular.ttf") format("truetype");
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: Paperlogy;
    src: url("../paperlogy/Paperlogy-5Medium.ttf") format("truetype");
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: Paperlogy;
    src: url("../paperlogy/Paperlogy-6SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: Paperlogy;
    src: url("../paperlogy/Paperlogy-7Bold.ttf") format("truetype");
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: Paperlogy;
    src: url("../paperlogy/Paperlogy-8ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: Paperlogy;
    src: url("../paperlogy/Paperlogy-9Black.ttf") format("truetype");
    font-weight: 900;
    font-display: swap;
}

* {
    box-sizing: border-box;
}

/* 모바일 전용 / 데스크톱 전용 줄바꿈 */
@media (min-width: 768px) {
    br.br-mobile {
        display: none;
    }
}

@media (max-width: 767px) {
    br.br-desktop {
        display: none;
    }
}

body {
    background-color: #050505;
    color: #fff;
    font-family: "Noto Sans KR", system-ui, sans-serif;
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* 투명 헤더 — 히어로 배경이 그대로 비침 */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: transparent;
    pointer-events: none;
}

/* PC: 로고는 왼쪽, 화면 끝이 아니라 일반적인 콘텐츠 정렬(최대폭 기준 여백) */
@media (min-width: 1024px) {
    .site-header {
        justify-content: flex-start;
        padding: 1rem max(1.5rem, calc((100vw - 1280px) / 2));
    }
}

.site-header a,
.site-header button {
    pointer-events: auto;
}

.site-header__logo {
    display: block;
    height: clamp(36px, 8vw, 48px);
    width: auto;
    object-fit: contain;
}

/* 모바일: 우측 상단 메뉴 */
.site-header__menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 0.65rem;
    background: rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.site-header__menu-btn:hover {
    background: rgba(15, 23, 42, 0.55);
    border-color: rgba(255, 255, 255, 0.65);
}

.site-header__menu-btn:focus-visible {
    outline: 2px solid #38bdf8;
    outline-offset: 2px;
}

.site-header__menu-bars {
    position: relative;
    display: block;
    width: 1.25rem;
    height: 2px;
    border-radius: 1px;
    background: #fff;
    box-shadow:
        0 -6px 0 #fff,
        0 6px 0 #fff;
}

@media (max-width: 1023px) {
    .site-header__menu-btn {
        display: inline-flex;
    }
}

/* 모바일: 우측 슬라이드 메뉴 */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 200;
    visibility: hidden;
    pointer-events: none;
    transition: visibility 0.32s ease;
}

body.mobile-nav-open .mobile-nav {
    visibility: visible;
    pointer-events: auto;
}

.mobile-nav__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    transition: opacity 0.32s ease;
}

body.mobile-nav-open .mobile-nav__backdrop {
    opacity: 1;
}

.mobile-nav__panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    width: min(88vw, 20rem);
    max-width: 100%;
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
    border-left: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.45);
    transform: translateX(100%);
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

body.mobile-nav-open .mobile-nav__panel {
    transform: translateX(0);
}

.mobile-nav__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.85rem 1rem 0.65rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    flex-shrink: 0;
}

.mobile-nav__title {
    margin: 0;
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    color: #e2e8f0;
}

.mobile-nav__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: none;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: background 0.2s ease;
}

.mobile-nav__close:hover {
    background: rgba(255, 255, 255, 0.16);
}

.mobile-nav__close:focus-visible {
    outline: 2px solid #38bdf8;
    outline-offset: 2px;
}

.mobile-nav__close-x {
    position: relative;
    display: block;
    width: 1.15rem;
    height: 1.15rem;
}

.mobile-nav__close-x::before,
.mobile-nav__close-x::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.15rem;
    height: 2px;
    border-radius: 1px;
    background: #f8fafc;
}

.mobile-nav__close-x::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-nav__close-x::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-nav__body {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    padding: 0.75rem 1rem 1rem;
    -webkit-overflow-scrolling: touch;
}

.mobile-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.mobile-nav__link {
    display: block;
    padding: 0.62rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.06);
    color: #f8fafc;
    text-align: center;
    text-decoration: none;
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
    opacity: 0.92;
}

.mobile-nav__link:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.12);
}

.mobile-nav__link.is-active {
    opacity: 1;
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.85);
    box-shadow: 0 0 16px rgba(56, 189, 248, 0.2);
}

/* 밝은 배경 섹션일 때(인디케이터 다크 모드와 동기) */
.mobile-nav--dark .mobile-nav__link {
    border-color: rgba(15, 23, 42, 0.45);
    background: rgba(255, 255, 255, 0.88);
    color: #0f172a;
    opacity: 1;
}

.mobile-nav--dark .mobile-nav__link:hover {
    background: #fff;
}

.mobile-nav--dark .mobile-nav__link.is-active {
    background: #0f172a;
    color: #fff;
    border-color: #0f172a;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.25);
}

.mobile-nav__footer {
    flex-shrink: 0;
    padding: 1rem 1.25rem max(1.25rem, env(safe-area-inset-bottom, 0px));
    text-align: center;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
}

.mobile-nav__footer-logo {
    display: block;
    width: clamp(6.5rem, 42vw, 9rem);
    height: auto;
    max-height: 28vh;
    margin: 0 auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 20px rgba(56, 189, 248, 0.15));
}

@media (prefers-reduced-motion: reduce) {
    .mobile-nav,
    .mobile-nav__backdrop,
    .mobile-nav__panel {
        transition-duration: 0.01ms;
    }
}

/* PC 우측 중앙 섹션 인디케이터 */
.section-indicator {
    display: none;
}

@media (min-width: 1024px) {
    .section-indicator {
        position: fixed;
        right: clamp(1rem, 2.2vw, 2rem);
        /* 하단 소셜·TOP 도킹과 겹침 방지: 시각 중심을 위로 이동 */
        top: calc(50% - min(11vh, 8.5rem));
        z-index: 120;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        gap: 0.28rem;
        max-height: none;
        overflow: visible;
        padding: 0;
    }

    .section-indicator__item {
        flex-shrink: 0;
        min-width: clamp(5.7rem, 6.1vw, 6.8rem);
        padding: 0.32rem 0.55rem;
        border-radius: 9999px;
        border: 1px solid rgba(255, 255, 255, 0.85);
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
        text-align: center;
        text-decoration: none;
        font-family: Paperlogy, "Noto Sans KR", sans-serif;
        font-weight: 600;
        font-size: clamp(0.61rem, 0.67vw, 0.69rem);
        letter-spacing: 0.03em;
        transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
        opacity: 0.72;
    }

    .section-indicator__item:hover {
        opacity: 1;
        transform: translateX(-3px);
    }

    .section-indicator__item.is-active {
        opacity: 1;
        background: rgba(255, 255, 255, 0.24);
        box-shadow: 0 0 18px rgba(255, 255, 255, 0.18);
    }

    /* 흰 배경 섹션에서는 인디케이터를 검정 계열로 전환 */
    .section-indicator.section-indicator--dark .section-indicator__item {
        border-color: rgba(15, 23, 42, 0.72);
        background: rgba(255, 255, 255, 0.7);
        color: #0f172a;
        box-shadow: 0 1px 8px rgba(15, 23, 42, 0.06);
        opacity: 0.85;
    }

    .section-indicator.section-indicator--dark .section-indicator__item.is-active {
        background: #0f172a;
        color: #fff;
        box-shadow: 0 0 18px rgba(15, 23, 42, 0.24);
        opacity: 1;
    }

}

/* —— 구조 섹션 아래: 제품 홍보 영상 —— */
.section-product-video {
    background: linear-gradient(165deg, #020617 0%, #030b1f 48%, #020617 100%);
    color: #e2e8f0;
}

.section-product-video__inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: clamp(1.5rem, 4vw, 2.25rem) max(0.75rem, calc((100vw - 1600px) / 2));
    text-align: center;
}

.section-product-video__eyebrow {
    margin: 0 0 0.4rem;
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #93c5fd;
}

.section-product-video__title {
    margin: 0 0 1.1rem;
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 800;
    font-size: clamp(1.45rem, 3vw, 2rem);
    line-height: 1.25;
    color: #f8fafc;
}

.section-product-video__frame {
    width: min(100vw, 1600px);
    margin-left: calc(50% - min(50vw, 800px));
    margin-right: calc(50% - min(50vw, 800px));
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: #000;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.28);
}

.section-product-video__media {
    display: block;
    width: 100%;
    height: auto;
    max-height: min(88vh, 1080px);
    background: #000;
}

/* 히어로 — 배경 + 투자 유도 카피 */
.hero-viewport {
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: clamp(4.5rem, 9vh, 6.5rem);
    padding-bottom: clamp(5.5rem, 14vh, 9rem);
}

/* 마우스 추적 커서(스크립트로 활성화, PC 포인터만) */
@media (hover: hover) and (pointer: fine) {
    .hero-viewport.hero-viewport--custom-cursor {
        cursor: none;
    }

    .hero-viewport.hero-viewport--custom-cursor .hero-cta__btn {
        cursor: none;
    }
}

.hero-cursor-follower {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 50;
    width: 4.5rem;
    height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.35);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.12s ease, visibility 0.12s ease;
    will-change: transform;
}

.hero-cursor-follower.is-visible {
    opacity: 1;
    visibility: visible;
}

.hero-cursor-follower__img {
    width: 62%;
    height: 62%;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
}

/* PC: 최소 높이 유지, 본문이 길면 섹션이 자연스럽게 늘어남 */
@media (min-width: 1024px) {
    .hero-viewport {
        min-height: 930px;
    }
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    background: #050505;
}

.hero-background__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* 텍스트 가독성용 — 중앙 카피 기준 */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: radial-gradient(
        ellipse 90% 80% at 50% 45%,
        rgba(5, 5, 5, 0.88) 0%,
        rgba(5, 5, 5, 0.5) 55%,
        rgba(5, 5, 5, 0.22) 100%
    );
}

@media (max-width: 767px) {
    .hero-overlay {
        background: radial-gradient(
            ellipse 120% 85% at 50% 40%,
            rgba(5, 5, 5, 0.82) 0%,
            rgba(5, 5, 5, 0.5) 55%,
            rgba(5, 5, 5, 0.3) 100%
        );
    }
}

.hero-inner {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: max(1.5rem, calc((100vw - 1280px) / 2));
    padding-right: max(1.5rem, calc((100vw - 1280px) / 2));
    text-align: center;
}

.hero-main-logo {
    width: clamp(64px, 10vw, 112px);
    height: auto;
    display: block;
    margin: 0 auto 0.85rem;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
    animation: hero-logo-float 3.2s ease-in-out infinite;
    will-change: transform;
}

@keyframes hero-logo-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-brand {
    margin: 0 0 0.75rem;
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 900;
    font-size: clamp(2.25rem, 6.5vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #fff;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

@media (max-width: 768px) {
    .hero-main-logo {
        margin-bottom: 0.7rem;
        animation-duration: 3.6s;
    }
}

.hero-tagline {
    margin: 0 0 1.75rem;
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 600;
    font-size: clamp(1rem, 2.4vw, 1.35rem);
    line-height: 1.45;
    color: #7dd3fc;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.hero-copy {
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    font-family: "Noto Sans KR", system-ui, sans-serif;
}

.hero-copy p {
    margin: 0 0 1rem;
    font-weight: 400;
    font-family: inherit;
    font-size: clamp(0.9375rem, 2vw, 1.0625rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.hero-copy p:last-child {
    margin-bottom: 0;
}

.hero-cta {
    margin-top: 2rem;
}

.hero-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.25rem;
    padding: 0.875rem 2rem;
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 700;
    font-size: clamp(0.9375rem, 2.1vw, 1.0625rem);
    letter-spacing: 0.02em;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    background: linear-gradient(135deg, #0066ff 0%, #00a3ff 45%, #00e5ff 100%);
    box-shadow: 0 4px 24px rgba(0, 102, 255, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-cta__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.55);
}

.hero-cta__btn:focus-visible {
    outline: 2px solid #7dd3fc;
    outline-offset: 3px;
}

/* 히어로 중앙 하단 — 스크롤 유도 (PC·모바일 공통) */
.hero-scroll-hint {
    position: absolute;
    left: 50%;
    bottom: clamp(1.5rem, 5vw, 3rem);
    z-index: 10;
    transform: translateX(-50%);
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(0.45rem, 1.5vw, 0.75rem);
    color: #fff;
    font-size: clamp(0.75rem, 2.2vw, 1.0625rem);
    font-weight: 600;
    letter-spacing: 0.28em;
    text-indent: 0.28em;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
    pointer-events: none;
    user-select: none;
}

.hero-scroll-hint__label {
    opacity: 1;
}

.hero-scroll-hint__arrow {
    display: block;
    width: 2px;
    height: clamp(2.25rem, 6vw, 3rem);
    border-radius: 2px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 1),
        rgba(255, 255, 255, 0.2)
    );
    animation: hero-scroll-bob 1.6s ease-in-out infinite;
}

@keyframes hero-scroll-bob {
    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(8px);
        opacity: 0.75;
    }
}

/* —— 2섹션: RWA 코인이란? (흰 배경, 낮은 높이) —— */
.section-rwa {
    background: #fff;
    color: #141414;
}

.section-rwa__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem max(1.5rem, calc((100vw - 1280px) / 2));
}

.section-rwa__eyebrow {
    margin: 0 0 0.45rem;
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #0369a1;
}

.section-rwa__title {
    margin: 0;
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 800;
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #0a0a0a;
}

.section-rwa__heading-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-rwa__main-logo {
    width: clamp(2rem, 4vw, 2.8rem);
    height: clamp(2rem, 4vw, 2.8rem);
    object-fit: contain;
}

.section-rwa__summary {
    margin: 0.85rem 0 1.4rem;
    max-width: 58rem;
    margin-left: auto;
    margin-right: auto;
    font-family: "Noto Sans KR", system-ui, sans-serif;
    font-size: clamp(0.9rem, 1.35vw, 1rem);
    line-height: 1.7;
    color: #334155;
    text-align: center;
}

.section-rwa__table-wrap {
    border-radius: clamp(18px, 2.2vw, 24px);
    overflow: hidden;
    border: 2px solid transparent;
    background:
        linear-gradient(145deg, #ffffff 0%, #f1f5f9 48%, #e8eef5 100%) padding-box,
        linear-gradient(
                135deg,
                rgba(239, 68, 68, 0.65) 0%,
                rgba(251, 191, 36, 0.45) 28%,
                rgba(56, 189, 248, 0.65) 58%,
                rgba(37, 99, 235, 0.7) 100%
            )
            border-box;
    box-shadow:
        0 4px 6px rgba(15, 23, 42, 0.05),
        0 24px 48px rgba(15, 23, 42, 0.11),
        0 0 72px rgba(56, 189, 248, 0.09);
    position: relative;
}

.section-rwa__table-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        125deg,
        rgba(239, 68, 68, 0.07) 0%,
        rgba(255, 255, 255, 0) 32%,
        rgba(56, 189, 248, 0.09) 58%,
        rgba(37, 99, 235, 0.08) 100%
    );
    pointer-events: none;
    z-index: 0;
}

.section-rwa__table-wrap > * {
    position: relative;
    z-index: 1;
}

.rwa-compare {
    width: 100%;
    display: grid;
    gap: 0;
    counter-reset: rwa-row;
}

.rwa-compare__header {
    display: grid;
    grid-template-columns: 26% 1fr 1fr;
    border-bottom: none;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.rwa-compare__header-label,
.rwa-compare__header-col {
    padding: clamp(1rem, 2vw, 1.25rem) 0.85rem;
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 900;
    font-size: clamp(0.82rem, 1.35vw, 1.02rem);
    letter-spacing: -0.02em;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rwa-compare__header-label {
    color: #475569;
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
    border-right: 1px solid rgba(148, 163, 184, 0.35);
}

.rwa-compare__header-col--negative {
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    background: linear-gradient(145deg, #dc2626 0%, #991b1b 45%, #7f1d1d 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
}

.rwa-compare__header-col--negative::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 120% at 50% -20%, rgba(255, 255, 255, 0.22), transparent 55%);
    pointer-events: none;
}

.rwa-compare__header-col--accent {
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
    background: linear-gradient(145deg, #0ea5e9 0%, #2563eb 48%, #1d4ed8 100%);
    position: relative;
}

.rwa-compare__header-col--accent::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 120% at 50% -20%, rgba(255, 255, 255, 0.2), transparent 55%);
    pointer-events: none;
}

.rwa-compare__row {
    display: grid;
    grid-template-columns: 26% 1fr 1fr;
    border-bottom: 1px solid rgba(148, 163, 184, 0.35);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(248, 250, 252, 0.92) 100%);
    counter-increment: rwa-row;
}

.rwa-compare__row:last-child {
    border-bottom: none;
}

.rwa-compare__label {
    padding: clamp(1rem, 2vw, 1.35rem) 0.85rem;
    font-family: "Noto Sans KR", system-ui, sans-serif;
    font-weight: 800;
    font-size: clamp(0.9rem, 1.35vw, 1.05rem);
    line-height: 1.3;
    color: #0f172a;
    background: linear-gradient(165deg, #f1f5f9 0%, #e2e8f0 55%, #cbd5e1 100%);
    border-right: 1px solid rgba(148, 163, 184, 0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.35rem;
    position: relative;
}

.rwa-compare__label::before {
    content: "0" counter(rwa-row);
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 900;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    color: #64748b;
}

.rwa-compare__cell {
    position: relative;
    padding: clamp(1rem, 2vw, 1.35rem) 1rem;
    display: grid;
    align-content: start;
    gap: 0.45rem;
    text-align: center;
    justify-items: center;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease, filter 0.28s ease;
}

.rwa-compare__cell--negative {
    background: linear-gradient(165deg, #fff7ed 0%, #fff1f2 42%, #fef2f2 100%);
    border-right: 1px dashed rgba(148, 163, 184, 0.45);
}

.rwa-compare__cell--accent {
    background: linear-gradient(165deg, #f0f9ff 0%, #e0f2fe 45%, #dbeafe 100%);
    box-shadow: inset 0 0 0 1px rgba(56, 189, 248, 0.12);
}

.rwa-compare__cell--negative::before,
.rwa-compare__cell--accent::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.75rem;
    bottom: 0.75rem;
    width: 5px;
    border-radius: 999px;
    opacity: 1;
}

.rwa-compare__cell--negative::before {
    background: linear-gradient(180deg, #f87171 0%, #dc2626 50%, #991b1b 100%);
    box-shadow: 0 0 16px rgba(239, 68, 68, 0.45);
}

.rwa-compare__cell--accent::before {
    background: linear-gradient(180deg, #38bdf8 0%, #2563eb 55%, #1d4ed8 100%);
    box-shadow: 0 0 18px rgba(37, 99, 235, 0.4);
}

.rwa-compare__badge {
    justify-self: center;
    display: inline-flex;
    align-items: center;
    padding: 0.38rem 0.75rem;
    border-radius: 9999px;
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 800;
    font-size: clamp(0.68rem, 1.1vw, 0.78rem);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid transparent;
}

.rwa-compare__badge--negative {
    color: #7f1d1d;
    background: linear-gradient(180deg, rgba(254, 226, 226, 0.95) 0%, rgba(254, 202, 202, 0.85) 100%);
    border-color: rgba(239, 68, 68, 0.35);
    box-shadow: 0 2px 8px rgba(185, 28, 28, 0.12);
}

.rwa-compare__badge--accent {
    color: #0c4a6e;
    background: linear-gradient(180deg, rgba(224, 242, 254, 0.98) 0%, rgba(186, 230, 253, 0.9) 100%);
    border-color: rgba(14, 165, 233, 0.35);
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.15);
}

.rwa-compare__text {
    margin: 0;
    font-family: "Noto Sans KR", system-ui, sans-serif;
    font-weight: 900;
    font-size: clamp(1.02rem, 1.75vw, 1.18rem);
    line-height: 1.35;
    color: #0f172a;
    padding-left: 0;
    text-align: center;
    letter-spacing: -0.02em;
}

.rwa-compare__cell--negative .rwa-compare__text::before {
    content: "✕";
    display: inline-block;
    margin-right: 0.35em;
    font-size: 0.92em;
    color: #dc2626;
    font-weight: 900;
    vertical-align: 0.05em;
}

.rwa-compare__cell--accent .rwa-compare__text::before {
    content: "✓";
    display: inline-block;
    margin-right: 0.35em;
    font-size: 0.92em;
    color: #0284c7;
    font-weight: 900;
    vertical-align: 0.05em;
}

.rwa-compare__sub {
    margin: 0;
    font-family: "Noto Sans KR", system-ui, sans-serif;
    font-weight: 500;
    font-size: clamp(0.84rem, 1.3vw, 0.95rem);
    line-height: 1.55;
    color: #475569;
    padding-left: 0;
    text-align: center;
    max-width: 22rem;
}

@media (hover: hover) and (pointer: fine) {
    .rwa-compare__row:hover .rwa-compare__cell {
        transform: translateY(-3px);
    }

    .rwa-compare__row:hover .rwa-compare__cell--negative {
        box-shadow:
            0 14px 32px rgba(185, 28, 28, 0.14),
            inset 0 0 0 1px rgba(239, 68, 68, 0.15);
        filter: saturate(1.06);
    }

    .rwa-compare__row:hover .rwa-compare__cell--accent {
        box-shadow:
            0 16px 40px rgba(37, 99, 235, 0.18),
            inset 0 0 0 1px rgba(56, 189, 248, 0.22);
        filter: saturate(1.1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .rwa-compare__cell {
        transition: none;
    }

    .rwa-compare__row:hover .rwa-compare__cell {
        transform: none;
    }
}

.rwa-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.rwa-table th,
.rwa-table td {
    padding: 0.95rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    font-size: clamp(0.85rem, 1.25vw, 0.98rem);
    line-height: 1.45;
    text-align: left;
}

.rwa-table thead th {
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 700;
    color: #0f172a;
    background: #f8fafc;
}

.rwa-table thead th:first-child {
    width: 28%;
}

.rwa-table tbody th {
    font-family: "Noto Sans KR", system-ui, sans-serif;
    font-weight: 700;
    color: #1e293b;
    background: #f8fafc;
}

.rwa-table tbody td {
    font-family: "Noto Sans KR", system-ui, sans-serif;
    font-weight: 500;
    color: #334155;
    background: #fff;
}

.rwa-table__head-accent {
    color: #0369a1;
}

.rwa-table__head-negative {
    color: #b91c1c;
}

.rwa-table__accent-cell {
    color: #0c4a6e;
    font-weight: 700;
    background: #e0f2fe;
}

.rwa-table__negative-cell {
    color: #991b1b;
    font-weight: 700;
    background: #fef2f2;
}

.rwa-table tr:last-child th,
.rwa-table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .section-rwa__heading-row {
        gap: 0.5rem;
    }

    .section-rwa__inner {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .section-rwa__summary {
        margin-bottom: 1rem;
    }

    .section-rwa__table-wrap {
        overflow: hidden;
    }

    .rwa-compare__header {
        display: none;
    }

    .rwa-compare__row {
        grid-template-columns: 1fr;
        padding: 0.75rem 0.6rem 1rem;
        gap: 0.65rem;
        background: transparent;
        border-bottom: none;
    }

    .rwa-compare__row + .rwa-compare__row {
        margin-top: 0.35rem;
    }

    .rwa-compare__label {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        border-right: none;
        border: 1px solid rgba(148, 163, 184, 0.4);
        border-radius: 14px;
        background: linear-gradient(165deg, #e2e8f0 0%, #f8fafc 100%);
        padding: 0.8rem 0.9rem;
        text-align: center;
        box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
    }

    .rwa-compare__label::before {
        padding: 0.2rem 0.45rem;
        border-radius: 6px;
        background: rgba(15, 23, 42, 0.06);
        color: #475569;
    }

    .rwa-compare__cell {
        border-radius: 16px;
        padding: 1rem 0.95rem 1.05rem;
    }

    .rwa-compare__cell--negative {
        border: 1px solid rgba(239, 68, 68, 0.28);
        border-right: 1px solid rgba(239, 68, 68, 0.28);
        box-shadow: 0 10px 28px rgba(185, 28, 28, 0.1);
    }

    .rwa-compare__cell--accent {
        border: 1px solid rgba(14, 165, 233, 0.3);
        box-shadow: 0 12px 32px rgba(37, 99, 235, 0.12);
    }

    .rwa-compare__cell--negative::before,
    .rwa-compare__cell--accent::before {
        top: 0.85rem;
        bottom: 0.85rem;
        left: 0.65rem;
    }

    .rwa-compare__text,
    .rwa-compare__sub {
        padding-left: 0;
    }
}

/* PC: 콘텐츠 높이에 맞게 자연스럽게 늘어나도록(잘림 방지) */
@media (min-width: 1024px) {
    .section-rwa {
        min-height: 420px;
        max-height: none;
    }
}

/* —— 3섹션: 솔루션 (RWA 강조) — 네이비 + 블랙 톤 —— */
.section-solution {
    position: relative;
    overflow: hidden;
    color: #e2e8f0;
    background: linear-gradient(
        165deg,
        #020617 0%,
        #030b1f 26%,
        #0b1120 52%,
        #050b16 76%,
        #020617 100%
    );
}

.section-solution__glow {
    position: absolute;
    inset: -20% -10% auto -10%;
    height: 70%;
    background: radial-gradient(
        ellipse 65% 55% at 50% 0%,
        rgba(59, 130, 246, 0.26) 0%,
        rgba(14, 116, 244, 0.12) 38%,
        transparent 70%
    );
    pointer-events: none;
}

.section-solution__inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: clamp(3rem, 8vw, 5rem) max(1.5rem, calc((100vw - 1280px) / 2));
    text-align: center;
}

.section-solution__title {
    margin: 0 0 1.75rem;
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 800;
    font-size: clamp(1.55rem, 3vw, 2.25rem);
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #fafaf9;
}

.section-solution__title-accent {
    font-weight: 700;
    background: linear-gradient(120deg, #bfdbfe 0%, #60a5fa 45%, #3b82f6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-solution__lead {
    margin: 0 0 1rem;
    font-family: "Noto Sans KR", system-ui, sans-serif;
    font-weight: 600;
    font-size: clamp(1.25rem, 2.45vw, 1.55rem);
    color: #cbd5e1;
}

.section-solution__feature {
    margin: 0 0 1rem;
}

.section-solution__feature-image {
    width: min(100%, 620px);
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
}

.section-solution__feature-caption {
    margin: 0.55rem 0 0;
    font-family: "Noto Sans KR", system-ui, sans-serif;
    font-weight: 300;
    font-size: clamp(0.78rem, 1.2vw, 0.86rem);
    line-height: 1.45;
    color: rgba(226, 232, 240, 0.72);
}

.section-solution__pipeline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 0.65rem;
    margin: 0 0 1.5rem;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(96, 165, 250, 0.45);
    border-radius: 14px;
    background: rgba(2, 6, 23, 0.42);
    box-shadow: inset 0 1px 0 rgba(191, 219, 254, 0.08);
}

.section-solution__step {
    font-family: "Noto Sans KR", system-ui, sans-serif;
    font-weight: 500;
    font-size: clamp(1.125rem, 2.25vw, 1.35rem);
    color: #e2e8f0;
}

.section-solution__arrow {
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 700;
    color: #60a5fa;
    opacity: 0.95;
}

.section-solution__body {
    margin: 0 0 1.25rem;
    font-family: "Noto Sans KR", system-ui, sans-serif;
    font-weight: 400;
    font-size: clamp(1.4rem, 2.85vw, 1.72rem);
    line-height: 1.75;
    color: #cbd5e1;
}

.section-solution__note {
    margin: 0 0 0.35rem;
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 600;
    font-size: clamp(1.4rem, 2.8vw, 1.8rem);
    color: #94a3b8;
}

.section-solution__quote {
    margin: 0;
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 800;
    font-size: clamp(1.6rem, 3.35vw, 2.2rem);
    line-height: 1.45;
    letter-spacing: -0.02em;
    background: linear-gradient(95deg, #dbeafe 0%, #60a5fa 42%, #2563eb 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 40px rgba(59, 130, 246, 0.2);
}

@media (max-width: 520px) {
    .section-solution__pipeline {
        flex-direction: column;
        gap: 0.35rem;
    }

    .section-solution__arrow {
        transform: rotate(90deg);
    }
}

/* —— 4섹션: RWA 구조 시각화 (3섹션과 동일 톤) —— */
.section-structure {
    position: relative;
    overflow: hidden;
    color: #e2e8f0;
    background: linear-gradient(
        165deg,
        #020617 0%,
        #030b1f 26%,
        #0b1120 52%,
        #050b16 76%,
        #020617 100%
    );
}

.section-structure__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2.25rem max(1.5rem, calc((100vw - 1280px) / 2));
    text-align: center;
}

@media (min-width: 1024px) {
    .section-structure {
        min-height: 800px;
        display: flex;
        align-items: center;
    }

    .section-structure__inner {
        width: 100%;
    }
}

.section-structure__eyebrow {
    margin: 0 0 0.45rem;
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #93c5fd;
}

.section-structure__title {
    margin: 0 0 1.25rem;
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 800;
    font-size: clamp(1.75rem, 3.2vw, 2.3rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #f8fafc;
}

.structure-flow {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.structure-flow__divider {
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 700;
    color: #93c5fd;
    line-height: 1;
    transition: color 0.25s ease;
}

.structure-card {
    width: min(100%, 760px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 1.15rem;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
    opacity: 0;
    transform: translateY(14px);
    position: relative;
    overflow: hidden;
    transition:
        opacity 0.5s ease,
        transform 0.5s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.structure-card::after {
    content: "✅";
    position: absolute;
    right: 0.7rem;
    bottom: 0.7rem;
    width: 2rem;
    height: 2rem;
    display: grid;
    place-items: center;
    font-size: 1.05rem;
    border-radius: 9999px;
    background: #2563eb;
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.38);
    transform: scale(0.85);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
}

.structure-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.structure-card.is-hovered {
    transform: translateY(-8px) scale(1.01);
    border-color: #3b82f6;
    outline: 2px solid rgba(59, 130, 246, 0.55);
    outline-offset: -2px;
    box-shadow: 0 20px 36px rgba(37, 99, 235, 0.16);
}

.structure-card.is-hovered::after {
    opacity: 1;
    transform: scale(1);
}

@media (hover: hover) and (pointer: fine) {
    /* 카드 개별 호버 */
    .structure-card.is-visible:hover {
        transform: translateY(-8px);
        border-color: #3b82f6;
        outline: 2px solid rgba(59, 130, 246, 0.55);
        outline-offset: -2px;
        box-shadow: 0 18px 34px rgba(37, 99, 235, 0.15);
    }

    .structure-card.is-visible:hover::after {
        opacity: 1;
        transform: scale(1);
    }

    /* 흐름 전체 호버 시 카드가 순차적으로 반응 */
    .structure-flow:hover .structure-card.is-visible {
        transform: translateY(-4px);
        border-color: #bfdbfe;
        box-shadow: 0 14px 28px rgba(37, 99, 235, 0.11);
    }

    .structure-flow:hover .structure-card:nth-child(1) { transition-delay: 0ms; }
    .structure-flow:hover .structure-card:nth-child(3) { transition-delay: 60ms; }
    .structure-flow:hover .structure-card:nth-child(5) { transition-delay: 120ms; }
    .structure-flow:hover .structure-card:nth-child(7) { transition-delay: 180ms; }
    .structure-flow:hover .structure-card:nth-child(9) { transition-delay: 240ms; }
    .structure-flow:hover .structure-card:nth-child(11) { transition-delay: 300ms; }

    .structure-flow:hover .structure-flow__divider {
        color: #2563eb;
    }
}

.structure-card__img {
    width: 100%;
    height: clamp(220px, 32vw, 320px);
    border-radius: 14px;
    object-fit: cover;
    background: #f1f5f9;
}

.structure-card__video {
    display: block;
}

.structure-card__img--mainlogo {
    object-fit: contain;
    padding: 1.2rem;
    animation: structure-mainlogo-float 3.2s ease-in-out infinite;
}

@keyframes structure-mainlogo-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.structure-card__img--icon {
    object-fit: cover;
    padding: 0;
}

/* 5단계: 이미지 대신 블록체인 이모지·미모지 스타일 */
.structure-card__memoji {
    width: 100%;
    height: clamp(220px, 32vw, 320px);
    border-radius: 14px;
    background: linear-gradient(165deg, #e0f2fe 0%, #f8fafc 45%, #dbeafe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.structure-card__memoji::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.75) 0%, transparent 55%);
    pointer-events: none;
}

.structure-card__memoji-bubble {
    position: relative;
    z-index: 1;
    width: min(72%, 220px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: linear-gradient(150deg, #ffffff 0%, #eff6ff 55%, #e0f2fe 100%);
    box-shadow:
        0 14px 32px rgba(37, 99, 235, 0.14),
        inset 0 0 0 0.35rem rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
}

.structure-card__memoji-main {
    font-size: clamp(4.25rem, 16vw, 6.5rem);
    line-height: 1;
    user-select: none;
}

.structure-card__memoji-badge {
    position: absolute;
    bottom: 12%;
    right: 10%;
    font-size: clamp(2rem, 7vw, 3rem);
    line-height: 1;
    filter: drop-shadow(0 4px 8px rgba(37, 99, 235, 0.25));
    user-select: none;
}

/* —— 5섹션: 한눈으로 보는 실제 프로세스 (화이트) —— */
.section-process {
    background: #fff;
    color: #0f172a;
}

.section-process__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem max(1.5rem, calc((100vw - 1280px) / 2));
}

.section-process__eyebrow {
    margin: 0 0 0.45rem;
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #1d4ed8;
}

.section-process__title {
    margin: 0 0 1.5rem;
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 800;
    font-size: clamp(1.6rem, 3.2vw, 2.25rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #0b1220;
}

.process-list {
    display: grid;
    gap: 1.4rem;
}

/* 프로세스 카드 리스트는 화면 끝까지 확장(좌측 여백 제거) */
@media (min-width: 1024px) {
    .process-list {
        /* 100vw 기반 계산은 스크롤바 폭 때문에 가로 오버플로우가 생길 수 있어
           안전한 풀-블리드 패턴으로 처리 */
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        /* inner 컨테이너가 이미 가터를 갖고 있어, 여기서 패딩을 또 주면
           왼쪽이 과하게 비면서 오른쪽으로 밀려 보임 */
        padding-left: 0;
        padding-right: 0;
    }
}

.process-row {
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 1.25rem;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.process-row .marquee {
    /* 카드 내부에서 슬라이더는 좌우 꽉 차게 */
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    border-left: 0;
    border-right: 0;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
}

.process-row .marquee__viewport {
    padding: 0;
}

.process-row .marquee__track {
    gap: 0;
}

.process-row .marquee__item {
    border-radius: 0;
}

.process-row .marquee--logos .marquee__img {
    padding: 0.9rem;
}

.process-row__header {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem 1rem;
    margin-bottom: 0.9rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.process-row__title {
    margin: 0;
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 800;
    font-size: clamp(1.2rem, 2.2vw, 1.55rem);
    color: #0f172a;
    width: 100%;
    display: block;
}

/* meta 텍스트는 HTML에서 제거됨 */

.section-process__statement {
    margin: 2rem 0 0;
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 800;
    font-size: clamp(1.25rem, 2.6vw, 1.65rem);
    line-height: 1.35;
    color: #0b1220;
    text-align: center;
}

/* 마키(자동 가로 이동) */
.marquee {
    --marquee-duration: 24s;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    position: relative;
}

.marquee__viewport {
    width: 100%;
    overflow: hidden;
    padding: 0.75rem;
}

.marquee__track {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: max-content;
    animation: marquee var(--marquee-duration) linear infinite;
}

.marquee:hover .marquee__track {
    animation-play-state: paused;
}

.marquee__item {
    width: 360px;
    flex: 0 0 auto;
    overflow: hidden;
    background: #e2e8f0;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}

.marquee--logos .marquee__item {
    width: 240px;
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.marquee__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.marquee--logos .marquee__img {
    object-fit: contain;
    padding: 0.6rem;
    background: #fff;
}

.marquee--empty {
    min-height: 220px;
}

.marquee__empty {
    height: 220px;
    display: grid;
    place-items: center;
    font-family: "Noto Sans KR", system-ui, sans-serif;
    font-weight: 600;
    color: #94a3b8;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .marquee__item {
        width: 280px;
    }
    .marquee--logos .marquee__item {
        width: 180px;
    }
}

/* —— 6섹션: 음료 사업 설명(디테일) —— */
.section-beverage {
    background: #fff;
    color: #0f172a;
}

.section-beverage__inner {
    max-width: 1680px;
    margin: 0 auto;
    padding: 3.25rem max(1.25rem, calc((100vw - 1560px) / 2)) 3.5rem;
}

.section-beverage__eyebrow {
    margin: 0 0 0.45rem;
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #1d4ed8;
    text-align: center;
}

.section-beverage__title {
    margin: 0 0 1.5rem;
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 800;
    font-size: clamp(1.6rem, 3.2vw, 2.25rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #0b1220;
    text-align: center;
}

.beverage-grid {
    display: grid;
    gap: 1.2rem;
}

@media (min-width: 900px) {
    .beverage-grid {
        grid-template-columns: 0.82fr 1.18fr;
        align-items: stretch;
        gap: 1.4rem;
    }
}

.beverage-card {
    position: relative;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 1.5rem;
    background: #ffffff;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.beverage-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    background: linear-gradient(
        135deg,
        rgba(37, 99, 235, 0.22) 0%,
        rgba(56, 189, 248, 0.16) 32%,
        rgba(34, 197, 94, 0.12) 62%,
        rgba(245, 158, 11, 0.14) 100%
    );
    opacity: 0.9;
    pointer-events: none;
}

.beverage-card::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 17px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 55%, #f8fafc 100%);
    pointer-events: none;
}

.beverage-card > * {
    position: relative;
    z-index: 1;
}

.beverage-card--chart::after {
    background: radial-gradient(circle at 20% 15%, rgba(191, 219, 254, 0.55) 0%, rgba(255, 255, 255, 1) 42%, rgba(248, 250, 252, 1) 100%);
}

.beverage-card--chart {
    padding: 1.35rem 1.35rem 1.25rem;
}

.beverage-card__kicker {
    margin: 0 0 0.35rem;
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #1d4ed8;
    text-align: center;
}

.beverage-card__title {
    margin: 0 0 1rem;
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 800;
    font-size: clamp(1.3rem, 2.35vw, 1.62rem);
    color: #0f172a;
    text-align: center;
}

.beverage-card__list {
    margin: 0 0 1rem;
    padding: 0;
    list-style: none;
    font-family: "Noto Sans KR", system-ui, sans-serif;
    font-weight: 500;
    font-size: clamp(1rem, 1.5vw, 1.12rem);
    color: #334155;
    line-height: 1.72;
    text-align: center;
}

.beverage-card__list li {
    overflow-wrap: anywhere;
    word-break: keep-all;
}

.beverage-card__desc {
    margin: 0;
    font-family: "Noto Sans KR", system-ui, sans-serif;
    font-weight: 500;
    font-size: clamp(1.06rem, 1.8vw, 1.28rem);
    color: #0f172a;
    line-height: 1.65;
    overflow-wrap: anywhere;
    word-break: keep-all;
    text-align: center;
}

.beverage-card__desc-strong {
    font-weight: 900;
    background: linear-gradient(95deg, #0ea5e9 0%, #2563eb 38%, #7c3aed 74%, #db2777 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(37, 99, 235, 0.24);
}

.beverage-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin: 1rem 0 1.1rem;
    text-align: center;
}

.beverage-highlight {
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 0.85rem 0.9rem;
    background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
}

.beverage-highlight__label {
    margin: 0 0 0.25rem;
    font-family: "Noto Sans KR", system-ui, sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    color: #475569;
    text-align: center;
}

.beverage-highlight__value {
    margin: 0;
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 900;
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    letter-spacing: -0.02em;
    color: #0f172a;
    overflow-wrap: anywhere;
    word-break: keep-all;
    text-align: center;
}

.beverage-chart-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.85rem;
}

.beverage-chart-head > div:first-child {
    text-align: center;
    width: 100%;
}

.revenue-range {
    display: inline-flex;
    gap: 0.35rem;
    padding: 0.35rem;
    border-radius: 9999px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
}

.revenue-range__btn {
    appearance: none;
    border: 0;
    background: transparent;
    padding: 0.45rem 0.7rem;
    border-radius: 9999px;
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 800;
    font-size: 0.82rem;
    color: #475569;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.revenue-range__btn:hover {
    transform: translateY(-1px);
    color: #0f172a;
}

.revenue-range__btn.is-active {
    background: #0f172a;
    color: #fff;
}

.revenue-kpis {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    margin: 0.85rem 0 0.95rem;
}

.revenue-kpi {
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 0.75rem 0.85rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    min-width: 0;
}

.revenue-kpi__label {
    margin: 0 0 0.2rem;
    font-family: "Noto Sans KR", system-ui, sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    color: #64748b;
    text-align: center;
}

.revenue-kpi__value {
    margin: 0;
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 900;
    font-size: clamp(0.95rem, 1.55vw, 1.18rem);
    letter-spacing: -0.02em;
    color: #0f172a;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
}

.revenue-kpi__value.is-up {
    color: #1d4ed8;
}

.revenue-kpi__value.is-down {
    color: #b91c1c;
}

.revenue-kpi__value.is-flat {
    color: #334155;
}

.beverage-card--chart .beverage-card__chart-note {
    margin: 0.85rem 0 0;
    font-family: "Noto Sans KR", system-ui, sans-serif;
    font-weight: 500;
    color: #64748b;
    text-align: center;
}

.revenue-chart {
    height: 300px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    background: linear-gradient(180deg, #eff6ff 0%, #ffffff 55%, #ffffff 100%);
    overflow: hidden;
    position: relative;
    min-width: 0;
}

.revenue-chart__svg {
    width: 100%;
    height: 100%;
}

.rev-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.rev-grid line {
    stroke: rgba(15, 23, 42, 0.1);
    stroke-width: 1;
}

.rev-x,
.rev-y {
    font-family: "Noto Sans KR", system-ui, sans-serif;
    font-size: 11px;
    fill: rgba(15, 23, 42, 0.62);
}

.rev-bars .rev-bar {
    fill: url(#revBar);
    opacity: 0.9;
    transition: opacity 0.18s ease, transform 0.18s ease;
    transform-origin: center bottom;
}

.rev-bars .rev-bar:hover {
    opacity: 1;
    transform: scaleY(1.02);
}

.rev-bars .rev-bar.is-latest {
    opacity: 1;
    filter: url(#revGlow);
}

.rev-line-glow {
    stroke: rgba(37, 99, 235, 0.25);
    stroke-width: 10;
    filter: url(#revGlow);
}

.rev-line {
    stroke: url(#revLine);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.rev-point {
    fill: #ffffff;
    stroke: #2563eb;
    stroke-width: 3;
    opacity: 0.92;
}

.rev-point.is-latest {
    fill: #2563eb;
    stroke: #93c5fd;
    opacity: 1;
    filter: url(#revGlow);
}

.revenue-tooltip {
    position: absolute;
    transform: translate(-50%, calc(-100% - 12px));
    min-width: 170px;
    padding: 0.7rem 0.75rem;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.45);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.14);
    backdrop-filter: blur(8px);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.12s ease;
}

.revenue-tooltip[aria-hidden="false"] {
    opacity: 1;
}

.revenue-tooltip__top {
    font-family: "Noto Sans KR", system-ui, sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    color: #475569;
    margin-bottom: 0.25rem;
}

.revenue-tooltip__main {
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 900;
    font-size: 1.05rem;
    color: #0f172a;
    margin-bottom: 0.2rem;
}

.revenue-tooltip__sub {
    font-family: "Noto Sans KR", system-ui, sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    color: #1d4ed8;
}

@media (max-width: 900px) {
    .beverage-highlights {
        grid-template-columns: 1fr;
    }

    .beverage-chart-head {
        flex-direction: column;
        align-items: stretch;
    }

    .revenue-kpis {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1200px) {
    .beverage-grid {
        grid-template-columns: 0.78fr 1.22fr;
        gap: 1.6rem;
    }
}

/* —— 공장 라이브 (토크노믹스 상단) —— */
.factory-live {
    background: #0b1120;
    color: #e2e8f0;
}

.factory-live__inner {
    box-sizing: border-box;
    max-width: 920px;
    margin: 0 auto;
    padding: 2.75rem 1.25rem 3.25rem;
    text-align: center;
}

.factory-live__eyebrow {
    margin: 0 0 0.5rem;
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #4ade80;
}

.factory-live__title {
    margin: 0 0 1rem;
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 900;
    font-size: clamp(1.6rem, 4.2vw, 2.4rem);
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #f8fafc;
}

.factory-live__text {
    margin: 0 auto 1.5rem;
    max-width: 38rem;
    font-family: "Noto Sans KR", system-ui, sans-serif;
    font-weight: 500;
    font-size: clamp(0.95rem, 1.4vw, 1.06rem);
    line-height: 1.75;
    color: rgba(226, 232, 240, 0.92);
}

.factory-live__text strong {
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 800;
    color: #fff;
}

.factory-live__cta-row {
    margin-bottom: 1.75rem;
}

.factory-live__btn {
    display: inline-block;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    color: #020617;
    background: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.5);
    transition: background 0.2s ease, transform 0.2s ease;
}

.factory-live__btn:hover {
    background: #4ade80;
    transform: translateY(-1px);
}

.factory-live__video {
    width: 100%;
    max-width: 100%;
}

/* 16:9 — padding-bottom 방식으로 브라우저 호환 */
.factory-live__ratio {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
    border: 1px solid rgba(148, 163, 184, 0.28);
}

.factory-live__iframe {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    border: 0;
}

.factory-live__iframe[hidden] {
    display: none !important;
}

.factory-live__placeholder {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    height: 100%;
    padding: 1rem;
    box-sizing: border-box;
    text-decoration: none;
    color: #f1f5f9;
    background: linear-gradient(160deg, #1e293b 0%, #0f172a 100%);
    transition: background 0.2s ease;
}

.factory-live__placeholder:hover {
    background: linear-gradient(160deg, #334155 0%, #0f172a 100%);
}

.factory-live__placeholder.is-hidden {
    display: none;
}

.factory-live__play {
    display: block;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #dc2626;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.45);
    position: relative;
}

.factory-live__play::after {
    content: "";
    position: absolute;
    left: 54%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 11px 0 11px 18px;
    border-color: transparent transparent transparent #fff;
}

.factory-live__placeholder-title {
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
}

.factory-live__placeholder-sub {
    font-family: "Noto Sans KR", system-ui, sans-serif;
    font-size: 0.88rem;
    color: #94a3b8;
}

/* —— 토크노믹스 섹션 —— */
.section-tokenomics {
    background: linear-gradient(165deg, #020617 0%, #030b1f 26%, #0b1120 52%, #050b16 76%, #020617 100%);
    color: #e2e8f0;
}

.section-tokenomics__inner {
    max-width: 1560px;
    margin: 0 auto;
    padding: 3.25rem max(1.25rem, calc((100vw - 1480px) / 2)) 3.75rem;
}

.section-tokenomics__eyebrow {
    margin: 0 0 0.45rem;
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #93c5fd;
    text-align: center;
}

.section-tokenomics__title {
    margin: 0 0 1rem;
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 900;
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    letter-spacing: -0.02em;
    color: #f8fafc;
    text-align: center;
}

.section-tokenomics__lead {
    margin: 0 0 1.75rem;
    max-width: 62rem;
    font-family: "Noto Sans KR", system-ui, sans-serif;
    font-weight: 500;
    font-size: clamp(0.95rem, 1.35vw, 1.05rem);
    line-height: 1.75;
    color: rgba(226, 232, 240, 0.9);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.35rem;
    align-items: stretch;
}

.tokenomics-card {
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(2, 6, 23, 0.42);
    box-shadow: inset 0 1px 0 rgba(191, 219, 254, 0.06);
    padding: 1.25rem;
}

.tokenomics-card--chart {
    display: grid;
    gap: 0.9rem;
    align-content: start;
    min-height: 760px;
}

.tokenomics-card--legend {
    display: grid;
    gap: 0.9rem;
    align-content: start;
}

.tokenomics-card__title {
    margin: 0;
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 900;
    font-size: clamp(1.1rem, 1.9vw, 1.35rem);
    color: #f8fafc;
}

.tokenomics-card__note {
    margin: 0;
    font-family: "Noto Sans KR", system-ui, sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(226, 232, 240, 0.78);
}

@media (max-width: 767px) {
    .tokenomics-card__note--mobile-center {
        text-align: center;
    }
}

.tokenomics-chart {
    position: relative;
    width: min(100%, 760px);
    aspect-ratio: 1;
    margin: 0 auto;
}

.tokenomics-callout-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: visible;
}

.tokenomics-callout-lines path {
    fill: none;
    stroke: rgba(255, 255, 255, 0.88);
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.9;
}

.tokenomics-callout-lines .tok-line-shadow {
    stroke: rgba(15, 23, 42, 0.45);
    stroke-width: 6;
    opacity: 0.35;
}

.tokenomics-callouts {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.tokenomics-callout {
    position: absolute;
    width: 230px;
    max-width: 38%;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.45);
    box-shadow: 0 18px 34px rgba(2, 6, 23, 0.35);
    padding: 0.75rem 0.8rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.6rem 0.7rem;
    align-items: center;
}

.tokenomics-callout__num {
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 900;
    font-size: 1.45rem;
    letter-spacing: -0.02em;
    line-height: 1;
}

.tokenomics-callout__title {
    margin: 0;
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 900;
    font-size: 1rem;
    color: #0f172a;
    line-height: 1.15;
}

.tokenomics-callout__desc {
    grid-column: 1 / -1;
    margin: 0;
    font-family: "Noto Sans KR", system-ui, sans-serif;
    font-weight: 600;
    font-size: 0.86rem;
    line-height: 1.35;
    color: #334155;
}

.tokenomics-callout__accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    border-top-left-radius: 14px;
    border-bottom-left-radius: 14px;
}

@media (max-width: 980px) {
    /* 모바일에서는 캘아웃이 겹칠 수 있어 숨기고, 오른쪽 범례 카드로 설명 */
    .tokenomics-callout-lines,
    .tokenomics-callouts {
        display: none;
    }

    .tokenomics-card--chart {
        min-height: auto;
    }

    .tokenomics-chart {
        width: min(100%, 420px);
    }

    .tokenomics-card {
        padding: 1rem;
    }

    .tokenomics-legend__row {
        grid-template-columns: 14px 1fr auto;
        padding: 0.72rem 0.78rem;
    }

    .tokenomics-legend__name {
        font-size: 0.95rem;
    }

    .tokenomics-legend__desc {
        font-size: 0.84rem;
    }
}

/* —— 7섹션: CENTER COIN RoadMap —— */
.section-roadmap {
    position: relative;
    overflow: hidden;
    background: linear-gradient(165deg, #0b0f19 0%, #0a1120 45%, #0b0f19 100%);
    color: #e2e8f0;
}

.section-roadmap::before {
    content: "";
    position: absolute;
    inset: -25% -10% auto -10%;
    height: 65%;
    background: radial-gradient(
        ellipse 60% 55% at 50% 0%,
        rgba(59, 130, 246, 0.2) 0%,
        rgba(14, 165, 233, 0.1) 34%,
        transparent 70%
    );
    pointer-events: none;
}

.section-roadmap__inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: clamp(3.2rem, 8vw, 5.2rem) max(1.5rem, calc((100vw - 1280px) / 2))
        clamp(3.8rem, 9vw, 6rem);
}

.section-roadmap__eyebrow {
    margin: 0 0 0.45rem;
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #93c5fd;
    text-align: center;
}

.section-roadmap__title {
    margin: 0;
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 900;
    font-size: clamp(1.8rem, 3.3vw, 2.55rem);
    letter-spacing: -0.02em;
    color: #f8fafc;
    text-align: center;
}

.section-roadmap__subtitle {
    margin: 0.85rem auto clamp(1.75rem, 3.5vw, 2.5rem);
    max-width: 56rem;
    font-family: "Noto Sans KR", system-ui, sans-serif;
    font-weight: 500;
    font-size: clamp(0.95rem, 1.35vw, 1.06rem);
    line-height: 1.72;
    color: rgba(226, 232, 240, 0.86);
    text-align: center;
}

.roadmap-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: clamp(2.25rem, 5.5vw, 4rem);
    margin-top: 0.35rem;
    padding: clamp(0.75rem, 2vw, 1.25rem) 0 clamp(1.5rem, 3vw, 2.25rem);
}

.roadmap-timeline__line {
    position: absolute;
    left: 50%;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(
        180deg,
        rgba(56, 189, 248, 0.75) 0%,
        rgba(59, 130, 246, 0.35) 45%,
        rgba(56, 189, 248, 0.55) 100%
    );
    pointer-events: none;
    z-index: 0;
    border-radius: 1px;
}

.roadmap-item {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 28px minmax(0, 1fr);
    align-items: center;
    gap: clamp(1rem, 2.5vw, 2rem);
}

.roadmap-item__node {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #ffffff 0%, #60a5fa 40%, #2563eb 100%);
    box-shadow:
        0 0 0 6px rgba(37, 99, 235, 0.14),
        0 0 22px rgba(56, 189, 248, 0.58);
    animation: roadmap-node-glow 2.4s ease-in-out infinite;
}

.roadmap-item__content {
    grid-row: 1;
    border: 1px solid rgba(148, 163, 184, 0.24);
    background: rgba(15, 23, 42, 0.55);
    border-radius: 18px;
    padding: clamp(1.2rem, 2.5vw, 1.55rem) clamp(1.1rem, 2.2vw, 1.45rem);
    box-shadow:
        inset 0 1px 0 rgba(191, 219, 254, 0.08),
        0 16px 30px rgba(2, 6, 23, 0.34);
    backdrop-filter: blur(6px);
    max-width: min(26rem, 100%);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease, border-color 0.25s ease;
}

.roadmap-item.is-visible .roadmap-item__content {
    opacity: 1;
    transform: translateY(0);
}

.roadmap-item--left .roadmap-item__content {
    grid-column: 1;
    justify-self: end;
}

.roadmap-item--right .roadmap-item__content {
    grid-column: 3;
    justify-self: start;
}

.roadmap-item__year {
    margin: 0 0 0.75rem;
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 900;
    font-size: clamp(1.28rem, 2.4vw, 1.65rem);
    letter-spacing: -0.01em;
    color: #dbeafe;
}

.roadmap-item__list {
    margin: 0;
    padding-left: 1.05rem;
    display: grid;
    gap: 0.5rem;
    font-family: "Noto Sans KR", system-ui, sans-serif;
    font-weight: 500;
    font-size: clamp(0.93rem, 1.2vw, 1.02rem);
    line-height: 1.62;
    color: rgba(226, 232, 240, 0.92);
}

.roadmap-item__list strong {
    font-weight: 800;
    color: #f8fafc;
}

@media (max-width: 767px) {
    .roadmap-timeline__line {
        left: 15px;
        transform: none;
    }

    .roadmap-item {
        grid-template-columns: 1fr;
        gap: 0.65rem;
        padding-left: 2.35rem;
    }

    .roadmap-item__node {
        position: absolute;
        left: 8px;
        top: 1.1rem;
        grid-column: auto;
        grid-row: auto;
    }

    .roadmap-item__content {
        grid-column: 1;
        grid-row: 1;
        justify-self: stretch;
        max-width: none;
    }
}

.section-roadmap__bottom {
    margin: clamp(2rem, 4vw, 2.75rem) 0 0;
    text-align: center;
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 800;
    font-size: clamp(1.2rem, 2.45vw, 1.55rem);
    line-height: 1.45;
    color: #f8fafc;
}

.section-roadmap__bottom strong {
    color: #93c5fd;
}

@media (hover: hover) and (pointer: fine) {
    .roadmap-item__content:hover {
        border-color: rgba(96, 165, 250, 0.6);
        box-shadow:
            inset 0 1px 0 rgba(191, 219, 254, 0.12),
            0 22px 34px rgba(37, 99, 235, 0.22);
    }
}

@keyframes roadmap-node-glow {
    0%,
    100% {
        box-shadow:
            0 0 0 6px rgba(37, 99, 235, 0.14),
            0 0 18px rgba(56, 189, 248, 0.45);
    }
    50% {
        box-shadow:
            0 0 0 8px rgba(37, 99, 235, 0.18),
            0 0 28px rgba(56, 189, 248, 0.7);
    }
}

/* —— 9섹션: CENTER COIN 채굴 앱 (배경 블랙) —— */
.section-mining {
    background: #000;
    color: #e5e5e5;
}

.section-mining__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(3rem, 8vw, 5rem) max(1.25rem, calc((100vw - 1200px) / 2));
    text-align: center;
}

.section-mining__logo {
    display: block;
    width: clamp(72px, 18vw, 120px);
    height: auto;
    margin: 0 auto 1.25rem;
    animation: section-mining-logo-float 2.4s ease-in-out infinite;
}

@keyframes section-mining-logo-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.section-mining__title {
    margin: 0 0 1.25rem;
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 900;
    font-size: clamp(1.65rem, 3.2vw, 2.35rem);
    letter-spacing: -0.02em;
    color: #fff;
}

.section-mining__list {
    margin: 0 auto 1rem;
    padding: 0;
    list-style: none;
    font-family: "Noto Sans KR", system-ui, sans-serif;
    font-weight: 500;
    font-size: clamp(0.98rem, 1.35vw, 1.08rem);
    line-height: 1.75;
    color: rgba(245, 245, 245, 0.92);
}

.section-mining__list--promo {
    margin-bottom: clamp(1rem, 2.5vw, 1.35rem);
}

.section-mining__list--promo li + li {
    margin-top: clamp(0.5rem, 1.5vw, 0.85rem);
}

.section-mining__shine {
    display: inline;
    font-family: "Noto Sans KR", system-ui, sans-serif;
    font-weight: 700;
    font-size: clamp(1.35rem, 3.9vw, 2.15rem);
    line-height: 1.45;
    letter-spacing: -0.02em;
    background-image: linear-gradient(
        105deg,
        #e0f2fe 0%,
        #38bdf8 18%,
        #818cf8 38%,
        #c084fc 55%,
        #22d3ee 72%,
        #93c5fd 88%,
        #e0f2fe 100%
    );
    background-size: 220% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: section-mining-shine-flow 5.5s ease-in-out infinite,
        section-mining-shine-breathe 3.2s ease-in-out infinite;
}

.section-mining__shine-accent {
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 900;
    letter-spacing: -0.03em;
    background-image: inherit;
    background-size: inherit;
    background-position: inherit;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: inherit;
}

.section-mining__shine--lead {
    font-size: clamp(1.28rem, 3.6vw, 2.05rem);
    font-weight: 700;
    line-height: 1.55;
    max-width: 36rem;
    display: inline-block;
}

.section-mining__cta {
    margin: 0 auto clamp(2rem, 4vw, 2.75rem);
    max-width: 40rem;
    text-align: center;
}

@keyframes section-mining-shine-flow {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes section-mining-shine-breathe {
    0%,
    100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.14);
    }
}

@media (prefers-reduced-motion: reduce) {
    .section-mining__shine {
        animation: none;
        filter: none;
        background-position: 40% 50%;
    }

    .section-mining__shine-accent {
        animation: none;
        filter: none;
    }
}

.mining-desktop {
    display: none;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: max(0.5rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.5rem, env(safe-area-inset-right, 0px));
    box-sizing: border-box;
}

.mining-desktop__viewport {
    overflow: hidden;
    width: 100%;
    max-width: min(1680px, 100%);
    margin-left: auto;
    margin-right: auto;
}

.mining-desktop__track {
    display: flex;
    flex-direction: row;
    width: 200%;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.mining-desktop__slide {
    flex: 0 0 50%;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.45rem, 1vw, 0.85rem);
}

.mining-desktop__img {
    display: block;
    width: 100%;
    height: auto;
    opacity: 0;
    transform: translateY(28px);
}

.mining-desktop.is-running .mining-desktop__img {
    animation: mining-img-rise 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes mining-img-rise {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mining-mobile {
    display: none;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.mining-mobile__viewport {
    overflow: hidden;
    width: 100%;
}

.mining-mobile__track {
    display: flex;
    flex-direction: row;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.mining-mobile__pair {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: clamp(0.45rem, 2vw, 0.65rem);
}

.mining-mobile__pair img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    flex: 0 0 auto;
}

@media (min-width: 768px) {
    .mining-desktop {
        display: block;
    }

    .mining-mobile {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .mining-desktop {
        display: none !important;
    }

    .mining-mobile {
        display: block;
    }

    .section-mining__inner {
        padding-left: max(0.35rem, env(safe-area-inset-left, 0px));
        padding-right: max(0.35rem, env(safe-area-inset-right, 0px));
    }
}

.section-mining__video {
    display: block;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    background: #000;
}

@media (prefers-reduced-motion: reduce) {
    .section-mining__logo {
        animation: none;
    }

    .mining-desktop.is-running .mining-desktop__img {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .mining-desktop__track {
        transition: none;
    }

    .mining-mobile__track {
        transition: none;
    }

    .marquee--patent .marquee__track {
        animation: none;
    }

    .section-patent__label,
    .section-patent__heading {
        animation: none !important;
    }

    .section-patent__label {
        background: linear-gradient(95deg, #22d3ee, #38bdf8, #4ade80);
        background-size: 100% auto;
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
        -webkit-text-fill-color: transparent;
    }

    .section-patent__heading {
        background: linear-gradient(
            105deg,
            #f8fafc 0%,
            #7dd3fc 22%,
            #4ade80 48%,
            #a78bfa 72%,
            #f8fafc 100%
        );
        background-size: 100% auto;
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
        -webkit-text-fill-color: transparent;
        filter: none;
        text-shadow: none;
    }
}

@keyframes patent-label-flow {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes patent-heading-impact {
    0%,
    100% {
        background-position: 0% 50%;
        filter: drop-shadow(0 0 14px rgba(56, 189, 248, 0.55)) drop-shadow(0 0 42px rgba(56, 189, 248, 0.22));
    }
    50% {
        background-position: 100% 50%;
        filter: drop-shadow(0 0 20px rgba(34, 197, 94, 0.55)) drop-shadow(0 0 48px rgba(167, 139, 250, 0.38));
    }
}

/* —— 10섹션: 특허 · 경쟁력 —— */
.section-patent {
    background: #0a0f18;
    color: #e2e8f0;
}

.section-patent__inner {
    box-sizing: border-box;
    max-width: min(52rem, 100%);
    margin: 0 auto;
    padding: clamp(2.75rem, 6vw, 4rem) 1.25rem clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
}

.section-patent__label {
    margin: 0 0 0.85rem;
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 800;
    font-size: clamp(0.95rem, 1.75vw, 1.2rem);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: linear-gradient(92deg, #22d3ee, #38bdf8, #4ade80, #a5f3fc, #22d3ee);
    background-size: 240% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: patent-label-flow 4.2s ease-in-out infinite;
}

.section-patent__heading {
    margin: 0 0 1.5rem;
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 900;
    font-size: clamp(1.85rem, 4.9vw, 2.95rem);
    line-height: 1.22;
    letter-spacing: -0.03em;
    background: linear-gradient(
        105deg,
        #f8fafc 0%,
        #7dd3fc 14%,
        #38bdf8 28%,
        #4ade80 46%,
        #a78bfa 64%,
        #38bdf8 82%,
        #f8fafc 100%
    );
    background-size: 220% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: patent-heading-impact 5.5s ease-in-out infinite;
}

@media (max-width: 480px) {
    .section-patent__heading {
        font-size: clamp(1.55rem, 6.2vw, 2.1rem);
        line-height: 1.28;
    }
}

.section-patent__copy {
    margin: 0 0 1.1rem;
    font-family: "Noto Sans KR", system-ui, sans-serif;
    font-weight: 500;
    font-size: clamp(1.12rem, 2.05vw, 1.35rem);
    line-height: 1.82;
    color: rgba(226, 232, 240, 0.94);
}

.section-patent__copy:last-of-type {
    margin-bottom: clamp(1.75rem, 3vw, 2.25rem);
}

.section-patent__copy strong {
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 800;
    color: #f8fafc;
}

.section-patent .marquee.marquee--patent {
    --marquee-duration: 55s;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.section-patent .marquee--patent .marquee__viewport {
    padding: 0.85rem 0;
    overflow: hidden;
}

.section-patent .marquee--patent .marquee__track {
    gap: 1.5rem;
}

.section-patent .marquee--patent .marquee__item {
    width: min(560px, 90vw);
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
}

.section-patent .marquee--patent .marquee__img {
    object-fit: contain;
    object-position: center;
    background: transparent;
}

@media (max-width: 768px) {
    .section-patent .marquee--patent .marquee__item {
        width: min(420px, 92vw);
    }
}

/* —— 해외수출계약건 (10sec 7~9) —— */
.section-export {
    background: #0a0f18;
    color: #e2e8f0;
}

.section-export__inner {
    box-sizing: border-box;
    max-width: min(72rem, 100%);
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 3rem) max(1.25rem, env(safe-area-inset-left, 0px))
        clamp(2.5rem, 5vw, 3.5rem) max(1.25rem, env(safe-area-inset-right, 0px));
    text-align: center;
}

.section-export__title {
    margin: 0 0 0.65rem;
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 900;
    font-size: clamp(1.5rem, 3.6vw, 2.35rem);
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #f8fafc;
}

.section-export__lead {
    margin: 0 auto 1.75rem;
    max-width: 36rem;
    font-family: "Noto Sans KR", system-ui, sans-serif;
    font-weight: 600;
    font-size: clamp(1.05rem, 1.9vw, 1.25rem);
    line-height: 1.55;
    color: rgba(226, 232, 240, 0.95);
}

.section-export__strip {
    width: 100%;
    text-align: left;
    -webkit-overflow-scrolling: touch;
}

.section-export__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.section-export__item {
    margin: 0;
    padding: 0;
}

.section-export__img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

@media (min-width: 768px) {
    .section-export__strip {
        overflow: visible;
    }

    .section-export__list {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: clamp(0.85rem, 1.5vw, 1.25rem);
        align-items: start;
    }
}

@media (max-width: 767px) {
    .section-export__strip {
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: max(1rem, env(safe-area-inset-left, 0px));
        padding-bottom: 0.35rem;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        padding-left: max(1rem, env(safe-area-inset-left, 0px));
        padding-right: max(1rem, env(safe-area-inset-right, 0px));
        width: 100vw;
        max-width: 100vw;
        box-sizing: border-box;
    }

    .section-export__strip::-webkit-scrollbar {
        height: 6px;
    }

    .section-export__strip::-webkit-scrollbar-thumb {
        background: rgba(148, 163, 184, 0.45);
        border-radius: 3px;
    }

    .section-export__list {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0.75rem;
        width: max-content;
        min-width: 100%;
        padding-right: max(1rem, env(safe-area-inset-right, 0px));
    }

    .section-export__item {
        flex: 0 0 min(88vw, 420px);
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }
}

.tokenomics-chart__svg {
    width: 100%;
    height: 100%;
}

.tok-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.tok-seg {
    transform-origin: 50% 50%;
    transition: transform 0.2s ease, filter 0.2s ease;
    animation: tok-seg-breathe 4.6s ease-in-out infinite;
}

.tok-label {
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 900;
    fill: rgba(255, 255, 255, 0.98);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
    animation: tok-label-breathe 4.6s ease-in-out infinite;
}

@keyframes tok-seg-breathe {
    0%,
    100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.03);
        filter: brightness(1.08);
    }
}

@keyframes tok-label-breathe {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.88;
    }
}

@media (hover: hover) and (pointer: fine) {
    .tok-seg:hover {
        transform: scale(1.02);
        filter: brightness(1.04);
    }
}

.tokenomics-chart__center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: none;
    gap: 0.22rem;
    transform: translateY(10px);
    animation: tok-center-float 4.8s ease-in-out infinite;
}

@keyframes tok-center-float {
    0%,
    100% {
        transform: translateY(10px);
    }
    50% {
        transform: translateY(6px);
    }
}

.tokenomics-chart__center-label {
    margin: 0;
    font-family: "Noto Sans KR", system-ui, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #0f172a;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.tokenomics-chart__center-value {
    margin: 0;
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 900;
    font-size: clamp(1.9rem, 4.2vw, 2.8rem);
    letter-spacing: -0.03em;
    background: linear-gradient(
        110deg,
        #fde047 0%,
        #facc15 18%,
        #f59e0b 38%,
        #fbbf24 55%,
        #eab308 72%,
        #fde047 100%
    );
    background-size: 220% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 2px 10px rgba(2, 6, 23, 0.55));
    animation: tok-value-gradient-shift 4s ease-in-out infinite;
}

@keyframes tok-value-gradient-shift {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.tokenomics-chart__center-unit {
    margin: 0;
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 900;
    font-size: 1.08rem;
    letter-spacing: 0.14em;
    background: linear-gradient(95deg, #fef08a 0%, #facc15 50%, #eab308 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 1px 6px rgba(2, 6, 23, 0.45));
}

.tokenomics-legend {
    display: grid;
    gap: 0.65rem;
}

.tokenomics-legend__row {
    display: grid;
    grid-template-columns: 18px 1fr auto;
    gap: 0.7rem;
    align-items: center;
    padding: 0.85rem 0.9rem;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(15, 23, 42, 0.35);
}

.tokenomics-legend__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06);
}

.tokenomics-legend__text {
    min-width: 0;
}

.tokenomics-legend__name {
    margin: 0;
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 900;
    font-size: 1.02rem;
    color: #f8fafc;
}

.tokenomics-legend__desc {
    margin: 0.25rem 0 0;
    font-family: "Noto Sans KR", system-ui, sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.45;
    color: rgba(226, 232, 240, 0.78);
}

.tokenomics-legend__pct {
    margin: 0;
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 900;
    font-size: 1.15rem;
    color: #e0f2fe;
}

@media (max-width: 980px) {
    .tokenomics-grid {
        grid-template-columns: 1fr;
    }

    .tokenomics-chart {
        width: min(100%, 520px);
    }
}

.structure-card__text {
    min-width: 0;
    padding: 0.9rem 0.2rem 0.2rem;
    text-align: center;
}

.structure-card__kicker {
    margin: 0 0 0.25rem;
    font-family: "Noto Sans KR", system-ui, sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: #2563eb;
}

.structure-card__title {
    margin: 0 0 0.3rem;
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 800;
    font-size: clamp(1.25rem, 2.1vw, 1.6rem);
    color: #0f172a;
}

.structure-card__desc {
    margin: 0;
    font-family: "Noto Sans KR", system-ui, sans-serif;
    font-weight: 400;
    font-size: clamp(1rem, 1.55vw, 1.12rem);
    line-height: 1.55;
    color: #334155;
}

/* —— 11섹션: CTA —— */
.section-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(168deg, #020617 0%, #0f172a 38%, #1e1b4b 72%, #0c4a6e 100%);
    color: #e2e8f0;
}

.section-cta__glow {
    position: absolute;
    inset: -35% -15%;
    pointer-events: none;
    background:
        radial-gradient(ellipse 55% 45% at 20% 30%, rgba(56, 189, 248, 0.22), transparent 55%),
        radial-gradient(ellipse 50% 40% at 85% 65%, rgba(167, 139, 250, 0.18), transparent 50%),
        radial-gradient(ellipse 40% 35% at 50% 100%, rgba(34, 197, 94, 0.12), transparent 45%);
}

.section-cta__inner {
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    max-width: 40rem;
    margin: 0 auto;
    padding: clamp(3rem, 8vw, 4.5rem) max(1.25rem, env(safe-area-inset-left, 0px))
        clamp(3.25rem, 7vw, 4.75rem) max(1.25rem, env(safe-area-inset-right, 0px));
    text-align: center;
}

.section-cta__title {
    margin: 0 0 1.35rem;
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 900;
    font-size: clamp(1.55rem, 4.2vw, 2.35rem);
    line-height: 1.28;
    letter-spacing: -0.03em;
    color: #f8fafc;
    text-shadow: 0 2px 24px rgba(56, 189, 248, 0.25);
}

.section-cta__copy {
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    font-family: "Noto Sans KR", system-ui, sans-serif;
    font-weight: 500;
    font-size: clamp(1.02rem, 1.85vw, 1.2rem);
    line-height: 1.65;
    color: rgba(226, 232, 240, 0.94);
}

.section-cta__copy p {
    margin: 0;
}

.section-cta__copy--emphasis {
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 800;
    font-size: clamp(1.08rem, 2vw, 1.28rem);
    color: #fef08a;
    text-shadow: 0 0 28px rgba(250, 204, 21, 0.35);
}

.section-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.25rem;
    padding: 0.85rem 2.25rem;
    border-radius: 9999px;
    border: none;
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 800;
    font-size: clamp(1rem, 1.5vw, 1.12rem);
    letter-spacing: 0.02em;
    text-decoration: none;
    color: #0f172a;
    cursor: pointer;
    background: linear-gradient(105deg, #fef08a 0%, #fde047 28%, #38bdf8 72%, #0ea5e9 100%);
    background-size: 200% auto;
    box-shadow:
        0 4px 20px rgba(250, 204, 21, 0.35),
        0 12px 40px rgba(14, 165, 233, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.section-cta__btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow:
        0 8px 28px rgba(250, 204, 21, 0.45),
        0 16px 48px rgba(14, 165, 233, 0.3);
}

.section-cta__btn:focus-visible {
    outline: 2px solid #fef08a;
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    .section-cta__btn {
        transition: none;
    }

    .section-cta__btn:hover {
        transform: none;
    }
}

/* 푸터 */
.site-footer {
    background: #020617;
    color: #94a3b8;
    border-top: 1px solid rgba(51, 65, 85, 0.55);
}

.site-footer__inner {
    box-sizing: border-box;
    max-width: 56rem;
    margin: 0 auto;
    padding: clamp(2rem, 4vw, 2.75rem) max(1.25rem, env(safe-area-inset-left, 0px))
        clamp(2.25rem, 5vw, 3rem) max(1.25rem, env(safe-area-inset-right, 0px));
    text-align: center;
}

.site-footer__brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    margin-bottom: 0.75rem;
}

.site-footer__logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.site-footer__name {
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    color: #e2e8f0;
}

.site-footer__tagline {
    margin: 0 0 1rem;
    font-family: "Noto Sans KR", system-ui, sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(148, 163, 184, 0.95);
}

.site-footer__legal {
    margin: 0 0 1rem;
    font-family: "Noto Sans KR", system-ui, sans-serif;
    font-weight: 400;
    font-size: 0.78rem;
    line-height: 1.55;
    color: rgba(100, 116, 139, 0.95);
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.site-footer__copy {
    margin: 0;
    font-family: "Noto Sans KR", system-ui, sans-serif;
    font-weight: 500;
    font-size: 0.8rem;
    color: #64748b;
}

/* 우하단: 소셜 아이콘 + TOP */
.site-side-dock {
    position: fixed;
    right: max(0.85rem, env(safe-area-inset-right, 0px));
    bottom: max(1rem, env(safe-area-inset-bottom, 0px));
    z-index: 130;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
}

@media (min-width: 1024px) {
    .site-side-dock {
        right: max(0.85rem, env(safe-area-inset-right, 0px));
        bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
    }
}

.site-side-dock__social {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
}

.site-side-dock__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.15rem;
    height: 3.15rem;
    border-radius: 0.85rem;
    border: 1px solid rgba(148, 163, 184, 0.45);
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.32);
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.site-side-dock__social-link:hover {
    transform: translateY(-2px);
    border-color: rgba(56, 189, 248, 0.55);
    background: rgba(30, 41, 59, 0.95);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.38);
}

.site-side-dock__social-link:focus-visible {
    outline: 2px solid #38bdf8;
    outline-offset: 2px;
}

.site-side-dock__social-link img {
    display: block;
    width: 1.85rem;
    height: 1.85rem;
    object-fit: contain;
}

/* 맨 위로 */
.scroll-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    width: 3.25rem;
    min-height: 3.25rem;
    padding: 0.45rem 0.35rem 0.4rem;
    border-radius: 0.85rem;
    border: 1px solid rgba(148, 163, 184, 0.45);
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #f1f5f9;
    text-decoration: none;
    font-family: Paperlogy, "Noto Sans KR", sans-serif;
    font-weight: 800;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
    flex-shrink: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    pointer-events: none;
    height: 0;
    min-height: 0;
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    border-width: 0;
    transition:
        opacity 0.28s ease,
        visibility 0.28s ease,
        transform 0.28s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        height 0.24s ease,
        min-height 0.24s ease,
        padding 0.24s ease,
        border-width 0.24s ease,
        margin 0.24s ease;
}

.scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    height: auto;
    min-height: 3.25rem;
    padding: 0.45rem 0.35rem 0.4rem;
    border-width: 1px;
    overflow: visible;
}

.scroll-top:hover {
    border-color: rgba(56, 189, 248, 0.55);
    background: rgba(30, 41, 59, 0.94);
    color: #fff;
}

.scroll-top:focus-visible {
    outline: 2px solid #38bdf8;
    outline-offset: 2px;
}

.scroll-top__chev {
    display: block;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 9px solid currentColor;
    margin-bottom: 0.05rem;
}

.scroll-top__label {
    line-height: 1;
}

@media (prefers-reduced-motion: reduce) {
    .site-side-dock__social-link {
        transition: none;
    }

    .site-side-dock__social-link:hover {
        transform: none;
    }

    .scroll-top {
        transition: opacity 0.2s ease, visibility 0.2s ease;
    }

    .scroll-top.is-visible {
        transform: none;
    }
}
