:root {
  --navy: #071b35;
  --navy-2: #0b2747;
  --ink: #10213d;
  --muted: #5b6d86;
  --sky: #0a6496;
  --gold: #f5c542;
  --gold-ink: #071b35;
  --paper: #f7f9fc;
  --line: #d7e2ee;
  --white: #fff;
  --radius: 1.75rem;
  --shadow: 0 18px 50px rgba(7, 27, 53, 0.14);
  --font: "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
  --display: "Outfit", "Noto Sans KR", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  line-height: 1.65;
}
button, a { transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease; }
button { font: inherit; cursor: pointer; }
img { max-width: 100%; }
.wrap { width: min(1200px, calc(100% - 40px)); margin: 0 auto; }
.eyebrow {
  color: var(--sky);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .2em;
  margin: 0;
}
.section-title {
  margin: 12px 0 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -.035em;
  font-family: var(--display);
  font-weight: 800;
}

.top {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(7, 27, 53, .95);
  color: #fff;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.top-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}
.mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--gold-ink);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: .72rem;
}
.brand strong, .brand small { display: block; }
.brand strong { font-size: .95rem; letter-spacing: .04em; }
.brand small { font-size: .68rem; letter-spacing: .18em; color: #bfe3f7; }
.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: .92rem;
  font-weight: 700;
}
.nav button {
  background: none;
  border: 0;
  color: #fff;
  padding: 0;
}
.nav a.ghost { color: #d7ecf8; text-decoration: none; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  border: 0;
}
.btn-gold { background: var(--gold); color: var(--gold-ink); }
.btn-gold:hover { background: #ffd45c; }
.btn-ghost {
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.08);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255,255,255,.16); }
.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 1.3rem;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 8px 0 18px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-weight: 700;
}
.mobile-nav.open { display: flex; }
.mobile-nav button, .mobile-nav a {
  background: none;
  border: 0;
  color: #fff;
  text-align: left;
  text-decoration: none;
  padding: 0;
}
.mobile-nav a.gold { color: var(--gold); }

.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
  padding: 120px 0 80px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .42;
  background:
    radial-gradient(circle at 78% 30%, #1677b9 0, transparent 32%),
    radial-gradient(circle at 10% 90%, #087b73 0, transparent 28%);
}
.hero-grid {
  position: relative;
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: 1.08fr .92fr; }
}
.badge {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(147, 197, 253, .28);
  background: rgba(147, 197, 253, .12);
  color: #dbeafe;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
}
.hero h1 {
  margin: 0;
  max-width: 18ch;
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.12;
  letter-spacing: -.04em;
}
.hero h1 span { color: var(--gold); }
.hero p.lead {
  max-width: 40rem;
  margin: 22px 0 0;
  color: #c9d6e6;
  font-size: 1.12rem;
  line-height: 1.8;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.visual {
  position: relative;
  min-height: 31rem;
  border-radius: 2.4rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: 0 28px 70px rgba(0,0,0,.38);
}
.visual::before, .visual::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 2rem;
  background-size: cover;
  background-position: center;
  animation: campusFade 12s infinite ease-in-out;
}
.visual::before {
  background-image: linear-gradient(180deg, transparent 55%, rgba(3,20,41,.55)), url("assets/media/ph/18.jpg");
}
.visual::after {
  background-image: linear-gradient(180deg, transparent 55%, rgba(3,20,41,.55)), url("assets/media/ko/08.jpg");
  animation-delay: 6s;
  opacity: 0;
}
.visual-card {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 29rem;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, transparent 30%, rgba(7,27,53,.55));
}
.visual-card small {
  letter-spacing: .22em;
  font-weight: 800;
  color: rgba(255,255,255,.72);
}
.visual-card h2 {
  margin: 10px 0 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-family: var(--display);
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.2);
  text-align: center;
}
.stats b { display: block; font-size: 1.5rem; }
.stats span { color: rgba(255,255,255,.7); font-size: .85rem; }
@keyframes campusFade {
  0%, 40% { opacity: 1; transform: scale(1); }
  50%, 90% { opacity: 0; transform: scale(1.025); }
  100% { opacity: 1; transform: scale(1); }
}

