﻿:root {
  --primary: #1e4ed8;
  --primary-dark: #173ea8;
  --primary-soft: #eaf1ff;
  --text: #0f172a;
  --muted: #475569;
  --line: #dbe4f0;
  --bg: #f8fbff;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
  color: var(--text);
  background:
	radial-gradient(circle at top right, rgba(30, 78, 216, 0.08), transparent 28%),
	linear-gradient(180deg, #fafdff 0%, #f3f8ff 100%);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(219, 228, 240, 0.8);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.brand-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), #4f8cff);
  color: white;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(30, 78, 216, 0.28);
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 600;
  transition: 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--primary);
  background: var(--primary-soft);
}

.sh {
  padding: 56px 0 26px;
}

.sh-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(30, 78, 216, 0.96), rgba(14, 40, 109, 0.96));
  color: white;
  border-radius: 34px;
  min-height: 620px;
  box-shadow: 0 30px 70px rgba(16, 40, 102, 0.26);
}

.sh-card::before,
.sh-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.18;
  background: white;
}

.sh-card::before {
  width: 380px;
  height: 380px;
  top: -120px;
  right: -90px;
}

.sh-card::after {
  width: 220px;
  height: 220px;
  bottom: -80px;
  left: -60px;
}

.sh-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: stretch;
  min-height: 620px;
  position: relative;
  z-index: 1;
}

.sh-copy {
  padding: 64px 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.sh h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4.5vw, 4.4rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.sh h1 span {
  display: block;
  color: #d8e6ff;
}

.sh-lead {
  margin: 24px 0 0;
  max-width: 620px;
  font-size: 1.08rem;
  color: rgba(255,255,255,0.88);
}

.sh-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.98rem;
  border: 1px solid transparent;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: white;
  color: var(--primary-dark);
}
.btn-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.34);
}

.sh-visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 40px 40px 0 0;
  position: relative;
}

.portrait-wrap {
  width: min(100%, 420px);
  align-self: flex-end;
  position: relative;
}

.portrait-frame {
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 28px 28px 0 0;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15);
}

.portrait {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: linear-gradient(180deg, #eff5ff 0%, #c9d8ff 100%);
}

.floating-note {
  position: absolute;
  right: -12px;
  top: 54px;
  background: rgba(255,255,255,0.96);
  color: var(--text);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: var(--shadow);
  width: 210px;
}

.floating-note strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}

.floating-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

section {
  padding: 36px 0;
}

.section-head {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.kicker {
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 760px;
  font-size: 1rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.timeline-card,
.policy-card,
.contact-card,
.message-card {
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.timeline-card {
  padding: 24px;
}

.timeline-year {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.timeline-card h3,
.policy-card h3,
.contact-card h3,
.message-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.timeline-card p,
.policy-card p,
.contact-card p,
.message-card p,
.contact-item span {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.message-card {
  margin-top: 30px;
  padding: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(240,246,255,0.92));
}

.message-card blockquote {
  margin: 0;
  font-size: clamp(1.25rem, 2.3vw, 2rem);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -0.03em;
}

.message-card blockquote span {
  color: var(--primary);
}

.policies {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.policy-card {
  padding: 26px;
}

.policy-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #e8f0ff, #d3e2ff);
  color: var(--primary);
  font-weight: 900;
  margin-bottom: 18px;
  font-size: 1.1rem;
}

.policy-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.policy-list li {
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.policy-list li::before {
  content: "●";
  color: var(--primary);
  font-size: 0.8rem;
  line-height: 1.6;
  flex: 0 0 auto;
}

.contact-grid {
  /*display: grid;*/
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.contact-card {
  padding: 28px;
}

.contact-items {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #f8fbff;
  border: 1px solid #e6eef8;
}

.contact-item strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.98rem;
}

.contact-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 900;
  flex: 0 0 auto;
}

.cta-panel {
  margin-top: 18px;
  padding: 22px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(30,78,216,0.08), rgba(79,140,255,0.08));
  border: 1px solid rgba(30,78,216,0.14);
}

.cta-panel h4 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.footer {
  padding: 28px 0 54px;
  color: #64748b;
  font-size: 0.94rem;
}

.footer-inner {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .sh-grid,
  .contact-grid,
  .timeline,
  .policies {
	grid-template-columns: 1fr;
  }

  .sh-card {
	min-height: auto;
  }

  .sh-grid {
	min-height: auto;
  }

  .sh-copy {
	padding: 46px 28px 10px;
  }

  .sh-visual {
	padding: 10px 28px 0;
  }

  .floating-note {
	right: 10px;
	top: 10px;
  }
}

@media (max-width: 720px) {
  .topbar-inner {
	flex-direction: column;
	align-items: stretch;
	justify-content: center;
	padding: 10px 0 14px;
  }

  .brand {
	justify-content: center;
  }

  .nav {
	justify-content: center;
  }

  .sh {
	padding-top: 24px;
  }

  .sh-card {
	border-radius: 24px;
  }

  .sh-copy {
	padding: 34px 20px 6px;
  }

  .sh h1 {
	font-size: 2.1rem;
  }

  .sh-lead {
	font-size: 0.98rem;
  }

  .sh-visual {
	padding: 12px 16px 0;
  }

  .floating-note {
	position: static;
	width: auto;
	margin: 0 0 14px;
  }

  .portrait-wrap {
	width: 100%;
  }

  section {
	padding: 28px 0;
  }
}
.slider {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  margin: auto;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  transition: opacity 0.5s;
  border-radius: 12px;
}

.slide:nth-child(2) { object-position: center 50%; }
.slide:nth-child(3) { object-position: center 50%; }
.slide:nth-child(4) { object-position: center 70%; }
.slide:nth-child(5) { object-position: center 1%;}

.slide.active {
  opacity: 1;
}

button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  font-size: 24px;
  padding: 5px 10px;
  cursor: pointer;
}

.prev { left: 10px; }
.next { right: 10px; }

.sh-lead ul li {margin:0 0 0 -20px;}