:root {
  --ink: #102e35;
  --teal: #0d5754;
  --teal-dark: #073f43;
  --muted: #68797d;
  --line: rgba(16, 46, 53, .14);
  --white: #fff;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", "Noto Sans KR", sans-serif;
}
body.panel-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }

/* Header */
.site-header {
  position: relative;
  z-index: 30;
  isolation: isolate;
  overflow: hidden;
  height: 196px;
  padding: 0 clamp(24px, 5vw, 76px);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid var(--line);
}

.nav-skyline {
  position: absolute;
  z-index: 0;
  left: 0;
  bottom: 0;
  width: min(560px, 47vw);
  height: 100%;
  pointer-events: none;
  opacity: .72;
  background: linear-gradient(90deg, rgba(205, 235, 231, .25), transparent 72%);
}
.nav-skyline::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.62), rgba(255,255,255,.05) 70%, transparent);
}
.nav-tower {
  --w: 40px;
  --h: 70px;
  position: absolute;
  bottom: -1px;
  width: var(--w);
  height: var(--h);
  display: block;
  border: 1px solid rgba(13, 87, 84, .18);
  background:
    repeating-linear-gradient(90deg, rgba(13,87,84,.12) 0 1px, transparent 1px 9px),
    repeating-linear-gradient(0deg, rgba(13,87,84,.1) 0 1px, transparent 1px 12px),
    linear-gradient(120deg, rgba(170,219,213,.42), rgba(13,87,84,.08));
  clip-path: polygon(12% 0, 100% 8%, 92% 100%, 0 100%);
  filter: drop-shadow(7px 8px 7px rgba(13,87,84,.08));
  transition: transform .9s var(--ease);
}
.tower-01 { left: 8px; --w: 30px; --h: 53px; }
.tower-02 { left: 36px; --w: 48px; --h: 99px; }
.tower-03 { left: 75px; --w: 24px; --h: 69px; }
.tower-04 { left: 99px; --w: 58px; --h: 79px; }
.tower-05 { left: 149px; --w: 34px; --h: 47px; }
.tower-06 { left: 179px; --w: 66px; --h: 58px; }
.skyline-haze {
  position: absolute;
  left: 65px;
  bottom: -35px;
  width: 330px;
  height: 135px;
  background: radial-gradient(ellipse, rgba(110, 188, 178, .18), transparent 68%);
  filter: blur(12px);
}
.site-header:hover .tower-01 { transform: translate(-5px, -2px); }
.site-header:hover .tower-02 { transform: translate(6px, -5px); }
.site-header:hover .tower-03 { transform: translate(-4px, -3px); }
.site-header:hover .tower-04 { transform: translate(9px, -4px); }
.site-header:hover .tower-05 { transform: translate(4px, -2px); }
.site-header:hover .tower-06 { transform: translate(11px, -3px); }

.nav-skyline { display: none; }

