/* =========================================================
   서울시립뇌성마비인복지관 · 미션/비전 페이지
   ========================================================= */

:root {
  --background: #f6f7fb;
  --foreground: #232c40;
  --card: #ffffff;
  --muted-foreground: #6b7385;
  --border: #e6e9f0;

  --brand: #00366e;          /* 메인 블루 */
  --brand-dark: #2538a0;
  --brand-foreground: #ffffff;
  --brand-soft: #dde3fb;     /* 연한 블루 배경 */
  --brand-glow: rgba(47, 73, 199, 0.3);

  --amber: #0096ff;          /* 포인트 앰버 */
  --amber-soft: #c6e6fc;
  --amber-text: #0096ff;

  --teal: #2bb1a0;
  --teal-soft: #d5f0eb;
  --violet: #7a6fd6;
  --violet-soft: #e4e1f7;

  --ink: #00366e;            /* 다크 네이비 섹션 */

  --radius: 14px;
  --maxw: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Noto Sans KR', system-ui, -apple-system, sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
  max-width: 100%;
}

ul {
  list-style: none;
}

.container_wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16px;
}

@media (min-width: 768px) {
  .container_wrap {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (min-width: 1000px) {
  .container_wrap {
    padding-left: 32px;
    padding-right: 32px;
  }
}

/* ===================== Section helpers ===================== */
.section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .section {
    padding: 96px 0;
  }
}

@media (min-width: 1000px) {
  .section {
    padding: 112px 0;
  }
}

.section--dark {
  background: var(--ink);
  color: #fff;
}

.section--gray {
  background: #444;
  color: #fff;
}

.section__head {
  text-align: center;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .section__head {
    margin-bottom: 64px;
  }
}

.section__title {
  font-size: 1.5em;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.section__title--light {
  color: #fff;
}

@media (min-width: 600px) {
  .section__title {
    font-size: 1.875em;
  }
}

@media (min-width: 1000px) {
  .section__title {
    font-size: 2.25em;
  }
}

.section__rule {
  display: block;
  width: 56px;
  height: 4px;
  border-radius: 999px;
  background: var(--brand);
  margin: 20px auto 0;
}

.eyebrow {
  font-size: 0.8em;
  font-weight: 700;
  letter-spacing: 0.3em;
  margin-bottom: 12px;
}

.eyebrow--brand {
  color: var(--brand);
}

.eyebrow--soft {
  color: var(--brand-soft);
  font-weight: 500;
}

/* ===================== Reveal animation ===================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0s);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero__glow--brand {
  left: 50%;
  top: 0;
  width: 28em;
  height: 28em;
  transform: translateX(-50%);
  background: var(--brand-glow);
}

.hero__glow--amber {
  right: 0;
  bottom: 0;
  width: 18em;
  height: 18em;
  background: rgba(231, 165, 42, 0.1);
}

.hero__dots {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 0);
  background-size: 32px 32px;
}

.hero .container_wrap {
  position: relative;
}

.hero__inner {
  max-width: 48em;
  padding: 64px 0;
}

@media (min-width: 768px) {
  .hero__inner {
    padding: 80px 0;
  }
}

@media (min-width: 1000px) {
  .hero__inner {
    padding: 112px 0;
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.75em;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--brand-soft);
  margin-bottom: 20px;
}

.hero__title {
  font-size: 1.875em;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

@media (min-width: 600px) {
  .hero__title {
    font-size: 2.25em;
  }
}

@media (min-width: 1000px) {
  .hero__title {
    font-size: 3em;
  }
}

.hero__desc {
  margin-top: 20px;
  max-width: 36em;
  font-size: 1em;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 1000px) {
  .hero__desc {
    font-size: 1.125em;
  }
}

/* ===================== MISSION & VISION ===================== */
.mv__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.mv__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.mv__glow--brand {
  left: -6em;
  top: 2.5em;
  width: 18em;
  height: 18em;
  background: var(--brand-glow);
}

.mv__glow--amber {
  right: -5em;
  bottom: 0;
  width: 20em;
  height: 20em;
  background: rgba(231, 165, 42, 0.15);
}

.mv .container_wrap {
  position: relative;
}

.mv__head {
  max-width: 48em;
  margin: 0 auto;
  text-align: center;
}

.mv__quote {
  font-size: 1.5em;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 600px) {
  .mv__quote {
    font-size: 1.875em;
  }
}

@media (min-width: 1000px) {
  .mv__quote {
    font-size: 2.25em;
  }
}

.br-sm {
  display: none;
}

@media (min-width: 600px) {
  .br-sm {
    display: inline;
  }
}

.mv__cards {
  display: grid;
  gap: 24px;
  margin-top: 56px;
}

@media (min-width: 1000px) {
  .mv__cards {
    gap: 28px;
  }
}

.mv-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: var(--card);
  color: var(--foreground);
  padding: 28px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease;
}


@media (min-width: 768px) {
  .mv-card {
    padding: 36px;
  }
}

@media (min-width: 1000px) {
  .mv-card {
    padding: 40px;
  }
}

.mv-card:hover {
  transform: translateY(-4px);
}

.mv-card__bar {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 6px;
}

.mv-card__bar--brand {
  background: var(--brand);
}

.mv-card__bar--amber {
  background: var(--amber);
}

.mv-card__row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 768px) {
  .mv-card__row {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
}

.mv-card__label {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .mv-card__label {
    width: 14em;
  }
}

.mv-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
}

