/* ==========================================================================
   Base Reset & Typography
   ========================================================================== */
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Pretendard", "Freesentation", "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    letter-spacing: -0.02em;
    font-display: swap;
    font-size: 17px;
    background-color: #fff;
    color: #232323;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
nav {
    font-family: "Freesentation", "Pretendard", "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}
a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--s-120) var(--s-20);
}

@media screen and (max-width: 768px) {
    .container {
        padding: var(--s-120) var(--s-50);
    }
}

.text-center {
    text-align: center;
}

.mt-10 {
    margin-top: var(--s-10);
}

.mt-20 {
    margin-top: var(--s-20);
}

.mt-40 {
    margin-top: var(--s-40);
}

.mt-60 {
    margin-top: var(--s-60);
}

.mb-60 {
    margin-bottom: var(--s-60);
}

.mb-120 {
    margin-bottom: var(--s-120);
}
/* Typography & Colors */
.text-gradient {
    background: linear-gradient(135deg, var(--baljugo-primary-500) 0%, var(--baljugo-primary-800) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-marker {
    position: relative;
    display: inline-block;
    color: var(--grayscale-black);
    z-index: 1;
}

    .highlight-marker::after {
        content: "";
        position: absolute;
        bottom: 10%;
        left: -2%;
        width: 0;
        height: 35%;
        background-color: var(--system-yellow-400);
        z-index: -1;
        border-radius: 2px;
        transform: skew(-5deg, 0deg);
        transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
        transition-delay: 0.3s;
    }

    /* Add width when aos animation triggers */
    .aos-animate .highlight-marker::after,
    .highlight-marker.aos-animate::after {
        width: 104%;
    }

.text-highlight {
    color: var(--system-yellow-400);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 999px;
    font-size: var(--font-size-md);
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .btn:hover {
        transform: translateY(-2px);
    }

.btn-primary {
    background: var(--baljugo-primary-600);
    color: var(--grayscale-white);
    box-shadow: 0 4px 14px rgba(var(--baljugo-primary-600-rgb), 0.4);
}

    .btn-primary:hover {
        background: var(--baljugo-primary-600);
        color: var(--grayscale-white);
    }

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-height, 74px);
    padding-bottom: 0;
    background: linear-gradient(180deg, var(--baljugo-primary-50) 0%, var(--grayscale-white) 100%);
    overflow: hidden;
}

.hero-bg-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-60);
    padding-top: 0;
    padding-bottom: 0;
    width: 100%;
}

.hero-content {
    flex: 1;
    width: 100%;
    min-width: 300px;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: var(--s-30);
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    line-height: 1.5;
}

.hero-visual {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 500px;
}

.hero-badge {
    display: inline-block;
    padding: var(--s-20) var(--s-50);
    background: linear-gradient( 90deg, rgba(var(--baljugo-primary-500-rgb), 0.05), rgba(var(--baljugo-primary-500-rgb), 0.08) );
    color: var(--baljugo-primary-700);
    border: 1px solid rgba(var(--baljugo-primary-500-rgb), 0.2);
    border-radius: 100px;
    font-size: var(--font-size-dl);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 1rem rgba(var(--baljugo-primary-500-rgb), 0.1);
}

    .hero-badge::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 50%;
        height: 100%;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.9), transparent);
        transform: skewX(-25deg);
        animation: badgeShine 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    }

@keyframes badgeShine {
    0% {
        left: -100%;
    }

    15% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}
.logos-list {
    display: flex;
    align-items: center;
    gap: var(--s-40);
    flex-wrap: wrap;
}

.logo-item {
    width: 100%;
    height: 3rem;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .logo-item.text-only {
        background-color: transparent;
        border-radius: var(--s-20);
        padding: 2rem 0;
    }

    .logo-item:hover {
        opacity: 1;
        filter: grayscale(0%);
    }

    .logo-item img {
        height: 100%;
        width: auto;
    }

@media screen and (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
    }

    .logos-list {
        flex-wrap: wrap;
    }

    .logos-list {
        gap: var(--s-60);
    }

    .logo-item {
        min-width: 120px;
    }
}