.brand {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-logo {
  width: 138px;
  height: 138px;
  object-fit: contain;
  filter: drop-shadow(6px 6px 6px rgba(13,87,84,.10));
}
.footer-brand .brand-logo { filter: invert(1) brightness(1.6); }
.brand-wordmark { height: 132px; width: auto; object-fit: contain; }
.footer-brand .brand-wordmark { filter: invert(1) brightness(1.6); }
@media (max-width: 850px) { .brand-wordmark { height: 44px; } }
.brand-text { display: flex; flex-direction: column; gap: 8px; line-height: 1; white-space: nowrap; }
.brand-text strong { font: 700 24px "Noto Sans KR"; letter-spacing: -1.2px; }
.brand-text small { color: var(--teal); font: 700 34px "Manrope"; letter-spacing: .2px; }
.brand-mark {
  width: 54px;
  height: 68px;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  filter: drop-shadow(7px 7px 6px rgba(13,87,84,.13));
}
.brand-mark i {
  width: 15px;
  display: block;
  background: linear-gradient(180deg, #1a7773, var(--teal-dark));
  clip-path: polygon(0 14%, 100% 0, 100% 100%, 0 100%);
}
.brand-mark i:nth-child(1) { height: 43px; }
.brand-mark i:nth-child(2) { height: 64px; }
.brand-mark i:nth-child(3) { height: 51px; }
.brand > span:last-child {
  display: grid;
  grid-template-columns: auto auto;
  align-items: end;
  column-gap: 8px;
  line-height: .94;
}
.brand strong { font-size: 31px; letter-spacing: -1.5px; }
.brand b { padding-bottom: 2px; color: var(--teal); font-size: 11px; letter-spacing: 2px; }
.brand small {
  grid-column: 1 / 3;
  margin-top: 7px;
  font: 600 10px/1.4 "Noto Sans KR";
  letter-spacing: .8px;
}

.header-actions {
  position: relative;
  z-index: 3;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-actions button { cursor: pointer; }
.header-actions svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}
.lang {
  height: 44px;
  padding: 0 14px 0 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  border: 1px solid rgba(16,46,53,.22);
  border-right: 0;
  background: #fff;
  font: 700 12px "Manrope";
  letter-spacing: 1px;
  transition: color .25s, background .25s, transform .25s;
}
.lang svg { width: 18px; height: 18px; opacity: .8; }
.lang b { font-weight: 700; }
.lang:hover { color: #fff; background: var(--teal); border-color: var(--teal); }
.lang:hover svg { transform: rotate(180deg); opacity: 1; }
.lang svg { transition: transform .5s cubic-bezier(.2,.8,.2,1), opacity .3s; }
@media (max-width: 850px) { .lang { display: none; } }
.search {
  width: 44px;
  height: 44px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(16,46,53,.22);
  background: #fff;
  transition: color .25s, background .25s, transform .25s;
}
.search:hover { color: #fff; background: var(--teal); border-color: var(--teal); }
.search svg { transition: transform .35s cubic-bezier(.2,.8,.2,1); }
.search:hover svg { transform: scale(1.15); }
.menu {
  position: relative;
  width: 58px;
  height: 58px;
  padding: 11px 14px 14px;
  color: #fff;
  border: 1px solid var(--teal);
  background: var(--teal);
  transition: background .3s, color .3s, letter-spacing .3s;
}
.menu:hover { background: var(--teal-dark); }
.menu:hover span:nth-child(1) { transform: translateY(2px) scaleX(.72); }
.menu:hover span:nth-child(3) { transform: translateY(-2px) scaleX(.72); }
.menu span { transition: transform .35s cubic-bezier(.2,.8,.2,1); }
.menu span {
  display: block;
  height: 1.5px;
  margin: 6px 0;
  background: currentColor;
  transform-origin: center;
  transition: transform .35s;
}
.menu small {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  font-size: 6px;
  letter-spacing: 1px;
}
.menu.open { z-index: 82; color: var(--ink); background: #fff; }
.menu.open span:first-child { transform: translateY(4px) rotate(45deg); }
.menu.open span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

/* Panels */
.panel-backdrop {
  position: fixed;
  z-index: 70;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  background: rgba(6,25,30,.55);
  backdrop-filter: blur(5px);
  transition: opacity .35s, visibility .35s;
}
.panel-backdrop.active { opacity: 1; visibility: visible; }
.search-panel, .login-panel, .menu-panel {
  position: fixed;
  z-index: 80;
  visibility: hidden;
  transition: transform .55s var(--ease), visibility .55s;
}
.search-panel {
  top: 0;
  left: 0;
  right: 0;
  padding: clamp(100px,14vh,180px) clamp(25px,12vw,190px);
  background: #fff;
  transform: translateY(-105%);
}
.search-panel.open { visibility: visible; transform: translateY(0); }
.panel-close {
  position: absolute;
  top: 30px;
  right: 4vw;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  font-size: 28px;
  cursor: pointer;
}
.search-form label {
  display: block;
  margin-bottom: 38px;
  font: 700 clamp(30px,4vw,60px) "Noto Sans KR";
  letter-spacing: -3px;
}
.search-form > div { display: flex; border-bottom: 2px solid var(--ink); }
.search-form input {
  flex: 1;
  padding: 20px 5px;
  border: 0;
  outline: 0;
  background: transparent;
  font: 400 20px "Noto Sans KR";
}
.search-form button { padding: 0 20px; border: 0; background: transparent; color: var(--teal); font-weight: 700; cursor: pointer; }

.login-panel {
  top: 0;
  right: 0;
  width: min(580px,100%);
  height: 100%;
  padding: clamp(100px,13vh,150px) clamp(35px,6vw,80px);
  background: #fff;
  transform: translateX(105%);
}
.login-panel.open { visibility: visible; transform: translateX(0); }
.login-copy > span { color: var(--teal); font-size: 9px; letter-spacing: 3px; }
.login-copy h2 { max-width: 430px; margin: 20px 0; font: 700 clamp(34px,4vw,55px)/1.2 "Noto Sans KR"; letter-spacing: -3px; }
.login-copy p { margin-bottom: 55px; color: var(--muted); font: 400 13px "Noto Sans KR"; }
.login-form { display: flex; flex-direction: column; }
.login-form label { margin: 15px 0 8px; font: 600 11px "Noto Sans KR"; }
.login-form input { height: 50px; border: 0; border-bottom: 1px solid var(--line); outline: 0; font-size: 18px; }
.login-form input:focus { border-color: var(--teal); }
.login-form > button {
  height: 58px;
  margin-top: 35px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  color: #fff;
  background: var(--teal);
  font: 700 14px "Noto Sans KR";
  cursor: pointer;
}
.login-form > div { margin-top: 18px; display: flex; justify-content: space-between; font: 500 10px "Noto Sans KR"; }

.menu-panel {
  top: 0;
  right: 0;
  width: min(720px,100%);
  height: 100%;
  padding: 105px clamp(35px,7vw,100px) 50px;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
  transform: translateX(105%);
}
.menu-panel.open { visibility: visible; transform: translateX(0); }
.menu-watermark {
  position: absolute;
  right: -20px;
  bottom: -90px;
  color: rgba(255,255,255,.025);
  font-size: 350px;
  font-weight: 800;
}
.menu-login-trigger,
.menu-ojs-link {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 94px;
  margin-bottom: 28px;
  padding: 17px 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  text-align: left;
  color: #fff;
  border: 1px solid rgba(255,255,255,.34);
  background: rgba(255,255,255,.07);
  cursor: pointer;
  transition: color .3s, background .3s, transform .3s;
}
.menu-login-trigger { margin-bottom: 10px; }
.menu-ojs-link { text-decoration: none; }
.menu-login-trigger:hover,
.menu-ojs-link:hover { color: var(--teal); background: #fff; transform: translateX(8px); }
.menu-ojs-link span { opacity: .7; font: 600 8px "Manrope"; letter-spacing: 2px; }
.menu-ojs-link strong { font: 600 22px "Noto Sans KR"; letter-spacing: -1px; }
.menu-ojs-link span, .menu-ojs-link strong { grid-column: 1; }
.menu-ojs-link i { grid-column: 2; grid-row: 1 / span 2; justify-self: end; font-style: normal; font-size: 22px; }
.menu-login-trigger-unused:hover { color: var(--teal); background: #fff; transform: translateX(8px); }
.menu-login-trigger span { opacity: .7; font: 600 8px "Manrope"; letter-spacing: 2px; }
.menu-login-trigger strong { font: 600 22px "Noto Sans KR"; letter-spacing: -1px; }
.menu-login-trigger i { grid-column: 2; grid-row: 1 / 3; font-size: 25px; font-style: normal; }
.menu-panel nav {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 45px;
}
.menu-panel nav a {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
  font: 600 clamp(20px,2.2vw,31px) "Noto Sans KR";
  transition: color .25s, padding .25s;
}
.menu-panel nav a:hover { padding-left: 12px; color: #a9d6b8; }
.menu-panel nav span { margin-right: 17px; color: #8fb1ae; font: 600 8px "Manrope"; letter-spacing: 1px; }

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: calc(100% - 48px);
  height: 540px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(16,46,53,.12);
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg,var(--line) 1px, transparent 1px);
  background-size: 9vw 9vw;
  mask-image: linear-gradient(90deg,#000,transparent 78%);
}
.slides { position: absolute; z-index: 4; inset: 0; }
.slide {
  position: absolute;
  left: clamp(30px,5vw,82px);
  top: 50%;
  width: min(650px,56vw);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-45%);
  transition: opacity .6s, transform .75s var(--ease), visibility .6s;
}
.slide.active { opacity: 1; visibility: visible; transform: translateY(-50%); }
.eyebrow { margin-bottom: 20px; font-size: 10px; font-weight: 700; letter-spacing: 2.7px; }
.eyebrow span { margin-right: 9px; padding: 7px 9px; color: #fff; background: var(--teal); }
.slide h1 {
  max-width: 620px;
  margin: 0 0 22px;
  font: 700 clamp(38px,4.2vw,64px)/1.12 "Noto Sans KR";
  letter-spacing: -4px;
}
.slide h1 em { color: var(--teal); font-style: normal; }
.slide p { max-width: 530px; margin: 0 0 25px; color: #4e6165; font: 400 13px/1.75 "Noto Sans KR"; }
.slide p b { display: block; margin-top: 12px; font: 700 8px "Manrope"; letter-spacing: 1.4px; }
.cta { display: inline-flex; align-items: center; gap: 38px; padding: 0 3px 11px; border-bottom: 1px solid var(--ink); font: 700 12px "Noto Sans KR"; }
.cta span { font-size: 19px; }

.city-back {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55%;
  height: 45%;
  opacity: .10;
  background: linear-gradient(90deg,transparent 0 8%,var(--teal) 8% 15%,transparent 15% 18%,var(--teal) 18% 24%,transparent 24% 29%,var(--teal) 29% 42%,transparent 42% 47%,var(--teal) 47% 55%,transparent 55% 61%,var(--teal) 61% 69%,transparent 69% 74%,var(--teal) 74% 100%);
  clip-path: polygon(0 48%,8% 48%,8% 20%,15% 20%,15% 45%,18% 45%,18% 30%,24% 30%,24% 60%,29% 60%,29% 5%,42% 5%,42% 48%,47% 48%,47% 26%,55% 26%,55% 55%,61% 55%,61% 12%,69% 12%,69% 37%,74% 37%,74% 0,100% 0,100% 100%,0 100%);
}
.tower {
  position: absolute;
  z-index: 2;
  right: 11%;
  bottom: -37%;
  width: 18vw;
  height: 120%;
  filter: drop-shadow(-25px 25px 25px rgba(9,55,54,.18));
  transform: skewY(-2deg);
  transition: opacity .7s, transform .9s var(--ease);
}
.tower-face { position: absolute; bottom: 0; height: 95%; background: repeating-linear-gradient(0deg,rgba(255,255,255,.18) 0 1px,transparent 1px 18px),linear-gradient(110deg,#3c9792,#0a4d4a 55%,#073d3b); clip-path: polygon(38% 0,100% 12%,85% 100%,0 100%); }
.tower-face.a { inset: 5% 0 0; }
.tower-face.b { right: -30%; width: 44%; height: 87%; background: repeating-linear-gradient(0deg,rgba(255,255,255,.14) 0 1px,transparent 1px 18px),#082f35; clip-path: polygon(0 0,100% 14%,100% 100%,0 100%); }
.spire { position: absolute; top: -5%; left: 40%; width: 4px; height: 15%; background: #0a4d4a; }
.interview-portrait {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  width: 69%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  background-image: linear-gradient(90deg,#fff 0%,rgba(255,255,255,.95) 13%,rgba(255,255,255,.2) 47%,transparent 69%),url("generated_images/exec-18665b1a-be5d-4d49-8b77-d365a8240982.png");
  background-position: center,right center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.04);
  transition: opacity .75s, transform 1.1s var(--ease);
}
.hero.is-interview .interview-portrait { opacity: 1; transform: scale(1); }
.hero.is-interview .tower { opacity: 0; transform: translateX(8vw) skewY(-2deg); }
.hero.is-interview .city-back { opacity: .03; }
.hero.is-interview .slide p { max-width: 460px; }
.hero-controls {
  position: absolute;
  z-index: 8;
  right: clamp(24px,4vw,64px);
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 17px;
}
.hero-controls button { width: 44px; height: 44px; padding: 0; display: grid; place-items: center; border: 0; background: transparent; font-size: 21px; cursor: pointer; }
.count { display: flex; align-items: center; gap: 6px; font-size: 11px; }
.count strong { font-size: 16px; }
.count span { opacity: .48; }
.progress { width: 112px; height: 1px; background: var(--line); }
.progress i { display: block; width: 50%; height: 2px; background: var(--teal); transition: transform .5s; }
.scroll-cue { display: none; }

/* Rainbow card stack */
.quick-links {
  position: relative;
  padding: 0 0 8px;
  overflow: visible;
  background: #fff;
}
.section-intro { display: none; }
.quick-links::before {
  content: "";
  position: absolute;
  top: 30px;
  bottom: 50px;
  left: calc(50% - 520px);
  width: 1px;
  background: linear-gradient(transparent,rgba(13,87,84,.27) 8%,rgba(13,87,84,.27) 92%,transparent);
}
.link-stack {
  --rest-inset: clamp(30px, 3.6vw, 50px);
  position: relative;
  width: min(980px,calc(100% - 96px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  perspective: 1500px;
  perspective-origin: 50% 40%;
}
.link-stack::before {
  content: "";
  position: absolute;
  top: -12px;
  bottom: -12px;
  left: -29px;
  width: 1px;
  background: linear-gradient(transparent,rgba(13,87,84,.35) 6%,rgba(13,87,84,.35) 94%,transparent);
}
.link-card {
  --motion-y: 0px;
  --card-scale: 1;
  --pointer-x: 0px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  isolation: isolate;
  width: calc(100% - var(--rest-inset));
  height: 142px;
  min-height: 142px;
  padding: 0 38px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 68px minmax(0,1fr) 56px;
  align-items: center;
  color: #152b31;
  border: 1px solid rgba(16,34,42,.12);
  box-shadow: 0 10px 18px rgba(16,34,42,.09);
  align-self: flex-end;
  transform-origin: right center;
  transform-style: preserve-3d;
  transform: translate3d(var(--pointer-x),var(--motion-y),0) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) scale(var(--card-scale));
  transition: width .68s var(--ease),height .64s var(--ease),transform .7s var(--ease),filter .45s,box-shadow .5s;
  will-change: width,transform,height;
}
.link-card::after {
  content: none;
}
.link-card::after-disabled {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 9% 18%,rgba(255,255,255,.48),transparent 32%),
    linear-gradient(108deg,rgba(255,255,255,.32),transparent 31%,rgba(255,255,255,.09) 68%,transparent),
    repeating-linear-gradient(90deg,transparent 0 53px,rgba(255,255,255,.08) 54px 55px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.8),
    inset 0 -1px 0 rgba(16,46,53,.08);
  mix-blend-mode: soft-light;
}
/* 시안 실측 팔레트 — 카드 아트 에셋과 같은 이미지에서 샘플링 (이어지는 경계 무결성) */
.peach { background: #FDC6BA; }
.yellow { background: #FDE3BE; }
.mint { background: #FEFED2; }
.sky { background: #B4FBDF; }
.blue { background: #CEFCFC; }
.lilac { background: #D0D9FC; }
.pink { background: #F2CEDE; }
.link-card .num {
  position: relative;
  z-index: 3;
  align-self: center;
  font: 500 30px/1 "Manrope";
  letter-spacing: -2px;
  transform: translateZ(18px);
}
.link-card .num::after { content: ""; display: block; width: 33px; height: 1px; margin-top: 10px; background: currentColor; opacity: .55; }
.card-copy {
  position: relative;
  z-index: 3;
  min-width: 0;
  max-width: 590px;
  align-self: center;
  transform: translateZ(18px);
  transition: transform .55s var(--ease);
}
.card-copy strong { display: block; font: 600 27px/1.15 "Noto Sans KR"; letter-spacing: -2px; }
.card-copy strong small { display: block; margin-top: 8px; opacity: .58; font: 700 8px "Manrope"; letter-spacing: 2px; }
.card-copy > p { margin: 8px 0 0; overflow: hidden; color: rgba(16,34,42,.66); font: 500 11px/1.55 "Noto Sans KR"; white-space: nowrap; text-overflow: ellipsis; }
.card-detail {
  display: grid;
  grid-template-columns: auto minmax(0,1fr) auto;
  align-items: center;
  gap: 22px;
  max-height: 0;
  margin-top: 0;
  padding-top: 0;
  overflow: hidden;
  opacity: 0;
  border-top: 1px solid transparent;
  transform: translateY(14px);
  transition: max-height .56s var(--ease),opacity .34s,transform .56s var(--ease),margin-top .56s,padding-top .56s,border-color .3s;
}
.card-detail span { color: rgba(16,34,42,.77); font: 500 12px/1.7 "Noto Sans KR"; }
.card-detail b { padding-bottom: 2px; color: var(--teal); font: 700 10px "Noto Sans KR"; white-space: nowrap; }
.detail-thumb {
  width: 102px;
  height: 60px;
  object-fit: cover;
  object-position: right center;
  border: 1px solid rgba(255,255,255,.65);
  box-shadow: 0 6px 14px rgba(16,34,42,.2);
}
.card-arrow {
  position: relative;
  z-index: 4;
  justify-self: end;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(16,34,42,.35);
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  font-size: 24px;
  font-style: normal;
  transform: translateZ(20px);
  transition: color .4s,background .4s,border-color .4s,transform .55s var(--ease),box-shadow .4s;
}
/* 시안 아트 에셋(방식①) — 카드별 크롭 래스터, 좌측 소프트 마스크 페이드 */
.link-card .icon {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  width: 58%;
  height: 100%;
  opacity: .96;
  pointer-events: none;
  background: transparent no-repeat right center;
  background-size: auto 100%;
  mask-image: linear-gradient(90deg,transparent 0%,rgba(0,0,0,.25) 16%,#000 45%,#000 100%);
  -webkit-mask-image: linear-gradient(90deg,transparent 0%,rgba(0,0,0,.25) 16%,#000 45%,#000 100%);
  transform: translateZ(4px);
  transition: opacity .48s,transform .7s var(--ease);
}
.link-card:nth-child(1) .icon { background-image: url("assets/card-art-01.png"); }
.link-card:nth-child(2) .icon { background-image: url("assets/card-art-02.png"); }
.link-card:nth-child(3) .icon { background-image: url("assets/card-art-03.png"); }
.link-card:nth-child(4) .icon { background-image: url("assets/card-art-04.png"); }
.link-card:nth-child(5) .icon { background-image: url("assets/card-art-05.png"); }
.link-card:nth-child(6) .icon { background-image: url("assets/card-art-06.png"); }
.link-card:nth-child(7) .icon { background-image: url("assets/card-art-07.png"); }
.link-card.is-current:not(.is-hovered) { box-shadow: 0 16px 30px rgba(16,34,42,.13); }
.link-card.is-current::before { content: ""; position: absolute; z-index: 5; left: 0; top: 18%; bottom: 18%; width: 3px; background: var(--teal); box-shadow: 0 0 0 5px rgba(13,87,84,.06); }
.link-card:hover,
.link-card.is-hovered,
.link-card.is-tap-expanded,
.link-card:focus-visible {
  --motion-y: -8px;
  --card-scale: 1.018;
  z-index: 12;
  width: 100%;
  height: 188px;
  outline: none;
  filter: saturate(1.15) brightness(1.025);
  box-shadow: 0 38px 66px rgba(15,49,50,.24),0 10px 18px rgba(15,49,50,.12);
}
.link-card:hover .card-copy,
.link-card.is-hovered .card-copy,
.link-card.is-tap-expanded .card-copy,
.link-card:focus-visible .card-copy { transform: translate3d(-6px,0,28px); }
.link-card:hover .card-detail,
.link-card.is-hovered .card-detail,
.link-card.is-tap-expanded .card-detail,
.link-card:focus-visible .card-detail {
  max-height: 76px;
  margin-top: 13px;
  padding-top: 11px;
  opacity: 1;
  border-color: rgba(16,34,42,.2);
  transform: translateY(0);
}
.link-card:hover .card-arrow,
.link-card.is-hovered .card-arrow,
.link-card.is-tap-expanded .card-arrow,
.link-card:focus-visible .card-arrow {
  color: #fff;
  border-color: var(--teal);
  background: var(--teal);
  box-shadow: 0 10px 22px rgba(13,87,84,.25);
  transform: translateZ(34px) rotate(-45deg) scale(1.1);
}
.link-card:hover .icon,
.link-card.is-hovered .icon,
.link-card.is-tap-expanded .icon,
.link-card:focus-visible .icon {
  opacity: 1;
  transform: translate3d(-6px,0,22px) scale(1.04);
}
.link-card.is-clicked { animation: card-pulse .7s var(--ease); }
.link-card.is-clicked::after { content: ""; position: absolute; z-index: 14; inset: -1px; border: 2px solid rgba(13,87,84,.75); border-radius: inherit; background: transparent; mix-blend-mode: normal; animation: card-ring .72s ease-out forwards; pointer-events: none; }
@keyframes card-pulse { 40% { filter: saturate(1.3) brightness(1.18); } }
@keyframes card-ring { from { opacity: 1; transform: scale(.98); } to { opacity: 0; transform: scale(1.13); } }

.page-transition { position: fixed; z-index: 100; inset: 0; display: grid; place-items: center; color: #fff; background: var(--ink); clip-path: circle(0 at var(--x,50%) var(--y,50%)); pointer-events: none; }
.page-transition.active { animation: page-open .9s cubic-bezier(.75,0,.25,1); }
.page-transition span { font-size: 10px; letter-spacing: 5px; }
@keyframes page-open { 0% { clip-path: circle(0 at var(--x) var(--y)); } 55% { clip-path: circle(150% at var(--x) var(--y)); } 100% { opacity: 0; clip-path: circle(150% at var(--x) var(--y)); } }

/* Advertising */
.ad-section { padding: 0; display: grid; grid-template-columns: 1.55fr 1fr; gap: 0; background: #fff; }
.ad-card { position: relative; min-height: 330px; padding: 36px; overflow: hidden; display: flex; align-items: flex-end; justify-content: space-between; border: 1px solid rgba(16,34,42,.12); box-shadow: 0 10px 22px rgba(16,34,42,.08); }
.ad-card .label { position: absolute; top: 30px; left: 34px; padding: 7px 12px; border: 1px solid currentColor; font-size: 8px; letter-spacing: 2px; }
.ad-card small { font-size: 9px; font-weight: 700; letter-spacing: 2px; }
.ad-card h2 { max-width: 580px; margin: 11px 0; font: 700 clamp(32px,3.5vw,55px)/1.1 "Noto Sans KR"; letter-spacing: -3px; }
.ad-card p { font-size: 11px; letter-spacing: 1px; }
.main-ad { color: #18292d; background: #e1c79d; }
.main-ad::before { content: ""; position: absolute; top: -30%; right: 12%; width: 220px; height: 130%; border: 1px solid rgba(16,34,42,.25); box-shadow: 40px 0 rgba(255,255,255,.12),80px 0 rgba(255,255,255,.08); transform: rotate(25deg); }
.journal-ad { color: #f5f0e7; background: var(--teal); }
.round-arrow { position: relative; z-index: 2; width: 54px; height: 54px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: 21px; }
.ad-card > div { position: relative; z-index: 2; }

@media (max-width: 850px) {
  .site-header { height: 92px; padding: 0 15px; }
  .nav-skyline { width: 210px; opacity: .55; }
  .tower-01 { --w: 16px; --h: 35px; left: 3px; }
  .tower-02 { --w: 28px; --h: 65px; left: 21px; }
  .tower-03 { --w: 13px; --h: 44px; left: 43px; }
  .tower-04 { --w: 32px; --h: 53px; left: 58px; }
  .tower-05,.tower-06 { display: none; }
  .brand { gap: 9px; }
  .brand-mark { width: 37px; height: 50px; }
  .brand-mark i { width: 10px; }
  .brand-mark i:nth-child(1) { height: 30px; }
  .brand-mark i:nth-child(2) { height: 45px; }
  .brand-mark i:nth-child(3) { height: 36px; }
  .brand strong { font-size: 22px; }
  .brand b { display: none; }
  .brand small { font-size: 8px; }
  .search { display: none; }
  .menu { width: 52px; height: 52px; }
  .menu-panel { padding: 88px 28px 35px; }
  .menu-panel nav { grid-template-columns: 1fr; }
  .menu-login-trigger { min-height: 80px; margin-bottom: 20px; }
  .menu-login-trigger strong { font-size: 19px; }
  .search-panel { padding: 110px 25px; }
  .search-form label { letter-spacing: -2px; }
  .search-form input { min-width: 0; font-size: 15px; }
  .hero { width: calc(100% - 24px); height: 440px; }
  .slide { left: 22px; width: calc(100% - 44px); }
  .slide h1 { max-width: 82%; font-size: 34px; letter-spacing: -2.5px; }
  .slide p { max-width: 76%; font-size: 11px; }
  .tower { right: 3%; bottom: -31%; width: 34vw; height: 80%; opacity: .68; }
  .interview-portrait { width: 100%; background-image: linear-gradient(90deg,rgba(255,255,255,.96),rgba(255,255,255,.78) 50%,rgba(255,255,255,.16)),url("generated_images/exec-18665b1a-be5d-4d49-8b77-d365a8240982.png"); }
  .hero-controls { left: 18px; right: auto; bottom: 16px; }
  .quick-links { padding: 54px 16px 74px; }
  .quick-links::before,.link-stack::before { display: none; }
  .link-stack { width: 100%; gap: 14px; }
  .link-card { width: 100%; height: 122px; min-height: 122px; padding: 0 18px; grid-template-columns: 47px minmax(0,1fr) 38px; }
  .link-card .num { font-size: 24px; }
  .card-copy { max-width: none; }
  .card-copy strong { font-size: 21px; }
  .card-copy > p { font-size: 10px; }
  .card-arrow { width: 38px; height: 38px; font-size: 20px; }
  .link-card .icon { right: 2%; width: 61%; opacity: .30; }
  .link-card:hover { --motion-y: 0; --card-scale: 1; height: 122px; }
  .link-card.is-tap-expanded,.link-card:focus-visible { --motion-y: -5px; --card-scale: 1.015; height: 198px; }
  .link-card.is-tap-expanded .card-detail,.link-card:focus-visible .card-detail { max-height: 92px; }
  .card-detail { grid-template-columns: 1fr; gap: 7px; }
  .card-detail span { font-size: 11px; }
  .card-detail b { justify-self: start; }
  .detail-thumb { display: none; }
  .ad-section { grid-template-columns: 1fr; padding: 26px 16px 70px; }
  .ad-card { min-height: 290px; padding: 27px; }
  .ad-card h2 { letter-spacing: -2px; }
}

/* Footer */
.site-footer { padding: 58px clamp(24px,5vw,76px) 36px; color: #dfe8e6; background: var(--ink); }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 34px; flex-wrap: wrap; }
.footer-brand strong, .footer-brand small { color: #eef4f3; }
.footer-info p { margin: 0; font: 400 12px/1.9 "Noto Sans KR"; color: rgba(223,232,230,.72); }
.footer-sns { display: flex; gap: 10px; }
.footer-sns a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; font: 700 10px "Manrope"; letter-spacing: .5px; transition: background .3s, color .3s; }
.footer-sns a:hover { color: var(--ink); background: #fff; }
.footer-base { margin-top: 30px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.13); display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font: 500 11px "Noto Sans KR"; color: rgba(223,232,230,.55); }
.footer-base a:hover { color: #fff; }
.footer-base div { display: flex; gap: 10px; }
@media (max-width: 850px) {
  .site-footer { padding: 40px 20px 28px; }
  .footer-grid { align-items: flex-start; flex-direction: column; gap: 22px; }
  .footer-base { flex-direction: column; }
  .footer-sns a { width: 44px; height: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}


/* Desktop: 세로형 카드 스택 → 호버 시 가로형으로 전개 */
@media (min-width: 851px) {
  .quick-links::before, .link-stack::before { display: none; }
  .link-card.is-current::before { display: none; }
  .quick-links::before, .link-stack::before { display: none; }
  .link-card.is-current::before { display: none; }
  .link-stack {
    width: 100%;
    max-width: none;
    flex-direction: row;
    align-items: stretch;
    gap: 12px;
    perspective-origin: 50% 60%;
  }
  .link-card {
    flex: 1 1 0;
    width: auto;
    height: 378px;
    min-height: 378px;
    padding: 22px 14px;
    align-self: auto;
    grid-template-columns: minmax(0,1fr);
    grid-template-rows: auto 1fr auto;
    justify-items: center;
    align-items: start;
    transform-origin: center bottom;
    transition: flex-grow .68s var(--ease), padding .6s var(--ease), transform .7s var(--ease), filter .45s, box-shadow .5s;
  }
  .link-card .num { justify-self: center; font-size: 22px; }
  .link-card .num::after { margin: 10px auto 0; }
  .card-copy { max-width: none; min-width: 0; width: 100%; align-self: center; justify-self: stretch; }
  .link-card:not(:hover):not(.is-hovered):not(:focus-visible) .card-detail { display: none; }
  .card-copy strong {
    writing-mode: horizontal-tb;
    text-align: center;
    word-break: keep-all;
    font-size: 20px;
    letter-spacing: -1px;
    line-height: 1.3;
  }
  .card-copy strong small, .card-copy > p { display: none; }
  .link-card .icon {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 46%;
    background-position: center bottom;
    background-size: cover;
    mask-image: linear-gradient(0deg,#000 38%,rgba(0,0,0,.2) 82%,transparent 100%);
    -webkit-mask-image: linear-gradient(0deg,#000 38%,rgba(0,0,0,.2) 82%,transparent 100%);
  }
  .card-arrow { justify-self: center; align-self: end; }

  .link-card:hover,
  .link-card.is-hovered,
  .link-card:focus-visible {
    --motion-y: -18px;
    --card-scale: 1;
    flex-grow: 9;
    height: 378px;
    padding: 0 34px;
    grid-template-columns: 68px minmax(0,1fr) 56px;
    grid-template-rows: minmax(0,1fr);
    justify-items: stretch;
    align-items: center;
  }
  .link-card:hover .num,
  .link-card.is-hovered .num,
  .link-card:focus-visible .num { justify-self: start; font-size: 30px; }
  .link-card:hover .num::after,
  .link-card.is-hovered .num::after,
  .link-card:focus-visible .num::after { margin: 10px 0 0; }
  .link-card:hover .card-copy strong,
  .link-card.is-hovered .card-copy strong,
  .link-card:focus-visible .card-copy strong {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    text-align: left;
    font-size: 40px;
    letter-spacing: -2px;
    line-height: 1.12;
  }
  .link-card:hover .card-copy strong small,
  .link-card.is-hovered .card-copy strong small,
  .link-card:focus-visible .card-copy strong small { display: block; }
  .link-card:hover .card-copy > p,
  .link-card.is-hovered .card-copy > p,
  .link-card:focus-visible .card-copy > p { display: block; }
  .link-card:hover .card-arrow,
  .link-card.is-hovered .card-arrow,
  .link-card:focus-visible .card-arrow { justify-self: end; align-self: center; }
  .link-card:hover .icon,
  .link-card.is-hovered .icon,
  .link-card:focus-visible .icon {
    width: 58%;
    height: 100%;
    background-position: right center;
    background-size: auto 100%;
    mask-image: linear-gradient(90deg,transparent 0%,rgba(0,0,0,.25) 16%,#000 45%,#000 100%);
    -webkit-mask-image: linear-gradient(90deg,transparent 0%,rgba(0,0,0,.25) 16%,#000 45%,#000 100%);
    transform: translate3d(-6px,0,22px) scale(1.04);
  }
}


/* Hero — 좌우 풀블리드 2분할 */
.hero.hero-split {
  width: 100%;
  height: 560px;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-left: 0;
  border-right: 0;
}
.hero-pane {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 clamp(26px,3.4vw,60px);
}
.hero-pane + .hero-pane { border-left: 1px solid rgba(16,46,53,.12); }
.pane-copy { position: relative; z-index: 4; width: 100%; max-width: 620px; }
.hero-pane h1 {
  max-width: 100%;
  margin: 0 0 20px;
  font: 700 clamp(30px,2.7vw,46px)/1.14 "Noto Sans KR";
  letter-spacing: -3px;
}
.hero-pane h1 em { color: var(--teal); font-style: normal; }
.hero-pane p { max-width: 480px; margin: 0 0 24px; color: #4e6165; font: 400 13px/1.75 "Noto Sans KR"; }
.hero-pane p b { display: block; margin-top: 12px; font: 700 8px "Manrope"; letter-spacing: 1.4px; }
.hero-split .tower { right: -14%; bottom: -30%; width: 38%; height: 104%; opacity: .55; }
.hero-split .city-back { width: 62%; height: 34%; opacity: .07; }
.pane-main .pane-copy { max-width: 100%; }
.hero-split .hero-pane h1 { word-break: keep-all; }
.hero-split .hero-pane .eyebrow, .hero-split .hero-pane p b { white-space: nowrap; }
.pane-journal { background: #f6f8f7; }
.hero-pane h1 { font-size: clamp(24px,1.9vw,34px); }
.hero-split .hero-pane { align-items: flex-end; padding-bottom: clamp(30px,3.2vw,48px); }
.hero-split .hero-pane h1 { margin-bottom: 14px; }
.hero-split .hero-pane p { margin: 0 0 18px; }
.hero-split .hero-pane p b { margin-top: 0; font-size: 9px; letter-spacing: 1.6px; color: rgba(16,46,53,.55); }
.hero-split .interview-portrait {
  opacity: 1;
  width: 100%;
  transform: none;
  background-image:
    linear-gradient(180deg,transparent 30%,rgba(255,255,255,.55) 62%,rgba(255,255,255,.95) 86%,#fff 100%),
    url("generated_images/exec-18665b1a-be5d-4d49-8b77-d365a8240982.png");
  background-position: center,center top;
  background-size: cover,cover;
}
@media (max-width: 850px) {
  .hero.hero-split { width: 100%; height: auto; grid-template-columns: 1fr; }
  .pane-journal { min-height: 320px; }
  .hero-pane { min-height: 380px; padding: 34px 20px; }
  .hero-pane + .hero-pane { border-left: 0; border-top: 1px solid rgba(16,46,53,.12); }
  .hero-pane h1 { font-size: 32px; letter-spacing: -2.5px; }
  .hero-pane p { max-width: 90%; font-size: 11px; }
}

@media (min-width: 851px) {
  .link-card .num,
  .link-card:hover .num,
  .link-card.is-hovered .num,
  .link-card:focus-visible .num { display: none; }
  .link-card { grid-template-rows: 1fr auto; }
  .link-card:hover,
  .link-card.is-hovered,
  .link-card:focus-visible { grid-template-columns: minmax(0,1fr) 56px; }
}

.card-short { display: none; }
@media (min-width: 851px) {
  .card-short {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
    font: 700 clamp(36px,3.4vw,48px)/1.1 "Noto Sans KR";
    letter-spacing: -2.4px;
    word-break: keep-all;
  }
  .card-short em {
    font: 700 12px/1 "Manrope";
    letter-spacing: 3px;
    font-style: normal;
    opacity: .5;
  }
  .card-short::before {
    content: "";
    width: 26px;
    height: 2px;
    background: currentColor;
    opacity: .35;
  }
  .link-card .num { font-size: 15px; letter-spacing: 1px; opacity: .55; }
  .link-card .num::after { display: none; }
  .card-copy { align-self: center; }
  .link-card .card-copy strong { display: none; }
  .link-card:hover .card-short,
  .link-card.is-hovered .card-short,
  .link-card:focus-visible .card-short { display: none; }
  .link-card:hover .card-copy strong,
  .link-card.is-hovered .card-copy strong,
  .link-card:focus-visible .card-copy strong { display: block; }
}

@media (min-width: 851px) { .link-stack { gap: 0; } .link-card { border-left: 0; border-right: 0; } .link-card:first-child { border-left: 1px solid rgba(16,34,42,.12); } .link-card:last-child { border-right: 1px solid rgba(16,34,42,.12); } }

@media (min-width: 851px) {
  .link-card:hover .icon,
  .link-card.is-hovered .icon,
  .link-card.is-tap-expanded .icon,
  .link-card:focus-visible .icon { display: none; }
}

@media (min-width: 851px) {
  .header-actions { gap: 0; }
  .header-actions .menu { margin-left: 18px; }
  .lang + .search { margin-left: 0; }
}

@media (min-width: 851px) {
  .site-header { padding-right: 0; }
  .header-actions { align-self: stretch; height: 100%; gap: 0; }
  .header-actions .lang-search {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(16,46,53,.14);
  }
  .header-actions .lang,
  .header-actions .search {
    width: 96px;
    height: 50%;
    border: 0;
    justify-content: center;
  }
  .header-actions .lang { padding: 0; border-bottom: 1px solid rgba(16,46,53,.14); }
  .header-actions .menu {
    width: 132px; height: 100%; margin-left: 0; padding: 0; border: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  }
  .header-actions .menu span { width: 30px; height: 1.5px; margin: 0; }
  .header-actions .menu span + span { margin-top: -8px; }
  .header-actions .menu small { position: static; margin: 0; font: 700 10px "Manrope"; letter-spacing: 2px; }
}

@media (min-width: 851px) {
  .link-stack:hover .link-card:not(:hover):not(.is-hovered) { --motion-y: 42px; opacity: .82; }
  .link-card { transition: flex-grow .55s cubic-bezier(.2,.8,.2,1), transform .55s cubic-bezier(.2,.8,.2,1), opacity .4s, box-shadow .45s; }
  .link-card:hover, .link-card.is-hovered { --motion-y: -6px; transform-origin: left center; }
}

.detail-thumb { display: none; }
.card-detail { grid-template-columns: minmax(0,1fr) auto; }

@media (min-width: 851px) {
  .link-card:hover .card-copy strong small,
  .link-card.is-hovered .card-copy strong small,
  .link-card:focus-visible .card-copy strong small { margin-top: 10px; font-size: 12px; letter-spacing: 2.4px; }
  .link-card:hover .card-copy > p,
  .link-card.is-hovered .card-copy > p,
  .link-card:focus-visible .card-copy > p { margin-top: 12px; font-size: 16px; }
  .link-card:hover .card-detail span,
  .link-card.is-hovered .card-detail span,
  .link-card:focus-visible .card-detail span { font-size: 15px; line-height: 1.7; }
  .link-card:hover .card-detail b,
  .link-card.is-hovered .card-detail b,
  .link-card:focus-visible .card-detail b { font-size: 13px; }
  .link-card:hover .card-detail,
  .link-card.is-hovered .card-detail,
  .link-card:focus-visible .card-detail { max-height: 110px; }
}

@media (min-width: 851px) {
  .link-stack:hover .link-card:not(:hover) { padding: 22px 6px; }
  .link-stack:hover .link-card:not(:hover) .card-short {
    gap: 10px;
    font-size: clamp(20px,1.7vw,26px);
    letter-spacing: -1.4px;
  }
  .link-stack:hover .link-card:not(:hover) .card-short em { font-size: 9px; letter-spacing: 1px; }
  .link-stack:hover .link-card:not(:hover) .card-short::before { width: 18px; }
}

.main-ad h2 { max-width: none; white-space: nowrap; font-size: clamp(24px,2.6vw,44px); }
