:root{--build-id:"af1d3896-7fa6-4508-acd0-36c5a861a4fd";}
@charset "UTF-8";

/* ===== CSS 변수 (C22) ===== */
:root {
  --primary: #d97706;
  --bg: #fef3c7;
  --text: #92400e;
  --accent: #f59e0b;
  --heading: var(--text);
  --link: var(--text);
}

/* ===== 리셋 ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== Body (F8) ===== */
body {
  font-family: system-ui, "Helvetica Neue", Arial, "Noto Sans KR", "Malgun Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0em;
  color: var(--text);
  background: var(--bg);
}

/* ===== 헤딩 (H12) ===== */
h1 {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--heading);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.875rem, 4vw, 3.1875rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--heading);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.390625rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--heading);
  margin-bottom: 1rem;
}

/* ===== 링크 ===== */
a {
  color: var(--link);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

a:focus-visible {
  outline: 3px solid #0066cc;
  outline-offset: 2px;
}

/* ===== 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;
}

/* ===== 헤더 (N15) ===== */
header {
  background: rgba(254, 243, 199, 0.95);
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(146, 64, 14, 0.1);
}

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

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

.menu-checkbox {
  display: none;
}

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

nav ul {
  list-style: none;
  display: flex;
  gap: 0.5rem;
}

nav ul li a {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  font-weight: 600;
  border-radius: 0.5rem;
  background: var(--primary);
  color: #fff;
  transition: all 0.3s ease;
}

nav ul li a:hover {
  background: var(--accent);
  opacity: 1;
}

nav ul li a[aria-current="page"] {
  background: var(--accent);
}

/* ===== 모바일 네비게이션 ===== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-bottom: 1px solid rgba(146, 64, 14, 0.1);
  }

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

  nav ul {
    flex-direction: column;
    padding: 1rem 2rem;
    gap: 0.75rem;
  }

  nav ul li a {
    display: block;
    text-align: center;
  }
}

/* ===== 컨테이너 (S03) ===== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 6rem 0;
}

.section-gap {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* ===== 버튼 (B12) ===== */
.btn {
  display: inline-block;
  border-radius: 1rem;
  padding: 1.25rem 2.5rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 1;
}

.btn:focus-visible {
  outline: 3px solid #0066cc;
  outline-offset: 2px;
}

/* ===== 카드 (K12) ===== */
.card {
  background: #f3f4f6;
  border-radius: 0;
  padding: 2rem;
  height: 100%;
}

/* ===== 그리드 ===== */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

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

/* ===== 히어로 섹션 (L26 - 미니멀리스트) ===== */
.hero {
  text-align: center;
  padding: 8rem 0 6rem;
}

.hero p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* ===== 타임라인 ===== */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary);
}

.timeline-item {
  position: relative;
  padding-bottom: 3rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.5rem;
  top: 0.5rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--bg);
}

/* ===== 사이드 CTA ===== */
.side-cta {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.side-cta-content {
  flex: 1;
}

.side-cta-box {
  flex-shrink: 0;
  width: 300px;
  background: var(--primary);
  color: #fff;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
}

.side-cta-box h3 {
  color: #fff;
  margin-bottom: 1rem;
}

.side-cta-box .btn {
  background: #fff;
  color: var(--primary);
  margin-top: 1rem;
}

.side-cta-box .btn:hover {
  background: var(--bg);
}

@media (max-width: 968px) {
  .side-cta {
    flex-direction: column;
  }

  .side-cta-box {
    width: 100%;
  }
}

/* ===== 푸터 ===== */
footer {
  background: rgba(146, 64, 14, 0.05);
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(146, 64, 14, 0.1);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(146, 64, 14, 0.1);
  font-size: 0.875rem;
  color: var(--text);
}

/* ===== 문서 컨테이너 (Privacy/Terms) ===== */
.doc-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
}

.doc-container p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* ===== 반응형 ===== */
@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }

  .hero {
    padding: 5rem 0 4rem;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
  }
}

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

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

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

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

/* ===== SVG 스타일 ===== */
svg {
  max-width: 100%;
  height: auto;
}

.icon-large {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
}

.icon-medium {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
}

/* ===== 리스트 스타일 ===== */
ul.styled-list {
  list-style: none;
  padding-left: 0;
}

ul.styled-list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
}

ul.styled-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}