﻿/* ================= 모바일 직무 아코디언 ================= */
.jobs-accordion-mobile {
  display: none;
}
.job-accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.job-accordion-title {
  width: 100%;
  background: rgba(0, 0, 0, 0.42);
  color: var(--orange);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.38;
  text-wrap: balance;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 18px 20px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 0;
}
.accordion-arrow {
  margin-left: auto;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #aaa;
  transition: transform 0.3s ease, color 0.2s;
}
.job-accordion-title.active,
.job-accordion-title:focus {
  background: rgba(0, 0, 0, 0.62);
}
.job-accordion-title:hover .accordion-arrow {
  color: var(--orange);
}
/* 닫힌 상태(active 없음)에서는 포커스·호버 등 어떤 상태에서도 무조건 회색 */
.job-accordion-title:not(.active) .accordion-arrow {
  color: #aaa !important;
  transform: rotate(0deg);
}
.job-accordion-title.active .accordion-arrow {
  transform: rotate(180deg);
  color: var(--orange);
}
.job-accordion-panel {
  max-height: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.56);
  transition: max-height 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}
.job-accordion-title.active + .job-accordion-panel {
  max-height: 600px;
  transition: max-height 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.job-accordion-content {
  padding: 18px 20px 16px 20px;
  color: #f0f0f5;
  font-size: 0.98rem;
}
.job-accordion-content strong {
  display: block;
  margin-top: 10px;
  margin-bottom: 4px;
  color: var(--orange);
  font-size: 1.01rem;
}
.job-accordion-content ul {
  margin-bottom: 8px;
  padding-left: 18px;
}
.job-accordion-content li {
  list-style: disc;
  margin-bottom: 2px;
  color: #f0f0f5;
}
.job-accordion-meta {
  margin-top: 10px;
  font-size: 0.93rem;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .jobs-accordion-mobile {
    display: block;
    margin-bottom: 32px;
  }
  .table-wrapper {
    display: none !important;
  }
}
/* 직무 상세보기 버튼 및 레이아웃 스타일 */
.btn-detail-wrap {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

/* ============================================================
   JOB DETAIL PAGES
   ============================================================ */
.detail-page {
  background:
    radial-gradient(1200px 420px at 85% -10%, rgba(255, 107, 0, 0.14), transparent 68%),
    radial-gradient(900px 380px at 0% 0%, rgba(255, 107, 0, 0.08), transparent 72%),
    var(--bg-dark);
  min-height: 100vh;
}
.detail-shell {
  max-width: 1080px;
  margin: 0 auto;
  padding: 96px 24px 72px;
}
.detail-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.detail-home {
  font-size: 0.9rem;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 999px;
}
.detail-home:hover {
  color: var(--orange);
  border-color: var(--orange);
}
.detail-hero {
  background: linear-gradient(130deg, rgba(255, 107, 0, 0.11), rgba(17, 17, 24, 0.96));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px 28px;
  margin-bottom: 24px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.32);
}
.detail-eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.detail-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.detail-pill {
  border: 1px solid rgba(255, 107, 0, 0.32);
  background: rgba(255, 107, 0, 0.1);
  color: var(--orange-light);
  font-size: 0.84rem;
  padding: 5px 12px;
  border-radius: 999px;
}
.detail-grid {
  display: grid;
  gap: 18px;
}
.detail-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 22px 20px;
}
.detail-card h2 {
  font-size: 1.02rem;
  color: var(--orange);
  margin-bottom: 12px;
}
.jd-main,
.jd-list,
.jd-sub {
  list-style: none;
  margin: 0;
  padding: 0;
}
.jd-main > li,
.jd-list > li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.jd-main > li::before,
.jd-list > li::before {
  content: '·';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
}
.jd-sub {
  margin-top: 4px;
}
.jd-sub > li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 4px;
  color: #d9d9e2;
}
.jd-sub > li::before {
  content: '-';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange-light);
}
.detail-actions {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
/* 버튼 공통 스타일 */
.btn-back, .btn-apply {
  border: 1.5px solid var(--orange);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1;
  padding: 10px 28px;
  border-radius: 50px;
  cursor: pointer;
  min-width: 120px;
  min-height: 44px;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  box-sizing: border-box;
  gap: 8px;
  position: relative;
}
.btn-back {
  color: var(--orange);
  background: transparent;
}
.btn-back:hover {
  background: var(--orange);
  color: #fff;
}
.btn-apply {
  color: #fff;
  background: var(--orange);
}
.btn-apply:hover {
  background: var(--orange-light);
  color: #fff;
}
.btn-apply::after {
  content: '\2192';
  display: inline-block;
  font-size: 1.18em;
  margin-left: 4px;
  font-weight: 700;
  vertical-align: middle;
}
.btn-back:hover {
  background: var(--orange);
  color: #fff;
}


/* ---------- Custom Font ---------- */
@font-face {
  font-family: 'HanwhaR';
  src: url('../assets/font/HanwhaR.woff2') format('woff2'),
       url('../assets/font/HanwhaR.woff')  format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'HanwhaL';
  src: url('../assets/font/HanwhaL.woff2') format('woff2'),
       url('../assets/font/HanwhaL.woff')  format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ---------- CSS Variables ---------- */
:root {
  --orange: #ff6b00;
  --orange-light: #ff9040;
  --orange-glow: rgba(255, 107, 0, 0.55);
  --bg-dark: #0a0a0f;
  --bg-card: #111118;
  --bg-card2: #13131e;
  --text-primary: #f0f0f5;
  --text-muted: #888899;
  --border: rgba(255, 107, 0, 0.18);
  --nav-h: 72px;
  --radius: 14px;
  --transition: 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 html { scroll-behavior: auto; font-size: 16px; }
body {
  background: var(--bg-dark);
  color: var(--text-primary);
  font-family:
    "Pretendard",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif,
    "Apple Color Emoji",
    "Segoe UI Emoji",
    "Segoe UI Symbol",
    "Noto Color Emoji";
  overflow-x: hidden;
  line-height: 1.7;
  letter-spacing: -0.002em;
  word-break: keep-all;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ============================================================
   LOADING PAGE
   ============================================================ */
.loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loading-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loading-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.loading-logo img {
  height: 40px;
  filter: brightness(1.1);
  animation: loadingPulse 1.8s ease-in-out infinite;
}
@keyframes loadingPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.45; }
}
.loading-spinner {
  position: relative;
  width: 64px;
  height: 64px;
}
.loading-spinner span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--orange);
  animation: spinRing 1.2s linear infinite;
}
.loading-spinner span:nth-child(2) {
  inset: 10px;
  border-top-color: var(--orange-light);
  animation-duration: 1s;
  animation-direction: reverse;
}
.loading-spinner span:nth-child(3) {
  inset: 20px;
  border-top-color: rgba(255, 107, 0, 0.4);
  animation-duration: 1.6s;
}
@keyframes spinRing {
  to { transform: rotate(360deg); }
}
.loading-text {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.loading-dots span {
  display: inline-block;
  animation: dotBlink 1.2s infinite;
}
.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotBlink {
  0%, 80%, 100% { opacity: 0; }
  40%           { opacity: 1; }
}

/* ---------- Brand Name Font ---------- */
.brand-name {
  font-family: 'HanwhaR', 'Noto Sans KR', sans-serif;
  color: var(--orange);
  white-space: nowrap;
}
/* CI 가이드: 브랜드 타이포 전용 코드 (한화R, 보조폰트) */
.hanwha-ci {
  font-family: 'HanwhaR', 'Noto Sans KR', sans-serif;
}
/* 인터뷰 모달 본문 안에서는 HanwhaL 사용 */
.modal-content .hanwha-ci {
  font-family: 'HanwhaL', 'Noto Sans KR', sans-serif;
}

/* ---------- Utility ---------- */
.orange { color: var(--orange); }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-dark { padding: 100px 0; position: relative; overflow: hidden; z-index: 1; }
.section-dark > .container { position: relative; z-index: 2; padding-top: 36px; }
#section-jobs { scroll-margin-top: 88px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  background: rgba(0, 0, 0, 0.7);
}
.navbar.scrolled {
  background: rgba(10, 10, 15, 0.7);
  backdrop-filter: blur(18px);
  box-shadow: 0 2px 32px rgba(0,0,0,0.5);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 36px; filter: brightness(1.1); }