/* Mobile First Base Styles for Logos Overlay */
.desktop-only {
    display: none !important;
}

.mobile-only {
    display: block !important;
}

.logos-label-container {
    margin-bottom: var(--s-60);
}

.hero-logos-wrapper {
    margin-top: var(--s-60);
}
/* Desktop Pentagon Overlay Layout */
@media screen and (min-width: 901px) {
    .desktop-only {
        display: block !important;
    }

    .mobile-only {
        display: none !important;
    }

    .hero-logos-wrapper {
        position: absolute;
        top: 0;
        bottom: 0;
        left: calc(50% + (var(--s-60) / 2));
        right: var(--s-20);
        width: auto;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        pointer-events: none;
        z-index: 20;
        margin-top: 0;
    }

    .hero-logos-glass-panel {
        position: relative;
        width: 500px;
        height: 500px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        animation: floatCore 6s ease-in-out infinite;
    }

    .logos-label-container {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin-bottom: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        z-index: 5;
        width: 240px;
        height: 240px;
        border-radius: 50%;
        background: radial-gradient( circle, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.7) 30%, rgba(255, 255, 255, 0) 70% );
        border: none;
        box-shadow: none;
    }

    .center-baljugo-logo {
        width: 120px;
        height: auto;
    }

    .logos-list {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
        margin: 0;
    }

    .logo-item {
        position: absolute;
        width: 140px;
        height: 60px;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        display: flex;
        align-items: center;
        justify-content: center;
        transform-origin: center center;
        pointer-events: auto;
        transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

        .logo-item.text-only {
            padding: 0 !important;
            font-size: 1.2rem;
            font-weight: 700;
            line-height: 1.2;
        }

        .logo-item img {
            width: 100%;
            height: auto;
            object-fit: contain;
        }

        .logo-item:nth-child(1) {
            left: 50%;
            top: calc(50% - 200px);
            transform: translate(-50%, -50%);
        }

        .logo-item:nth-child(2) {
            left: calc(50% + 190px);
            top: calc(50% - 62px);
            transform: translate(-50%, -50%);
        }

        .logo-item:nth-child(4) {
            left: calc(50% - 117px);
            top: calc(50% + 162px);
            transform: translate(-50%, -50%);
        }

        .logo-item:nth-child(3) {
            left: calc(50% - 190px);
            top: calc(50% - 62px);
            transform: translate(-50%, -50%);
        }

        .logo-item:nth-child(5) {
            left: calc(50% + 117px);
            top: calc(50% + 162px);
            transform: translate(-50%, -50%);
        }

    .logos-list .logo-item:hover {
        transform: translate(-50%, -50%) scale(1.15);
        cursor: pointer;
    }
}

.connection-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.p-to-out,
.p-to-in {
    fill: none;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 4 210;
    filter: url(#particle-glow);
}

.p-to-out {
    stroke: var(--baljugo-primary-500);
    animation: flowOut 2s linear infinite;
}

.p-to-in {
    stroke: var(--baljugo-primary-300);
    animation: flowIn 2.5s linear infinite;
}

@keyframes flowOut {
    0% {
        stroke-dashoffset: 0;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        stroke-dashoffset: -200;
        opacity: 0;
    }
}

@keyframes flowIn {
    0% {
        stroke-dashoffset: -200;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        stroke-dashoffset: 0;
        opacity: 0;
    }
}

.why-section {
    padding: 0 0 var(--s-120) 0;
}
/* Data Core Visualization (Right Side) */
.data-core-visualization {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1 / 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Particles Layer */
.particles-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 2;
}

.particles-layer .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--baljugo-primary-400);
    /* border-radius: 50%; */
    box-shadow: 0 0 10px var(--baljugo-primary-300);
    animation: floatUp 4s infinite linear;
    opacity: 0;
}

.p-1 {
    left: 20%;
    top: 80%;
    animation-delay: 0s;
}

