  :root {
    --bg: #07070a;
    --bg-soft: #0e0e14;
    --card: #121219;
    --line: rgba(255,255,255,0.08);
    --line-strong: rgba(255,255,255,0.16);
    --txt: #f4f4f7;
    --txt-mut: #bcbcc8;
    --txt-dim: #7a7a86;
    --accent: #6c5cff;
    --accent-2: #00e0c2;
    --accent-3: #ff5d8f;
    --grad: linear-gradient(120deg, #6c5cff 0%, #00e0c2 60%, #ff5d8f 120%);
    --maxw: 1180px;
  }
  /* ===== LIGHT THEME — 되돌리기: <html>에서 data-theme="light" 제거하면 다크로 복귀 ===== */
  :root[data-theme="light"] {
    --bg: #f6f7fa;
    --bg-soft: #eceef4;
    --card: #ffffff;
    --line: rgba(20,20,30,0.10);
    --line-strong: rgba(20,20,30,0.18);
    --txt: #16161d;
    --txt-mut: #4c4c58;
    --txt-dim: #8b8b97;
    --accent: #5a49f0;
    --accent-2: #06a892;
    --accent-3: #ff3f7d;
  }
  :root[data-theme="light"] nav { background: rgba(255,255,255,0.72); }
  :root[data-theme="light"] nav.scrolled { background: rgba(255,255,255,0.9); }
  :root[data-theme="light"] .id-card,
  :root[data-theme="light"] .ptag,
  :root[data-theme="light"] .perk,
  :root[data-theme="light"] .pbadge.dept { background: rgba(20,20,30,0.04); }
  :root[data-theme="light"] .id-card:hover,
  :root[data-theme="light"] .btn-ghost:hover { background: rgba(20,20,30,0.06); }
  :root[data-theme="light"] .modal-close { background: rgba(20,20,30,0.05); }
  :root[data-theme="light"] .must-body h3 .badge { background: rgba(20,20,30,0.06); }
  :root[data-theme="light"] .hero-aurora .blob { opacity: 0.10; }
  :root[data-theme="light"] .g-grid line { stroke: rgba(20,20,30,0.10); }
  :root[data-theme="light"] .g-grid line.axis { stroke: rgba(20,20,30,0.24); }
  :root[data-theme="light"] .g-comet { stroke: var(--accent); }
  :root[data-theme="light"] .g-dot.core { fill: #16161d; }
  :root[data-theme="light"] .g-val { fill: var(--txt); }
  :root[data-theme="light"] .video-frame,
  :root[data-theme="light"] .map-frame { box-shadow: 0 22px 50px rgba(20,20,45,0.13); }
  :root[data-theme="light"] .grad-text { background-image: linear-gradient(120deg, #5a49f0 0%, #06a892 52%, #e0356f 95%); }
  /* light: job detail sticky bar fade + apply page tweaks inherit via --bg */
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; overflow-x: hidden; }
  body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    background: var(--bg);
    color: var(--txt);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  a { color: inherit; text-decoration: none; }
  ::selection { background: var(--accent); color: #fff; }
  .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
  /* 한글 단어 중간 줄바꿈 방지 */
  h1, h2, h3, .hero-sub, .sec-lead, .vision-quote, .story-punch { word-break: keep-all; }
  .grad-text {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001s !important; animation-iteration-count: 1 !important; }
  }

  /* ---------- DYNAMIC / MOTION ---------- */
  /* scroll progress bar */
  .progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 200; background: var(--grad); box-shadow: 0 0 12px rgba(108,92,255,0.6); transition: width .1s linear; }

  /* floating aurora blobs (hero) */
  .hero-aurora { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
  .hero-aurora .blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.13; }
  .hero-aurora .b1 { width: 460px; height: 460px; background: #6c5cff; top: 4%; left: -8%; }
  .hero-aurora .b2 { width: 420px; height: 420px; background: #00e0c2; top: 28%; right: -10%; }
  .hero-aurora .b3 { width: 380px; height: 380px; background: #ff5d8f; top: 50%; left: 38%; }

  /* button shine sweep */
  .btn { position: relative; overflow: hidden; }
  .btn::after {
    content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,0.45), transparent);
    transform: skewX(-20deg); transition: left .6s ease;
  }
  .btn:hover::after { left: 130%; }

  /* identity cards — gentle one-time fade-in (no idle motion) */
  .id-card { opacity: 0; animation: fadeUp .7s ease-out forwards; }
  .id-card:nth-child(2) { animation-delay: .08s; }
  .id-card:nth-child(3) { animation-delay: .16s; }
  @keyframes fadeUp { from{ opacity:0; transform: translateY(14px);} to{ opacity:1; transform:none;} }

  /* static gradient border (highlight, no idle motion) */
  .grad-border { position: relative; }
  .grad-border::before {
    content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px;
    background: linear-gradient(135deg, #6c5cff, #00e0c2, #ff5d8f);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    pointer-events: none; opacity: 0.8;
  }

  /* count-up pop */
  .stat .num { transition: transform .3s; }
  .stat:hover .num { transform: scale(1.06); }

  /* ---------- NAV ---------- */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    backdrop-filter: blur(14px);
    background: rgba(7,7,10,0.6);
    border-bottom: 1px solid transparent;
    transition: border-color .3s, background .3s;
  }
  nav.scrolled { border-bottom: 1px solid var(--line); background: rgba(7,7,10,0.85); }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
  .logo { font-weight: 800; font-size: 20px; letter-spacing: -0.02em; }
  .logo span { color: var(--accent-2); }
  .nav-links { display: flex; gap: 30px; align-items: center; }
  .nav-links a { font-size: 14.5px; color: var(--txt-mut); font-weight: 500; transition: color .2s; }
  .nav-links a:hover { color: var(--txt); }
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 22px; border-radius: 100px; font-weight: 700; font-size: 14.5px;
    background: var(--grad); color: #fff; border: none; cursor: pointer;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 6px 24px rgba(108,92,255,0.3);
  }
  .btn:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(108,92,255,0.45); }
  .btn-ghost {
    background: transparent; color: var(--txt);
    border: 1px solid var(--line-strong); box-shadow: none;
  }
  .btn-ghost:hover { background: rgba(255,255,255,0.05); box-shadow: none; }
  .nav-cta { display: flex; gap: 12px; align-items: center; }
  @media (max-width: 860px) { .nav-links { display: none; } }

  /* ---------- HERO ---------- */
  header.hero {
    position: relative; padding: 180px 0 110px;
    overflow: hidden;
  }
  .hero-glow {
    position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
    width: 900px; height: 900px; border-radius: 50%;
    background: radial-gradient(circle, rgba(108,92,255,0.35) 0%, rgba(0,224,194,0.12) 40%, transparent 70%);
    filter: blur(40px); z-index: 0; pointer-events: none;
  }
  .hero-inner { position: relative; z-index: 2; text-align: center; }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 18px; border-radius: 100px;
    border: 1px solid var(--line-strong); background: rgba(255,255,255,0.03);
    font-size: 13px; font-weight: 600; letter-spacing: 0.06em; color: var(--txt-mut);
    margin-bottom: 32px; max-width: 100%;
  }
  @media (max-width: 480px) {
    .eyebrow { font-size: 10.5px; letter-spacing: 0.02em; padding: 7px 14px; white-space: normal; text-align: center; line-height: 1.4; }
    .hero-sub br { display: none; }
  }
  @media (max-width: 600px) {
    .vision-quote br { display: none; }
    .vision-quote { font-size: clamp(21px, 5.6vw, 34px); line-height: 1.45; }
  }
  .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 0 0 rgba(0,224,194,0.6); animation: pulse 2s infinite; }
  @keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(0,224,194,0.5);} 70%{box-shadow:0 0 0 10px rgba(0,224,194,0);} 100%{box-shadow:0 0 0 0 rgba(0,224,194,0);} }
  h1.hero-title {
    font-size: clamp(27px, 6.2vw, 76px); font-weight: 800; line-height: 1.14;
    letter-spacing: -0.035em; margin-bottom: 28px;
  }
  .hero-sub {
    font-size: clamp(16px, 2vw, 20px); color: var(--txt-mut); font-weight: 400;
    max-width: 720px; margin: 0 auto 40px; line-height: 1.7;
  }
  .hero-sub b { color: var(--txt); font-weight: 700; }
  .hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .hero-btns .btn { padding: 15px 30px; font-size: 15.5px; }

  /* identity pillar strip (at-a-glance "what we are") */
  .id-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 64px; }
  .id-card {
    background: rgba(255,255,255,0.03); border: 1px solid var(--line); border-radius: 16px;
    padding: 24px 20px; text-align: left; transition: border-color .3s, background .3s;
  }
  .id-card:hover { border-color: var(--line-strong); background: rgba(255,255,255,0.05); }
  .id-card .ico { font-size: 24px; display: block; margin-bottom: 14px; }
  .id-card h4 { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 5px; }
  .id-card p { font-size: 13px; color: var(--txt-dim); line-height: 1.5; }
  @media (max-width: 860px) { .id-strip { grid-template-columns: 1fr; } }

  /* ---------- MARQUEE ---------- */
  .marquee {
    margin-top: 90px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
    padding: 22px 0; overflow: hidden; white-space: nowrap; position: relative; z-index: 2;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  }
  .marquee-track { display: inline-flex; gap: 44px; animation: scroll 38s linear infinite; }
  .marquee-track span { font-size: 16px; font-weight: 600; color: var(--txt-mut); display: inline-flex; gap: 44px; align-items: center; }
  .marquee-track span::after { content: "✦"; color: var(--accent); font-size: 11px; }
  @keyframes scroll { to { transform: translateX(-50%); } }

  /* ---------- SECTION ---------- */
  section { padding: 110px 0; position: relative; }
  .sec-tag {
    font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--accent-2); margin-bottom: 18px;
  }
  .sec-title { font-size: clamp(28px, 4vw, 46px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 22px; }
  .sec-lead { font-size: clamp(16px, 1.8vw, 19px); color: var(--txt-mut); max-width: 680px; line-height: 1.75; }
  .sec-lead b { color: var(--txt); font-weight: 600; }

  /* reveal */
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
  .reveal.in { opacity: 1; transform: none; }
  .reveal-l { opacity: 0; transform: translateX(-46px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
  .reveal-r { opacity: 0; transform: translateX(46px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
  .reveal-scale { opacity: 0; transform: scale(.92); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
  .reveal-bar { opacity: 0; transform: translateY(20px); transition: opacity .6s ease-out, transform .6s ease-out; }
  .reveal-l.in, .reveal-r.in, .reveal-scale.in, .reveal-bar.in { opacity: 1; transform: none; }
  @media (max-width: 640px) {
    .reveal-l, .reveal-r { transform: translateY(28px); }
  }

  /* timeline scroll progress */
  .timeline::before { opacity: 0.18; }
  .tl-progress {
    position: absolute; left: 19px; top: 8px; width: 2px; height: 0;
    background: linear-gradient(180deg, #6c5cff, #00e0c2, #ff5d8f);
    box-shadow: 0 0 14px rgba(108,92,255,0.55); z-index: 1; border-radius: 2px;
  }
  .tnode .dot { transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s, border-color .45s; }
  .tnode.active .dot { transform: scale(1.28); box-shadow: 0 0 0 5px rgba(108,92,255,0.16), 0 0 26px rgba(108,92,255,0.6); }
  .tnode.peak.active .dot { box-shadow: 0 0 0 5px rgba(0,224,194,0.18), 0 0 30px rgba(0,224,194,0.65); }
  .tnode.future.active .dot { box-shadow: 0 0 0 5px rgba(255,93,143,0.18), 0 0 28px rgba(255,93,143,0.6); }
  @media (max-width: 600px) { .tl-progress { left: 15px; } }

  /* ---------- ABOUT / SHIFT ---------- */
  .shift-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 48px; }
  .shift-chip {
    padding: 16px 26px; border-radius: 16px; border: 1px solid var(--line);
    background: var(--card); font-weight: 700; font-size: clamp(16px,2vw,22px);
  }
  .shift-chip small { display: block; font-size: 12px; color: var(--txt-dim); font-weight: 500; margin-top: 3px; letter-spacing: 0.04em; }
  .shift-chip.now { border-color: var(--accent); box-shadow: 0 0 30px rgba(108,92,255,0.25); }
  .shift-chip.now b { color: var(--accent-2); }
  .arrow { color: var(--txt-dim); font-size: 22px; }

  /* ---------- STORY / TIMELINE ---------- */
  .story { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
  .story-head { text-align: center; max-width: 760px; margin: 0 auto 70px; }
  .story-head .sec-lead { margin: 0 auto; }
  .timeline { position: relative; max-width: 820px; margin: 0 auto; padding-left: 0; }
  .timeline::before {
    content: ""; position: absolute; left: 19px; top: 8px; bottom: 60px; width: 2px;
    background: linear-gradient(180deg, var(--accent) 0%, var(--accent-2) 50%, var(--accent-3) 100%);
    opacity: 0.4;
  }
  .tnode { position: relative; padding: 0 0 56px 64px; }
  .tnode:last-child { padding-bottom: 0; }
  .tnode .dot {
    position: absolute; left: 10px; top: 4px; width: 20px; height: 20px; border-radius: 50%;
    background: var(--bg-soft); border: 2px solid var(--accent); z-index: 2;
    box-shadow: 0 0 0 4px rgba(108,92,255,0.12);
  }
  .tnode.peak .dot { border-color: var(--accent-2); box-shadow: 0 0 0 4px rgba(0,224,194,0.18), 0 0 24px rgba(0,224,194,0.5); }
  .tnode.future .dot { border-color: var(--accent-3); box-shadow: 0 0 0 4px rgba(255,93,143,0.16); }
  .tyear { font-size: 14px; font-weight: 800; letter-spacing: 0.06em; color: var(--accent-2); margin-bottom: 8px; }
  .tnode.future .tyear { color: var(--accent-3); }
  .tnode h3 { font-size: clamp(20px, 2.6vw, 27px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.25; margin-bottom: 12px; }
  .tnode p { font-size: clamp(15px, 1.7vw, 16.5px); color: var(--txt-mut); line-height: 1.8; max-width: 620px; }
  .tnode p b { color: var(--txt); font-weight: 700; }
  .tnode .big { font-size: clamp(15px,1.7vw,16.5px); }
  .story-punch {
    text-align: center; max-width: 760px; margin: 80px auto 0;
    font-size: clamp(22px, 3vw, 34px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.4;
  }
  @media (max-width: 600px) { .tnode { padding-left: 52px; } .timeline::before { left: 15px; } .tnode .dot { left: 6px; } }

  /* ---------- VIDEO ---------- */
  .video-head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
  .video-head .sec-lead { margin: 0 auto; }
  .video-frame {
    position: relative; width: 100%; max-width: 920px; margin: 0 auto;
    aspect-ratio: 16 / 9; border-radius: 20px; overflow: hidden;
    border: 1px solid var(--line-strong); box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  }
  .video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
  a.video-frame { display: block; cursor: pointer; text-decoration: none; }
  .yt-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .yt-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.45)); }
  .yt-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 88px; height: 88px; border-radius: 50%; background: rgba(15,15,20,0.55); border: 1.5px solid rgba(255,255,255,0.6); backdrop-filter: blur(2px); transition: transform .25s, background .25s, border-color .25s; }
  .yt-play::after { content: ""; position: absolute; top: 50%; left: 54%; transform: translate(-50%,-50%); border-style: solid; border-width: 13px 0 13px 22px; border-color: transparent transparent transparent #fff; }
  a.video-frame:hover .yt-play { transform: translate(-50%,-50%) scale(1.08); background: var(--accent); border-color: var(--accent); }
  .yt-label { position: absolute; left: 22px; bottom: 18px; font-size: 14.5px; font-weight: 600; color: #fff; text-shadow: 0 1px 6px rgba(0,0,0,0.5); }

  /* ---------- STATS ---------- */
  .stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
  .stat {
    background: var(--card); border: 1px solid var(--line); border-radius: 20px;
    padding: 34px 26px; position: relative; overflow: hidden;
  }
  .stat::before { content: ""; position: absolute; inset: 0; background: var(--grad); opacity: 0; transition: opacity .3s; }
  .stat:hover::before { opacity: 0.06; }
  .stat .num { font-size: clamp(34px, 4.5vw, 50px); font-weight: 800; letter-spacing: -0.03em; line-height: 1; margin-bottom: 12px; }
  .stat .lbl { font-size: 14.5px; color: var(--txt-mut); font-weight: 500; }
  .stat.glob { border-color: rgba(0,224,194,0.22); }
  @media (min-width: 861px) { .stats-3 { grid-template-columns: repeat(3,1fr); } }
  /* emphasized headline stats */
  .stats-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 48px; }
  .stat-big { background: linear-gradient(135deg, rgba(108,92,255,0.13), rgba(0,224,194,0.05)); border: 1px solid var(--line-strong); border-radius: 22px; padding: 46px 36px; text-align: center; }
  .stat-big .num { font-size: clamp(46px, 6.5vw, 72px); font-weight: 800; letter-spacing: -0.03em; line-height: 1; margin-bottom: 14px; }
  .stat-big .lbl { font-size: 16px; color: var(--txt-mut); font-weight: 600; }
  .stats-sub { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 18px; }
  .stats-sub .stat { text-align: center; }
  @media (max-width: 700px) { .stats-hero { grid-template-columns: 1fr; } }
  .stat-group { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--txt-dim); }
  @media (max-width: 860px) { .stats-grid { grid-template-columns: repeat(2,1fr); } }

  /* ---------- GROWTH ---------- */
  .growth-chart { max-width: 740px; margin: 56px auto 0; }
  .growth-svg { width: 100%; height: auto; display: block; overflow: visible; }
  .g-area { opacity: 0; transition: opacity 1s ease .25s; }
  .g-line { fill: none; stroke: url(#gGrad); stroke-width: 4.5; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 1; stroke-dashoffset: 1; filter: drop-shadow(0 3px 10px rgba(108,92,255,0.45)); }
  /* guide grid */
  .g-grid { opacity: 0; transition: opacity .9s ease; }
  .in .g-grid { opacity: 1; }
  .g-grid line { stroke: rgba(255,255,255,0.07); stroke-width: 1; stroke-dasharray: 3 7; }
  .g-grid line.axis { stroke: rgba(255,255,255,0.16); stroke-dasharray: 0; }
  /* vertical guide to the goal */
  .g-drop { stroke: rgba(255,93,143,0.45); stroke-width: 1.5; stroke-dasharray: 5 6; opacity: 0; transition: opacity .6s ease 1.3s; }
  .in .g-drop { opacity: 1; }
  /* point halos */
  .g-halo { opacity: 0; transition: opacity .5s ease; }
  .in .g-halo { opacity: 1; }
  /* flowing highlight comet along the line */
  .g-comet { fill: none; stroke: #ffffff; stroke-width: 4.5; stroke-linecap: round; stroke-dasharray: 0.12 0.88; stroke-dashoffset: 1; opacity: 0; }
  .in .g-comet { opacity: 0.85; animation: comet 3s linear infinite 1.7s; }
  @keyframes comet { from { stroke-dashoffset: 1; } to { stroke-dashoffset: 0; } }
  /* pulsing beacon at the goal */
  .g-pulse { fill: none; stroke: #ff5d8f; stroke-width: 2; transform-origin: center; transform-box: fill-box; opacity: 0; }
  .in .g-pulse { animation: beacon 2.2s ease-out infinite 2s; }
  @keyframes beacon { 0% { opacity: 0.7; transform: scale(1); } 100% { opacity: 0; transform: scale(3.4); } }

  .g-dot { opacity: 0; transform: scale(0); transform-origin: center; transform-box: fill-box; transition: opacity .4s, transform .45s cubic-bezier(.2,.9,.3,1.4); }
  .g-dot.core { fill: #fff; } .g-dot.ring { fill: none; stroke: #ff5d8f; stroke-width: 3; }
  .g-val, .g-mult, .g-base { opacity: 0; transition: opacity .55s ease; }
  .in .g-area { opacity: 1; }
  .in .g-line { stroke-dashoffset: 0; transition: stroke-dashoffset 1.6s cubic-bezier(.45,.05,.2,1) .1s; }
  .in .g-dot { opacity: 1; transform: scale(1); }
  .in .g-dot.d2 { transition-delay: .65s; } .in .g-dot.d3 { transition-delay: 1.2s; }
  .in .g-base { opacity: 1; }
  .in .g-mult.m2 { opacity: 1; transition-delay: .55s; }
  .in .g-mult.m3 { opacity: 1; transition-delay: 1.1s; }
  .in .g-val { opacity: 1; transition-delay: 1.35s; }
  .g-year { fill: var(--txt-mut); font-size: 15px; font-weight: 700; }
  .g-val { fill: #fff; font-size: 34px; font-weight: 800; letter-spacing: -0.02em; }
  .g-mult text { font-weight: 800; font-size: 14px; }
  .g-mult.m2 text { fill: #00e0c2; }
  .g-mult.m3 text { fill: #ff7da6; }
  .g-mult rect { stroke-width: 1; }
  .g-mult.m2 rect { fill: rgba(0,224,194,0.10); stroke: rgba(0,224,194,0.42); }
  .g-mult.m3 rect { fill: rgba(255,93,143,0.12); stroke: rgba(255,93,143,0.52); }
  .growth-note { text-align: center; margin-top: 30px; font-size: 13px; color: var(--txt-dim); }
  @media (max-width: 600px) { .g-val { font-size: 28px; } .g-mult text { font-size: 13px; } .g-year { font-size: 13px; } }

  /* ---------- PILLARS (what we do) ---------- */
  .pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 54px; }
  .pillar {
    background: var(--card); border: 1px solid var(--line); border-radius: 22px;
    padding: 38px; transition: transform .3s, border-color .3s;
    position: relative; overflow: hidden;
  }
  .pillar:hover { transform: translateY(-4px); border-color: var(--line-strong); }
  .pillar .pico { font-size: 30px; margin-bottom: 20px; display: block; }
  .pillar h3 { font-size: 23px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; }
  .pillar p { color: var(--txt-mut); font-size: 15.5px; line-height: 1.7; }
  .pillar .tag-row { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; }
  .ptag { font-size: 12.5px; padding: 6px 12px; border-radius: 100px; background: rgba(255,255,255,0.05); border: 1px solid var(--line); color: var(--txt-mut); }
  .pillar.featured { grid-column: span 2; background: linear-gradient(135deg, rgba(108,92,255,0.12), rgba(0,224,194,0.06)); border-color: rgba(108,92,255,0.35); }
  @media (max-width: 860px) { .pillars { grid-template-columns: 1fr; } .pillar.featured { grid-column: span 1; } }

  /* ---------- GLOBAL SPOTLIGHT ---------- */
  .global { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .global-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
  .globe-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .gcard { background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 28px 24px; }
  .gcard .flag { font-size: 26px; }
  .gcard .gnum { font-size: 30px; font-weight: 800; letter-spacing: -0.02em; margin: 10px 0 4px; }
  .gcard .glbl { font-size: 13.5px; color: var(--txt-mut); }
  .globe-list { list-style: none; margin-top: 30px; }
  .globe-list li { padding: 16px 0; border-top: 1px solid var(--line); display: flex; gap: 14px; align-items: flex-start; font-size: 15.5px; color: var(--txt-mut); }
  .globe-list li b { color: var(--txt); font-weight: 700; }
  .globe-list li::before { content: "→"; color: var(--accent-2); font-weight: 700; }
  @media (max-width: 860px) { .global-grid { grid-template-columns: 1fr; gap: 36px; } }

  /* ---------- OFFICE ---------- */
  .office { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .office-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .addr-card { display: flex; gap: 18px; align-items: flex-start; background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 24px 26px; margin-top: 30px; }
  .addr-ico { font-size: 26px; line-height: 1.2; }
  .addr-card h4 { font-size: 16px; font-weight: 800; margin-bottom: 5px; }
  .addr-card p.addr-line { font-size: 16.5px; color: var(--txt); font-weight: 600; }
  .addr-tags { display: inline-block; margin-top: 9px; font-size: 13px; color: var(--accent-2); font-weight: 600; letter-spacing: 0.02em; }
  .office-perks { list-style: none; margin-top: 24px; }
  .office-perks li { font-size: 15px; color: var(--txt-mut); padding: 8px 0; }
  .map-frame { position: relative; width: 100%; aspect-ratio: 4 / 3; border-radius: 20px; overflow: hidden; border: 1px solid var(--line-strong); box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
  .map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: invert(0.92) hue-rotate(180deg) brightness(0.95) contrast(0.9); transition: filter .4s; }
  .map-frame:hover iframe { filter: none; }
  @media (max-width: 860px) { .office-grid { grid-template-columns: 1fr; gap: 34px; } }

  /* ---------- VISION ---------- */
  .vision-quote {
    font-size: clamp(24px, 3.4vw, 40px); font-weight: 800; letter-spacing: -0.03em;
    line-height: 1.35; max-width: 900px; margin: 0 auto; text-align: center;
  }
  .vision-by { text-align: center; margin-top: 30px; color: var(--txt-dim); font-size: 15px; }
  .vision-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 60px; }
  .vcard { background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 30px; }
  .vcard h4 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
  .vcard p { font-size: 14.5px; color: var(--txt-mut); line-height: 1.7; }
  @media (max-width: 860px) { .vision-cards { grid-template-columns: 1fr; } }

  /* ---------- ROLES ---------- */
  .roles { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 54px; }
  .role {
    background: var(--card); border: 1px solid var(--line); border-radius: 22px;
    padding: 36px 30px; display: flex; flex-direction: column;
    transition: transform .3s, border-color .3s; position: relative; overflow: hidden;
  }
  .role:hover { transform: translateY(-5px); border-color: var(--accent); }
  .role .rdept { font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 14px; }
  .role h3 { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 8px; }
  .role .ren { font-size: 13px; color: var(--txt-dim); font-weight: 600; letter-spacing: 0.02em; margin-bottom: 18px; }
  .role p.rdesc { font-size: 14.5px; color: var(--txt-mut); line-height: 1.7; margin-bottom: 20px; }
  .role ul { list-style: none; margin-bottom: 26px; }
  .role ul li { font-size: 13.8px; color: var(--txt-mut); padding: 7px 0 7px 22px; position: relative; line-height: 1.5; }
  .role ul li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 800; }
  .role.open-detail { cursor: pointer; }
  .role .rfoot { margin-top: auto; }
  .role .rfoot a, .role .rfoot .detail-cue { font-weight: 700; font-size: 14.5px; color: var(--txt); display: inline-flex; gap: 7px; align-items: center; transition: gap .2s; }
  .role:hover .rfoot a, .role:hover .rfoot .detail-cue { gap: 12px; }
  .role .rfoot a span, .role .rfoot .detail-cue span { color: var(--accent-2); }
  .always-wrap { margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--line); }
  .always-title { font-size: 19px; font-weight: 800; letter-spacing: -0.01em; color: var(--txt); margin-bottom: 6px; }
  .always-title .tag { font-size: 12px; font-weight: 700; color: var(--accent-2); border: 1px solid rgba(0,224,194,0.3); background: rgba(0,224,194,0.08); padding: 3px 11px; border-radius: 100px; margin-left: 10px; vertical-align: middle; }
  .always-lead { font-size: 14.5px; color: var(--txt-mut); margin-bottom: 22px; }
  .always2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
  .always-card { position: relative; display: block; background: linear-gradient(135deg, rgba(108,92,255,0.11), rgba(0,224,194,0.04)); border: 1px solid var(--line-strong); border-radius: 18px; padding: 28px; transition: transform .25s, border-color .25s; cursor: pointer; }
  .always-card:hover { border-color: var(--accent); transform: translateY(-4px); }
  .ac-badge { position: absolute; top: 18px; right: 18px; font-size: 11px; font-weight: 700; color: var(--accent-2); background: rgba(0,224,194,0.1); border: 1px solid rgba(0,224,194,0.3); padding: 3px 10px; border-radius: 100px; }
  .ac-ico { font-size: 26px; margin-bottom: 12px; }
  .ac-name { font-size: 19px; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 5px; }
  .ac-desc { font-size: 14px; color: var(--txt-mut); margin-bottom: 18px; }
  .ac-arrow { font-size: 14px; font-weight: 700; color: var(--accent-2); display: inline-flex; gap: 7px; transition: gap .2s; }
  .always-card:hover .ac-arrow { gap: 12px; }
  @media (max-width: 700px) { .always2 { grid-template-columns: 1fr; } }
  @media (max-width: 980px) { .roles { grid-template-columns: 1fr; } }

  /* ---------- ALWAYS OPEN ---------- */
  .always { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 30px; }
  .always-chip { flex: 1; min-width: 200px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 16px; padding: 22px 24px; }
  .always-chip h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
  .always-chip p { font-size: 13.5px; color: var(--txt-mut); }

  /* ---------- CULTURE / IDEAL ---------- */
  .ideal-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 50px; }
  .ideal {
    display: flex; gap: 18px; align-items: flex-start;
    background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 26px 28px;
  }
  .ideal .ino { font-size: 22px; font-weight: 800; color: var(--accent); line-height: 1; min-width: 30px; }
  .ideal h4 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
  .ideal p { font-size: 14.5px; color: var(--txt-mut); line-height: 1.65; }
  @media (max-width: 860px) { .ideal-grid { grid-template-columns: 1fr; } }

  /* must-have requirement */
  .must { display: flex; gap: 26px; align-items: center; border-radius: 20px; padding: 30px 36px; margin: 0 0 50px; background: linear-gradient(135deg, rgba(108,92,255,0.14), rgba(0,224,194,0.06)); }
  .must-tag { flex-shrink: 0; font-size: 12.5px; font-weight: 800; letter-spacing: 0.08em; padding: 9px 16px; border-radius: 100px; background: var(--grad); color: #fff; white-space: nowrap; box-shadow: 0 6px 20px rgba(108,92,255,0.4); }
  .must-body h3 { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 6px; }
  .must-body h3 .badge { font-size: 12px; vertical-align: middle; margin-left: 8px; padding: 3px 9px; border-radius: 6px; background: rgba(255,255,255,0.1); color: var(--accent-2); font-weight: 700; letter-spacing: 0.02em; }
  .must-body p { font-size: 15px; color: var(--txt-mut); line-height: 1.7; }
  .must-body p b { color: var(--txt); }
  @media (max-width: 640px) { .must { flex-direction: column; align-items: flex-start; gap: 16px; padding: 26px; } }

  .perks { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 40px; }
  .perk { padding: 12px 20px; border-radius: 100px; border: 1px solid var(--line-strong); background: rgba(255,255,255,0.03); font-size: 14px; font-weight: 500; color: var(--txt-mut); }
  .perk b { color: var(--txt); }

  /* ---------- CTA ---------- */
  .cta { text-align: center; position: relative; overflow: hidden; }
  .cta-glow {
    position: absolute; bottom: -300px; left: 50%; transform: translateX(-50%);
    width: 800px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(108,92,255,0.3), transparent 70%); filter: blur(30px);
  }
  .cta-inner { position: relative; z-index: 2; }
  .cta h2 { font-size: clamp(32px, 5vw, 60px); font-weight: 800; letter-spacing: -0.035em; line-height: 1.1; margin-bottom: 24px; }
  .cta p { font-size: 18px; color: var(--txt-mut); margin-bottom: 40px; }
  .cta .btn { padding: 17px 40px; font-size: 17px; }

  /* ---------- APPLY MODAL ---------- */
  .modal { position: fixed; inset: 0; z-index: 300; display: none; align-items: flex-start; justify-content: center; padding: 40px 16px; overflow-y: auto; }
  .modal.open { display: flex; }
  .modal-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.72); backdrop-filter: blur(5px); }
  .modal-card { position: relative; z-index: 1; width: 100%; max-width: 600px; background: var(--card); border: 1px solid var(--line-strong); border-radius: 22px; padding: 38px; margin: auto; box-shadow: 0 40px 100px rgba(0,0,0,0.6); }
  .modal-close { position: absolute; top: 18px; right: 18px; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line); background: rgba(255,255,255,0.04); color: var(--txt-mut); font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: color .2s, background .2s; }
  .modal-close:hover { color: var(--txt); background: rgba(255,255,255,0.08); }
  .modal h3 { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 6px; }
  .modal .msub { font-size: 14px; color: var(--txt-mut); margin-bottom: 26px; }
  .field { margin-bottom: 17px; }
  .field label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 7px; color: var(--txt); }
  .field label .req { color: var(--accent-3); margin-left: 2px; }
  .field input, .field select, .field textarea { width: 100%; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; color: var(--txt); font-size: 14.5px; font-family: inherit; transition: border-color .2s; }
  .field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
  .field textarea { min-height: 92px; resize: vertical; line-height: 1.6; }
  .field input::placeholder, .field textarea::placeholder { color: var(--txt-dim); }
  .field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23a0a0ad' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 34px; }
  .checkgroup { display: flex; flex-wrap: wrap; gap: 10px 20px; padding: 6px 0; }
  .chk { display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; color: var(--txt); cursor: pointer; }
  .chk input { width: auto; accent-color: var(--accent); }
  .hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; }
  .modal .btn { width: 100%; justify-content: center; margin-top: 8px; padding: 15px; font-size: 15.5px; }
  .modal .btn:disabled { opacity: 0.6; cursor: default; transform: none; }
  .form-msg { margin-top: 14px; font-size: 14px; text-align: center; display: none; }
  .form-msg.err { color: #ff7da6; display: block; }
  .modal-success { text-align: center; padding: 30px 0 14px; display: none; }
  .modal-success.show { display: block; }
  .modal-success .ico { font-size: 48px; margin-bottom: 14px; }
  .modal-success p { color: var(--txt-mut); font-size: 15px; margin-top: 8px; }

  /* ---------- ROLE DETAIL MODAL ---------- */
  .rd-card { max-width: 680px; }
  .rd-dept { font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 12px; }
  .rd-title { font-size: 27px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.18; margin-bottom: 6px; }
  .rd-en { font-size: 13px; color: var(--txt-dim); font-weight: 600; letter-spacing: 0.02em; margin-bottom: 20px; }
  .rd-tagline { font-size: 16px; font-weight: 600; color: var(--txt); line-height: 1.6; background: linear-gradient(135deg, rgba(108,92,255,0.12), rgba(0,224,194,0.05)); border: 1px solid var(--line-strong); border-radius: 14px; padding: 18px 20px; margin-bottom: 26px; word-break: keep-all; }
  .rd-block { margin-bottom: 24px; }
  .rd-block > h5 { font-size: 12.5px; font-weight: 800; letter-spacing: 0.06em; color: var(--accent); text-transform: uppercase; margin-bottom: 12px; }
  .rd-block p { font-size: 14.5px; color: var(--txt-mut); line-height: 1.7; word-break: keep-all; }
  .rd-list { list-style: none; }
  .rd-list li { position: relative; padding: 8px 0 8px 26px; font-size: 14.5px; color: var(--txt-mut); line-height: 1.6; border-bottom: 1px solid var(--line); word-break: keep-all; }
  .rd-list li:last-child { border-bottom: none; }
  .rd-list li::before { content: ""; position: absolute; left: 4px; top: 15px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
  .rd-fit li::before { content: "✓"; left: 0; top: 8px; width: auto; height: auto; background: none; color: var(--accent-2); font-weight: 800; }
  /* grouped duties */
  .rd-dgroup { margin-bottom: 16px; }
  .rd-dgroup:last-child { margin-bottom: 0; }
  .rd-dgroup > .rd-gtitle { font-size: 14.5px; font-weight: 800; color: var(--txt); margin-bottom: 8px; word-break: keep-all; }
  .rd-dgroup > .rd-gtitle .rd-gnum { color: var(--accent-2); margin-right: 7px; }
  .rd-dgroup .rd-list li { padding: 6px 0 6px 26px; border-bottom: none; }
  .rd-dgroup .rd-list li::before { top: 13px; }
  .rd-actions { display: flex; margin-top: 30px; }
  .rd-apply-btn { flex: 1; justify-content: center; padding: 19px; font-size: 17px; font-weight: 800; box-shadow: 0 14px 34px rgba(108,92,255,0.42); }
  .rd-cancel { display: block; margin: 14px auto 0; background: none; border: none; color: var(--txt-dim); font-size: 13.5px; font-family: inherit; cursor: pointer; padding: 6px 10px; transition: color .2s; }
  .rd-cancel:hover { color: var(--txt-mut); text-decoration: underline; }
  @media (max-width: 600px) { .modal-card { padding: 28px 20px; } .modal { padding: 16px 10px; } .rd-apply-btn { padding: 18px; font-size: 16px; } }

  /* ---------- FOOTER ---------- */
  footer { border-top: 1px solid var(--line); padding: 50px 0; }
  .foot-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
  .foot-inner .logo { font-size: 18px; }
  .foot-meta { font-size: 13.5px; color: var(--txt-dim); }
  .foot-meta a { color: var(--txt-mut); }

  .divider-note { font-size: 12.5px; color: var(--txt-dim); margin-top: 14px; }

/* ===================================================================
   MULTI-PAGE: positions / job detail / apply  (career flow)
   =================================================================== */
/* generic page sections reuse existing tokens */
.page { padding-top: 68px; }
/* 좌우 패딩은 .wrap(0 24px)이 담당 — shorthand로 덮어쓰면 모바일에서 헤더 텍스트가 화면 끝에 붙어 잘림 */
.page-hd { padding-top: 70px; padding-bottom: 30px; border-bottom: 1px solid var(--line); }
.page-hd .sec-tag { text-align: left; }
.crumbs { font-size: 13px; color: var(--txt-dim); margin-bottom: 22px; display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.crumbs a { color: var(--txt-mut); }
.crumbs a:hover { color: var(--accent-2); }
.crumbs .sep { color: var(--txt-dim); }
.back-link { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; color: var(--txt-mut); margin-bottom: 20px; }
.back-link:hover { color: var(--accent-2); }

/* ---- POSITIONS LIST ---- */
.plist { display: flex; flex-direction: column; gap: 14px; margin: 40px 0 30px; }
.pl-group-title { font-size: 15px; font-weight: 800; color: var(--txt-dim); letter-spacing: 0.04em; margin: 26px 0 4px; }
.pl-group-title:first-child { margin-top: 0; }
.prow { display: flex; align-items: center; gap: 20px; background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 24px 26px; transition: transform .25s, border-color .25s; cursor: pointer; }
.prow:hover { transform: translateY(-3px); border-color: var(--accent); }
.prow.star { background: linear-gradient(135deg, rgba(108,92,255,0.11), rgba(0,224,194,0.04)); border-color: var(--line-strong); }
.prow-main { flex: 1; min-width: 0; }
.prow-badges { display: flex; align-items: center; gap: 8px; margin-bottom: 9px; flex-wrap: wrap; }
.pbadge { display: inline-flex; align-items: center; margin: 0; font-size: 11px; font-weight: 700; letter-spacing: 0.02em; padding: 4px 10px; border-radius: 100px; line-height: 1.4; white-space: nowrap; }
.pbadge.reg { color: var(--accent); background: rgba(108,92,255,0.12); border: 1px solid rgba(108,92,255,0.32); }
.pbadge.ongoing { color: var(--accent-2); background: rgba(0,224,194,0.1); border: 1px solid rgba(0,224,194,0.3); }
.pbadge.dept { color: var(--txt-mut); background: rgba(255,255,255,0.04); border: 1px solid var(--line); }
.prow h3 { font-size: 21px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 5px; }
.prow p { font-size: 14px; color: var(--txt-mut); line-height: 1.6; word-break: keep-all; }
.prow-meta { font-size: 12.5px; color: var(--txt-dim); margin-top: 9px; display: flex; gap: 14px; flex-wrap: wrap; }
.prow-meta span::before { content: "· "; color: var(--txt-dim); }
.prow-meta span:first-child::before { content: ""; }
.prow-go { flex-shrink: 0; font-size: 22px; color: var(--accent-2); transition: transform .2s; }
.prow:hover .prow-go { transform: translateX(4px); }
@media (max-width: 560px) { .prow { padding: 20px; gap: 14px; } .prow h3 { font-size: 18px; } .prow-go { font-size: 18px; } }

/* ---- JOB DETAIL PAGE ---- */
.job-hd-meta { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 20px; }
.job-hd-meta .m { font-size: 13.5px; color: var(--txt-mut); }
.job-hd-meta .m b { color: var(--txt); font-weight: 700; display: block; font-size: 11.5px; color: var(--txt-dim); letter-spacing: 0.04em; margin-bottom: 2px; text-transform: uppercase; }
.job-body { max-width: 780px; margin: 0 auto; padding: 50px 0 40px; }
.job-sec { margin-bottom: 44px; }
.job-sec > h4 { font-size: 13px; font-weight: 800; letter-spacing: 0.06em; color: var(--accent); text-transform: uppercase; margin-bottom: 16px; }
.job-sec > p { font-size: 15.5px; color: var(--txt-mut); line-height: 1.8; word-break: keep-all; }
.job-lead { font-size: 18px; font-weight: 600; color: var(--txt); line-height: 1.6; background: linear-gradient(135deg, rgba(108,92,255,0.12), rgba(0,224,194,0.05)); border: 1px solid var(--line-strong); border-radius: 16px; padding: 22px 24px; word-break: keep-all; }
/* sticky apply bar */
.job-cta { position: sticky; bottom: 0; z-index: 40; background: linear-gradient(to top, var(--bg) 55%, rgba(7,7,10,0)); padding: 26px 0 30px; }
.job-cta-inner { max-width: 780px; margin: 0 auto; }
.job-apply-btn { display: flex; width: 100%; justify-content: center; align-items: center; gap: 8px; padding: 21px; font-size: 17.5px; font-weight: 800; box-shadow: 0 16px 40px rgba(108,92,255,0.45); }
.job-hero-apply { margin-top: 26px; }
.job-hero-apply .btn { padding: 15px 30px; font-weight: 800; }

/* ---- APPLY PAGE ---- */
.apply-wrap { max-width: 620px; margin: 0 auto; padding: 44px 0 60px; }
.apply-posbar { display: flex; align-items: center; gap: 14px; background: var(--card); border: 1px solid var(--line-strong); border-radius: 16px; padding: 18px 22px; margin-bottom: 30px; }
.apply-posbar .ico { font-size: 24px; }
.apply-posbar .t { font-size: 12px; color: var(--txt-dim); letter-spacing: 0.04em; }
.apply-posbar .n { font-size: 18px; font-weight: 800; letter-spacing: -0.01em; }
.apply-page h1 { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; }
.apply-page .msub { font-size: 14.5px; color: var(--txt-mut); margin-bottom: 30px; }
.apply-page .apply-wrap .btn { width: 100%; justify-content: center; padding: 17px; font-size: 16px; font-weight: 800; margin-top: 10px; }
.apply-page .apply-wrap .btn:disabled { opacity: 0.6; cursor: default; transform: none; }
.apply-success { text-align: center; padding: 60px 20px; display: none; }
.apply-success.show { display: block; }
.apply-success .ico { font-size: 56px; margin-bottom: 18px; }
.apply-success h2 { font-size: 24px; font-weight: 800; margin-bottom: 10px; }
.apply-success p { color: var(--txt-mut); font-size: 15px; }
.apply-success .btn { max-width: 260px; margin: 26px auto 0; }

/* ---- 채용 프로세스 (landing) ---- */
.hire-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 50px; }
.hstep { background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 26px 24px; position: relative; }
.hstep .hnum { font-size: 13px; font-weight: 800; color: var(--accent-2); letter-spacing: 0.08em; margin-bottom: 12px; }
.hstep h4 { font-size: 17px; font-weight: 800; margin-bottom: 6px; }
.hstep p { font-size: 13.5px; color: var(--txt-mut); line-height: 1.6; }
@media (max-width: 820px) { .hire-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .hire-steps { grid-template-columns: 1fr; } }