.nav-links {
  display: flex;
  align-items: center;
   gap: 16px;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { width: 100%; }
.btn-apply-nav {
  background: var(--orange);
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  gap: 0.38em;
  padding: 7px 16px 7px 18px;
  border-radius: 50px;
  font-weight: 700 !important;
  font-size: 1.01rem;
  line-height: 1.2;
  transition: background var(--transition), box-shadow var(--transition) !important;
  box-sizing: border-box;
  vertical-align: middle;
}
.btn-apply-nav:hover {
  background: var(--orange-light) !important;
}
.btn-apply-nav::after { display: none !important; }

/* D-Day 諛곗? */
.nav-dday {
  display: flex;
  align-items: center;
}
.nav-dday-badge {
  display: inline-block;
  background: transparent;
  /* border: 1.5px solid var(--orange); */
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 4px 2px;
  border-radius: 50px;
  white-space: nowrap;
  font-family: inherit;
}
.nav-dday-badge.dday-today {
  background: var(--orange);
  color: #fff;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1100;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2.4px;
  background: var(--orange);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   GLOBAL BACKGROUND CUBE CANVAS (fixed, covers all dark sections)
   ============================================================ */
#bgCubeCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.6s ease;
}

/* ============================================================
   HERO (standalone styles re-used in story-hero-panel)
   ============================================================ */

/* Slogan ??premium statement */
.hero-slogan {
  font-size: clamp(1.8rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.018em;
  text-transform: none;
  color: var(--text-primary);
  text-shadow: 0 4px 80px rgba(0, 0, 0, 0.6);
  margin-bottom: 32px;
  line-height: 1.1;
  position: relative;
  opacity: 0;
  animation: sloganReveal 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}
.slogan-dot {
  color: var(--orange);
  display: inline-block;
}
@keyframes sloganReveal {
  0%   { opacity: 0; transform: translateY(48px); filter: blur(10px); }
  100% { opacity: 1; transform: translateY(0);    filter: blur(0);    }
}

/* 3D Main Title */
.threeDTitle {
  font-size: clamp(2rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.014em;
  color: var(--text-primary);
  margin-bottom: 24px;
  transform-style: preserve-3d;
  animation: titleFloat 4s ease-in-out infinite, fadeUp 1s 0.5s ease both;
}

@keyframes titleFloat {
  0%, 100% { transform: translateY(0) rotateX(0deg); }
  50% { transform: translateY(-12px) rotateX(3deg); }
}

.hero-date {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  animation: fadeUp 1s 0.7s ease both;
}
.glow-text {
  text-shadow: 0 0 20px rgba(255,107,0,0.4);
}

.btn-hero {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 650;
  padding: 16px 48px;
  border-radius: 50px;
  letter-spacing: 0.03em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  animation: fadeUp 1s 0.9s ease both;
  margin-top: 24px;
}
.btn-hero:hover {
  background: var(--orange-light);
  transform: translateY(-4px) scale(1.04);
}

/* Scroll Hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-hint span {
  display: block;
  width: 24px; height: 40px;
  border: 2px solid rgba(255,107,0,0.5);
  border-radius: 12px;
  position: relative;
}
.hero-scroll-hint span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--orange);
  border-radius: 2px;
  animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot {
  0% { opacity: 1; top: 6px; }
  80% { opacity: 0; top: 22px; }
  100% { opacity: 0; top: 6px; }
}

/* ============================================================
   FLOATING CUBES (decorative, inside sections)
   ============================================================ */
.floating-cubes-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideLeft {
  from { opacity: 0; transform: translateX(60px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-60px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes rotateFadeIn {
  from { opacity: 0; transform: perspective(600px) rotateY(-25deg) translateY(40px); }
  to   { opacity: 1; transform: perspective(600px) rotateY(0deg) translateY(0); }
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-text {
  opacity: 0;
  animation: fadeUp 1s 1.3s ease both;
}

/* ============================================================
   SECTION TITLES
   ============================================================ */
.section-title {
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 750;
  margin-top: 0;
  margin-bottom: 56px;
  letter-spacing: -0.008em;
  color: var(--text-primary);
  position: relative;
  z-index: 1;
}
.section-title .en-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--orange);
  text-transform: uppercase;
  margin-top: 6px;
}

/* ============================================================
   SCROLL STORY ??full-screen one-line-at-a-time intro
   ============================================================ */
.scroll-story {
  position: relative;
  height: 500vh;
  background: transparent;
  z-index: 1;
  scroll-margin-top: 72px;
  --story-vignette-opacity: 0.12;
  --story-end-glow-opacity: 0;
}
.scroll-story-inner {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.scroll-story-inner::before,
.scroll-story-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.scroll-story-inner::before {
  z-index: 1;
  background: none !important;
}
.scroll-story-inner::after {
  z-index: 0;
  background: none !important;
}

/* Hero panel ??hidden behind story lines, revealed at the end */
.story-hero-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.story-hero-panel .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 90px 24px 80px 24px;
  max-width: 900px;
}

/* Hero animations: none until .active is added by JS */
.story-hero-panel .hero-slogan {
  animation: none;
  opacity: 0;
}
.story-hero-panel.active .hero-slogan {
  animation: sloganReveal 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.05s forwards;
}
.story-hero-panel .threeDTitle {
  opacity: 0;
  animation: none;
}
.story-hero-panel.active .threeDTitle {
  animation: titleFloat 4s ease-in-out infinite, fadeUp 0.9s 0.3s ease both;
}
.story-hero-panel .hero-date {
  opacity: 0;
  animation: none;
}
.story-hero-panel.active .hero-date {
  animation: fadeUp 0.9s 0.55s ease both;
}
.story-hero-panel .btn-hero {
  opacity: 0;
  animation: none;
}
.story-hero-panel.active .btn-hero {
  animation: fadeUp 0.9s 0.75s ease both;
  margin-top: 24px;
}
.story-hero-panel .hero-scroll-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.8s 1.2s ease;
  cursor: pointer;
  padding: 12px;
}
.story-hero-panel.active .hero-scroll-hint {
  opacity: 1;
}

.story-line {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.35;
  text-align: center;
  opacity: 0;
  will-change: opacity, transform, filter;
  z-index: 2;
}
.story-line.lit {
  text-shadow: 0 0 60px rgba(255, 255, 255, 0.08);
}

.story-scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  opacity: 1;
  transition: opacity 0.35s ease;
  cursor: pointer;
  /* 모바일 터치 영역 확보 */
  padding: 12px;
}
.story-scroll-hint span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-radius: 12px;
  position: relative;
}
.story-scroll-hint span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: scrollDot 1.6s infinite;
}

/* ============================================================
   JOBS TABLE
   ============================================================ */
.jobs-section { background: rgba(10, 10, 15, 0.68); }

/* 紐⑥쭛吏곷Т ?곷떒 ?ъ씠??蹂대꼫??諛곕꼫 */
.jobs-signing-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 0, 0.07);
  border: 1px solid rgba(255, 107, 0, 0.35);
  border-radius: var(--radius);
  padding: 28px 36px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.jobs-signing-banner::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--orange);
  border-radius: 4px 0 0 4px;
}
.jsb-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.jsb-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
}
.jsb-amount {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -0.03em;
  text-shadow: 0 0 32px var(--orange-glow);
  line-height: 1;
}
.jsb-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
}
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: 0 0 48px rgba(0,0,0,0.5);
  position: relative;
  z-index: 1;
}
.jobs-table {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 0.95rem;
}
.jobs-table thead tr {
  background: transparent; /* Set background to fully transparent */
}
.jobs-table thead th {
  color: var(--orange); /* Match text color to job name */
  font-weight: 700;
  padding: 18px 20px;
  text-align: center;
  letter-spacing: 0.04em;
  font-size: 1.08rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
}
.jobs-table tbody tr {
  background: transparent; /* Set background to fully transparent */
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.2s;
}
.jobs-table tbody tr:hover { background: rgba(255, 255, 255, 0.2); }
.jobs-table tbody td {
  padding: 18px 20px;
  color: #ffffff;
  vertical-align: middle;
  line-height: 1.7;
}
.jobs-table .table-bullet-list {
  margin: 0;
  padding-left: 18px;
}
.jobs-table .table-bullet-list li {
  list-style: disc;
  margin-bottom: 2px;
}
.jobs-table td strong + .table-bullet-list {
  margin-top: 4px;
}
.jobs-table .table-bullet-list + strong {
  display: block;
  margin-top: 8px;
}

