:root{--build-id:"db17b70b-eea2-45a7-a373-61f172499620";}
/* 색상 변수 - C24 핑크 계열 */
:root {
  --primary: #db2777;
  --bg: #fce7f3;
  --text: #9f1239;
  --accent: #ec4899;
  --heading: var(--text);
  --link: var(--text);
}

/* 폰트 - F4 Windows Modern */
body {
  font-family: "Segoe UI Variable", "Malgun Gothic", "Noto Sans KR", Arial, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0em;
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
}

/* 헤딩 - H20 */
h1 {
  font-size: clamp(1.85rem, 2.3vw + 1rem, 2.85rem);
  font-weight: 620;
  line-height: 1.24;
  letter-spacing: -0.006em;
  color: var(--heading);
  margin: 0 0 1rem 0;
}

h2 {
  font-size: clamp(1.39rem, 1.73vw + 0.75rem, 2.14rem);
  font-weight: 620;
  line-height: 1.29;
  letter-spacing: -0.006em;
  color: var(--heading);
  margin: 0 0 0.875rem 0;
}

h3 {
  font-size: clamp(1.11rem, 1.38vw + 0.6rem, 1.71rem);
  font-weight: 520;
  line-height: 1.34;
  letter-spacing: -0.006em;
  color: var(--heading);
  margin: 0 0 0.75rem 0;
}

/* 여백 시스템 - S02 */
section {
  padding: 4rem 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.gap {
  gap: 2.5rem;
}

/* 접근성 - Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

/* 키보드 포커스 */
a:focus-visible,
input:focus-visible,
label:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

/* 네비게이션 - N07 */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.menu-checkbox {
  display: none;
}

.menu-toggle {
  display: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--text);
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: var(--link);
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--primary);
}

nav a[aria-current="page"] {
  color: var(--primary);
  font-weight: 600;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
  }

  .menu-checkbox:checked ~ nav {
    max-height: 500px;
  }

  nav ul {
    flex-direction: column;
    padding: 1rem 1.5rem;
    gap: 0;
  }

  nav li {
    border-bottom: 1px solid #f0f0f0;
  }

  nav a {
    display: block;
    padding: 1rem 0;
  }
}

/* 버튼 - B11 */
.btn {
  display: inline-block;
  border-radius: 0.375rem;
  padding: 0.875rem 1.75rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: #be185d;
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: #fff;
}

/* 카드 - K09 */
.card {
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  border-radius: 1rem;
  padding: 2rem;
}

/* 그리드 레이아웃 */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

/* 푸터 */
footer {
  background: #fff;
  padding: 2rem 0;
  margin-top: 4rem;
  border-top: 1px solid #e5e7eb;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.footer-links {
  margin: 1rem 0;
}

.footer-links a {
  color: var(--link);
  text-decoration: none;
  margin: 0 1rem;
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: var(--primary);
}

/* Privacy/Terms 페이지 */
.doc-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}

/* 유틸리티 */
.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

p {
  margin: 0 0 1rem 0;
}

a {
  color: var(--link);
}