/* AI-Powered Designer Design System for ALBIT */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

@font-face {
    font-family: 'DengXian';
    src: local('DengXian'), local('Microsoft YaHei'), sans-serif;
}

:root {
    /* Base Colors */
    --bg-color: #0E0E0E;
    --neon: #C6FF00;
    --neon-blue: #00E5FF;
    --purple: #7B61FF;
    --male-blue: #5886FF;
    --pink: #FF4FD8;

    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.88);

    /* Functional Tokens */
    --glass-white: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    /* Globally remove underlines from links and clickable elements */
}

a {
    color: inherit;
    text-decoration: none;
}

body {
    background: radial-gradient(circle at 0% 0%, #10042b 0%, #01203f 35%, #000000 80%);
    background-attachment: fixed;
    color: var(--text-primary);
    font-family: 'Segoe UI', 'Microsoft YaHei', 'DengXian', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    top: 0 !important;
}

/* --- Custom Glossary for Professional Translation --- */
/* --- Custom Glossary for Professional Translation (Order Fix) --- */
.term-poc {
    display: inline;
}

/* --- Terminology Management (C-Validation / 中验) --- */
.term-poc {
    display: inline;
}

/* Default state: Show '中验', Hide 'C-Validation' (for native Chinese) */
.term-text .zh-native {
    display: inline;
}

.term-text .en-term {
    display: none;
}

body.translate-mode .term-text .zh-native {
    display: none;
}

body.translate-mode .term-text .en-term {
    display: inline;
}

/* --- Startup Status Area Styles --- */
.stage-label {
    font-size: 0.8rem;
    color: #fff;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 100px;
    background: linear-gradient(135deg, #FF4FD8, var(--purple));
    box-shadow: 0 4px 15px rgba(255, 79, 216, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    /* Match container width */
    margin-bottom: 12px;
}

.startup-status-container {
    width: 126px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    flex-shrink: 0;
}

.status-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center boxes within the wrapper */
    gap: 10px;
    width: 100%;
}

.status-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center content horizontally */
    gap: 10px;
    padding: 3px 14px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 0.75rem;
    width: 100%;
    /* Force uniform width */
}

.status-pill.done {
    background: rgba(198, 255, 0, 0.1);
    color: var(--neon);
    border: 1px solid var(--neon);
}

.status-pill.ing {
    background: rgba(0, 229, 255, 0.1);
    color: var(--neon-blue);
    border: 1px solid var(--neon-blue);
    padding: 3px 0px;
}

.partner-display {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
    padding: 3px 12px;
    border-radius: 4px;
    border: 0.5px solid rgba(255, 255, 255, 0.3);
    width: 100%;
    text-align: center;
}

/* Consolidated Fix: High Specificity for Progress Text Flex Layout */
.startup-card .progress-text .zh-view,
.startup-card .progress-text .ko-view,
.startup-card .progress-text .trans-view {
    display: none !important;
    /* Base hide */
    justify-content: space-between !important;
    width: 100% !important;
    align-items: baseline !important;
}

/* Force flex with even higher specificity to beat .dual-swap rules */
html:not([class*="translated"]):not([class*="lang-"]) .startup-card .progress-text .zh-view,
html.lang-zh .startup-card .progress-text .zh-view,
html.lang-ko .startup-card .progress-text .ko-view,
html[class*="translated"]:not(.lang-ko) .startup-card .progress-text .trans-view,
html.lang-en .startup-card .progress-text .trans-view {
    display: flex !important;
}

/* Label Text Gradient (Neon Blue -> Neon) */
.progress-label {
    background: linear-gradient(45deg, var(--neon-blue), var(--pink));
    -webkit-background-clip: text;
    background-clip: text;
    /* Fixed compatibility */
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}



.status-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 6px;
    width: 100%;
}

.progress-text {
    font-size: 0.75rem;
    color: var(--neon);
    /* Fluorescent color */
    font-weight: 700;
    width: 100%;
}


.num-pink {
    color: var(--pink);
}

.unit-dim {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    /* Remove bold */
}