/* 紐⑥쭛吏곷Т ?뚯씠釉?- 后곷Т纽? ?몄썝, 洹쇰Т吏 媛?대뜲 ?뺣젹 */
.jobs-table td.job-name,
.jobs-table td.job-count,
.jobs-table td.job-location {
  text-align: center;
  vertical-align: middle;
}
.job-name {
  font-weight: 700;
  color: var(--orange) !important;
  white-space: nowrap;
  font-size: 1rem;
  text-align: center;
  vertical-align: middle;
}

/* ============================================================
   PROCESS / ?꾪삎?덈궡
   ============================================================ */
.process-section { background: rgba(12, 12, 20, 0.68); }
.process-details .process-bullet-list {
  margin: 0;
  padding-left: 18px;
}
.process-details .process-bullet-list li {
  list-style: disc;
  margin-bottom: 4px;
}
.process-details .process-note-list {
  list-style: none;
  padding-left: 0;
}
.process-details .process-note-list li {
  list-style: none;
  margin-bottom: 4px;
  padding-left: 1.2em;
  position: relative;
}
.process-details .process-note-list li::before {
  content: '※';
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

/* ?? 梨꾩슜?덉감 ?cheon? ?꾪обы ?? */
.process-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 64px;
  flex-wrap: nowrap;
  overflow: hidden; /* Prevent temporary scrollbars during reveal animation */
  padding: 24px 0 32px;
  position: relative;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(255, 107, 0, 0.08) 0%, rgba(255, 107, 0, 0.03) 22%, var(--bg-card2) 48%),
    var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}
.pf-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
  justify-content: flex-start;
  padding: 0 8px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.pf-step.pf-visible {
  opacity: 1;
  transform: translateY(0);
}
.pf-arrow {
  opacity: 0;
  transition: opacity 0.4s ease;
}
.pf-arrow.pf-visible {
  opacity: 1;
}
.pf-circle {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.pf-circle:hover,
.pf-step:hover .pf-circle {
  border-color: var(--orange);
  box-shadow: 0 0 28px var(--orange-glow);
}
.pf-circle--final {
  border-color: var(--orange);
  background: rgba(255, 107, 0, 0.1);
}
.pf-circle--final:hover,
.pf-step--final:hover .pf-circle--final {
  box-shadow: 0 0 36px var(--orange-glow);
  background: rgba(255, 107, 0, 0.18);
}
.pf-num {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}
.pf-circle--final .pf-num {
  font-size: 1.7rem;
  color: var(--orange);
}
.pf-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
}
.pf-label .pf-sub {
  display: block;
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 5px;
}
.pf-step--final .pf-label {
  color: var(--orange);
}
.pf-step--final .pf-sub { color: var(--orange-light); }

.pf-arrow {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--border), rgba(255,107,0,0.4));
  flex-shrink: 0;
  position: relative;
  margin-top: 53px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.pf-arrow.pf-visible {
  opacity: 1;
}
.pf-arrow::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid rgba(255, 107, 0, 0.5);
}

@media (max-width: 1024px) {
  .process-flow {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 12px;
    row-gap: 20px;
    align-items: start;
    justify-items: center;
    padding: 18px 12px 22px;
  }
  .pf-step {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 0 4px;
    min-height: 148px;
    position: relative;
  }
  .pf-circle { width: 74px; height: 74px; }
  .pf-circle img { width: 32px; height: 32px; object-fit: contain; }
  .pf-num { font-size: 0.85rem; }
  .pf-circle--final .pf-num { font-size: 1.2rem; }
  .pf-label {
    font-size: 0.85rem;
    line-height: 1.28;
    text-align: center;
    white-space: normal;
    text-wrap: balance;
    min-height: 3.2em;
  }
  .pf-label .pf-sub {
    font-size: 0.75rem;
    margin-top: 3px;
  }
  .pf-label.pf-label--long {
    font-size: 0.79rem;
    line-height: 1.28;
    letter-spacing: 0;
  }
  .process-flow > .pf-step:nth-child(n+7) {
    margin-top: 2px;
  }
  .pf-arrow {
    display: none !important;
  }

  /* tiny directional hints for 2-row process order */
  .pf-step::before,
  .pf-step::after {
    content: '';
    position: absolute;
    display: none;
    opacity: 0.7;
  }
  .pf-step.pf-step-order-1::after,
  .pf-step.pf-step-order-2::after,
  .pf-step.pf-step-order-4::after,
  .pf-step.pf-step-order-5::after {
    display: block;
    right: -10px;
    top: 34px;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid rgba(255, 107, 0, 0.72);
  }
  .pf-step.pf-step-order-3::after {
    display: none;
  }
  .pf-step.pf-step-order-4::before {
    display: block;
    left: -3px;
    top: 33px;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid rgba(255, 107, 0, 0.72);
  }
}

