:root {
  --night: #333664;
  --purple: #5d4796;
  --yellow: #f1d616;
  --ink: #22232c;
  --line: #e5e6eb;
}

* { box-sizing: border-box; }
html { background: #fff; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: "Pretendard GOV", "Pretendard", "Noto Sans KR", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
}
a { color: inherit; }
.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 50;
  padding: .75rem 1rem;
  background: #fff;
  color: #111;
}
.skip-link:focus { top: 1rem; }

.masthead {
  min-height: 36px;
  display: flex;
  align-items: center;
  background: #f5f6f8;
  border-bottom: 1px solid #e7e8ec;
  color: #4c4e58;
  font-size: 13px;
}
.masthead .container { display: flex; align-items: center; min-height: 36px; }

.site-header { background: #fff; border-bottom: 1px solid var(--line); }
.header-inner { height: 78px; display: flex; align-items: center; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { display: block; width: 258px; height: auto; max-height: 52px; object-fit: contain; }
.brand:focus-visible,
.footer-logo:focus-visible { outline: 3px solid #364792; outline-offset: 5px; }

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(140deg, #292d59 0%, var(--night) 55%, #58448f 100%);
}
.hero::before {
  content: "";
  position: absolute;
  right: -140px;
  top: 50px;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(255,255,255,.018), 0 0 0 180px rgba(255,255,255,.012);
}
.hero::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  height: 130px;
  bottom: 70px;
  background: rgba(255,255,255,.028);
  transform: rotate(-4deg);
}
.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 690px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 72px 0 86px;
}
.kicker {
  margin: 0 0 18px;
  color: var(--yellow);
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -.03em;
}
h1 {
  margin: 0;
  max-width: 880px;
  font-size: clamp(62px, 7.2vw, 104px);
  line-height: .98;
  letter-spacing: -.065em;
  font-weight: 800;
}
.subtitle {
  margin: 32px 0 8px;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -.035em;
}
.lead {
  margin: 0;
  max-width: 760px;
  color: rgba(255,255,255,.78);
  font-size: 18px;
  line-height: 1.75;
}
.status {
  margin: 14px 0 0;
  color: rgba(255,255,255,.56);
  font-size: 14px;
}
.facts {
  display: grid;
  width: min(720px, 100%);
  margin: 38px 0 0;
  padding: 0;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,.055);
}
.fact {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  margin: 0;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.fact:last-child { border-bottom: 0; }
.fact dt { color: rgba(255,255,255,.62); font-size: 17px; }
.fact dd { margin: 0; font-size: 18px; font-weight: 700; }

.site-footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 42px 0 32px;
}
.footer-logos { display: flex; align-items: center; gap: 42px; flex-wrap: wrap; }
.footer-logo { display: flex; align-items: center; text-decoration: none; }
.footer-logo.city img { display: block; width: 150px; height: auto; }
.footer-logo.foundation img { display: block; width: 164px; height: auto; max-height: 92px; object-fit: contain; }
.footer-rule { margin: 28px 0 20px; border: 0; border-top: 1px solid #ececf0; }
.copyright { margin: 0; color: #8a8c93; font-size: 13px; line-height: 1.6; }

@media (max-width: 760px) {
  .container { width: min(100% - 32px, 1180px); }
  .header-inner { height: 66px; }
  .brand img { width: 210px; max-height: 44px; }
  .hero-inner { min-height: auto; padding: 54px 0 62px; }
  .kicker { font-size: 19px; }
  h1 { font-size: clamp(46px, 14vw, 68px); max-width: 9ch; }
  .subtitle { font-size: 21px; }
  .lead { font-size: 16px; }
  .fact { grid-template-columns: 68px 1fr; padding: 16px; }
  .footer-logos { gap: 26px; }
  .footer-logo.city img { width: 132px; }
  .footer-logo.foundation img { width: 145px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; }
}