.p-2 {
    left: 40%;
    top: 90%;
    animation-delay: 1.5s;
}

.p-3 {
    left: 60%;
    top: 70%;
    animation-delay: 0.7s;
}

.p-4 {
    left: 80%;
    top: 85%;
    animation-delay: 2.2s;
}

.p-5 {
    left: 30%;
    top: 60%;
    animation-delay: 3s;
}

.p-6 {
    left: 70%;
    top: 65%;
    animation-delay: 1.2s;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) scale(0.5);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        transform: translateY(-200px) scale(1.5);
        opacity: 0;
    }
}

/* Core Container */
.core-container {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.core-glow-pulse {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--baljugo-primary-500);
    border-radius: 50%;
    filter: blur(40px);
    animation: coreGlow 3s ease-in-out infinite alternate;
}

@keyframes coreGlow {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    100% {
        transform: scale(1.8);
        opacity: 0.8;
    }
}

.core-cube {
    position: relative;
    z-index: 10;
    animation: floatCore 6s ease-in-out infinite;
}

@keyframes floatCore {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Core Rings */
.core-rings {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ring {
    fill: none;
    stroke: var(--baljugo-primary-300);
    stroke-width: 1;
    transform-origin: center;
}

.ring-1 {
    stroke-dasharray: 4 4;
    animation: spinRight 20s linear infinite;
    opacity: 0.5;
}

.ring-2 {
    stroke-dasharray: 10 10;
    animation: spinLeft 25s linear infinite;
    stroke-width: 2;
    opacity: 0.3;
}

.ring-3 {
    stroke-dasharray: 20 5;
    animation: spinRight 30s linear infinite;
    opacity: 0.2;
}

@keyframes spinRight {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes spinLeft {
    100% {
        transform: rotate(-360deg);
    }
}

@media screen and (max-width: 900px) {
    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: var(--s-80);
        padding-bottom: var(--s-80);
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
        width: 100%;
        margin-top: var(--s-60);
        min-height: 200px;
    }
}

@media screen and (max-width: 768px) {
    .data-core-visualization {
        max-width: 300px;
        aspect-ratio: 1 / 1;
        height: 160px;
    }

    .core-container {
        width: 240px;
        height: 240px;
    }
}
/* Why Section */
.why-split-container {
    display: flex;
    align-items: flex-start;
    gap: var(--s-60);
}

.why-visual-sticky {
    flex: 1;
    position: sticky;
    height: max-content;
    align-self: flex-start;
}

@media screen and (min-height: 800px) {
    .why-visual-sticky {
        top: calc(50vh - 280px);
    }
}

@media screen and (max-height: 799px) {
    .why-visual-sticky {
        top: calc(var(--nav-height, 74px) + 20px);
    }
}

.why-steps-scroll {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
}

.why-step-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
    padding: 8rem var(--s-40);
    border: none;
    border-bottom: 1px solid var(--grayscale-200);
    border-radius: 0;
    box-shadow: none;
    text-align: left;
}

    .why-step-card:last-child {
        border-bottom: none;
    }

.step-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--s-20);
    margin-bottom: var(--s-20);
}

.step-icon {
    width: 64px;
    height: 64px;
    background: transparent;
    color: var(--baljugo-primary-600);
    border: 1px solid var(--baljugo-primary-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Why Section */
@media screen and (max-width: 900px) {
    .why-split-container {
        flex-direction: column;
        gap: 0;
    }

    .why-visual-sticky {
        width: 100%;
        height: 40vh;
        top: var(--nav-height, 74px);
        z-index: 10;
        padding-bottom: var(--s-20);
    }

    .why-steps-scroll {
        width: 100%;
        z-index: 1;
        position: relative;
        padding: 0 var(--s-20);
        padding-bottom: 0;
    }

    .why-step-card {
        padding: var(--s-40) 0;
    }
}

    .step-icon svg {
        width: 32px;
        height: 32px;
    }

.step-number {
    font-size: 3rem;
    font-family: "SBAggro", sans-serif;
    color: var(--baljugo-primary-100);
    font-weight: 700;
    margin-top: 0.5rem;
}

.step-details {
    padding-left: 0;
}

    .step-details li {
        position: relative;
        padding-left: 24px;
        margin-bottom: var(--s-10);
        line-height: 1.6;
    }

        .step-details li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--baljugo-primary-500);
            font-weight: 800;
        }