@media (max-width: 900px) {
  .process-flow {
    column-gap: 10px;
    row-gap: 16px;
    padding: 16px 10px 20px;
  .story-scroll-hint {
    display: none;
  }
  }
  .pf-step {
    min-height: 138px;
    gap: 9px;
  }
  .pf-circle { width: 68px; height: 68px; }
  .pf-circle img { width: 29px; height: 29px; }
  .pf-label {
    font-size: 0.81rem;
    line-height: 1.24;
    min-height: 3.4em;
  }
  .pf-label .pf-sub { font-size: 0.72rem; }
  .pf-label.pf-label--long {
    font-size: 0.77rem;
    min-height: 3.8em;
  }
}

@media (max-width: 768px) {
  .process-flow {
    column-gap: 10px;
    row-gap: 16px;
    padding: 16px 10px 20px;
  }
  .pf-step {
    min-height: 132px;
    gap: 8px;
    padding: 0 2px;
  }
  .pf-circle { width: 64px; height: 64px; }
  .pf-circle img { width: 27px; height: 27px; }
  .pf-circle--final .pf-num { font-size: 1.05rem; }
  .pf-label {
    font-size: 0.79rem;
    line-height: 1.24;
    min-height: 3.4em;
  }
  .pf-label .pf-sub {
    font-size: 0.7rem;
  }
  .pf-label.pf-label--long {
    font-size: 0.75rem;
    min-height: 3.8em;
  }

  .pf-step.pf-step-order-1::after,
  .pf-step.pf-step-order-2::after,
  .pf-step.pf-step-order-4::after,
  .pf-step.pf-step-order-5::after {
    right: -8px;
    top: 30px;
    border-top-width: 3px;
    border-bottom-width: 3px;
    border-left-width: 5px;
  }
  .pf-step.pf-step-order-4::before {
    left: -3px;
    top: 29px;
    border-top-width: 3px;
    border-bottom-width: 3px;
    border-left-width: 5px;
  }
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
.process-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.process-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--orange);
  border-radius: 4px 0 0 4px;
  opacity: 0;
  transition: opacity var(--transition);
}
.process-card:hover {
  transform: translateY(-6px) perspective(600px) rotateX(2deg);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 24px var(--orange-glow);
  border-color: var(--orange);
}
.process-card:hover::before { opacity: 1; }
.process-icon { font-size: 2rem; margin-bottom: 14px; }
.process-card h3 { font-size: 1rem; font-weight: 700; color: var(--orange); margin-bottom: 10px; }
.process-card p { font-size: 0.9rem; color: #aab; line-height: 1.7; }
.process-card a { color: var(--orange); text-decoration: underline; }

/* Bonus Banner */
.bonus-banner {
  position: relative;
  border: 2px solid var(--orange);
  border-radius: var(--radius);
  padding: 36px 32px;
  text-align: center;
  overflow: hidden;
  margin-bottom: 40px;
  background: rgba(255,107,0,0.04);
}
.bonus-bg-glow {
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 65%);
  animation: pulsGlow 2.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes pulsGlow {
  0%, 100% { opacity: 0.3; transform: scale(0.9); }
  50% { opacity: 0.7; transform: scale(1.1); }
}
.bonus-label {
  font-size: 0.85rem;
  color: var(--orange);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 10px;
  position: relative;
}
.bonus-text {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  position: relative;
}
.bonus-amount {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--orange);
  text-shadow: 0 0 24px var(--orange-glow);
  display: block;
  margin-top: 8px;
}

/* Apply CTA Button */
.apply-cta { text-align: center; }

/* ============================================================
   BENEFITS / ?쒕徕?뚭컻
   ============================================================ */
.benefits-section { background: var(--bg-dark); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}
.benefit-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
  transform-style: preserve-3d;
}
.benefit-card:hover {
  transform: perspective(800px) rotateY(-5deg) rotateX(3deg) translateY(-8px);
  box-shadow: 12px 24px 56px rgba(0,0,0,0.5), 0 0 32px var(--orange-glow);
  border-color: var(--orange);
}
.benefit-icon-wrap {
  margin-bottom: 20px;
}
.benefit-icon-3d {
  font-size: 2.5rem;
  display: inline-block;
  animation: iconFloat 3s ease-in-out infinite;
}
@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.benefit-title { font-size: 1.2rem; font-weight: 800; margin-bottom: 6px; }
.benefit-sub { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; }
.benefit-list { display: flex; flex-wrap: wrap; gap: 8px; }
.benefit-list li {
  font-size: 0.82rem;
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.25);
  padding: 4px 12px;
  border-radius: 50px;
  color: var(--orange-light);
  transition: background 0.2s;
}
.benefit-list li:hover { background: rgba(255,107,0,0.2); }

/* ============================================================
   BENEFITS IN-PAGE SECTION
   ============================================================ */
.benefits-page-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.benefits-page-desc {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}
.benefits-divider {
  width: 48px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin: 32px auto 0;
}
.benefits-grid-page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.benefit-card-page {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.benefit-card-page:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.45), 0 0 28px var(--orange-glow);
  border-color: var(--orange);
}
.benefit-card-page::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--orange), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.benefit-card-page:hover::before { opacity: 1; }
.benefit-icon-wrap-page { font-size: 2.4rem; margin-bottom: 20px; }
.benefit-category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.benefit-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.benefit-card-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}
.benefit-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.benefit-card-list li {
  font-size: 0.9rem;
  color: #bbbccc;
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.benefit-card-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 0.7rem;
  top: 4px;
}

/* ============================================================
   INTERVIEW / ?꾩쭅???명꽣酉?
   ============================================================ */