.about, .programs { padding: 88px 0; }
.about-head, .programs-head { display: grid; gap: 22px; }
@media (min-width: 900px) {
  .about-head { grid-template-columns: .8fr 1.2fr; align-items: end; }
}
.about-head p.copy { margin: 0; color: var(--muted); font-size: 1.08rem; line-height: 1.8; }
.features {
  margin-top: 48px;
  display: grid;
  gap: 18px;
}
@media (min-width: 720px) { .features { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .features { grid-template-columns: repeat(4, 1fr); } }
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 8px 24px rgba(16,33,61,.04);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #e8f4fb;
  color: var(--sky);
  font-size: 1.4rem;
}
.feature em { display: block; margin-top: 24px; font-style: normal; font-size: .78rem; font-weight: 800; color: #d97706; }
.feature h3 { margin: 6px 0 0; font-size: 1.2rem; }
.feature p { margin: 10px 0 0; color: var(--muted); font-size: .95rem; }

.system {
  background: var(--navy-2);
  color: #fff;
  padding: 88px 0;
}
.system .eyebrow { color: var(--gold); }
.system .lead { max-width: 42rem; color: #c9d6e6; font-size: 1.08rem; }
.steps {
  margin-top: 48px;
  display: grid;
  gap: 18px;
}
@media (min-width: 900px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  border-radius: var(--radius);
  padding: 28px;
}
.step-top { display: flex; justify-content: space-between; color: var(--gold); font-weight: 800; font-size: .85rem; }
.step h3 { margin: 48px 0 0; font-size: 1.5rem; }
.step p { color: #c9d6e6; }

.programs-head { text-align: center; }
.programs-head p { margin: 16px auto 0; max-width: 36rem; color: var(--muted); }
.toolbar {
  position: sticky;
  top: 80px;
  z-index: 20;
  margin: 40px auto 0;
  max-width: 760px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow);
}
.tabs { display: flex; flex-wrap: wrap; gap: 6px; }
.tabs button {
  border: 0;
  background: #eef3f8;
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 800;
}
.tabs button.on { background: var(--navy); color: #fff; }
.search {
  flex: 1;
  min-width: 180px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
}
.count { margin: 22px 0 0; font-weight: 800; color: var(--muted); font-size: .92rem; }
.grid {
  margin-top: 18px;
  display: grid;
  gap: 18px;
}
@media (min-width: 720px) { .grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .grid { grid-template-columns: 1fr 1fr 1fr; } }
.card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(16,33,61,.04);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-art {
  height: 148px;
  display: grid;
  place-items: center;
  position: relative;
  color: #fff;
  font-size: 3.4rem;
}
.card-art small {
  position: absolute;
  left: 18px;
  top: 14px;
  font-size: .7rem;
  letter-spacing: .16em;
  font-weight: 800;
  opacity: .7;
}
.g0 { background: linear-gradient(135deg, #075985, #22d3ee); }
.g1 { background: linear-gradient(135deg, #065f46, #2dd4bf); }
.g2 { background: linear-gradient(135deg, #4c1d95, #6366f1); }
.g3 { background: linear-gradient(135deg, #b45309, #fb923c); }
.card-body { padding: 22px; }
.row { display: flex; justify-content: space-between; align-items: center; }
.pill {
  border-radius: 999px;
  padding: 4px 10px;
  font-size: .78rem;
  font-weight: 800;
}
.lv-학사 { background: #e0f2fe; color: #0369a1; }
.lv-석사 { background: #ecfdf5; color: #047857; }
.lv-박사 { background: #f3e8ff; color: #6d28d9; }
.lv-통합 { background: #fff7ed; color: #c2410c; }
.code { color: #94a3b8; font-size: .75rem; font-weight: 800; }
.card h3 { min-height: 3.4em; margin: 14px 0 0; font-size: 1.05rem; line-height: 1.45; }
.career { margin-top: 18px; padding-top: 14px; border-top: 1px solid #eef2f6; }
.career small { color: #94a3b8; font-weight: 800; }
.career p { margin: 6px 0 0; color: var(--muted); font-size: .92rem; }
.empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 64px 20px;
  border: 1px dashed #cbd5e1;
  border-radius: var(--radius);
  background: #fff;
}

.cta {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto 72px;
  border-radius: 2.4rem;
  overflow: hidden;
  background: linear-gradient(90deg, #0a6496, #087d77);
  color: #fff;
}
.cta-inner {
  display: grid;
  gap: 22px;
  align-items: center;
  padding: 48px 36px;
}
@media (min-width: 900px) { .cta-inner { grid-template-columns: 1fr auto; padding: 56px 64px; } }
.cta small { color: var(--gold); letter-spacing: .18em; font-weight: 800; }
.cta h2 { margin: 10px 0 0; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.cta p { margin: 12px 0 0; max-width: 38rem; color: #e0f2fe; }

.foot {
  background: #06172e;
  color: #94a3b8;
  padding: 48px 0;
}
.foot-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 28px; }
.foot strong { color: #fff; }
.foot a { color: #7dd3fc; text-decoration: none; }

.translate-widget {
  overflow: hidden;
  max-height: 44px;
  line-height: 0;
}
.translate-widget .goog-te-gadget {
  font-size: 0 !important;
  line-height: 0 !important;
  color: transparent !important;
}
.translate-widget .goog-te-combo {
  margin: 0 !important;
  max-width: 150px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  background: #fff;
  color: #10213d;
  padding: 7px 10px;
  font-size: 12px !important;
  font-weight: 700;
  line-height: 1.2 !important;
}
.translate-widget .goog-logo-link,
.translate-widget .goog-te-gadget-icon,
.translate-widget .goog-te-gadget a,
.translate-widget .goog-te-gadget img,
.translate-widget .VIpgJd-ZVi9od-l4eHX-hSRGPd,
.goog-logo-link,
a.goog-logo-link {
  display: none !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}
.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame,
body > .skiptranslate,
.VIpgJd-ZVi9od-ORHb-OEVmcd { display: none !important; height: 0 !important; }
html, html.translated-ltr, html.translated-rtl { margin-top: 0 !important; }
body { top: 0 !important; }

@media (max-width: 980px) {
  .nav { display: none; }
  .menu-btn { display: grid; place-items: center; }
  .visual, .visual-card { min-height: 24rem; }
}
@media (prefers-reduced-motion: reduce) {
  .visual::before, .visual::after { animation: none; }
  .visual::after { display: none; }
}