.partner-inline {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.status-complex {
    width: 100%;
}

.bar-container {
    height: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
}

.bar-fill {
    height: 100%;
    background: var(--neon);
    box-shadow: 0 0 10px var(--neon);
}

/* --- Startup Patent & Stage Badge Styles --- */
.stage-info-row {
    display: flex;
    gap: 10px;
    margin-left: 15px;
}

.badge-stage {
    font-size: 0.65rem;
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
}

.badge-stage.invest {
    background: rgba(255, 79, 216, 0.05);
    color: #FF4FD8;
    border: 1px solid rgba(255, 79, 216, 0.4);
}

.badge-stage.tech {
    background: rgba(88, 134, 255, 0.05);
    color: var(--neon);
    /* Text changed to Neon */
    border: 1px solid rgba(88, 134, 255, 0.4);
}

.badge-stage.tech i {
    color: #5886FF;
    /* Icon color remains Blue */
}

.patent-data-bar {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    overflow: hidden;
    max-width: fit-content;
}

.patent-header {
    background: linear-gradient(45deg, rgba(0, 229, 255, 0.25), rgba(123, 97, 255, 0.3));
    color: var(--neon);
    padding: 6px 15px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.patent-body {
    display: flex;
    align-items: center;
    padding: 0 15px;
    gap: 15px;
}

.patent-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
}

.p-name {
    color: #fff;
    font-weight: 500;
}

.p-val {
    color: #FF4FD8;
    font-weight: 800;
}

.p-sep {
    color: rgba(255, 255, 255, 0.2);
    font-weight: 200;
}

.patent-total {
    margin-left: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
}

.t-name {
    background: linear-gradient(to right, var(--neon-blue), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    /* Fixed compatibility */
    color: transparent;
    font-weight: 800;
}

.t-val {
    color: var(--neon);
    font-weight: 800;
}

/* Translated or Non-CN state: Hide '中验', Show 'C-Validation' (or term text) */
.translated-ltr .term-poc .zh-native,
.translated-rtl .term-poc .zh-native,
html:not([lang^="zh"]) .term-poc .zh-native {
    display: none !important;
}

/* Ensure 'term-text' is visible when 'zh-native' is hidden */
html:not([lang^="zh"]) .term-poc .term-text,
html.translated-ltr .term-poc .term-text,
html.translated-rtl .term-poc .term-text,
.translated-ltr .term-poc .term-text,
.translated-rtl .term-poc .term-text {
    display: inline !important;
}

/* --- Smart Translation Swap: Show '对接' for CN, let 'Matching' be translated to others --- */
.swap-match[data-status^="Matching"],
.swap-match[data-status^="匹配"] {
    font-size: 0 !important;
}

.swap-match[data-status^="Matching"]::before,
.swap-match[data-status^="匹配"]::before {
    content: "对接" attr(data-suffix);
    font-size: 1rem;
    display: inline-block;
}

/* Specific size for status pills */
.status-pill .swap-match[data-status^="Matching"]::before,
.status-pill .swap-match[data-status^="匹配"]::before {
    font-size: 0.85rem;
}

/* Disable swap when translated */
html.translated-ltr .swap-match[data-status^="Matching"],
html.translated-rtl .swap-match[data-status^="Matching"],
.translated-ltr .swap-match[data-status^="Matching"],
.translated-rtl .swap-match[data-status^="Matching"],
html.translated-ltr .swap-match[data-status^="匹配"],
html.translated-rtl .swap-match[data-status^="匹配"] {
    font-size: inherit !important;
}

html.translated-ltr .swap-match[data-status^="Matching"]::before,
html.translated-rtl .swap-match[data-status^="Matching"]::before,
html.translated-ltr .swap-match[data-status^="匹配"]::before {
    display: none !important;
}

/* --- Dual-Swap: Show '对接' for CN, provide 'Matching' for others (Fixed literal translation issue) --- */
/* --- Dual-Swap: Show '对接' for CN, provide 'Matching' for others --- */
.dual-swap .zh-view,
.dual-swap .ko-view,
.dual-swap .trans-view {
    display: none !important;
    /* Start by hiding all views to ensure consistency */
}

/* --- Dual-Swap: Mutual Exclusion Rules --- */

/* 1. Default / Chinese Mode: Show ONLY zh-view, hide ALL others */
html.lang-zh .dual-swap .zh-view,
html:not([class*="translated"]):not([class*="lang-"]) .dual-swap .zh-view {
    display: inline !important;
}

html.lang-zh .dual-swap .ko-view,
html.lang-zh .dual-swap .trans-view,
html:not([class*="translated"]):not([class*="lang-"]) .dual-swap .ko-view,
html:not([class*="translated"]):not([class*="lang-"]) .dual-swap .trans-view {
    display: none !important;
}

/* 2. Korean Mode: Show ONLY ko-view, hide zh and trans */
html.lang-ko .dual-swap .ko-view {
    display: inline !important;
}

html.lang-ko .dual-swap .zh-view,
html.lang-ko .dual-swap .trans-view {
    display: none !important;
}

/* 3. Global/Translated Mode (English etc.): Show ONLY trans-view, hide zh and ko */
html[class*="translated"]:not(.lang-ko):not(.lang-zh) .dual-swap .trans-view,
html.lang-en .dual-swap .trans-view {
    display: inline !important;
}

html[class*="translated"]:not(.lang-ko):not(.lang-zh) .dual-swap .zh-view,
html[class*="translated"]:not(.lang-ko):not(.lang-zh) .dual-swap .ko-view,
html.lang-en .dual-swap .zh-view,
html.lang-en .dual-swap .ko-view {
    display: none !important;
}

/* Remove deprecated toggles */
.ko-only,
.zh-only {
    display: none !important;
}

/* --- Gradient Utilities --- */
.grad-neon-blue {
    background: linear-gradient(90deg, var(--neon), var(--neon-blue));
}

.grad-blue-purple {
    background: linear-gradient(90deg, var(--neon-blue), var(--purple));
}

.grad-full-tech {
    background: linear-gradient(90deg, var(--neon), var(--neon-blue), var(--purple));
}

.grad-pink-purple {
    background: linear-gradient(90deg, var(--pink), var(--purple));
}

/* Text Gradients */
.text-grad-blue-male {
    background: linear-gradient(90deg, var(--neon-blue), var(--male-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-grad-blue-purple {
    background: linear-gradient(90deg, var(--neon-blue), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Glassmorphism Box Levels --- */

/* Level 1: 강조! */
.glass-lv1 {
    background: var(--glass-white);
    border: 0.5px solid var(--neon-blue);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
}

.glass-lv1 .card-title {
    background: linear-gradient(90deg, var(--neon-blue), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

.card-inner {
    padding: 6px 35px !important;
}

.glass-lv1 .card-subtitle {
    color: var(--neon-blue);
}

.glass-lv1 .card-highlight {
    color: var(--neon);
}

/* Level 2: 강조!! */
.glass-lv2 {
    background: var(--glass-white);
    position: relative;
    padding: 30px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
}

.glass-lv2::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 0.5px;
    background: linear-gradient(90deg, var(--neon), var(--neon-blue));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

/* Level 3: 강조!!! */
.glass-lv3 {
    background: linear-gradient(90deg, rgba(0, 229, 255, 0.13), rgba(123, 97, 255, 0.13));
    border: 0.5px solid var(--neon-blue);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
}

/* Level 4: 강조!!!! - 인포그래픽 전용 */
/* .project-box-container 스타일 박스 제거 */
.project-box-container {
    background: transparent !important;
    backdrop-filter: none !important;
    border: none !important;
    padding: 20px 0 !important;
    margin: 40px auto !important;
    box-shadow: none !important;
    position: relative;
}

.project-box-container::before {
    display: none !important;
}

/* 구분선 스타일 - 스크롤 타겟팅을 위해 보존 */
.section-divider {
    border: none;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    width: 100%;
}

.toggle-arrow {
    text-align: center;
    width: 100%;
    margin-top: 40px;
    cursor: pointer;
    font-size: 2rem;
    color: var(--neon-blue);
    transition: all 0.3s ease;
}

.toggle-arrow:hover {
    transform: translateY(5px);
    text-shadow: 0 0 20px var(--neon-blue);
}




/* --- Verification Project Timeline Styles --- */
.verification-timeline {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    position: relative;
    padding: 0;
    gap: 15px;
    /* 간격 최적화 */
}

/* 단계 사이의 커넥터 라인 */
.timeline-connector {
    width: 0;
    height: 1px;
    position: relative;
    margin-top: 104px;
    z-index: 2;
    display: flex;
    justify-content: center;
    overflow: visible;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.timeline-connector.active {
    opacity: 1;
    transform: scaleX(1);
}

.connector-line {
    width: 160px;
    height: 1px;
    position: absolute;
    top: 0;
    transform: translateY(50px);
    overflow: visible;
    /* 자식 요소(도트, 화살표) 표시 */
}

/* 실제 점선 그라데이션 라인 */
.connector-line::before {
    content: "";
    position: absolute;
    inset: 0;
    height: 1.5px;
    background: linear-gradient(90deg, var(--neon), var(--neon-blue));
    -webkit-mask: linear-gradient(90deg, #000 60%, #0000 0) 0/10px 100%;
    mask: linear-gradient(90deg, #000 60%, #0000 0) 0/10px 100%;
    opacity: 0.9;
}

/* 좌측 동그라미 */
.connector-dot {
    position: absolute;
    left: -2px;
    top: -2px;
    width: 6px;
    height: 6px;
    background: var(--neon);
    /* 그라데이션 시작점과 일치 */
    border-radius: 50%;
}

/* 우측 삼각형/화살표 */
.connector-arrow {
    position: absolute;
    right: -2px;
    top: -3px;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 7px solid var(--neon-blue);
    /* 그라데이션 끝점과 일치 */
}

/* 구간별 컬러 설정 통합 (개별 그라데이션 적용으로 대체) */
.conn-1,
.conn-2,
.conn-3,
.conn-4 {
    color: inherit;
}

.timeline-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    min-width: 0;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.timeline-step.active {
    opacity: 1;
    transform: scale(1);
}

.step-icon-box {
    width: 208px;
    height: 128px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

/* 사용자 제공 고품질 SVG 블롭 스타일 */
.step-blob-svg {
    position: absolute;
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
    opacity: 0.8;
    /* 전체적인 조화 조절 */
    animation: blobFloating 3s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
}

.blob-fluor {
    fill: #C6FF00;
    /* 요청하신 톤앤매너 형광색 */
}

.blob-main {
    transition: fill 0.3s ease;
}

/* 스텝별 메인 블롭 시작 시간을 전부 다르게 설정 (6초 전체 주기 분산) */
.step-01 .step-blob-svg {
    animation-delay: 0s;
}

.step-02 .step-blob-svg {
    animation-delay: -1.2s;
}

.step-03 .step-blob-svg {
    animation-delay: -2.4s;
}

.step-04 .step-blob-svg {
    animation-delay: -3.6s;
}

.step-05 .step-blob-svg {
    animation-delay: -4.8s;
}

.step-01 .blob-main {
    fill: url(#grad-step-01);
}

.step-02 .blob-main {
    fill: url(#grad-step-02);
}

.step-03 .blob-main {
    fill: url(#grad-step-03);
}

.step-04 .blob-main {
    fill: url(#grad-step-04);
}

.step-05 .blob-main {
    fill: url(#grad-step-05);
}

@keyframes blobFloating {
    0% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
    }

    100% {
        transform: translate(-48%, -55%) scale(1.05) rotate(2deg);
    }
}

/* 타임라인 아이콘 이미지 스타일 */
.step-icon-box img {
    width: 128px;
    height: 128px;
    object-fit: contain;
    z-index: 2;
    transition: transform 0.3s ease;
}

.timeline-step:hover .step-icon-box img {
    transform: scale(1.1);
}

.timeline-step:hover .step-icon-box {
    transform: translateY(-5px);
}

.step-info {
    margin-top: 20px;
}

.step-meta {
    font-family: 'Segoe UI', sans-serif;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: bold;
    display: flex;
    align-items: baseline;
    /* 숫자와 텍스트 하단 정렬 */
    justify-content: center;
    gap: 5px;
}

.step-num {
    color: var(--neon-blue);
    font-size: 1.625rem;
}

.step-txt {
    color: var(--neon);
    font-size: 0.75rem;
}

.step-title {
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
    font-size: 1.125rem;
    background: linear-gradient(90deg, var(--neon-blue), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    line-height: 1.4;
    word-break: keep-all;
}

/* 상세 내용 섹션 (토글 대상) */
.step-desc-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
    margin-top: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.step-desc-wrapper.active {
    max-height: 1000px;
    transition: max-height 1s ease-in-out;
    margin-top: 30px;
    flex-grow: 1;
    /* 나머지 공간 차지 */
}

.step-desc-content {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 20px;
    font-size: 0.85rem;
    color: #FFFFFF;
    line-height: 1.6;
    text-align: left;
    border: 0.5px solid rgba(0, 229, 255, 0.2);
    height: 100%;
    /* 부모 높이 꽉 채우기 복구 */
    display: flex;
    flex-direction: column;
}

.step-desc-subtitle {
    display: flex;
    align-items: center;
    color: var(--neon-blue);
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.step-desc-subtitle i {
    background: linear-gradient(135deg, var(--neon), var(--neon-blue));
    -webkit-background-clip: text;
    background-clip: text;
    /* 표준 속성 추가 */
    -webkit-text-fill-color: transparent;
    margin-right: 12px;
    font-size: 1.1rem;
    width: 25px;
    text-align: center;
}

.toggle-arrow {
    cursor: pointer;
    color: var(--neon-blue);
    height: 24.67px;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.toggle-arrow.active {
    transform: rotate(180deg);
}

/* Solution Page: Brand & Global Section Only */
.brand-global-card {
    background: linear-gradient(45deg, rgba(198, 255, 0, 0.07), rgba(0, 229, 255, 0.07)) !important;
    position: relative;
    border-radius: 24px;
    padding: 40px;
}

.brand-global-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(45deg, rgba(0, 229, 255, 1) 0%, rgba(0, 229, 255, 0) 100%) !important;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.brand-global-card:hover {
    box-shadow: 0 0 30px rgba(198, 255, 0, 0.25);
    background: linear-gradient(45deg, rgba(198, 255, 0, 0.15), rgba(0, 229, 255, 0.15)) !important;
}

/* --- Label Boxes --- */
.label-box {
    background: linear-gradient(45deg, var(--neon), var(--neon-blue));
    color: #000;
    font-weight: bold;
    padding: 6px 15px;
    border-radius: 100px;
    position: relative;
    z-index: 1;
}

.label-box::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 100px;
    padding: 1px;
    background: linear-gradient(45deg, rgba(0, 229, 255, 1) 0%, rgba(0, 229, 255, 0) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}

/* Button style reset for label-box */
.cta-btn.label-box:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* --- Team Section (PPT EXACT MATCH) --- */
.team-section {
    padding: 80px 0;
    background: transparent;
    position: relative;
}

.team-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}


.team-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 32px;
    padding: 60px 25px 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

/* Gradient Border for the Card */
.team-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 1px;
    /* border-width */
    background: linear-gradient(135deg, var(--neon), var(--neon-blue));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

/* Member Label Design (PhD Tag) - Easily editable here */
.team-card .phd-tag {
    position: absolute;
    top: 25px;
    right: 25px;
    background: linear-gradient(90deg, var(--neon), var(--neon-blue));
    color: rgba(255, 255, 255, 0.9);
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: bold;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.phd-text {
    background: linear-gradient(90deg, var(--male-blue), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.phd-sep {
    color: rgba(0, 0, 0, 0.5);
    margin: 0 5px;
}

.phd-country {
    color: var(--bg-color);
    font-weight: 550 !important;
}

.team-card .img-wrapper {
    position: relative;
    width: 128px;
    /* 160px * 0.8 */
    height: 128px;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gradient Ring for Profile Image - Updated to Blue/Purple as requested */
.team-card .img-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 2px;
    /* 2px Border thickness */
    background: linear-gradient(135deg, var(--neon-blue), var(--purple));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.team-card img {
    width: 120px;
    /* 128px - (2px border + 2px gap)*2 */
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

/* Name (Chinese) with Blue-Male Gradient */
.team-card h3 .name-cn {
    background: linear-gradient(90deg, var(--neon-blue), var(--male-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Vertical Separator | */
.team-card .name-separator {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 12px;
    font-weight: 300;
    font-size: 1.4rem;
}

/* Job Title (English) in Neon Lime */
.team-card h3 .role-en {
    color: var(--neon);
    font-family: 'Segoe UI', sans-serif;
    letter-spacing: 1px;
}

.team-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    width: 100%;
    margin-top: 25px;
}

.team-card ul li {
    font-size: 1rem;
    color: #FFFFFF;
    margin-bottom: 12px;
    padding-left: 35px;
    position: relative;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* PPT Style List Icon (Neon Circle Check) */
.team-card ul li::before {
    content: '\f058';
    /* fa-circle-check */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--neon);
    font-size: 1.1rem;
}

/* --- Layout Utilities --- */
.container {
    max-width: 1520px;
    /* Reduced from 1680px as requested */
    margin: 0 auto;
    padding: 0px 40px;
}

.footer-container {
    max-width: 100% !important;
    padding: 0 20px !important;
}

header {
    height: 60px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    /* 반투명 화이트 */
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    /* 유리 효과 블러 및 채도 향상 */
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 30px;
    display: block;
    /* 하단 여백 제거 */
}

.logo-text {
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.8);
    margin-left: 12px;
    margin-bottom: 3px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-item {
    font-size: 0.95rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    padding: 10px 0;
    /* 상하 10px 여백 */
}

.nav-item i {
    font-size: 0.9rem;
    opacity: 1;
    /* 선명도 확보 */
    transition: all 0.3s ease;
    /* 버튼 기본 상태: 형광블루 > 보라 그라데이션 */
    background: linear-gradient(135deg, var(--neon-blue), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 기존 호버 디자인(핑크, 퍼플 등 고유색)을 절대적으로 보호하기 위한 리셋 */
.nav-item:hover i {
    background: none !important;
    -webkit-text-fill-color: initial !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
}

.nav-item:hover i.fa-microchip {
    color: var(--neon-blue);
    opacity: 1;
}

.nav-item:hover i.fa-trophy {
    color: var(--purple);
    opacity: 1;
}

.nav-item.active {
    color: var(--neon-blue) !important;
}

.nav-item.active::after {
    width: calc(100% + 2px) !important;
    background: linear-gradient(90deg, var(--neon), var(--neon-blue)) !important;
}

.admin-link {
    margin-left: 15px;
    font-size: 0.8rem;
    opacity: 0.5;
    color: var(--text-secondary);
}

.admin-link:hover {
    opacity: 1;
    color: var(--neon);
}

.hero {
    padding: 160px 0 90px !important;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* 히어로 배경 떠다니는 네온 링 */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: orbFloat linear infinite;
}

/* ── 속 빈 링 타입 ── */
.orb1 {
    width: 360px;
    height: 360px;
    top: 5%;
    left: 2%;
    background: transparent;
    border: 1.5px solid rgba(0, 229, 255, 0.4);
    box-shadow: 0 0 12px rgba(0, 229, 255, 0.25);
    animation-duration: 24s;
    animation-delay: 0s;
}

.orb3 {
    width: 500px;
    height: 500px;
    top: -5%;
    right: -8%;
    background: transparent;
    border: 1px solid rgba(123, 97, 255, 0.35);
    box-shadow: 0 0 16px rgba(123, 97, 255, 0.2);
    animation-duration: 28s;
    animation-delay: -10s;
}

.orb7 {
    width: 180px;
    height: 180px;
    top: 40%;
    right: 15%;
    background: transparent;
    border: 1.5px solid rgba(0, 229, 255, 0.3);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.15);
    animation-duration: 20s;
    animation-delay: -14s;
}

/* ── 반투명 그라데이션 채운 원 타입 ── */
.orb2 {
    width: 90px;
    height: 90px;
    top: 18%;
    left: 18%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.35) 0%, rgba(0, 229, 255, 0.05) 70%, transparent 100%);
    animation-duration: 16s;
    animation-delay: -4s;
}

.orb4 {
    width: 35px;
    height: 35px;
    top: 42%;
    left: 9%;
    background: radial-gradient(circle, rgba(198, 255, 0, 0.6) 0%, rgba(198, 255, 0, 0.1) 70%, transparent 100%);
    animation-duration: 12s;
    animation-delay: -2s;
}

.orb5 {
    width: 140px;
    height: 140px;
    top: 62%;
    right: 8%;
    background: radial-gradient(circle, rgba(123, 97, 255, 0.35) 0%, rgba(123, 97, 255, 0.05) 70%, transparent 100%);
    animation-duration: 18s;
    animation-delay: -7s;
}

.orb6 {
    width: 22px;
    height: 22px;
    top: 28%;
    right: 22%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.8) 0%, rgba(0, 229, 255, 0.1) 70%, transparent 100%);
    animation-duration: 10s;
    animation-delay: -3s;
}

@keyframes orbFloat {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(30px, -45px);
    }

    50% {
        transform: translate(-15px, -80px);
    }

    75% {
        transform: translate(-35px, -35px);
    }

    100% {
        transform: translate(0, 0);
    }
}

/* 히어로 좌측 무드 표류 블롭 */
.hero::before {
    content: "";
    position: absolute;
    left: -200px;
    top: 10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle at 60% 50%, rgba(0, 229, 255, 0.5) 0%, transparent 65%);
    border-radius: 58% 42% 38% 62% / 52% 65% 35% 48%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
    filter: blur(80px);
    animation: heroBlob1 15s ease-in-out infinite alternate;
}

/* 히어로 우측 무드 표류 블롭 */
.hero::after {
    content: "";
    position: absolute;
    right: -200px;
    top: 5%;
    width: 750px;
    height: 750px;
    background: radial-gradient(circle at 40% 50%, rgba(123, 97, 255, 0.5) 0%, transparent 65%);
    border-radius: 42% 58% 62% 38% / 65% 35% 65% 35%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
    filter: blur(80px);
    animation: heroBlob2 18s ease-in-out infinite alternate;
}

/* Hero Scroll Navigation Button (Fixed Mouse Style) */
.hero-scroll-btn {
    position: fixed;
    bottom: 120px;
    /* 푸터 로고와 겹치지 않게 위치 상향 조정 */
    right: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    z-index: 9999;
    /* 최상단 고정 */
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 1 !important;
    visibility: visible !important;
}

.mouse-icon {
    width: 30px;
    height: 50px;
    border: 2px solid var(--neon-blue);
    border-radius: 20px;
    position: relative;
    display: flex;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

.mouse-icon .wheel {
    width: 4px;
    height: 8px;
    background: var(--neon-blue);
    border-radius: 2px;
    margin-top: 8px;
    animation: scrollWheelDown 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px var(--neon-blue);
}

/* 역방향 (올라가기) 스타일 */
.hero-scroll-btn.up .mouse-icon .wheel {
    animation: scrollWheelUp 1.5s ease-in-out infinite;
}

.hero-scroll-btn.up .scroll-text {
    background: linear-gradient(135deg, var(--neon-blue), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    filter: drop-shadow(0 0 5px rgba(0, 229, 255, 0.3));
}

.hero-scroll-btn.up .mouse-icon {
    border-color: var(--purple);
    box-shadow: 0 0 20px rgba(123, 97, 255, 0.5);
}

.scroll-text {
    font-size: 0.75rem;
    color: var(--neon-blue);
    letter-spacing: 2px;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.hero-scroll-btn:hover .mouse-icon {
    background: rgba(0, 229, 255, 0.2);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.6);
    transform: translateY(-5px);
}

@keyframes scrollWheelDown {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    100% {
        transform: translateY(20px);
        opacity: 0;
    }
}

@keyframes scrollWheelUp {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    100% {
        transform: translateY(0);
        opacity: 0;
    }
}

@keyframes scrollBtnBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(12px);
    }
}


@keyframes heroBlob1 {
    0% {
        border-radius: 58% 42% 38% 62% / 52% 65% 35% 48%;
        transform: scale(1) rotate(0deg);
    }

    100% {
        border-radius: 42% 58% 55% 45% / 65% 45% 55% 35%;
        transform: scale(1.1) rotate(15deg);
    }
}

@keyframes heroBlob2 {
    0% {
        border-radius: 42% 58% 62% 38% / 65% 35% 65% 35%;
        transform: scale(1) rotate(0deg);
    }

    100% {
        border-radius: 60% 40% 38% 62% / 42% 62% 38% 58%;
        transform: scale(1.05) rotate(-10deg);
    }
}

.hero-content-wrapper {
    animation: heroReveal 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    position: relative;
    z-index: 1;
}

.hero-logo-box {
    position: relative;
    width: 120px;
    height: 92px;
    margin: 0 auto 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* 드로잉 후 부유 느낌 강화 */
    animation: floatingLogo 8s ease-in-out infinite;
}

@keyframes floatingLogo {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}


/* --- SVG Drawing Animation --- */
.hero-svg-logo {
    filter: drop-shadow(0 0 15px rgba(198, 255, 0, 0.3));
    z-index: 2;
    /* 로고가 완성된 후 은은한 광채가 나도록 */
    animation: logoGlowEffect 4s ease-in-out infinite alternate;
}

@keyframes logoGlowEffect {

    0%,
    40% {
        filter: drop-shadow(0 0 5px rgba(0, 229, 255, 0.2));
    }

    100% {
        filter: drop-shadow(0 0 30px rgba(0, 229, 255, 0.6)) drop-shadow(0 0 10px rgba(198, 255, 0, 0.4));
    }
}

#logo-path-main {
    stroke-dasharray: 150;
    stroke-dashoffset: 150;
    animation: drawStroke 0.75s ease-out forwards 0.05s;
}

#logo-circle-inner {
    transform: scale(0);
    transform-origin: 60px 45px;
    animation: scaleUp 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards 0.3s;
}

#logo-line-inner {
    stroke-dasharray: 30;
    stroke-dashoffset: 30;
    animation: drawStroke 0.4s ease-out forwards 0.5s;
}

@keyframes drawStroke {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes scaleUp {
    to {
        transform: scale(1);
    }
}

/* --- Hero Title Sequential Animation --- */
.animate-title {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0;
    font-size: 4.5rem;
    margin-bottom: 30px;
    line-height: 1.1;
}

.animate-title span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: letterReveal 0.2s ease-out forwards;
}

/* ALBIT: 흰색 단일 컬러 + 3px 빛 */
.word-albit span {
    color: #FFFFFF !important;
    -webkit-text-fill-color: #FFFFFF !important;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.8);
}

/* PLATFORM: 각 글자에 그라데이션 적용 후 위치를 조정하여 연속성 구현 */
.word-platform {
    display: inline-flex;
}

.word-platform span {
    background: linear-gradient(90deg, var(--neon-blue), var(--male-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 300% 100%;
    /* 너비를 넓게 잡아 그라데이션을 부드럽게 연결 */
}

/* 각 글자별 그라데이션 위치 조정 (8글자 기준) */
.word-platform span:nth-child(1) {
    background-position: 0% 0;
}

.word-platform span:nth-child(2) {
    background-position: 14% 0;
}

.word-platform span:nth-child(3) {
    background-position: 28% 0;
}

.word-platform span:nth-child(4) {
    background-position: 42% 0;
}

.word-platform span:nth-child(5) {
    background-position: 56% 0;
}

.word-platform span:nth-child(6) {
    background-position: 70% 0;
}

.word-platform span:nth-child(7) {
    background-position: 84% 0;
}

.word-platform span:nth-child(8) {
    background-position: 100% 0;
}

/* 동시 시작을 위한 딜레이 (절반으로 단축) */
.animate-title span:nth-child(1) {
    animation-delay: 0.05s;
}

.animate-title span:nth-child(2) {
    animation-delay: 0.075s;
}

.animate-title span:nth-child(3) {
    animation-delay: 0.10s;
}

.animate-title span:nth-child(4) {
    animation-delay: 0.125s;
}

.animate-title span:nth-child(5) {
    animation-delay: 0.15s;
}

/* PLATFORM 단어 딜레이 */
.word-platform span:nth-child(1) {
    animation-delay: 0.20s;
}

.word-platform span:nth-child(2) {
    animation-delay: 0.225s;
}

.word-platform span:nth-child(3) {
    animation-delay: 0.25s;
}

.word-platform span:nth-child(4) {
    animation-delay: 0.275s;
}

.word-platform span:nth-child(5) {
    animation-delay: 0.300s;
}

.word-platform span:nth-child(6) {
    animation-delay: 0.325s;
}

.word-platform span:nth-child(7) {
    animation-delay: 0.350s;
}

.word-platform span:nth-child(8) {
    animation-delay: 0.375s;
}

@keyframes letterReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Sub Title & Neon Line Fly-in --- */
.hero-sub1 {
    position: relative;
    display: inline-block;
    margin-top: 15px;
    padding-bottom: 3px;
    overflow: hidden;
    /* 라인 비향 전 숨김 */
}

.animate-sub .sub-text {
    display: inline-block;
    font-size: 1.625rem;
    opacity: 0;
    animation: fadeInIntro 0.4s ease-out forwards 0.6s;
}

@keyframes fadeInIntro {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-cta-wrap {
    margin-top: 0px;
    margin-bottom: 70px;
    text-align: center;
}

/* Floating CTA (Process ~ Team) */
.floating-cta-wrapper {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translate(-50%, 20px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
}

.floating-cta-wrapper.visible {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    pointer-events: auto;
}

.floating-cta-wrapper .cta-btn {
    padding: 8px 25px !important;
    font-size: 18px !important;
    margin-top: 30px;
}

.cta-btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(90deg, var(--neon), var(--neon-blue));
    color: #000;
    position: relative;
    overflow: hidden;
    /* 빛 효과 차단 */
}

/* .btn-primary:hover 제거됨 */

/* 45도 번뜩이는 빛 효과 */
.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 150px;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.1) 30%,
            rgba(255, 255, 255, 0.4) 50%,
            /* 은은한 정점 */
            rgba(255, 255, 255, 0.1) 70%,
            transparent 100%);
    transform: skewX(-45deg);
    transition: none;
}

.btn-primary:hover::after {
    left: 150%;
    transition: all 1.2s ease-in-out;
    /* 속도를 더 느리고 부드럽게 */
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--neon-blue);
    color: var(--neon-blue);
}

.tech-tag {
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    transition: all 0.3s;
}

.tech-tag:hover {
    border-color: var(--neon);
    color: var(--neon);
    transform: translateY(-3px);
}

/* --- Solution Page Specifics --- */
.solution-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-custom {
    width: 28px;
    height: 28px;
    border: 2px solid var(--text-secondary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.solution-row.selected {
    border-color: var(--neon);
    box-shadow: 0 0 30px rgba(198, 255, 0, 0.2);
}

.selected .checkbox-custom {
    background: var(--neon);
    border-color: var(--neon);
}

.selected .checkbox-custom::after {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #000;
}

#floating-apply {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: none;
    padding: 15px 35px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.7);
    font-size: 1.1rem;
    align-items: center;
    border-radius: 100px;
    background: linear-gradient(45deg, var(--neon), var(--neon-blue));
    color: #000;
}

#floating-apply::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 100px;
    padding: 1px;
    background: linear-gradient(45deg, rgba(0, 229, 255, 1) 0%, rgba(0, 229, 255, 0) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.apply-content {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.apply-close {
    cursor: pointer;
    padding-left: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.apply-close i {
    font-size: 1.6rem;
    color: rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease;
}

.apply-close:hover i {
    color: rgba(0, 0, 0, 1);
}

/* --- Input Form Specifics --- */
.form-section {
    padding: 120px 0 80px;
    background: radial-gradient(circle at 10% 10%, rgba(198, 255, 0, 0.05), transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(0, 229, 255, 0.05), transparent 40%);
}

.input-group {
    margin-bottom: 30px;
}

.input-group label {
    display: block;
    margin-bottom: 12px;
    color: var(--neon-blue);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 18px 25px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: var(--neon);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 20px rgba(198, 255, 0, 0.1);
}

.input-group textarea {
    resize: vertical;
}

.file-upload-wrapper {
    position: relative;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
}

.file-upload-wrapper:hover {
    border-color: var(--neon-blue);
    background: rgba(0, 229, 255, 0.05);
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

/* --- Modal & Identity Selection --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    width: 90%;
    max-width: 800px;
    padding: 60px 40px;
    position: relative;
    animation: slideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--neon);
}

.modal-header {
    text-align: center;
    margin-bottom: 40px;
}

.modal-header h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.modal-header p {
    color: var(--text-secondary);
}

/* Selection modal header override — stack CN top / EN bottom */
#selection-modal .modal-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4px 24px 24px;
    background: none;
    border-bottom: none;
    margin-bottom: 20px;
}

#selection-modal .modal-header h3 {
    font-size: 1.55rem;
    margin-bottom: 6px;
    line-height: 1.3;
}

#selection-modal .modal-header p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

.selection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.selection-card {
    padding: 28px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
    border-radius: 20px;
}

.selection-card.text-left {
    text-align: left;
}

.selection-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 28px rgba(198, 255, 0, 0.2);
}

/* Icon box: no box, no border */
.selection-card .icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 2.4rem;
    background: none;
    border: none;
}

/* Rocket icon: pink→purple gradient */
.selection-card:first-child .icon-box i {
    background: linear-gradient(135deg, #FF4FD8, #7B61FF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Partner icon: original neon→neon-blue gradient */
.selection-card:last-child .icon-box i {
    background: linear-gradient(135deg, var(--neon), var(--neon-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.selection-card h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #fff;
    white-space: nowrap;
}

.selection-card p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin: 0;
}

.text-center {
    text-align: center;
}

#google_translate_element,
.goog-te-menu-frame,
.goog-te-balloon-frame {
    display: none !important;
}

/* Custom Language Button (Replacement for original dropdown toggle) */
.custom-lang-btn {
    background: linear-gradient(90deg, rgba(0, 229, 255, 0.13), rgba(123, 97, 255, 0.13));
    border: 0.5px solid var(--neon-blue);
    padding: 5px 15px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
    margin-right: 15px;
}

.custom-lang-btn:hover {
    border-color: var(--neon);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
    transform: translateY(-2px);
}

.custom-lang-btn::before {
    content: "LANGUAGE";
    background: linear-gradient(90deg, var(--neon-blue), var(--male-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.9rem;
}

.custom-lang-btn i {
    color: var(--neon);
    font-size: 0.8rem;
    margin-left: 10px;
}

/* --- Navigation Hover Effects --- */
.main-nav a {
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.main-nav a:hover {
    color: #fff !important;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
    transform: translateY(-2px);
}

/* Custom Icon Colors on Hover */
.main-nav a:hover .fa-rocket {
    color: var(--pink) !important;
}

.main-nav a:hover .fa-hand-holding-dollar {
    color: var(--neon) !important;
}

/* Light underbar animation on hover */
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: -2px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-blue), var(--male-blue));
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: calc(100% + 2px);
}

/* Header position and translated state adjustment */
header {
    height: 90px;
    display: flex;
    align-items: center;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(14, 14, 14, 0.9);
    transition: top 0.3s ease-in-out;
}

.translated-ltr header,
.translated-rtl header {
    top: 40px;
}

body {
    top: 0 !important;
    position: static !important;
    padding-top: 90px;
}

html {
    margin-top: 0 !important;
}

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Hero Section Redesign Styles --- */
.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 0px;
    letter-spacing: -1px;
}

.hero-sub1 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 3px;
    display: inline-block;
    position: relative;
    isolation: isolate;
    /* 내부 레이어 독립화 */
    /* text-grad 클래스의 -webkit-text-fill-color 상속을 차단 */
    -webkit-text-fill-color: initial;
    background: none;
}

/* 그라데이션을 실제 텍스트가 있는 span에 직접 적용 */
.hero-sub1 span {
    position: relative;
    z-index: 2;
    background: linear-gradient(90deg, var(--neon-blue), var(--male-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 형광펜 효과는 이제 애니메이션 요소로 대체됨 (기존 ::after 삭제) */

.hero-group {
    max-width: 1440px;
    width: 100%;
    margin: 40px auto 0 !important;
    text-align: left;
    padding-left: 25px;
    position: relative;
}

/* --- Hero Section Sequential reveal animation --- */
.animate-on-reveal {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUpReveal 0.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.hero-group.animate-on-reveal {
    animation-delay: 1.35s;
}

.hero-cta-wrap.animate-on-reveal {
    animation-delay: 1.2s;
}

.project-box-container.animate-on-reveal {
    animation-delay: 1.4s;
}

@keyframes slideUpReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

/* 전시 및 프로세스 섹션 헤더 */
.exhibition-header,
.process-header {
    text-align: center;
}

.exhibition-header .section-title,
.process-header .section-title {
    font-size: 3rem;
    font-weight: 700;
    padding-top: 80px;
    margin-bottom: 10px;
}

/* 박스 외부 섹션 타이틀 + 바 */
.section-title-with-bar {
    font-size: 2.2rem;
    font-weight: 700;
    padding-left: 20px;
    position: relative;
    background: linear-gradient(90deg, var(--neon-blue), var(--male-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-title-with-bar::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 8px;
    width: 6px;
    background: var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue);
}

/* 프로젝트 상자 상단 액션 버튼 정렬 */
.project-box-container {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
    margin-top: 0px !important;
    /* 버튼이 나갔으므로 기본 패딩으로 복구 */
}

.box-top-action {
    position: absolute;
    bottom: 5px;
    /* 박스 바로 위에 걸치도록 */
    right: 0;
    z-index: 10;
}

.top-apply-btn {
    font-size: 1.125rem !important;
    padding: 8px 25px !important;
}

.hero-sub2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-weight: 500;
}

.hero-tagline {
    font-size: 1.2rem;
    color: #fff !important;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
    white-space: normal;
    word-break: keep-all;
    max-width: 900px;
}

/* --- Pre-Footer & Global Footer Styling --- */
.main-footer {
    background: #000;
    padding-bottom: 14px;
    position: relative;
    margin-top: 100px;
}

.footer-top-row {
    display: flex;
    align-items: center;
    width: 100%;
}

.footer-line {
    height: 1px;
    flex-grow: 1;
    background: linear-gradient(90deg, var(--purple), var(--neon-blue), var(--neon));
    position: relative;
}

.footer-line::after {
    content: "";
    position: absolute;
    right: -3px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--neon);
    border-radius: 50%;
    z-index: 2;
}

.footer-logo-group {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 15px;
    padding-right: 20px;
    cursor: pointer;
}

.footer-logo-text {
    font-weight: 900;
    font-size: 1.125rem;
    color: #FFFFFF;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
}

.footer-logo-icon {
    height: 1.4rem;
    width: auto;
}

.footer-info {
    text-align: center;
    margin-top: 20px;
    padding-top: 12px !important;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.125rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0 10px !important;
}

.footer-item span {
    opacity: 0.9;
}

.highlight-icon {
    color: var(--neon);
    font-size: 1.1rem;
}

/* 동적 로고 크기 조절 */
.custom-logo-size {
    height: 1.1rem !important;
    width: auto;
}

.link-item {
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 10px 0;
    /* 언더바 공간 확보를 위해 패딩 조정 */
    ;
    /* 아이템 간 간격 */
    text-decoration: none;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* 헤더와 동일한 호버 효과 적용 */
.link-item:hover {
    color: #fff !important;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
    transform: translateY(-2px);
}

/* 언더바 애니메이션 (상단바와 동일) */
.link-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-blue), var(--male-blue));
    transition: width 0.3s ease;
}

.link-item:hover::after {
    width: 100%;
}

/* 아이콘 개별 컬러 호버 효과 (상단바와 동일한 디테일) */
.link-item:hover .fa-laptop-code {
    color: var(--neon-blue) !important;
    filter: drop-shadow(0 0 8px var(--neon-blue));
}

.link-item:hover .fa-earth-asia {
    color: var(--pink) !important;
    filter: drop-shadow(0 0 8px var(--pink));
}

.link-item:hover .fa-robot {
    color: var(--purple) !important;
    filter: drop-shadow(0 0 8px var(--purple));
}

/* ALBIT PLATFORM 아이콘(로고) 호버 효과 */
.link-item:hover .custom-logo-size {
    filter: drop-shadow(0 0 8px #fff);
}


/* --- New Sections: Statistics & Exhibition --- */

.section-stats {
    padding: 80px 0;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.stat-card {
    padding: 35px 20px;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(0, 229, 255, 0.15);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), inset 0 0 20px rgba(0, 229, 255, 0.05);
}

.stat-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* .stat-card:hover 제거 */

.stat-icon {
    font-size: 2.5rem;
    margin-top: 20px;
    background: linear-gradient(135deg, var(--neon), var(--neon-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(90deg, var(--neon-blue), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: baseline;
    gap: 4px;
    animation: statNumberGlow 3s ease-in-out infinite alternate;
}

@keyframes statNumberGlow {
    from {
        filter: drop-shadow(0 0 2px rgba(0, 229, 255, 0.1));
    }

    to {
        filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.4));
    }
}

.stat-unit {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    -webkit-text-fill-color: rgba(255, 255, 255, 0.6);
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--neon-blue);
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    padding: 0 5px;
}

.stat-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, var(--pink), var(--purple));
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(123, 97, 255, 0.4);
}

.stat-badge.badge-complete {
    background: linear-gradient(45deg, var(--neon-blue), var(--purple));
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}

.section-divider {
    border: none;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.1), transparent);
}

.exhibition-header {
    text-align: center;
    margin-bottom: 60px;
}

.exhibition-header .section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    letter-spacing: 4px;
    margin-top: 10px;
}

/* More/Exhibition Section */
.section-exhibition {
    padding: 80px 0 120px;
}

.exhibition-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ex-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 40px 30px;
    border-radius: 28px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* .ex-card:hover 제거 */

.ex-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.ex-arrow-more {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--neon);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 15px;
    line-height: 1;
    transform: scaleX(0.65);
    /* 가로를 0.75배로 축소 */
    letter-spacing: -2px;
}

.ex-arrow-more:hover {
    text-shadow: 0 0 10px var(--neon);
    transform: scale(1.1);
}

.ex-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.2), rgba(123, 97, 255, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--neon-blue);
    border: 0.5px solid var(--neon-blue);
}

.ex-title {
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--neon-blue), var(--male-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
}

.ex-project-list {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ex-project-item {
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    border: 0.5px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    overflow: hidden;
    /* 텐스트 박스 밖으로 누츸 방지 */
    transition: all 0.3s ease;
}

.ex-item-left {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

.ex-item-left i {
    flex-shrink: 0;
}

.ex-item-left>span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

.ex-text-content {
    display: flex;
    align-items: center;
    gap: 6px;
    overflow: hidden;
    min-width: 0;
    flex: 1;
}

.ex-text-content .ex-name {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    min-width: 0;
}

.ex-text-content .ex-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.ex-text-content .ex-name {
    font-weight: 700;
    flex-shrink: 0;
    max-width: none;
    overflow: visible;
    text-overflow: clip;
}

.ex-text-content .ex-desc {
    font-size: 0.85rem;
    opacity: 0.7;
    flex: 1;
}

.ex-status-tag {
    padding: 3px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 229, 255, 0.5);
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.ex-status-tag.stage-final {
    border-color: rgba(198, 255, 0, 0.5);
    background: rgba(0, 0, 0, 0.4);
    color: var(--neon);
}

.ex-status-tag.stage-audit {
    border-color: rgba(123, 97, 255, 0.5);
    background: rgba(0, 0, 0, 0.4);
    color: var(--purple);
}



.ex-project-item i {
    color: var(--neon);
    font-size: 0.8rem;
}



/* .ex-more-link:hover 제거 */

/* Special Glass Levels for New Sections */
.glass-special-group {
    background: linear-gradient(90deg, rgba(0, 229, 255, 0.13), rgba(123, 97, 255, 0.13));
    border: 0.5px solid var(--neon-blue);
    backdrop-filter: blur(15px);
}

.glass-special-infographic {
    background: linear-gradient(45deg, rgba(198, 255, 0, 0.04), rgba(0, 229, 255, 0.04));
    position: relative;
    border-radius: 28px;
    overflow: hidden;
}

.glass-special-infographic::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 1px;
    background: linear-gradient(45deg, var(--neon-blue), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

/* Scroll Reveal System */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Sequenced reveal for cards */
.reveal-delay-1 {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) 0.05s !important;
}

.reveal-delay-2 {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) 0.10s !important;
}

.reveal-delay-3 {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) 0.15s !important;
}

.reveal-delay-4 {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) 0.20s !important;
}

.reveal-delay-5 {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) 0.25s !important;
}

.reveal-delay-6 {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) 0.30s !important;
}

/* Trendy Statistics Glow Animation */
@keyframes statNumberGlow {
    from {
        filter: drop-shadow(0 0 2px rgba(0, 229, 255, 0.1));
    }

    to {
        filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.4));
    }
}

/* --- Startup Showcase Card Styles --- */
.startup-list {
    max-width: 1440px;
    /* Adjusted to fit 1520px container padding */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.startup-card {
    height: 140px;
    /* Editable Height */
    padding: 0 !important;
    overflow: visible;
    /* Prevent border clipping */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 20px;
    background: #151b2d;
    /* Solid background for more stability */
    z-index: 0;
}

.startup-card::before {
    content: "";
    position: absolute;
    /* Move slightly outside by 1px to ensure visibility on right/bottom */
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 21px;
    /* Slightly larger radius to match overscan */
    padding: 1px;
    /* border-width */
    background: linear-gradient(to right, var(--neon), var(--neon-blue));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.startup-card:hover {
    transform: scale(1.015);
    filter: brightness(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: none;
}

.card-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Allow flexible spacing */
    height: 100%;
    padding: 6px 35px !important;
    gap: 15px;
    /* Reduced to 1/3 for more internal space */
    position: relative;
    z-index: 2;
}

.startup-logo .logo-sq {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    /* Anchor for absolute badges */
}

.startup-logo img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}

.startup-info {
    width: 350px;
    /* Widened to support dual English/Chinese names */
    flex-shrink: 0;
    container-type: inline-size;
    container-name: info;
}

.startup-name {
    font-family: 'Segoe UI', sans-serif;
    /* Auto-shrink logic: use cqi units to fit container */
    font-size: clamp(0.9rem, 7cqi, 1.55rem);
    font-weight: 800;
    /* Made bolder as per user request */
    color: #FFF;
    margin-bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sub-name-en {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.7;
    margin-left: 5px;
}

.info-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 8px;
}

.startup-tech {
    /* Auto-shrink logic */
    font-size: clamp(0.7rem, 6.5cqi, 0.95rem);
    background: linear-gradient(to right, #00E5FF, #9D50BB);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.startup-tech i {
    color: var(--neon);
    -webkit-text-fill-color: var(--neon);
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

.startup-tech span {
    overflow: hidden;
    text-overflow: ellipsis;
}

.startup-biz {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.startup-performance {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding-left: 25px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.performance-top-row {
    display: flex;
    align-items: center;
    gap: 4px;
    /* Reduced from 15px */
}

.country-tag {
    font-size: 0.75rem;
    background: rgba(125, 125, 125, 0.15);
    padding: 3px 10px;
    border-radius: 4px;
    color: #ddd;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.startup-biz i {
    background: linear-gradient(135deg, var(--pink), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.startup-highlight {
    font-size: 0.85rem;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
    padding: 6px 14px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    flex-shrink: 0;
}

.startup-highlight i {
    background: linear-gradient(to right, #00E5FF, #9D50BB);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1rem;
}

.tag-revenue-simple {
    position: absolute !important;
    top: 0 !important;
    left: 7px !important;
    z-index: 10 !important;
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

.tag-revenue-simple i {
    color: var(--neon);
    font-size: 0.8rem;
    background: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
}

.edu-tags-inline {
    display: flex;
    gap: 8px;
    /* Reduced from 15px */
    margin-left: 5px;
    /* Reduced from 10px */
}

.label-edu-simple {
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0;
}

.label-sep {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
    margin: 0 5px;
}

.label-name {
    color: #5886FF;
    margin-right: 2px;
}

.label-val {
    color: var(--neon-blue);
}

.label-edu-simple i {
    font-size: 0.9rem;
    color: var(--purple);
    margin-right: 6px;
}

@keyframes gold_flash {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
        box-shadow: 0 0 10px var(--neon);
    }

    100% {
        opacity: 0.6;
        transform: scale(1);
    }
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .exhibition-grid {
        grid-template-columns: 1fr;
    }

    .startup-card {
        height: auto;
    }

    .card-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .startup-performance {
        border-left: none;
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* --- ALBIT Verification Styles (Clean & Inline) --- */
.performance-bottom-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 0;
}

.albit-verify-inline {
    display: flex;
    align-items: center;
    gap: 3px;
    /* Set to 3px to tighten space between icon and text */
    background: rgba(255, 255, 255, 0.04);
    padding: 3.5px 12px;
    /* Increased by 0.5px per side for better balance */
    border-radius: 4px;
    border: 1px solid var(--neon);
    /* Opaque neon border applied */
    box-sizing: border-box;
}

.verify-logo-clean {
    height: 15px;
    /* Reduced from 17px to decrease vertical footprint */
    width: auto;
    filter: drop-shadow(0 0 5px rgba(0, 229, 255, 0.3));
}

.score-val {
    color: #fff;
    /* Changed to White */
    font-size: 0.85rem;
    /* Slightly reduced to prevent container stretching */
    font-weight: 800;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.score-max {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.65rem;
    font-weight: 400;
    margin-left: 2px;
}



/* --- ALBIT Verification Styles --- */
.albit-verify-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    padding: 4px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.verify-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.3);
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--neon-blue);
}

.verify-logo-mini {
    width: 14px;
    height: 14px;
}

/* --- Info Request Button & Modal --- */
.startup-info {
    position: relative;
    /* Anchor for action button */
}

.request-info-btn {
    position: absolute;
    right: -10px;
    top: 55px;
    /* Aligned with tech/biz rows */
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    z-index: 10;
}

.request-info-btn i {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
}

.request-info-btn:hover {
    transform: scale(1.25);
    filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.5));
}

.request-info-btn:hover i {
    background: linear-gradient(135deg, var(--neon), var(--neon-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    /* Required for background-clip on some browsers */
}

/* Modal Styling */
.albit-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    width: 95%;
    max-width: 600px;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 229, 255, 0.1);
}

.modal-header {
    padding: 24px 32px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.modal-logo {
    height: 28px;
    width: auto;
}

.modal-brand {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--neon-blue);
    font-family: 'Segoe UI', sans-serif;
}

.close-modal {
    background: none;
    border: none;
    color: #64748b;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s;
}

.close-modal:hover {
    color: #FFFFFF;
    transform: rotate(90deg);
}

.modal-body {
    padding: 32px;
}

.request-desc {
    color: #94a3b8;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.highlight-name {
    color: #FFFFFF;
    font-weight: 700;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 18px;
    color: #FFFFFF;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-blue);
    background: rgba(0, 229, 255, 0.02);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.1);
}

.form-group textarea {
    height: 120px;
    resize: none;
}

.submit-request-btn {
    width: 100%;
    padding: 18px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, var(--neon), var(--neon-blue));
    color: #000;
    font-weight: 900;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: 10px;
    letter-spacing: 1px;
}

.submit-request-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 229, 255, 0.3);
    filter: brightness(1.1);
}

.submit-request-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* --- Admin Premium Design System --- */
:root {
    --g-neon-blue: #00f2ff;
    --g-mail-blue: #0062ff;
    --g-purple: #9d00ff;

    /* Gradients */
    --grad-blue: linear-gradient(135deg, var(--g-neon-blue), var(--g-mail-blue));
    --grad-neon-purple: linear-gradient(135deg, var(--g-neon-blue), var(--g-purple));
    --grad-blue-purple: linear-gradient(135deg, var(--g-mail-blue), var(--g-purple));
    --grad-trans: linear-gradient(135deg, rgba(0, 242, 255, 0.1), rgba(157, 0, 255, 0.1));
}

.fallback-logo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.2);
    font-size: 24px;
}

/* Admin Tab Navigation Fix & Style */
.admin-tab-nav {
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tab-link {
    flex: 1;
    padding: 12px 20px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.tab-link.active {
    background: var(--grad-blue);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 242, 255, 0.3);
}

/* Premium Buttons */
.btn-primary {
    background: linear-gradient(90deg, var(--neon), var(--neon-blue)) !important;
    border: none !important;
    color: #000 !important;
    box-shadow: 0 4px 15px rgba(198, 255, 0, 0.4) !important;
}

.btn-primary:hover {
    filter: brightness(1.1);
    box-shadow: 0 6px 20px rgba(0, 229, 255, 0.6) !important;
}

/* Modal Enhancements */
.admin-modal {
    background: linear-gradient(160deg, #151921 0%, #0d1117 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5) !important;
}

.admin-modal h2 {
    background: var(--grad-neon-purple);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* Revenue Tag (Money Bag) */
.logo-sq {
    position: relative;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.tag-revenue-simple {
    position: absolute;
    top: -8px;
    left: -8px;
    background: #C6FF00;
    color: #000;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(198, 255, 0, 0.5);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

.ex-text-content {
    margin-left: 10px;
}

.ex-name {
    font-size: 14.4px;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 700;
}

.ex-name-full {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    line-height: 1.3;
}

.ex-name-full {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    line-height: 1.3;
}

/* Chinese Specific: Premium look specifically for Details page names */
.lang-zh .startup-name,
.lang-zh .partner-name,
.lang-zh .startup-name font,
.lang-zh .partner-name font {
    font-size: 1.55rem !important;
    font-weight: 900 !important;
    vertical-align: inherit !important;
}

.ex-desc {
    font-size: 12px;
    color: var(--text-dim);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 2px;
}

/* Exhibition Status Tags */
.ex-status-tag {
    font-size: 0.75rem;
    padding: 2px 12px;
    border-radius: 20px;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stage-final {
    background: rgba(198, 255, 0, 0.1);
    color: var(--neon);
    border-color: rgba(198, 255, 0, 0.3);
    box-shadow: 0 0 10px rgba(198, 255, 0, 0.1);
}

.stage-audit {
    background: rgba(0, 229, 255, 0.1);
    color: var(--neon-blue);
    border-color: rgba(0, 229, 255, 0.3);
}

.stage-pending {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 640px) {
    .modal-body {
        padding: 24px;
    }

    .modal-content {
        max-height: 90vh;
        overflow-y: auto;
    }
}

/* --- Team Section Auto-Scroll Styles --- */
.team-section {
    padding: 100px 0;
    overflow: hidden;
    position: relative;
    z-index: 5;
}

.team-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

.team-scroll-wrapper {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 40px 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.team-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.team-grid {
    display: flex;
    gap: 25px;
    width: 100%;
    justify-content: center;
    flex-wrap: nowrap;
    /* Always in one row */
}

.team-card {
    width: 380px;
    /* Default for 3 items */
    flex-shrink: 1;
    /* Allow shrinking */
    min-width: 250px;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: var(--glass-white);
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

/* Scaling logic for 4-5 members */
.team-grid.count-4 .team-card {
    width: 320px;
    padding: 35px 20px;
}

.team-grid.count-4 .team-card h3 {
    font-size: 1.4rem;
}

.team-grid.count-4 .team-card .role-en {
    font-size: 1rem;
}

.team-grid.count-5 .team-grid {
    gap: 15px;
}

.team-grid.count-5 .team-card {
    width: 265px;
    padding: 30px 15px;
}

.team-grid.count-5 .team-card h3 {
    font-size: 1.25rem;
    gap: 5px;
}

.team-grid.count-5 .team-card .role-en {
    font-size: 0.9rem;
}

.team-grid.count-5 .team-card ul li {
    font-size: 0.85rem;
}

.team-grid.count-5 .team-card .img-wrapper {
    width: 120px;
    /* Slightly smaller for 5 items */
    height: 120px;
}

.team-grid.count-5 .team-card .img-wrapper img {
    width: 112px;
    height: 112px;
}

.team-card .img-wrapper {
    width: 144px;
    /* 180px * 0.8 */
    height: 144px;
    margin-bottom: 25px;
    position: relative;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-card .img-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 2px;
    /* 2px Border thickness */
    background: linear-gradient(135deg, var(--neon-blue), var(--purple));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.team-card .img-wrapper img,
.team-card .img-wrapper .empty-img {
    width: 136px;
    /* 144px - (2px border + 2px gap)*2 */
    height: 136px;
    border-radius: 50%;
    object-fit: cover;
    border: none;
}

.team-card .img-wrapper .empty-img {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.2);
}

.team-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.team-card .role-en {
    color: var(--neon);
    font-size: 1.2rem;
    font-weight: 800;
}

.team-card ul {
    list-style: none;
    text-align: left;
    width: 100%;
    padding: 0;
}

.team-card ul li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.4;
    position: relative;
    padding-left: 25px;
    word-break: break-all;
    white-space: normal !important;
}

.team-card ul li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--neon);
    font-size: 0.9rem;
}

.phd-tag {
    position: absolute;
    top: 25px;
    right: 25px;
    background: linear-gradient(135deg, var(--neon), var(--neon-blue));
    color: #000;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(198, 255, 0, 0.3);
    word-break: break-all;
    display: flex;
    align-items: center;
    gap: 5px;
}