.interview-section { background: rgba(12, 12, 20, 0.68); }
#section-process {
  padding-bottom: 64px;
}
#section-interview {
  background: rgba(12, 12, 20, 0.68);
  padding-top: 64px;
}
#section-benefits {
  background: rgba(12, 12, 20, 0.68);
}
.interview-intro {
  max-width: 680px;
  margin: 14px 0 28px;
  color: #c2c2cf;
  font-size: 0.98rem;
}
.interview-people-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.interview-profile-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 107, 0, 0.1), rgba(15, 15, 22, 0.96));
  border: 1px solid rgba(255, 107, 0, 0.24);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.interview-profile-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 107, 0, 0.16), rgba(255, 107, 0, 0.36));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
  z-index: 1;
}
.interview-profile-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 107, 0, 0.55);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.48), 0 0 24px rgba(255, 107, 0, 0.2);
}
.interview-photo-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.interview-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 24%;
  transform: scale(1.04);
  transition: transform 0.45s ease;
}
.interview-people-grid .interview-profile-card:nth-child(1) .interview-photo {
  object-position: 50% 20%;
}
.interview-people-grid .interview-profile-card:nth-child(2) .interview-photo {
  object-position: 50% 26%;
}
.interview-people-grid .interview-profile-card:nth-child(3) .interview-photo {
  object-position: 50% 18%;
}
.interview-people-grid .interview-profile-card:nth-child(4) .interview-photo {
  object-position: 50% 23%;
}
.interview-profile-card:hover .interview-photo {
  transform: scale(1.11);
}
.interview-hover-cta {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.28s ease, transform 0.28s ease;
  pointer-events: none;
  z-index: 2;
}
.interview-hover-cta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 107, 0, 0.72);
  border-radius: 999px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 650;
  letter-spacing: 0.03em;
  background: rgba(255, 107, 0, 0.58);
  backdrop-filter: blur(4px);
}
.interview-hover-cta span::after {
  content: '→';
}
.interview-profile-card:hover .interview-hover-cta,
.interview-profile-card:focus-within .interview-hover-cta {
  opacity: 1;
  transform: translateY(0);
}
.interview-profile-card:hover::before,
.interview-profile-card:focus-within::before {
  opacity: 1;
}
.interview-card-body {
  position: relative;
  z-index: 0;
  padding: 16px 16px 18px;
}
.interview-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 107, 0, 0.38);
  color: var(--orange-light);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.interview-name {
  font-size: 1.04rem;
  line-height: 1.35;
  margin-bottom: 8px;
}
.interview-role {
  color: #a9a9ba;
  font-size: 0.8rem;
  line-height: 1.6;
  min-height: 2.8em;
  margin-bottom: 10px;
}
.interview-highlight {
  color: #f1f1f5;
  font-size: 0.87rem;
  line-height: 1.62;
}
.btn-detail {
  background: transparent;
  border: 1px solid var(--orange);
  color: var(--orange);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.btn-detail:hover { background: var(--orange); color: #fff; }

/* LinkedIn CTA */
.linkedin-cta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 16px;
  background: linear-gradient(120deg, #071423 0%, #0b2138 60%, #071423 100%);
  border: 1px solid rgba(10, 102, 194, 0.42);
  border-left: 1px solid rgba(10, 102, 194, 0.42);
  border-radius: var(--radius);
  padding: 40px 44px;
  margin-bottom: 64px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(10, 102, 194, 0.16), 0 0 0 1px rgba(10, 102, 194, 0.08);
}
.linkedin-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 10% 50%, rgba(10, 102, 194, 0.2) 0%, transparent 65%);
  pointer-events: none;
}
.linkedin-cta-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #0a66c2, #004182);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(10, 102, 194, 0.45);
}
.linkedin-cta-icon img { width: 28px; height: 28px; object-fit: contain; }
.linkedin-cta-text { flex: 1; min-width: 200px; }
.linkedin-cta-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #72b5ff;
  margin-bottom: 8px;
}
.linkedin-cta-title {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 10px;
}
.linkedin-cta-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.btn-linkedin {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #0a66c2, #004182);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 14px 32px;
  border-radius: 50px;
  letter-spacing: 0.02em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(10, 102, 194, 0.35);
  white-space: nowrap;
  position: relative;
  z-index: 1;
}
.btn-linkedin:hover {
  background: linear-gradient(135deg, #2a7fd2, #0a66c2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(10, 102, 194, 0.48);
}

/* YouTube */
.youtube-section { text-align: center; }
.youtube-label { font-size: 1.1rem; font-weight: 700; color: var(--orange); margin-bottom: 20px; }
.youtube-header {
  display: flex;
  align-items: center;
  gap: 14px;
}
.youtube-brand-icon {
  height: 30px;
  width: auto;
  flex-shrink: 0;
}
.youtube-header-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.youtube-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ff2f2f;
  margin: 0;
}
.youtube-header-subtitle {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  margin: 0;
}
.youtube-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.youtube-thumb {
  display: inline-block;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border);
  max-width: 600px;
  width: 100%;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.youtube-thumb:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 32px var(--orange-glow);
  border-color: var(--orange);
}
.youtube-thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.yt-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: #fff;
  background: rgba(0,0,0,0.35);
  transition: background 0.3s;
}
.youtube-thumb:hover .yt-play-btn {
  background: rgba(255,107,0,0.5);
}
.btn-youtube {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
  border: 1px solid #ff2f2f;
  color: #ff2f2f;
  background: rgba(255,255,255,0.85);
  padding: 12px 36px;
  border-radius: 50px;
  font-weight: 600;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.btn-youtube:hover {
  background: #ff2f2f;
  color: #fff;
  box-shadow: 0 8px 26px rgba(255, 47, 47, 0.32);
}

/* ICT Story */
#section-ict-story {
  background: rgba(12, 12, 20, 0.78);
}
.ict-story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: stretch;
}

/* 3분할 구조 */
.ict-story-layout.three-col {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: stretch;
}
.ict-story-col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.ict-story-col > * {
  flex: 1;
}

/* 캐치TV 미리보기 카드 테두리 및 배경 */
.ict-story-col .youtube-section {
  background: linear-gradient(180deg, rgba(255,107,0,0.06), rgba(17,17,24,0.96));
  border: 1.5px solid rgba(255,107,0,0.32);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 18px 48px rgba(0,0,0,0.34);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ict-story-media {
  background: linear-gradient(180deg, rgba(255,107,0,0.06), rgba(17,17,24,0.96));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 18px 48px rgba(0,0,0,0.34);
}
.ict-story-side {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
#section-ict-story .youtube-section,
#section-interview .youtube-section {
  text-align: left;
}
#section-ict-story .youtube-label,
#section-interview .youtube-label {
  font-size: 1.15rem;
  margin-bottom: 18px;
}
#section-ict-story .youtube-row,
#section-interview .youtube-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex: 1;
}
#section-ict-story .youtube-thumb,
#section-interview .youtube-thumb {
  max-width: none;
  width: 100%;
  flex: 1;
  min-height: 0;
  display: block;
  border-width: 1px;
  box-shadow: 0 18px 52px rgba(0,0,0,0.34);
}
#section-interview .youtube-thumb img {
  height: 100%;
  aspect-ratio: auto;
}
#section-ict-story .btn-youtube,
#section-interview .btn-youtube {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  justify-content: center;
  margin-top: 0;
  padding: 11px 18px;
  border-radius: 12px;
  font-size: 0.86rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  box-shadow: none;
  background: #ff2f2f;
  border-color: #ff2f2f;
  color: #fff;
}
#section-interview .btn-youtube:hover {
  background: #e01a1a;
  border-color: #e01a1a;
  color: #fff;
  box-shadow: 0 6px 20px rgba(255, 47, 47, 0.36);
}
#section-ict-story .linkedin-cta,
#section-interview .linkedin-cta {
  margin: 0;
  width: 100%;
  min-height: 0;
  height: 100%;
  padding: 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  border-radius: 12px;
  border: 1.5px solid rgba(10, 102, 194, 0.45);
  box-shadow: 0 8px 20px rgba(0,0,0,0.28), inset 0 0 0 1px rgba(10, 102, 194, 0.12);
}
#section-ict-story .linkedin-cta-icon,
#section-interview .linkedin-cta-icon {
  width: 46px;
  height: 46px;
  border-radius: 8px;
}
#section-ict-story .linkedin-cta-icon img,
#section-interview .linkedin-cta-icon img {
  width: 22px;
  height: 22px;
}
#section-ict-story .linkedin-cta-text,
#section-interview .linkedin-cta-text {
  min-width: 0;
  flex: 1;
}
#section-ict-story .linkedin-cta-title,
#section-interview .linkedin-cta-title {
  font-size: clamp(1rem, 1.7vw, 1.24rem);
  margin-bottom: 8px;
}
#section-ict-story .linkedin-cta-desc,
#section-interview .linkedin-cta-desc {
  font-size: 0.84rem;
  line-height: 1.6;
}
#section-ict-story .btn-linkedin,
#section-interview .btn-linkedin {
  display: flex !important;
  width: 100% !important;
  box-sizing: border-box;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  justify-content: center;
  margin-top: 0;
  padding: 11px 18px;
  font-size: 0.86rem;
  border-radius: 12px;
  box-shadow: none;
}
#section-interview .btn-linkedin:hover {
  background: linear-gradient(135deg, #0856a8, #053d7a);
  transform: none;
  box-shadow: 0 6px 20px rgba(10, 102, 194, 0.36);
  color: #fff;
}

