:root {
  --bg: #ffffff;
  --fg: #111111;
  --muted: #616161;
  --line: #e7e7e7;
  --accent: #111111;
  --panel: #fcfcfc;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", "Pretendard", system-ui,
    sans-serif;
}

.page-shell {
  max-width: 1080px;
  margin: 0 auto;
  min-height: 100vh;
  padding: 22px 20px 30px;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 48px;
}

.logo {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #050505;
  text-decoration: none;
  display: inline-block;
}

.nav-links {
  display: flex;
  gap: 16px;
}

.nav-links a {
  color: var(--fg);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  opacity: 0.78;
}

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

.hero {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
  border-radius: 18px;
  padding: 30px;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: #444444;
}

.hero h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.17;
  letter-spacing: -0.02em;
}

.hero-copy {
  margin-top: 16px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  max-width: 680px;
  line-height: 1.6;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
}

.btn-primary {
  background: #0f0f0f;
  color: #ffffff;
}

.btn-ghost {
  border-color: #d7d7d7;
  color: #111111;
  background: #ffffff;
}

.products {
  margin-top: 34px;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.section-head h2 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.01em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.product-card {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 16px;
  padding: 20px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hr-card {
  border-color: #d9d9d9;
  background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
}

.id-card {
  border-color: #cfcfcf;
  background: linear-gradient(180deg, #fdfdfd 0%, #f3f3f3 100%);
}

.product-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  height: 28px;
  border-radius: 999px;
  background: #171717;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.product-type {
  font-size: 12px;
  color: #4a4a4a;
  font-weight: 700;
}

.product-card h3 {
  margin: 8px 0 0;
  font-size: 28px;
  letter-spacing: -0.01em;
}

.product-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}

.product-heading-copy {
  min-width: 0;
}

.product-heading-copy h3 {
  margin: 0;
}

.product-heading-meta {
  margin: 4px 0 0;
  color: #6b7280;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  flex: 0 0 auto;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.14);
}

.product-monogram {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #111111 0%, #3a3a3a 100%);
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.16);
}

.product-card p {
  margin: 10px 0 0;
  color: #404040;
  line-height: 1.55;
}

.product-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.product-card li {
  margin: 6px 0;
  color: #2a2a2a;
}

.product-links {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  justify-items: center;
}

.product-links--store-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.store-badge-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  text-decoration: none;
  width: 100%;
  max-width: 172px;
  transition: transform 0.15s ease;
}

a.store-badge-link:hover {
  transform: translateY(-1px);
}

.store-badge-image {
  display: block;
  width: 100%;
  max-width: 172px;
  height: auto;
}

.store-badge-link[aria-disabled="true"],
.store-badge-link.is-disabled {
  pointer-events: none;
}

.store-badge-link[aria-disabled="true"] .store-badge-image,
.store-badge-link.is-disabled .store-badge-image {
  filter: grayscale(1);
  opacity: 0.44;
}

.store-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 12px;
  border: 1px solid #d9d9d9;
  background: #ffffff;
  color: #131313;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.store-link:hover {
  border-color: #bfbfbf;
  transform: translateY(-1px);
}

.store-link[aria-disabled="true"],
.store-link.is-disabled {
  opacity: 0.56;
  pointer-events: none;
}

.web-badge-link {
  grid-column: 1 / -1;
  gap: 12px;
  min-height: 54px;
  width: 100%;
  max-width: 172px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid rgba(18, 24, 33, 0.08);
  background:
    radial-gradient(circle at top left, rgba(74, 222, 128, 0.12), transparent 44%),
    linear-gradient(180deg, #171a1f 0%, #0b0d11 100%);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.web-badge-link:hover {
  border-color: rgba(74, 222, 128, 0.36);
}

.web-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.web-badge-icon svg {
  width: 17px;
  height: 17px;
  display: block;
}

.web-badge-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
}

.web-badge-kicker {
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.web-badge-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.store-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.topbar-sub {
  margin-bottom: 34px;
}

.back-link {
  color: #222222;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid #dddddd;
  border-radius: 999px;
  padding: 8px 12px;
}

.sub-hero {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.04);
  padding: 28px;
}

.section-kicker {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 900;
  color: #6a6a6a;
}

.sub-title {
  margin: 0;
  font-size: clamp(24px, 3.3vw, 34px);
  letter-spacing: -0.015em;
}

