/* ── 진로콘텐츠 공통 베이스 스타일 ── */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Noto Sans KR", sans-serif;
  background: #f5f7ff;
  color: #0f172a;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 65% 50% at 0% 0%, rgba(245,158,11,0.16) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 100% 0%, rgba(234,88,12,0.12) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 110%, rgba(99,102,241,0.09) 0%, transparent 55%);
}

.page-wrap { position: relative; z-index: 1; min-height: 100vh; }

.c { width: min(calc(100% - 40px), 1060px); margin: 0 auto; }

/* ── 네비 ── */
.navbar {
  position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
  z-index: 100; width: min(calc(100% - 40px), 960px);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 10px 16px 10px 12px; border-radius: 20px;
  background: rgba(255,255,255,0.78); border: 1px solid rgba(200,215,255,0.6);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 4px 24px rgba(99,120,220,0.1), inset 0 1px 0 rgba(255,255,255,0.9);
}
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg,#f59e0b,#ef4444);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1rem; color: #fff;
  box-shadow: 0 4px 14px rgba(245,158,11,0.35); flex-shrink: 0;
}
.nav-title strong { display: block; font-size: 0.9rem; font-weight: 800; color: #0f172a; letter-spacing: -0.01em; }
.nav-title small  { display: block; font-size: 0.7rem; color: #94a3b8; }
.nav-back {
  display: inline-flex; align-items: center; gap: 6px; padding: 7px 16px;
  border-radius: 999px; font-size: 0.78rem; font-weight: 700; color: #64748b;
  text-decoration: none; border: 1px solid rgba(200,215,255,0.7);
  background: rgba(240,245,255,0.6); transition: all 180ms ease;
}
.nav-back:hover { background: rgba(255,255,255,0.9); color: #b45309; border-color: rgba(245,158,11,0.3); }

/* ── 히어로 ── */
.hero { padding: 116px 0 44px; position: relative; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(245,158,11,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,158,11,0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 100% at 50% 0%, black 30%, transparent 80%);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px; padding: 5px 12px 5px 7px;
  border-radius: 999px; background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.25);
  font-size: 0.74rem; font-weight: 700; color: #b45309; letter-spacing: 0.04em; margin-bottom: 18px;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #f59e0b; box-shadow: 0 0 8px #f59e0b;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);}50%{opacity:.5;transform:scale(.8);} }
.hero h1 { margin: 0 0 14px; font-size: clamp(1.8rem,4.5vw,2.9rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.04em; color: #0f172a; }
.hero h1 .grad { background: linear-gradient(135deg,#f59e0b,#ef4444,#8b5cf6); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.hero-sub { font-size: 0.95rem; color: #64748b; line-height: 1.8; margin: 0; max-width: 540px; }

/* ── 구분선 ── */
.divider { height: 1px; background: linear-gradient(90deg,transparent,rgba(245,158,11,0.2),transparent); margin: 36px 0 44px; }

/* ── 섹션 헤더 ── */
.sec-label { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: #b45309; margin-bottom: 6px; }
.sec-title { font-size: 1.1rem; font-weight: 800; color: #0f172a; margin: 0 0 4px; letter-spacing: -0.02em; }
.sec-sub   { font-size: 0.82rem; color: #94a3b8; margin: 0 0 28px; }

/* ── 공통 칩 ── */
.chip-amber  { background:rgba(245,158,11,0.1); color:#b45309; border:1px solid rgba(245,158,11,0.25); }
.chip-purple { background:rgba(139,92,246,0.1); color:#6d28d9; border:1px solid rgba(139,92,246,0.22); }
.chip-blue   { background:rgba(37,99,235,0.09); color:#1d4ed8; border:1px solid rgba(37,99,235,0.2); }
.chip-green  { background:rgba(16,185,129,0.09); color:#047857; border:1px solid rgba(16,185,129,0.2); }
.chip-red    { background:rgba(239,68,68,0.09); color:#b91c1c; border:1px solid rgba(239,68,68,0.2); }

.info-chip {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.02em;
  padding: 3px 10px; border-radius: 999px;
}

@media (max-width:640px) {
  .hero { padding: 100px 0 36px; }
  .hero h1 { font-size: 1.7rem; }
  .nav-title { display: none; }
}