#section-ict-story .instagram-cta,
#section-interview .instagram-cta {
  position: relative;
  width: 100%;
  min-height: 0;
  height: 100%;
  padding: 18px 18px;
  border-radius: 12px;
  border: 1.5px solid rgba(255, 107, 0, 0.42);
  background: linear-gradient(120deg, #0c1018 0%, #131a26 62%, #0c1018 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.28), inset 0 0 0 1px rgba(255,107,0,0.08);
}
#section-ict-story .instagram-cta-bg,
#section-interview .instagram-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 92% 22%, rgba(255,107,0,0.12) 0%, transparent 62%);
  pointer-events: none;
}
#section-ict-story .instagram-cta-icon,
#section-interview .instagram-cta-icon {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
}
#section-ict-story .instagram-cta-icon img,
#section-interview .instagram-cta-icon img {
  width: auto;
  height: 36px;
  max-width: 170px;
  object-fit: contain;
  object-position: left center;
  display: block;
}
#section-ict-story .instagram-cta-text,
#section-interview .instagram-cta-text {
  position: relative;
  z-index: 1;
  flex: 1;
}
#section-ict-story .instagram-cta-eyebrow,
#section-interview .instagram-cta-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 8px;
}
#section-ict-story .instagram-cta-title,
#section-interview .instagram-cta-title {
  font-size: clamp(1rem, 1.7vw, 1.24rem);
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 8px;
}
#section-ict-story .instagram-cta-desc,
#section-interview .instagram-cta-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
}
#section-ict-story .btn-instagram,
#section-interview .btn-instagram {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  justify-content: center;
  border: 1px solid var(--orange);
  background: var(--orange);
  color: #fff;
  padding: 11px 18px;
  border-radius: 12px;
  font-weight: 650;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  margin-top: 0;
  box-shadow: none;
  transition: background var(--transition), color var(--transition);
}
#section-ict-story .btn-instagram:hover,
#section-interview .btn-instagram:hover {
  background: var(--orange-light);
  border-color: var(--orange-light);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.36);
}

#section-ict-story .linkedin-cta,
#section-ict-story .instagram-cta,
#section-interview .linkedin-cta,
#section-interview .instagram-cta {
  backdrop-filter: none;
}

/* 3-카드 영역 고정: 헤더(66px) / 컨텐츠(1fr) / 버튼(auto) — 버튼 동일 위치 정렬 */
#section-interview .youtube-section,
#section-interview .linkedin-cta,
#section-interview .instagram-cta {
  display: grid;
  grid-template-rows: 66px 1fr auto;
  align-items: stretch;
  gap: 14px 0;
  padding: 22px;
}
#section-interview .youtube-header {
  align-self: center;
}
#section-interview .linkedin-cta-icon,
#section-interview .instagram-cta-icon {
  align-self: center;
}
#section-interview .youtube-section .btn-youtube,
#section-interview .linkedin-cta .btn-linkedin,
#section-interview .instagram-cta .btn-instagram {
  display: flex;
  width: 100%;
  box-sizing: border-box;
}
#section-interview .youtube-row,
#section-interview .linkedin-cta-text,
#section-interview .instagram-cta-text {
  min-height: 0;
}

/* ============================================================
   TALENT / ?몄옱??
   ============================================================ */