.mv-card__icon svg {
  width: 24px;
  height: 24px;
}

.mv-card__icon--brand {
  background: var(--brand-soft);
  color: var(--brand);
}

.mv-card__icon--amber {
  background: var(--amber);
  color: #fff;
}

.mv-card__title {
  font-size: 1.125em;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.mv-card__title--brand {
  color: var(--brand);
}

.mv-card__title--amber {
  color: var(--amber-text);
}

.mv-card__text {
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.6;
  color: var(--ink);
}

@media (min-width: 768px) {
  .mv-card__text {
    font-size: 1.5em;
  }
}

@media (min-width: 1000px) {
  .mv-card__text {
    font-size: 1.7em;
  }
}

.hl {
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-underline-offset: 4px;
}

.hl--brand {
  color: var(--brand);
  text-decoration-color: rgba(47, 73, 199, 0.4);
}

.hl--amber {
  color: var(--amber-text);
  text-decoration-color: rgba(95, 183, 245, 0.5);
}

/* ===================== CORE VALUES ===================== */
.cv__grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 600px) {
  .cv__grid {
    gap: 24px;
  }
}

@media (min-width: 1000px) {
  .cv__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cv-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  text-align: center;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

@media (min-width: 1000px) {
  .cv-card {
    padding: 40px;
  }
}

.cv-card:hover {
  transform: translateY(-6px);
  border-color: rgba(47, 73, 199, 0.3);
  box-shadow: 0 20px 40px -15px var(--brand-glow);
}

.cv-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.cv-card:hover .cv-card__icon {
  transform: scale(1.1);
}

.cv-card__icon svg {
  width: 28px;
  height: 28px;
}

.cv-card__icon--brand {
  background: var(--brand-soft);
  color: var(--brand);
}

.cv-card__icon--amber {
  background: var(--amber-soft);
  color: var(--amber-text);
}

.cv-card__icon--teal {
  background: var(--teal-soft);
  color: var(--teal);
}

.cv-card__title {
  font-size: 1.25em;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
}

.cv-card__desc {
  font-size: 0.95em;
  line-height: 1.6;
  color: var(--muted-foreground);
}

/* ===================== IDEAL TALENT ===================== */
.it__glow {
  position: absolute;
  right: -8em;
  top: 50%;
  transform: translateY(-50%);
  width: 24em;
  height: 24em;
  border-radius: 50%;
  filter: blur(80px);
  background: rgba(47, 73, 199, 0.2);
  pointer-events: none;
}

.it .container_wrap {
  position: relative;
}

.it__grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 600px) {
  .it__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .it__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.it-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(4px);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

@media (min-width: 1000px) {
  .it-card {
    padding: 28px;
  }
}

.it-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.it-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.it-card:hover .it-card__icon {
  transform: scale(1.1);
}

.it-card__icon svg {
  width: 24px;
  height: 24px;
}

.accent-ink {
  color: #ffffff;
}
.accent-amber {
  color: var(--amber);
}
.accent-teal {
  color: #7fd9cd;
}
.accent-violet {
  color: #b3aaf0;
}

.it-card__title {
  font-size: 1.125em;
  font-weight: 800;
  color: #fff;
}

.it-card__en {
  margin-top: 6px;
  font-size: 0.7em;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.45);
}

.it-tag {
  align-self: flex-start;
  margin-top: 20px;
  border: 1px solid;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.75em;
}

.it-tag--brand {
  border-color: rgba(170, 181, 245, 0.4);
  color: var(--brand-soft);
}

.it-tag--amber {
  border-color: rgba(231, 165, 42, 0.5);
  background: rgba(231, 165, 42, 0.9);
  color: var(--ink);
  font-weight: 600;
}

.it-tag--teal {
  border-color: rgba(127, 217, 205, 0.4);
  color: #aee7df;
}

.it-tag--violet {
  border-color: rgba(179, 170, 240, 0.4);
  color: #cfc9f5;
}

/* ===================== STRATEGY ===================== */
.st__grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 1000px) {
  .st__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.st-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

@media (min-width: 1000px) {
  .st-card {
    padding: 32px;
  }
}

.st-card:hover {
  transform: translateY(-6px);
  border-color: rgba(47, 73, 199, 0.3);
  box-shadow: 0 20px 40px -15px var(--brand-glow);
}

.st-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.st-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--brand-soft);
  color: var(--brand);
  transition: transform 0.3s ease;
}

.st-card:hover .st-card__icon {
  transform: scale(1.1);
}

.st-card__icon svg {
  width: 28px;
  height: 28px;
}

.st-card__no {
  font-size: 2.25em;
  font-weight: 900;
  color: rgba(47, 73, 199, 0.15);
}

.st-card__title {
  font-size: 1.25em;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 20px;
}

.st-card__list li {
  display: flex;
  gap: 10px;
  font-size: 0.9em;
  line-height: 1.6;
  color: var(--muted-foreground);
}

.st-card__list li + li {
  margin-top: 12px;
}

.st-card__list .dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--brand);
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.55);
  padding: 40px 0;
  text-align: center;
  font-size: 0.875em;
}

.footer__name {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.footer__line {
  margin-top: 8px;
  line-height: 1.6;
}

.footer__copy {
  margin-top: 16px;
  font-size: 0.75em;
  color: rgba(255, 255, 255, 0.4);
}

@media (min-width: 1200px) {
    #mission-vision{border-radius: 0 0 30px 30px;}
    #ideal-talent{border-radius: 30px 30px 0 0;}
}
