:root {
    --cyber-blue: #00F2FF;
    --deep-navy: #041329;
}
html {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: none;
    text-size-adjust: none;
}
p, li, td, th, dd, dt { max-height: 999999px; }
body {
    background-color: var(--deep-navy);
    color: #FFFFFF;
    font-family: 'Century Gothic', 'Pretendard', sans-serif;
    overflow-x: hidden;
    word-break: keep-all;
    overflow-wrap: break-word;
}
.font-headline { font-family: 'Century Gothic', 'Pretendard', sans-serif; }

/* Glassmorphism Base */
.glass {
    background: rgba(13, 28, 50, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 10px;
}

/* Hide Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--deep-navy); }
::-webkit-scrollbar-thumb { background: var(--cyber-blue); }


/* Node Network Background Placeholder */
.node-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Option 1: Cyber Flow Gradient Text */
.cyber-flow {
    background: linear-gradient(
        90deg,
        #00F2FF 0%,
        #FFFFFF 25%,
        #007BFF 50%,
        #FFFFFF 75%,
        #00F2FF 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: cyber-flow-anim 6s linear infinite;
}

@keyframes cyber-flow-anim {
    to {
        background-position: 200% center;
    }
}

/* 가독성 향상을 위한 텍스트 레이어 보호막 (불필요한 하단 여백 제거) */
.text-dimmer-bg {
    background: radial-gradient(circle, rgba(4, 19, 41, 0.8) 0%, rgba(4, 19, 41, 0.4) 50%, transparent 100%);
    padding: 3rem 4rem 1rem 4rem;
    border-radius: 50%;
    display: inline-block;
}

/* Custom Select Box Styling */
.custom-select-container {
    position: relative;
    width: 100%;
    user-select: none;
}
.custom-select-trigger {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(13, 21, 38, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1rem;
    color: #fff;
    transition: all 0.3s ease;
}
.custom-select-trigger:hover {
    border-color: #00F2FF;
}
.custom-select-trigger.active {
    border-color: #00F2FF;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
}
.custom-select-options {
    position: absolute;
    top: calc(100% + 8px); /* 지시하신 간격 조정 */
    left: 0;
    width: 100%;
    background: rgba(13, 21, 38, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    z-index: 100;
    display: none;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    animation: selectAppear 0.2s ease-out;
}
@keyframes selectAppear {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.custom-select-options.show {
    display: block;
}
.custom-option {
    padding: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    color: rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.custom-option:last-child {
    border-bottom: none;
}
.custom-option:hover {
    background: rgba(0, 242, 255, 0.1);
    color: #00F2FF;
    padding-left: 1.25rem;
}
.custom-option.selected {
    background: rgba(0, 242, 255, 0.05);
    color: #00F2FF;
}
.select-arrow {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.4);
}
.custom-select-trigger.active .select-arrow {
    transform: rotate(180deg);
    color: #00F2FF;
}

/* 네온 펄스 효과에 가독성용 드롭 섀도우 추가 */
.neon-pulse {
    background: linear-gradient(
        90deg,
        #00F2FF 0%,
        #0047FF 50%,
        #00F2FF 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: neon-pulse-anim 10s ease-in-out infinite;
    /* 배경과 분리하기 위한 깊은 그림자 */
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.9));
}

@keyframes neon-pulse-anim {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* 서브 카피 가독성 스타일 */
.sub-text-readability {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
    font-weight: 400;
}

/* 히어로 전용 글래스모피즘 코어 버튼 */
.hero-btn-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #00F2FF;
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.25);
    transform: translateY(-2px);
}

/* 10px Border Radius Global Sync (모든 요소 검증 및 강제 적용) */
button,
input,
textarea,
select,
.glass,
.hero-btn-glass,
/* 패딩이 있는 모든 버튼형 링크 */
a[class*="px-"][class*="py-"] {
    border-radius: 10px !important;
}

/* ----------------------------------------------------
   PARTNER CONTRACT PENDING CONTROL
   지시사항: 3, 4번 솔루션 카드의 노출 여부를 여기서 제어합니다.
   숨기려면 아래 주석(/* )을 해제하세요.
---------------------------------------------------- */
.partner-pending { display: none !important; }