.talent-section { background: var(--bg-dark); }
.talent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}
.talent-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  transform-style: preserve-3d;
}
.talent-card:hover {
  transform: perspective(800px) rotateX(5deg) rotateY(5deg) translateY(-10px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 36px var(--orange-glow);
  border-color: var(--orange);
}
.talent-img-wrap {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: rgba(255,107,0,0.08);
  border: 2px solid rgba(255,107,0,0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.talent-card:hover .talent-img-wrap {
  border-color: var(--orange);
  box-shadow: 0 0 24px var(--orange-glow);
}
.talent-img-wrap img { width: 60px; height: 60px; object-fit: contain; }
.talent-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 14px; color: var(--text-primary); }
.talent-card p { font-size: 0.88rem; color: #9090a8; line-height: 1.75; }
.talent-link-wrap { text-align: center; margin-bottom: 64px; }

.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--orange);
  color: var(--orange);
  padding: 14px 40px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.btn-outline:hover {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 32px var(--orange-glow);
}

/* ============================================================
   COUNTDOWN / CTA
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, rgba(12, 12, 20, 0.72) 0%, rgba(16, 14, 30, 0.72) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(255,107,0,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-label { font-size: 0.95rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 24px; }
.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}
.cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cd-block span {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  color: var(--orange);
  text-shadow: 0 0 32px var(--orange-glow);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  min-width: 2ch;
  display: block;
}
.cd-block small {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-top: 6px;
  display: block;
}
.cd-sep {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--orange);
  padding-bottom: 20px;
  animation: blinkSep 1s step-end infinite;
}
@keyframes blinkSep {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}
.btn-apply-big {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 650;
  padding: 20px 72px;
  border-radius: 50px;
  letter-spacing: 0.04em;
  transition: transform var(--transition), background var(--transition);
}
.btn-apply-big:hover {
  background: var(--orange-light);
  transform: translateY(-5px) scale(1.04);
}

/* ============================================================
   FOOTER
   ============================================================ */

/* 완전 강제: 카운트다운 타이머 모든 글로우/블러/그림자/배경/투명도 제거 */
#countdown, .countdown, #countdown *, .countdown *, .cd-block span, .cd-sep {
  text-shadow: none !important;
  box-shadow: none !important;
  filter: none !important;
  background: none !important;
  opacity: 1 !important;
  color: #ff6b00 !important;
  outline: none !important;
  border: none !important;
  animation: none !important;
  transition: none !important;
}
.footer {
  position: relative;
  z-index: 1;
  background: #050508;
  border-top: 1px solid rgba(255,107,0,0.12);
  padding: 56px 0 36px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer-logo { height: 36px; filter: brightness(0.8); }
.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 0.87rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--orange); }
.footer-copy { font-size: 0.78rem; color: #444455; text-align: center; }

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: linear-gradient(180deg, #14141e 0%, #0d0d14 100%);
  border: 1px solid rgba(255, 107, 0, 0.26);
  color: #f4f4f8;
  border-radius: 20px;
  padding: 28px 26px;
  max-width: 860px;
  width: 100%;
  max-height: 88vh;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-gutter: stable;
  position: relative;
  transform: scale(0.88) translateY(30px);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 32px 80px rgba(0,0,0,0.45), 0 0 34px rgba(255, 107, 0, 0.18);
}
.modal-box::-webkit-scrollbar { width: 10px; }
.modal-box::-webkit-scrollbar-track {
  background: rgba(13, 13, 20, 0.9);
  border-radius: 999px;
  margin: 12px 4px;
}
.modal-box::-webkit-scrollbar-thumb {
  background: rgba(255,107,0,0.45);
  border-radius: 999px;
  border: 2px solid rgba(13, 13, 20, 0.9);
}
.modal-overlay.open .modal-box {
  transform: scale(1) translateY(0);
}
.modal-close {
  position: sticky;
  top: 10px;
  margin-left: auto;
  right: 0;
  display: block;
  background: rgba(8, 8, 12, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  width: 36px;
  height: 36px;
  color: #bcbccc;
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition), background-color var(--transition), border-color var(--transition);
  font-style: normal;
  font-weight: bold;
  letter-spacing: 0.04em;
  backdrop-filter: blur(5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
  z-index: 5;
}
.modal-close:hover {
  color: var(--orange);
  background: rgba(8, 8, 12, 0.72);
  border-color: rgba(255, 107, 0, 0.45);
}
.modal-profile {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 107, 0, 0.22);
}
.modal-photo-stage {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 107, 0, 0.32);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.35);
}
.modal-profile-photo {
  width: 100%;
  height: clamp(240px, 34vw, 410px);
  object-fit: cover;
  object-position: 50% 24%;
  display: block;
}
.modal-profile-meta {
  min-width: 0;
}
.modal-profile-label {
  color: var(--orange-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.95rem;
  margin-bottom: 6px;
}
.modal-dept {
  font-size: 1rem;
  color: #c7c7d3;
  letter-spacing: 0.02em;
  margin-bottom: 5px;
  font-weight: 600;
}
.modal-name {
  font-size: 1.36rem;
  font-weight: 780;
  color: #fff;
}
.modal-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: visible;
  padding-right: 8px;
}
.modal-qa {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px 14px 12px;
}
.modal-qa-q {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.modal-qa-a {
  font-size: 0.93rem;
  color: #ececf2;
  line-height: 1.78;
}

/* ============================================================
   JD 모달 (직무 상세)
   ============================================================ */
.modal-jd-box {
  max-width: 720px;
}
.modal-jd-header {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 107, 0, 0.22);
}
.modal-jd-title {
  font-size: 1.52rem;
  font-weight: 780;
  color: #fff;
  margin-top: 6px;
  line-height: 1.3;
}
.modal-jd-sections {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.modal-jd-section {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 16px 16px 14px;
}
.modal-jd-section-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.modal-jd-actions {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
/* btn-detail을 button 요소로 사용 시 동일한 스타일 유지 */
button.btn-detail {
  font-family: inherit;
  cursor: pointer;
}

/* ============================================================
   SECTION DIVIDER (animated line)
   ============================================================ */
.section-dark + .section-dark::before,
.intro + .section-dark::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  margin-bottom: 0;
  opacity: 0.35;
}

/* ============================================================
   RESPONSIVE ??TABLET (< 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  /* NAV: tablet and below use hamburger menu */
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: 64vw;
    max-width: 360px;
    height: 100vh;
    background: rgba(10,10,15,0.97);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 32px;
    padding: 80px 36px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border-left: 1px solid rgba(255,107,0,0.18);
    z-index: 1050;
  }
  .nav-links > li:last-child {
    position: absolute;
    left: calc(36px + 130px);
    top: 24px;
    margin: 0;
  }
  .nav-links > li:nth-last-child(2) {
    position: absolute;
    left: 36px;
    top: 24px;
    margin: 0;
  }
  .nav-links > li:nth-last-child(2) .btn-apply-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 18px;
    box-sizing: border-box;
    line-height: 1;
    border: 1.5px solid transparent;
  }
  .nav-links > li:last-child .nav-dday-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 12px;
    box-sizing: border-box;
    line-height: 1;
  }
  .nav-links.open { transform: translateX(0); }
  .hamburger { display: flex; }
  .nav-links a { font-size: 1.02rem; }

  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .talent-grid { grid-template-columns: repeat(2, 1fr); }
  .interview-people-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ============================================================
   RESPONSIVE ??MOBILE (< 768px)
   ============================================================ */
@media (max-width: 768px) {
  /* NAV */
  .nav-links { width: 72vw; max-width: 320px; }
  .nav-links a { font-size: 1.1rem; }
  .nav-links > li:nth-last-child(2) {
    left: 36px;
    top: 24px;
  }
  .nav-links > li:last-child {
    left: calc(36px + 130px);
    top: 24px;
  }

  /* 모바일: 현직자 카드 hover/active/focus 효과 완전 제거 */
  .interview-profile-card:hover,
  .interview-profile-card:active,
  .interview-profile-card:focus,
  .interview-profile-card:focus-within {
    transform: none !important;
    border-color: var(--border) !important;
    box-shadow: none !important;
  }
  .interview-profile-card:hover .interview-photo,
  .interview-profile-card:active .interview-photo,
  .interview-profile-card:focus .interview-photo,
  .interview-profile-card:focus-within .interview-photo {
    transform: scale(1.04) !important;
  }
  .interview-profile-card:hover .interview-hover-cta,
  .interview-profile-card:active .interview-hover-cta,
  .interview-profile-card:focus .interview-hover-cta,
  .interview-profile-card:focus-within .interview-hover-cta {
    opacity: 0 !important;
    transform: translateY(8px) !important;
  }
  .interview-profile-card:hover::before,
  .interview-profile-card:active::before,
  .interview-profile-card:focus::before,
  .interview-profile-card:focus-within::before {
    opacity: 0 !important;
  }

  /* Disable floating animation on mobile */
  .threeDTitle,
  .story-hero-panel.active .threeDTitle {
    animation: fadeUp 0.9s 0.3s ease both !important;
  }

  /* Text wrapping: soften forced line breaks on mobile */
  .linkedin-cta-title br,
  .instagram-cta-title br,
  .instagram-cta-desc br,
  .faq-intro br {
    display: none;
  }
  .linkedin-cta-title,
  .instagram-cta-title {
    text-wrap: balance;
  }
  /* hero title: 2026 ???쒗솕?쒖뒪??ICT遺臾???AX吏곷Т 媛?以?遺꾨━ */
  .hero-year {
    display: block;
  }
  .faq-intro,
  .linkedin-cta-desc,
  .instagram-cta-desc {
    text-wrap: pretty;
    overflow-wrap: anywhere;
  }

  /* Sections */
  .section-dark { padding: 72px 0; }

  /* Mobile type fine-tuning for Pretendard rendering */
  .hero-slogan {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
    font-weight: 850;
    letter-spacing: -0.016em;
    white-space: nowrap;
  }
  .hero-date {
    font-size: clamp(0.72rem, 4.8vw, 1.35rem);
    white-space: nowrap;
  }
  .threeDTitle {
    font-weight: 850;
    letter-spacing: -0.012em;
  }
  .section-title,
  .faq-section .section-title {
    font-weight: 800;
    letter-spacing: -0.006em;
  }

  .btn-hero {
    letter-spacing: 0.04em;
  }
  .btn-apply,
  .btn-apply-big {
    letter-spacing: 0.05em;
  }

  .threeDTitle { font-size: clamp(1.7rem, 7vw, 2.5rem); }

  /* Grids -> single column */
  .process-grid,
  .benefits-grid,
  .talent-grid { grid-template-columns: 1fr; gap: 18px; }

  /* Table ??horizontal scroll on mobile */
  .table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .jobs-table {
    min-width: 640px;
  }

  .interview-intro {
    margin-bottom: 20px;
    font-size: 0.92rem;
  }
  .interview-people-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .interview-card-body {
    padding: 14px;
  }
  .interview-role {
    min-height: 0;
  }

  .cta-section { padding: 72px 0; }
  .btn-apply-big { padding: 16px 48px; font-size: 1.05rem; }

  .modal-box {
    padding: 24px 14px 16px;
    max-width: 96vw;
    max-height: 86vh;
  }
  .modal-profile {
    gap: 10px;
    margin-bottom: 14px;
  }
  .modal-photo-stage {
    border-radius: 12px;
  }
  .modal-profile-photo {
    height: clamp(185px, 48vw, 280px);
  }
  .modal-name {
    font-size: 1.1rem;
  }
  .modal-content {
    overflow: visible;
    padding-right: 2px;
  }
  .modal-qa {
    padding: 12px 11px 10px;
  }
  .footer-links { gap: 18px; }

  .ict-story-layout {
    grid-template-columns: 1fr;
  }
  .ict-story-layout.three-col {
    flex-direction: column;
  }
  .ict-story-col > * {
    flex: none;
  }
  .ict-story-side {
    grid-template-rows: none;
    grid-template-columns: 1fr;
  }
  .ict-story-media {
    padding: 20px;
  }
  #section-ict-story .linkedin-cta,
  #section-interview .linkedin-cta {
    height: auto;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  #section-ict-story .instagram-cta,
  #section-interview .instagram-cta {
    height: auto;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  #section-ict-story .youtube-section,
  #section-interview .youtube-section {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left !important;
  }
  #section-ict-story .youtube-header,
  #section-interview .youtube-header {
    justify-content: flex-start;
    align-self: stretch;
  }
  #section-ict-story .linkedin-cta-icon,
  #section-interview .linkedin-cta-icon,
  #section-ict-story .instagram-cta-icon,
  #section-interview .instagram-cta-icon {
    align-self: flex-start;
  }
  #section-ict-story .btn-youtube,
  #section-ict-story .btn-linkedin,
  #section-ict-story .btn-instagram,
  #section-interview .btn-youtube,
  #section-interview .btn-linkedin,
  #section-interview .btn-instagram {
    display: flex;
    width: 100%;
    justify-content: center;
  }

  /* Story lines: font scales with vw, never wraps */
  .story-line {
    font-size: clamp(0.9rem, 4.8vw, 1.6rem);
    padding: 0 16px;
    white-space: nowrap;
  }

  /* Signing banner: mobile – two lines, large impact font */
  .signing-text {
    font-size: clamp(2.4rem, 9.75vw, 4.2rem);
    line-height: 1.35;
  }
  .signing-label {
    font-size: clamp(1.35rem, 5.7vw, 1.5rem);
    white-space: nowrap;
  }

  /* 모바일 성능: backdrop-filter 제거 (GPU 부하 감소) */
  .navbar,
  .modal-box,
  .loading-overlay,
  .loading-inner {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}