.sub-copy {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}

.filter-wrap {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 10px;
  border: 1px solid #e7e7e7;
  border-radius: 14px;
  background: #fcfcfc;
}

.filter-btn {
  height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid #d7d7d7;
  background: #ffffff;
  color: #1f1f1f;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.15s ease;
}

.filter-btn:hover {
  border-color: #bfbfbf;
  transform: translateY(-1px);
}

.filter-btn.is-active {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

.notice-card {
  margin-top: 18px;
  border: 1px dashed #bdbdbd;
  background: #fcfcfc;
  border-radius: 16px;
  padding: 20px;
}

.notice-title {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}

.notice-body {
  margin: 8px 0 0;
  color: #5b5b5b;
  font-size: 14px;
  line-height: 1.6;
}

.notice-meta {
  margin: 10px 0 0;
  color: #787878;
  font-size: 12px;
  font-weight: 700;
}

.notice-cta {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid #111111;
  background: #111111;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.notice-cta:hover {
  background: #1d1d1d;
}

.career-status-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.career-status-card {
  border: 1px solid #e4e4e4;
  border-radius: 12px;
  background: #ffffff;
  padding: 14px;
}

.career-status-label {
  margin: 0;
  color: #666666;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.career-status-value {
  margin: 8px 0 0;
  color: #151515;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
}

.team-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.team-card {
  border: 1px solid #e4e4e4;
  border-radius: 16px;
  background: #ffffff;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
}

.team-avatar {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111111;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.team-name {
  margin: 12px 0 0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.team-role {
  margin: 6px 0 0;
  font-size: 12px;
  color: #4c4c4c;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.team-desc {
  margin: 10px 0 0;
  color: #505050;
  font-size: 14px;
  line-height: 1.55;
}

.footer {
  margin-top: auto;
  padding-top: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #666666;
  font-size: 13px;
  flex-wrap: wrap;
}

.footer a {
  color: #333333;
}

.locale-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid #dddddd;
  background: #ffffff;
  color: #555555;
  font-size: 11px;
  font-weight: 700;
}

.footer-company {
  width: 100%;
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid #ececec;
  display: grid;
  gap: 4px;
}

.footer-company span {
  color: #666666;
  font-size: 12px;
  line-height: 1.55;
}

.footer-company strong {
  color: #2a2a2a;
  margin-right: 6px;
}

.dot {
  opacity: 0.5;
}

.policy-wrap {
  max-width: 920px;
}

.policy-updated {
  margin: 10px 0 0;
  color: #7b7b7b;
  font-size: 12px;
  font-weight: 700;
}

.policy-section {
  margin-top: 16px;
  border: 1px solid #e7e7e7;
  border-radius: 14px;
  background: #ffffff;
  padding: 16px;
}

.policy-section h2 {
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.policy-section p {
  margin: 8px 0 0;
  color: #4f4f4f;
  line-height: 1.65;
  font-size: 14px;
}

.business-list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.business-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
  align-items: start;
}

.business-list strong {
  color: #222222;
  font-size: 13px;
}

.business-list span {
  color: #4b4b4b;
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 680px) {
  .page-shell {
    padding: 14px 14px 20px;
  }

  .topbar {
    margin-bottom: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .logo {
    font-size: 22px;
  }

  .nav-links {
    gap: 10px;
  }

  .nav-links a {
    font-size: 13px;
  }

  .hero {
    padding: 18px;
    border-radius: 14px;
  }

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

  .hero-actions {
    margin-top: 20px;
  }

  .btn {
    width: 100%;
    height: 44px;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .product-card h3 {
    font-size: 24px;
  }

  .product-links {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .store-badge-link {
    justify-content: center;
  }

  .topbar-sub {
    margin-bottom: 18px;
  }

  .sub-hero {
    padding: 18px;
    border-radius: 14px;
  }

  .sub-copy {
    font-size: 14px;
  }

  .filter-wrap {
    margin-top: 14px;
    padding: 8px;
  }

  .filter-btn {
    height: 35px;
    font-size: 12px;
  }

  .career-status-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .policy-section {
    padding: 14px;
  }

  .policy-section h2 {
    font-size: 15px;
  }

  .policy-section p {
    font-size: 13px;
  }

  .footer-company {
    margin-top: 10px;
    padding-top: 10px;
  }

  .footer-company span {
    font-size: 11px;
  }

  .business-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
