:root{--build-id:"aef2934b-34b6-46b0-91b6-a9cfae7a4059";}
:root {
  --primary: #3f3f46;
  --bg: #fafafa;
  --text: #18181b;
  --accent: #a1a1aa;
  --heading: var(--text);
  --link: var(--text);
  --radius: 0.5rem;
}

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

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

a {
  color: var(--link);
  text-decoration: none;
}

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

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

.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 {
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid #e5e7eb;
}

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

.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;
  user-select: none;
}

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

nav a {
  font-weight: 500;
  transition: color 0.2s;
}

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

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

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 0.5rem 0;
  min-width: 150px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-top: 0.5rem;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  display: block;
  padding: 0.5rem 1rem;
}

.dropdown-content a:hover {
  background: var(--bg);
}

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

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border-bottom: 1px solid #e5e7eb;
    display: none;
  }

  .menu-checkbox:checked ~ nav {
    display: block;
  }

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

  nav a {
    display: block;
    padding: 0.75rem 1.5rem;
  }

  .dropdown-content {
    position: static;
    display: none;
    border: none;
    box-shadow: none;
    margin-top: 0;
    background: var(--bg);
  }

  .dropdown:hover .dropdown-content {
    display: none;
  }

  .dropdown-content a {
    padding-left: 3rem;
  }
}

main {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5.75rem 0;
}

.section-gap {
  margin-bottom: 3.75rem;
}

h1 {
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  border-bottom: 4px solid var(--primary);
  display: inline-block;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  color: var(--heading);
}

h2 {
  font-size: 2.275rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  color: var(--heading);
}

h3 {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  color: var(--heading);
}

p {
  margin-bottom: 1rem;
}

.hero {
  text-align: center;
  padding: 4rem 0;
}

.hero h1 {
  border: none;
  display: block;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.125rem;
  color: #52525b;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.btn {
  border-radius: 9999px;
  padding: 0.625rem 1.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  background: var(--primary);
  color: white;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: all 0.2s;
}

.btn:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
}

.card {
  border: 1px solid #f3f4f6;
  border-radius: 0.5rem;
  padding: 1.75rem;
  transition: box-shadow 0.2s;
}

.card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.grid {
  display: grid;
  gap: 2rem;
}

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

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

.comparison {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .comparison {
    grid-template-columns: 1fr;
  }
}

.slider-section {
  overflow: hidden;
  position: relative;
  margin: 3rem 0;
}

.slider-container {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
}

.slider-item {
  min-width: 300px;
  scroll-snap-align: start;
  flex-shrink: 0;
}

.cta-section {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 4rem 2rem;
  border-radius: var(--radius);
  margin: 4rem 0;
}

.cta-section h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-section .btn {
  background: white;
  color: var(--primary);
}

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

footer {
  background: var(--primary);
  color: white;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: white;
}

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

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

.footer-section a {
  color: #d4d4d8;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #52525b;
  padding-top: 1.5rem;
  text-align: center;
  color: #d4d4d8;
  font-size: 0.875rem;
}

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

.doc-container h1 {
  border: none;
  display: block;
  margin-bottom: 2rem;
}

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

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

ul.feature-list {
  list-style: none;
  padding-left: 0;
}

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

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

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  section {
    padding: 3rem 0;
  }

  .hero {
    padding: 2rem 0;
  }
}