/* ============================================================
   PARTICLE / CUBE CANVAS (base)
   ============================================================ */
canvas { display: block; }

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: rgba(255,107,0,0.4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }

/* ============================================================
   SELECTION
   ============================================================ */
::selection { background: rgba(255,107,0,0.35); color: #fff; }

/* ============================================================
   SIGNING BONUS BANNER
   ============================================================ */
.signing-banner {
  position: relative;
  z-index: 1;
  background: rgba(255, 107, 0, 0.06);
  border-top: 1px solid rgba(255, 107, 0, 0.4);
  border-bottom: 1px solid rgba(255, 107, 0, 0.4);
  padding: 52px 24px;
  text-align: center;
  overflow: hidden;
}
.signing-fireworks {
  display: none;
}
.signing-content {
  position: relative;
  z-index: 2;
}
.signing-br {
  display: inline;
}
.signing-label {
  font-size: clamp(0.62rem, 2.9vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 14px;
  white-space: nowrap;
}
.signing-text {
  font-size: clamp(0.72rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
}
.signing-text em {
  font-style: normal;
  color: var(--orange);
  font-weight: 900;
}
@media (min-width: 769px) {
  .signing-br { display: none; }
  .signing-text { white-space: nowrap; }
  .signing-label { white-space: nowrap; }
}

@media (min-width: 1025px) {
  .signing-label {
    font-size: 1.45rem;
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  .signing-text {
    font-size: clamp(2.1rem, 8.8vw, 3.4rem);
    line-height: 1.3;
  }
  .signing-label {
    font-size: clamp(1.1rem, 4.4vw, 1.35rem);
    white-space: nowrap;
  }
}

@media (max-width: 360px) {
  .signing-text {
    font-size: 2.05rem;
    line-height: 1.28;
  }
  .signing-label {
    font-size: 1rem;
    letter-spacing: 0.12em;
  }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  padding: 80px 0;
  background: rgba(10, 10, 15, 0.68);
}

.faq-section .section-title {
  text-align: center;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 750;
  letter-spacing: -0.008em;
  color: var(--text-primary);
  margin-bottom: 16px;
  text-transform: none;
}

.faq-intro {
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 56px;
}

.faq-accordion {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border-top: 1px solid rgba(255,255,255,0.12);
}
.faq-item:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.faq-question {
  width: 100%;
  background: transparent;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 650;
  text-align: left;
  padding: 24px 8px;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover {
  color: var(--orange);
}

.faq-arrow {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #aaa;
  transition: transform 0.3s ease, color 0.2s;
}
.faq-question.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--orange);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  color: #c0c0c8;
  font-size: 0.97rem;
  line-height: 1.75;
  padding: 0 8px;
}
.faq-answer.open {
  max-height: 400px;
  padding: 0 8px 24px;
}

/* ============================================================
   BENEFITS CAROUSEL  (tablet ≤1024px / mobile ≤768px)
   ============================================================ */
.benefits-carousel-wrap {
  position: relative;
}

/* Dots — hidden on desktop */
.benefits-dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
}
.benefits-dots .b-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.22s, transform 0.22s, width 0.22s;
  cursor: pointer;
  flex-shrink: 0;
}
.benefits-dots .b-dot.active {
  background: var(--orange);
  transform: scale(1.35);
}

@media (max-width: 1024px) {
  .benefits-carousel-wrap {
    margin-left: -20px;
    margin-right: -20px;
  }
  .benefits-grid-page {
    display: flex !important;
    grid-template-columns: unset !important;
    flex-wrap: nowrap;
    gap: 16px;
    overflow-x: auto;
    /* snap은 JS가 직접 처리하므로 CSS snap은 proximity로 완화 */
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    padding: 6px 20px 14px;
    margin-top: 28px !important;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    scroll-behavior: auto; /* JS 애니메이션과 충돌 방지 */
  }
  .benefits-grid-page:active { cursor: grabbing; }
  .benefits-grid-page::-webkit-scrollbar { display: none; }

  .benefit-card-page {
    flex: 0 0 calc(48% - 8px);
    min-width: 260px;
    scroll-snap-align: none; /* JS 스냅으로 대체 */
  }
  /* 마지막 카드 뒤쪽 여백 */
  .benefit-card-page:last-child {
    margin-right: 20px;
  }

  .benefits-dots {
    display: flex;
  }
}

@media (max-width: 768px) {
  .benefit-card-page {
    flex: 0 0 80vw;
    max-width: 340px;
    min-width: 240px;
  }
}

