:root {
  color-scheme: light;
  --bg: #fff8fb;
  --surface: #ffffff;
  --text: #211827;
  --muted: #746778;
  --line: #f0e5ee;
  --primary: #b14cff;
  --primary-dark: #8b2de2;
  --pink: #ff6fae;
  --shadow: 0 22px 70px rgba(84, 37, 104, 0.12);
  --soft-shadow: 0 12px 35px rgba(84, 37, 104, 0.1);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 111, 174, 0.16), transparent 34rem),
    radial-gradient(circle at top right, rgba(177, 76, 255, 0.13), transparent 32rem),
    var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard", "Noto Sans KR", "Segoe UI", sans-serif;
  line-height: 1.7;
  word-break: keep-all;
}

a {
  color: inherit;
  text-decoration: none;
}

.home {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px 20px;
}

.hero {
  width: min(100%, 720px);
  padding: 56px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  text-align: center;
  backdrop-filter: blur(18px);
}

.brand-mark,
.logo-symbol {
  display: inline-grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--pink), var(--primary));
  font-weight: 800;
  box-shadow: var(--soft-shadow);
}

.brand-mark {
  width: 72px;
  height: 72px;
  margin-bottom: 22px;
  border-radius: 22px;
  font-size: 32px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 560px;
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: 18px;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--pink), var(--primary));
  box-shadow: 0 14px 30px rgba(177, 76, 255, 0.24);
}

.button.secondary {
  color: var(--primary-dark);
  background: #ffffff;
  border: 1px solid var(--line);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(100% - 40px, 1040px);
  margin: 0 auto;
  padding: 22px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.logo-symbol {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  font-size: 17px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.nav-links a {
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--primary-dark);
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(84, 37, 104, 0.08);
}

.document-wrap {
  width: min(100% - 40px, 880px);
  margin: 34px auto 72px;
}

.document-card {
  padding: 52px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.document-card h1 {
  margin-bottom: 18px;
  font-size: clamp(30px, 5vw, 46px);
}

.lead {
  margin-bottom: 36px;
  color: var(--muted);
  font-size: 17px;
}

section {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

section:first-of-type {
  border-top: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: 0;
}

p {
  margin-bottom: 12px;
  color: #403546;
}

ul {
  margin: 12px 0 0;
  padding-left: 22px;
  color: #403546;
}

li + li {
  margin-top: 7px;
}

.contact {
  display: inline-flex;
  margin-bottom: 0;
  padding: 10px 14px;
  border-radius: 14px;
  background: #fff5fa;
  color: var(--primary-dark);
  font-weight: 800;
}

@media (max-width: 720px) {
  body {
    word-break: normal;
  }

  .home {
    padding: 20px;
  }

  .hero {
    padding: 36px 22px;
    border-radius: 26px;
  }

  .brand-mark {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    font-size: 28px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    width: min(100% - 32px, 1040px);
    padding: 18px 0 6px;
  }

  .nav-links {
    justify-content: flex-start;
    width: 100%;
  }

  .nav-links a {
    flex: 1;
    min-width: 130px;
    text-align: center;
  }

  .document-wrap {
    width: min(100% - 32px, 880px);
    margin: 22px auto 48px;
  }

  .document-card {
    padding: 30px 20px;
    border-radius: 22px;
  }

  .lead {
    font-size: 16px;
  }

  section {
    padding: 22px 0;
  }

  h2 {
    font-size: 20px;
  }
}
