:root{--build-id:"0ca4ee19-b75d-4758-b035-c98933ee5a88";}
/* 전역 스타일 - vepuga77.site */
:root {
  --primary: #9333ea;
  --bg: #faf5ff;
  --text: #581c87;
  --accent: #a855f7;
  --heading: var(--text);
  --link: var(--text);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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-color: var(--bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading);
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 2.625rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  line-height: 1.35;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.625rem);
  font-weight: 600;
  line-height: 1.4;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--link);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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;
}

/* Header */
header {
  background: rgba(250, 245, 255, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(147, 51, 234, 0.1);
}

.header-container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 1rem 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(--primary);
}

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

nav a {
  display: block;
  padding: 0.625rem 1.25rem;
  font-weight: 600;
  border-radius: 0.5rem;
  background: rgba(147, 51, 234, 0.08);
  transition: all 0.3s ease;
}

nav a:hover,
nav a[aria-current="page"] {
  background: var(--primary);
  color: #fff;
}

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

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg);
    border-top: 1px solid rgba(147, 51, 234, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

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

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

  nav a {
    text-align: center;
  }
}

/* Container */
.container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 5.75rem 0;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 7rem 2rem 5.75rem;
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
}

.hero h1 {
  margin-bottom: 1.5rem;
}

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

/* Button */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-weight: 600;
  border-radius: 2rem;
  border: 2px dashed var(--primary);
  background: var(--primary);
  color: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn:hover {
  background: transparent;
  color: var(--primary);
}

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

.btn-secondary {
  background: transparent;
  color: var(--primary);
}

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

/* Grid */
.grid {
  display: grid;
  gap: 3.75rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Card */
.card {
  border-radius: 2rem;
  background: #ffffff;
  box-shadow: 0 0 0 1px #e5e7eb;
  padding: 2rem;
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 0 0 2px var(--primary);
  transform: translateY(-4px);
}

.card h3 {
  margin-bottom: 1rem;
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

/* Accordion */
.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border-radius: 1rem;
  background: #ffffff;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.accordion-header {
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.accordion-header:hover {
  background: rgba(147, 51, 234, 0.05);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-input {
  display: none;
}

.accordion-input:checked ~ .accordion-content {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

.accordion-toggle {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.accordion-input:checked ~ .accordion-header .accordion-toggle {
  transform: rotate(180deg);
}

/* List */
.list-checked {
  list-style: none;
  padding-left: 0;
}

.list-checked li {
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  position: relative;
}

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

/* Content Section */
.content-section {
  margin-bottom: 3.75rem;
}

.content-section:last-child {
  margin-bottom: 0;
}

/* Contact */
.contact-info {
  text-align: center;
  padding: 3rem;
  background: #ffffff;
  border-radius: 2rem;
  box-shadow: 0 0 0 1px #e5e7eb;
}

.contact-info p {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.contact-info a {
  font-weight: 600;
  color: var(--primary);
}

/* Footer */
footer {
  background: rgba(88, 28, 135, 0.05);
  padding: 3rem 2rem 2rem;
  margin-top: 5.75rem;
  border-top: 1px solid rgba(147, 51, 234, 0.1);
}

.footer-content {
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a {
  color: var(--text);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

/* Document Container */
.doc-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }

  .hero {
    padding: 4rem 1rem 3rem;
  }

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

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* SVG */
svg {
  max-width: 100%;
  height: auto;
}

/* Icon */
.icon {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
  vertical-align: middle;
}