@media screen and (max-width: 900px) {
    .why-split-container {
        flex-direction: column;
    }

    .why-visual-sticky {
        position: relative;
        top: 0;
        transform: none;
        width: 100%;
        height: 40vh;
        margin-bottom: var(--s-40);
    }

    .why-steps-scroll {
        padding-bottom: 0;
    }
}

/* Proof Section (Marquee) */
.marquee-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: var(--s-20) 0;
}

.marquee-track {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.marquee-content {
    display: flex;
    gap: var(--s-20);
    padding-right: var(--s-20);
    flex-shrink: 0;
}

.marquee-left {
    -webkit-animation: scrollLeft 100s linear infinite;
    animation: scrollLeft 100s linear infinite;
}

.marquee-right {
    -webkit-animation: scrollRight 100s linear infinite;
    animation: scrollRight 100s linear infinite;
}

.customer-logo-large {
    background: var(--grayscale-white);
    border: 1px solid var(--grayscale-100);
    border-radius: var(--s-10);
    width: 240px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
    font-weight: 800;
    color: var(--grayscale-400);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    padding: var(--s-30);
}

@-webkit-keyframes scrollLeft {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
    }
}

@keyframes scrollLeft {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@-webkit-keyframes scrollRight {
    0% {
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes scrollRight {
    0% {
        transform: translate3d(-50%, 0, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

.marquee-overlay-left,
.marquee-overlay-right {
    position: absolute;
    top: 0;
    width: 15%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.marquee-overlay-left {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.marquee-overlay-right {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

/* Hub Diagram Layout */
.data-visualization-container {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    padding: 24px;
    box-sizing: border-box;
    overflow-y: auto;
}

.hub-diagram-wrapper {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    aspect-ratio: 1 / 1;
    max-height: 600px;
    position: relative;
    margin: 0 auto;
}

.hub-canvas {
    flex: 1;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hub-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

    .hub-lines path {
        fill: none;
        stroke-width: 3;
        stroke-linecap: round;
    }

.line-flowing {
    stroke: var(--baljugo-primary-500, #4f46e5);
    stroke-dasharray: 10 10;
    animation: flowLines 1s linear infinite;
}

    .line-flowing.secondary {
        stroke: var(--baljugo-thirdpl-primary-300, #c1aeff);
        stroke-width: 2;
    }

.swap-line-a {
    animation: flowLines 1s linear infinite, fadeA 6s infinite;
}

.swap-line-b {
    animation: flowLines 1s linear infinite, fadeB 6s infinite;
}

@keyframes fadeA {
    0%, 40% {
        opacity: 1;
    }

    50%, 90% {
        opacity: 0.2;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeB {
    0%, 40% {
        opacity: 0.2;
    }

    50%, 90% {
        opacity: 1;
    }

    100% {
        opacity: 0.2;
    }
}

@keyframes flowLines {
    to {
        stroke-dashoffset: 20;
    }
}

.pulse-ring {
    fill: none;
    stroke: var(--baljugo-primary-400, #818cf8);
    stroke-width: 2;
    animation: pulseRing 2s infinite ease-out;
}

@keyframes pulseRing {
    0% {
        r: 50;
        opacity: 1;
    }

    100% {
        r: 90;
        opacity: 0;
    }
}

.node {
    position: absolute;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: bold;
    text-align: center;
    min-width: 0;
    background: #fff;
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.08);
    transform: translate(-50%, -50%);
    z-index: 5;
    white-space: nowrap;
}

.hub-node {
    border: 2px solid var(--grayscale-200);
    transition: all 0.3s;
}

.swap-node-a {
    animation: borderA 6s infinite;
}

.swap-node-b {
    animation: borderB 6s infinite;
}

@keyframes borderA {
    0%, 40% {
        border-color: var(--baljugo-primary-500);
        transform: translate(-50%, -50%) scale(1.05);
        color: var(--grayscale-900);
    }

    50%, 90% {
        border-color: var(--grayscale-200);
        transform: translate(-50%, -50%) scale(0.95);
        color: var(--grayscale-400);
    }

    100% {
        border-color: var(--baljugo-primary-500);
        transform: translate(-50%, -50%) scale(1.05);
        color: var(--grayscale-900);
    }
}

@keyframes borderB {
    0%, 40% {
        border-color: var(--grayscale-200);
        transform: translate(-50%, -50%) scale(0.95);
        color: var(--grayscale-400);
    }

    50%, 90% {
        border-color: var(--baljugo-primary-500);
        transform: translate(-50%, -50%) scale(1.05);
        color: var(--grayscale-900);
    }

    100% {
        border-color: var(--grayscale-200);
        transform: translate(-50%, -50%) scale(0.95);
        color: var(--grayscale-400);
    }
}

.swap-status {
    font-size: var(--font-size-xs);
    padding: var(--s-05) var(--s-20);
    border-radius: var(--s-10);
    margin-right: var(--s-20);
    display: inline-block;
}

    .swap-status.active {
        background: #eef2ff;
        color: var(--baljugo-primary-600);
    }

    .swap-status.inactive {
        background: var(--grayscale-100);
        color: var(--grayscale-500);
    }

.grayscale-node {
    color: var(--baljugo-thirdpl-primary-500);
    background: var(--grayscale-white);
    border-color: var(--baljugo-thirdpl-primary-300);
    border-width: 0px;
}

.opacity-60 {
    opacity: 0.6;
}

.hub-center-node {
    border: unset;
    background: var(--grayscale-white);
    border: 0px solid var(--baljugo-primary-500);
    padding: 24px;
    border-radius: 24px;
    box-shadow: unset;
    box-shadow: rgba(79, 70, 229, 0.2) 0px 15px 40px;
}

.pos-tl-hub {
    top: 20%;
    left: 15%;
}

.pos-tr-hub {
    top: 20%;
    left: 85%;
}

.pos-b1-hub {
    top: 65%;
    left: 15%;
}

.pos-b2-hub {
    top: 80%;
    left: 29.5%;
}

.pos-b3-hub {
    top: 86%;
    left: 50%;
}

.pos-b4-hub {
    top: 80%;
    left: 70.5%;
}

.pos-b5-hub {
    top: 65%;
    left: 85%;
}

.pos-center {
    top: 50%;
    left: 50%;
}

/* Hub Orbit System */
.hub-orbit-system {
    position: relative;
    width: 140px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 20px;
}

.hub-center-logo {
    position: relative;
    z-index: 10;
    width: 120px;
    padding: 10px;
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px dashed rgba(40, 125, 250, 0.3);
    transform: translate(-50%, -50%);
    animation: rotateRing var(--ring-duration, 8s) linear infinite var(--ring-dir, normal);
}

.ring-1 {
    width: 100px;
    height: 100px;
    --ring-duration: 6s;
    --radius: 50px;
    --absorb-delay: 0s;
    --absorb-dur: 3s;
}

.ring-2 {
    width: 140px;
    height: 140px;
    --ring-duration: 9s;
    --ring-dir: reverse;
    --radius: 70px;
    --absorb-delay: 1.5s;
    --absorb-dur: 3.5s;
}

.ring-3 {
    width: 180px;
    height: 180px;
    --ring-duration: 12s;
    --radius: 90px;
    --absorb-delay: 0.7s;
    --absorb-dur: 4s;
}

.orbit-ring .particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--baljugo-primary-500);
    border-radius: 50%;
    top: -4px;
    left: 50%;
    box-shadow: 0 0 10px var(--baljugo-primary-500);
    transform: translateX(-50%) translateY(0) scale(1);
    animation: absorbParticle var(--absorb-dur) ease-in-out infinite;
    animation-delay: var(--absorb-delay);
}

@keyframes rotateRing {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes absorbParticle {
    0%, 20% {
        transform: translateX(-50%) translateY(0) scale(1);
        opacity: 1;
    }

    80% {
        transform: translateX(-50%) translateY(var(--radius)) scale(0);
        opacity: 0;
    }

    100% {
        transform: translateX(-50%) translateY(var(--radius)) scale(0);
        opacity: 0;
    }
}

/* Story Comparison Section */
.problem-title {
    font-size: 2.5rem;
}

.story-comparison-section {
    display: flex;
    flex-direction: column;
}

.story-part-before {
    background: var(--grayscale-50);
    padding: var(--s-120) 0;
    position: relative;
    overflow: hidden;
}

.story-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 1.875rem;
    font-size: var(--font-size-dl);
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.badge-alert {
    background: rgba(239, 68, 68, 0.1);
    color: var(--system-red-500);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.story-split-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.story-split-layout .story-cards-row {
    flex: 1;
    margin-top: 0;
    width: 100%;
}

.story-cards-row {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
}

.story-card {
    flex: 1;
    background: #fff;
    border-radius: var(--s-10);
    padding: var(--s-80) var(--s-60);
    text-align: left;
    box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    gap: 2rem;
}

    .story-card .card-text {
        flex: 1;
    }

@media screen and (max-width: 768px) {
    .story-card {
        flex-direction: column;
        gap: 1.5rem;
    }
}

.card-alert {
    border-top: 0.25rem solid var(--system-red-500);
}

.card-icon {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.alert-icon {
    background: rgba(239, 68, 68, 0.1);
    color: var(--system-red-500);
}

@media screen and (max-width: 992px) {
    .story-split-layout {
        flex-direction: column;
        text-align: center;
        gap: 0;
    }

    .story-cards-row {
        max-width: 100%;
        width: 100%;
        flex-direction: row;
    }

    .story-cards-row {
        margin-top: 3.75rem;
    }
}

@media screen and (max-width: 768px) {
    .problem-title {
        font-size: 2rem;
    }

    .story-cards-row {
        flex-direction: column;
    }
}

/* Mobile Responsive Hub Diagram */
@media screen and (max-width: 900px) {
    .hub-canvas {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 16px;
        padding: 20px 0;
        height: auto;
        overflow: visible;
    }

    .hub-lines {
        display: none !important;
    }

    .node {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        margin: 0;
        flex-shrink: 0;
    }
    /* 1st Row: Swap Nodes */
    .swap-node-a,
    .swap-node-b {
        order: 1;
        width: 45%;
        min-width: 0;
    }
    /* 2nd Row: Center Hub */
    .hub-center-node {
        order: 2;
        width: 100%;
        margin: 20px 0 !important;
    }
    /* 3rd Row: Bottom Nodes */
    .pos-b1-hub,
    .pos-b2-hub,
    .pos-b3-hub,
    .pos-b4-hub,
    .pos-b5-hub {
        order: 3;
        width: 45% !important;
        min-width: 0;
        height: 4rem;
    }
}

/* Marquee Blur & CTA overlay */
.marquee-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blurred-marquee {
    -webkit-filter: blur(4px);
    filter: blur(4px);
    opacity: 0.8;
    pointer-events: none;
    user-select: none;
}

.cta-overlay {
    position: absolute;
    z-index: 10;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.btn-primary.cta-pulse {
    font-size: var(--font-size-lg);
    padding: 20px 40px;
    box-shadow: 0 0 40px rgba(var(--baljugo-primary-700-rgb), 0.7);
}

@media screen and (max-width: 768px) {
    .btn-primary.cta-pulse {
        padding: 20px 20px;
        white-space: nowrap;
    }

    .customer-logo-large {
        width: 180px;
        height: 90px;
    }
}

/* Hero Logos Glass Panel */
.hero-logos-glass-panel {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--s-30);
    padding: var(--s-60);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    display: inline-block;
    width: 100%;
}

.logos-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-30);
    flex-wrap: wrap;
}

.logo-item {
    height: 4rem;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .logo-item img {
        height: 100%;
        width: auto;
        transition: transform 0.3s ease;
    }

    .logo-item:hover img {
        transform: translateY(-2px);
    }

    .logo-item.text-only {
        padding: 0.8rem 1.5rem;
        color: var(--grayscale-600) !important;
        white-space: nowrap;
        font-size: 1.25rem;
        transition: all 0.3s ease;
    }

        .logo-item.text-only:hover {
            color: var(--grayscale-800) !important;
            background-color: rgba(0, 0, 0, 0.08);
        }

@media screen and (max-width: 768px) {
    .logos-list {
        flex-wrap: wrap;
    }

    .logos-list {
        gap: var(--s-60);
    }

    .logo-item {
        min-width: 120px;
    }
}

/* =========================================================
   Ticket Contact CTA Section
   ========================================================= */
.cta-section {
    position: relative;
    overflow: hidden;
}

/* 펀칭 타공 */
.ticket-card {
    --hole: 17px; /* 타공 반지름 */
    --ticket-mask: linear-gradient(#000 0 0), radial-gradient(circle var(--hole) at 0 0, #000 98%, #0000), radial-gradient(circle var(--hole) at 100% 0, #000 98%, #0000), radial-gradient(circle var(--hole) at 0 100%, #000 98%, #0000), radial-gradient(circle var(--hole) at 100% 100%, #000 98%, #0000), radial-gradient(circle var(--hole) at 70% 0, #000 98%, #0000), radial-gradient(circle var(--hole) at 70% 100%, #000 98%, #0000);
    position: relative;
    background: linear-gradient(135deg, var(--baljugo-primary-800) 0%, var(--baljugo-admin-primary-900) 100%);
    border-radius: 0;
    padding: var(--s-90) 0 var(--s-90) var(--s-100);
    margin: 0 auto;
    max-width: 1000px;
    overflow: hidden;
    -webkit-mask: var(--ticket-mask);
    mask: var(--ticket-mask);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* Glassmorphism CTA Background */
.glass-cta-section {
    padding: 120px 0;
    background: #0f172a; /* Dark sleek background */
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.glass-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    z-index: 0;
    animation: blob-float 10s infinite alternate ease-in-out;
    pointer-events: none;
}

.glass-blob-1 {
    width: 400px;
    height: 400px;
    background: var(--baljugo-primary-500);
    top: -100px;
    left: -100px;
}

.glass-blob-2 {
    width: 500px;
    height: 500px;
    background: var(--baljugo-thirdpl-primary-500, #a855f7);
    bottom: -150px;
    right: -100px;
    animation-delay: -5s;
}

.glass-blob-3 {
    width: 300px;
    height: 300px;
    background: var(--system-yellow-500);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.2;
    animation-duration: 15s;
}

@keyframes blob-float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, 50px) scale(1.1);
    }
}

/* Glass Ticket Style */
.ticket-card.glass-ticket {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15), inset 0 20px 40px rgba(255, 255, 255, 0.05);
}

    .ticket-card.glass-ticket::after {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 50%;
        height: 100%;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.15), transparent);
        transform: skewX(-25deg);
        animation: glass-shine 6s infinite;
        pointer-events: none;
        z-index: 10;
    }

@keyframes glass-shine {
    0% {
        left: -100%;
    }

    15% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.ticket-content-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    position: relative;
    z-index: 2;
    gap: var(--s-60);
}

.ticket-text-area {
    flex: 1;
    padding-right: var(--s-40);
}

.ticket-desc {
    color: var(--grayscale-100);
}

/* ---- 티켓 메타 정보 ---- */
.ticket-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-65);
}

.ticket-meta-item {
    display: flex;
    flex-direction: column;
    gap: var(--s-10);
}

.ticket-meta-label {

    color: var(--baljugo-primary-300);
    font-size: var(--font-size-xxs);
    font-weight: 700;
    letter-spacing: 1.5px;
}

.ticket-meta-value {
    color: var(--grayscale-white);
    font-size: var(--font-size-sm);
    font-weight: 600;
}

/* ---- 절취선 (스텁 분리). 양 끝의 타공은 .ticket-card mask 가 담당 ---- */
.ticket-perforation {
    position: absolute;
    top: calc(var(--s-90) * -1);
    bottom: calc(var(--s-90) * -1);
    right: calc(30% + var(--hole) - 2px);
    width: 0;
    border-left: 2px dashed rgba(var(--grayscale-50-rgb), 0.6);
    z-index: 3;
}

.ticket-btn-area {
    flex-basis: 31.75%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--s-40);
}

.ticket-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--s-20);
    padding: var(--s-20) var(--s-40);
    margin-bottom: var(--s-60);
    border: 1px solid var(--baljugo-primary-400);
    border-radius: 30px;
    color: var(--grayscale-white);
    font-size: var(--font-size-xs);
    font-weight: 700;
    letter-spacing: 2px;
    background: rgba(var(--baljugo-primary-500-rgb), 0.18);
}

.ticket-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--system-yellow-400);
    animation: ticket-dot-pulse 2s infinite;
}

@keyframes ticket-dot-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(var(--system-yellow-500-rgb), 0.6);
    }

    70% {
        box-shadow: 0 0 0 9px rgba(var(--system-yellow-500-rgb), 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(var(--system-yellow-500-rgb), 0);
    }
}

.btn-ticket {
    position: relative;
    overflow: hidden;
    background: var(--system-yellow-400);
    color: var(--grayscale-900);
    font-size: var(--font-size-dl);
    font-weight: 800;
    padding: var(--s-40) var(--s-50);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(var(--system-yellow-500-rgb), 0.4);
    display: inline-flex;
    align-items: center;
    gap: var(--s-20);
    white-space: nowrap;
    border-radius: var(--s-10);
}
    /* Shine sweep */
    .btn-ticket::before {
        content: "";
        position: absolute;
        top: 0;
        left: -120%;
        width: 60%;
        height: 100%;
        background: linear-gradient(120deg, transparent, rgba(var(--grayscale-50-rgb), 0.75), transparent);
        transform: skewX(-20deg);
        transition: left 0.6s ease;
    }

    .btn-ticket:hover::before {
        left: 140%;
    }

    .btn-ticket:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 45px rgba(var(--system-yellow-500-rgb), 0.55);
    }

    .btn-ticket .arrow-icon {
        transition: transform 0.3s ease;
    }

    .btn-ticket:hover .arrow-icon {
        transform: translateX(4px);
    }

@media screen and (max-width: 768px) {
    .ticket-card {
        padding: var(--s-70);
        /* 모바일은 세로로 쌓이고 절취선이 흐름 중앙에 오므로 모서리 타공만 유지 */
        --ticket-mask: linear-gradient(#000 0 0), radial-gradient(circle var(--hole) at 0 0, #000 98%, #0000), radial-gradient(circle var(--hole) at 100% 0, #000 98%, #0000), radial-gradient(circle var(--hole) at 0 100%, #000 98%, #0000), radial-gradient(circle var(--hole) at 100% 100%, #000 98%, #0000);
    }

    .ticket-content-flex {
        flex-direction: column;
        text-align: center;
        gap: 0;
    }

    .ticket-text-area {
        padding-right: 0;
    }

    .ticket-meta {
        justify-content: center;
    }
    /* 절취선 가로 전환 (full-bleed) */
    .ticket-perforation {
        position: relative;
        top: auto;
        bottom: auto;
        right: auto;
        left: auto;
        width: calc(100% + var(--s-70) + var(--s-70));
        height: 0;
        border-left: none;
        border-top: 2px dashed rgba(var(--grayscale-50-rgb), 0.45);
        margin: var(--s-60) 0;
    }

    .ticket-btn-area {
        flex-basis: auto;
        width: 100%;
    }

    .btn-ticket {
        width: 100%;
        justify-content: center;
    }
}
