/* ── Wanted DS 토큰 (라이트) ────────────────────────── */
:root {
  --primary: rgb(0, 94, 235);
  --primary-strong: rgb(0, 84, 209);
  --ink: rgb(23, 23, 23);
  --ink-neutral: rgba(46, 47, 51, 0.88);
  --ink-alt: rgba(55, 56, 60, 0.61);
  --ink-assistive: rgba(55, 56, 60, 0.28);
  --line: rgba(112, 115, 124, 0.22);
  --line-neutral: rgba(112, 115, 124, 0.16);
  --line-alt: rgba(112, 115, 124, 0.08);
  --bg-alt: rgb(247, 247, 248);
  --blue-95: rgb(234, 242, 254);
  --blue-90: rgb(201, 222, 254);
  --fill: rgba(112, 115, 124, 0.08);
  --dark-btn: rgb(27, 28, 30);
  --dark-btn-hover: rgb(55, 56, 60);
  --chip: rgb(244, 244, 245);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Pretendard Variable", Pretendard, "Pretendard JP", -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  overflow-x: clip;
}

/* keep-all로 안 쪼개지는 긴 토큰(중점 연결어 등)이 화면을 넘칠 때만 강제 줄바꿈 */
p, li, span, summary, h1, h2, h3 { overflow-wrap: anywhere; }

img { max-width: 100%; display: block; }

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

.container { max-width: 1160px; margin: 0 auto; padding: 0 clamp(16px, 5vw, 24px); }
.container--narrow { max-width: 768px; }

/* 섹션이 자체 좌우 패딩을 가지므로 내부 컨테이너는 중복 패딩 제거 */
.section .container { padding-left: 0; padding-right: 0; }

/* ── 코너 브래킷 배지 (QR 프레임 모티프) ─────────────── */
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--primary);
}

.logo-dot { color: var(--primary); }

/* ── Header ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-alt);
}

.site-header__inner {
  height: 60px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo {
  text-decoration: none;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 26px);
}

.site-nav a {
  text-decoration: none;
  color: var(--ink-neutral);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.0145em;
}
.site-nav a:hover { color: var(--primary); }

.header-divider { width: 1px; height: 18px; background: var(--line); }

/* KO/EN 세그먼트 토글 */
.lang-toggle {
  display: flex;
  align-items: center;
  background: var(--fill);
  border-radius: 999px;
  padding: 3px;
}

.lang-toggle a,
.lang-toggle span {
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  /* KO/EN 자리는 고정 — 활성 알약만 부드럽게 옮겨 붙는 느낌 */
  min-width: 40px;
  text-align: center;
  background: transparent;
  box-shadow: 0 0 0 rgba(23, 23, 25, 0);
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.lang-toggle .is-active {
  background: #fff;
  box-shadow: 0 1px 3px rgba(23, 23, 25, 0.12);
  color: var(--ink);
  cursor: default;
}

.lang-toggle a:not(.is-active) { color: var(--ink-alt); }
.lang-toggle a:not(.is-active):hover { color: var(--ink); }

/* ── Hero ───────────────────────────────────────────── */
.hero {
  background: linear-gradient(180deg, rgb(234, 242, 254) 0%, rgb(255, 255, 255) 82%);
  padding: clamp(64px, 10vw, 116px) clamp(16px, 5vw, 24px) clamp(56px, 8vw, 92px);
}

.hero__inner {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
}

.hero h1 {
  font-size: clamp(56px, 7vw, 76px);
  line-height: 1.12;
  letter-spacing: -0.032em;
  font-weight: 700;
}

.hero__sub {
  max-width: 600px;
  font-size: clamp(15px, 2.2vw, 18px);
  line-height: 1.65;
  letter-spacing: -0.002em;
  font-weight: 500;
  color: var(--ink-neutral);
  word-break: keep-all;
  text-wrap: pretty;
}

.hero__cta { margin-top: 18px; }

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.0096em;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -10px rgba(0, 94, 235, 0.55); }

/* ── Sections ───────────────────────────────────────── */
.section { padding: clamp(64px, 9vw, 108px) clamp(16px, 5vw, 24px); scroll-margin-top: 68px; background: #fff; }
.section--alt { background: var(--bg-alt); }

.section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.section-head--center { align-items: center; text-align: center; }

.section__title {
  font-size: clamp(24px, 4.2vw, 36px);
  line-height: 1.3;
  letter-spacing: -0.0282em;
  font-weight: 700;
  word-break: keep-all;
}

/* ── Product card ───────────────────────────────────── */
.product-card {
  margin-top: 44px;
  border-radius: 24px;
  box-shadow: inset 0 0 0 1px var(--line);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  background: linear-gradient(180deg, rgb(247, 251, 255) 0%, rgb(255, 255, 255) 40%);
}

.product-card__head {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.product-card__icon {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  border: 1px solid var(--line-neutral);
  background: #fff;
}

.product-card__title { display: flex; flex-direction: column; gap: 6px; }
.product-card__name-row { display: flex; align-items: center; gap: 12px; }

.product-card__name {
  font-size: 28px;
  line-height: 1.358;
  letter-spacing: -0.0236em;
  font-weight: 700;
}

.badge--new {
  background: var(--blue-95);
  color: var(--primary-strong);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.product-card__tagline {
  font-size: 17px;
  line-height: 1.412;
  font-weight: 500;
  color: var(--ink-alt);
}

.product-card__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 36px;
  align-items: start;
}

.feature-col { display: flex; flex-direction: column; gap: 14px; }

.col-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.0145em;
  color: var(--ink-alt);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.feature-item svg { flex-shrink: 0; margin-top: 2px; }
.feature-item span {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--ink-neutral);
  word-break: keep-all;
}

.recommend {
  background: var(--bg-alt);
  border-radius: 16px;
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.recommend .col-label { color: var(--ink); }

.recommend-item { display: flex; align-items: flex-start; gap: 10px; }
.recommend-item::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--primary);
  margin-top: 9px;
  flex-shrink: 0;
}
.recommend-item span {
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--ink-neutral);
  word-break: keep-all;
}

/* ── Store buttons ──────────────────────────────────── */
.store-block {
  border-top: 1px solid var(--line-alt);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.store-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

.store-btn {
  display: flex;
  align-items: center;
  gap: 11px;
  background: var(--dark-btn);
  border-radius: 14px;
  padding: 11px 20px;
  min-width: 140px;
  text-decoration: none;
}
.store-btn__icon { flex: none; }
.store-btn__text { display: flex; flex-direction: column; gap: 2px; }
.store-btn:hover { background: var(--dark-btn-hover); }

.store-btn__sub {
  font-size: 11px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.store-btn__label {
  font-size: 17px;
  line-height: 1.3;
  color: #fff;
  font-weight: 700;
}

.store-btn.is-disabled {
  opacity: 0.45;
  pointer-events: none;
  cursor: not-allowed;
}

.store-note {
  font-size: 13px;
  line-height: 1.385;
  font-weight: 500;
  color: var(--ink-alt);
}

/* ── Showcase ───────────────────────────────────────── */
.showcase {
  margin-top: 72px;
  display: flex;
  flex-direction: column;
  gap: 96px;
}

.showcase__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 72px;
  flex-wrap: wrap;
}
.showcase__row--reverse { flex-direction: row-reverse; }

.showcase__shot {
  flex: 1 1 380px;
  min-width: 0;
  max-width: min(500px, 100%);
  border-radius: 24px;
  border: 1px solid var(--line-neutral);
  overflow: hidden;
  aspect-ratio: 5 / 6;
  background: #fff;
}

.showcase__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 100%;
}
/* 슥캔·온글은 원본 스크린샷이라 QR 처럼 배경+기기 프레임을 CSS 로 씌운다
   (QR 은 스토어 스크린샷이라 프레임이 이미지 안에 이미 들어 있다).
   치수는 QR 스토어 스크린샷의 기기 목업을 실측해 옮긴 값이다 —
   1000px 캔버스 기준 프레임 폭 808 / 옆 베젤 24 / 윗 베젤 48 / 펀치홀 22.
   카드 폭이 곧 그 캔버스 폭이므로 컨테이너 단위(cqw)로 그대로 쓴다. */
.showcase--framed .showcase__shot {
  border-color: transparent;
  background: linear-gradient(168deg, #F6F9FE 0%, #EDF2FE 100%);
  container-type: inline-size;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.showcase__phone {
  position: relative;
  margin-top: 2.9cqw;
  width: 80.8cqw;
  padding: 4.8cqw 2.4cqw 2.4cqw;
  border-radius: 6.3cqw;
  background: #F5F4F9;
  box-shadow: 0 0 0 1px #E9E8EE, 0 2.2cqw 4.6cqw -1.9cqw rgba(15, 23, 42, 0.3);
}
/* 펀치홀 카메라 */
.showcase__phone::before {
  content: "";
  position: absolute;
  top: 2.5cqw;
  left: 50%;
  transform: translateX(-50%);
  width: 2.2cqw;
  height: 2.2cqw;
  border-radius: 50%;
  background: #111;
}
.showcase__phone img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4cqw 4cqw 0 0;
  object-fit: fill;
}

.showcase__text {
  flex: 1 1 340px;
  min-width: 0;
  max-width: min(440px, 100%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.showcase__num {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--primary);
}

.showcase__text h3 {
  font-size: 28px;
  line-height: 1.358;
  letter-spacing: -0.0236em;
  font-weight: 700;
  word-break: keep-all;
}

.showcase__text p {
  font-size: 16px;
  line-height: 1.625;
  letter-spacing: 0.0057em;
  font-weight: 500;
  color: var(--ink-neutral);
  word-break: keep-all;
  text-wrap: pretty;
}

/* ── About ──────────────────────────────────────────── */
.about__inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.about__body {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about__body p {
  font-size: clamp(15px, 2.2vw, 16px);
  line-height: 1.68;
  letter-spacing: 0.0057em;
  font-weight: 500;
  color: var(--ink-neutral);
  word-break: keep-all;
  text-wrap: pretty;
}
.about__body strong { font-weight: 700; color: var(--ink); }

.chips {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.chip {
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--line-alt);
  border-radius: 999px;
  padding: 8px 15px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.0145em;
  color: var(--ink-neutral);
}

.caption {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.385;
  font-weight: 500;
  color: var(--ink-assistive);
}

/* ── FAQ ────────────────────────────────────────────── */
.faq__inner {
  max-width: 768px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.faq-list {
  margin-top: 32px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

details {
  background: var(--bg-alt);
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px var(--line-alt);
}

summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: clamp(16px, 2.5vw, 20px) clamp(18px, 3vw, 24px);
  list-style: none;
  cursor: pointer;
}
summary::-webkit-details-marker { display: none; }

summary span {
  font-size: clamp(15px, 2.4vw, 16.5px);
  line-height: 1.45;
  font-weight: 600;
  word-break: keep-all;
}

summary svg { flex-shrink: 0; transition: transform 0.2s ease; }
details[open] summary svg { transform: rotate(180deg); }

details p {
  padding: 0 clamp(18px, 3vw, 24px) clamp(16px, 2.5vw, 22px);
  font-size: clamp(14px, 2.2vw, 15px);
  line-height: 1.62;
  letter-spacing: 0.0096em;
  font-weight: 500;
  color: var(--ink-neutral);
  word-break: keep-all;
}

/* ── Contact ────────────────────────────────────────── */
.contact__inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.contact__inner > p {
  font-size: clamp(15px, 2.2vw, 16px);
  line-height: 1.65;
  letter-spacing: 0.0057em;
  font-weight: 500;
  color: var(--ink-neutral);
  word-break: keep-all;
}

.contact-email {
  margin-top: 10px;
  font-size: clamp(18px, 4.2vw, 26px);
  line-height: 1.4;
  letter-spacing: -0.0236em;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 2px solid var(--blue-90);
  padding-bottom: 2px;
}
.contact-email:hover { border-bottom-color: var(--primary); color: var(--primary-strong); }

/* ── Footer ─────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--line-alt);
  background: #fff;
  padding: clamp(40px, 6vw, 56px) clamp(16px, 5vw, 24px) clamp(44px, 7vw, 60px);
}

.site-footer__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 36px;
  flex-wrap: wrap;
}

.site-footer__brand { display: flex; flex-direction: column; gap: 10px; min-width: 0; max-width: 320px; }

.site-footer__logo {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.site-footer__slogan {
  font-size: 14px;
  line-height: 1.429;
  font-weight: 500;
  color: var(--ink-alt);
  word-break: keep-all;
}

.site-footer__copy {
  font-size: 12px;
  line-height: 1.334;
  font-weight: 500;
  color: var(--ink-assistive);
}

/* ── 정책 페이지 ─────────────────────────────────────── */
.policy-header { border-bottom: 1px solid var(--line-alt); background: #fff; }
.policy-header__inner {
  max-width: 720px;
  margin: 0 auto;
  height: 64px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.policy-header .logo { font-size: 19px; }
.policy-back {
  margin-left: auto;
  text-decoration: none;
  color: var(--ink-alt);
  font-size: 14px;
  font-weight: 600;
}
.policy-back:hover { color: var(--primary); }

.policy {
  max-width: 720px;
  margin: 0 auto;
  padding: 72px 24px 120px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.policy__head { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }

.policy h1 {
  font-size: 36px;
  line-height: 1.334;
  letter-spacing: -0.027em;
  font-weight: 700;
}

.policy__date { font-size: 13px; font-weight: 500; color: var(--ink-alt); }

.policy section { display: flex; flex-direction: column; gap: 10px; padding: 0; }

.policy h2 {
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.012em;
  font-weight: 700;
}

.policy p {
  font-size: 16px;
  line-height: 1.625;
  letter-spacing: 0.0057em;
  font-weight: 500;
  color: var(--ink-neutral);
  word-break: keep-all;
  text-wrap: pretty;
}

.policy-list {
  margin: 2px 0 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.policy-list li {
  font-size: 15px;
  line-height: 1.7;
  font-weight: 500;
  color: var(--ink-neutral);
  word-break: keep-all;
  text-wrap: pretty;
}
.policy-list li::marker { color: var(--ink-assistive); }

.policy__copy { font-size: 13px; font-weight: 500; color: var(--ink-assistive); }

/* ── Mobile ─────────────────────────────────────────── */
@media (max-width: 767px) {
  .site-header__inner {
    height: auto;
    flex-wrap: wrap;
    gap: 8px 14px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .site-nav { order: 3; flex-basis: 100%; margin-left: 0; gap: 14px; }
  .site-nav a { font-size: 13px; }
  .header-divider { display: none; }
  .lang-toggle { margin-left: auto; }

  .section { scroll-margin-top: 104px; }
  .policy { padding: 56px 16px 96px; }
  .policy-header__inner { padding: 0 16px; }

  .product-card { padding: 28px 18px; }
  .recommend { padding: 22px 20px; }

  .showcase { margin-top: 48px; gap: 64px; }
  .showcase__row, .showcase__row--reverse { gap: 32px; }
}

/* ─────────────────────────────────────────────────────
   v3: 회사 소개형 홈 (유틸리티 라인 + 라이프스타일 라인)
   ───────────────────────────────────────────────────── */

/* ── Products 드롭다운 ──────────────────────────────── */
.site-header__inner { position: relative; }

.nav-products {
  display: flex;
  align-items: center;
  gap: 5px;
  border: none;
  background: transparent;
  padding: 0;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.0145em;
  color: var(--ink-neutral);
  cursor: pointer;
}
.nav-products:hover { color: var(--primary); }
.nav-products svg { transition: transform 0.2s ease; }
.nav-products[aria-expanded="true"] { color: var(--primary); }
.nav-products[aria-expanded="true"] svg { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 24px;
  z-index: 10;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  max-width: min(800px, calc(100vw - 32px));
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 40px -8px rgba(23, 23, 25, 0.22), inset 0 0 0 1px var(--line-alt);
}
.nav-dropdown[hidden] { display: none; }

.nav-col { display: flex; flex-direction: column; gap: 8px; min-width: 200px; }

.nav-col__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  color: var(--ink-assistive);
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  text-decoration: none;
}
.nav-item:hover { background: rgb(250, 250, 251); }
.nav-item img { width: 28px; height: 28px; border-radius: 7px; border: 1px solid var(--line-alt); }
.nav-item > span { display: flex; flex-direction: column; }
.nav-item__name { font-size: 14px; font-weight: 600; color: var(--ink); }
.nav-item__type { font-size: 12px; font-weight: 500; color: var(--ink-alt); }

/* ── 아이콘 대체 마크 (이미지 아이콘이 없는 제품) ────── */
.app-mark {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
}
.app-mark--sm { width: 26px; height: 26px; border-radius: 7px; font-size: 11px; }
.app-mark--lg { width: 46px; height: 46px; border-radius: 12px; font-size: 18px; }

.app-mark--lol { background: linear-gradient(135deg, #ff4d8d, #3d69ff); }
.app-mark--skinping {
  background: #faf6f0;
  box-shadow: inset 0 0 0 1px rgba(33, 25, 19, 0.14);
}
.app-mark--skinping .drop {
  width: 11px;
  height: 14px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: linear-gradient(160deg, #c9ac72, #b5654c);
}
.app-mark--sm.app-mark--skinping .drop { width: 10px; height: 13px; }

/* ── Hero (홈) ──────────────────────────────────────── */
.hero--home {
  background: linear-gradient(180deg, rgb(247, 251, 255) 0%, #fff 70%);
}
.hero--home .hero__inner {
  max-width: 1160px;
  align-items: flex-start;
  text-align: left;
  gap: clamp(18px, 3vw, 26px);
}
.hero--home h1 {
  font-size: clamp(34px, 6.6vw, 64px);
  line-height: 1.22;
  letter-spacing: -0.034em;
  word-break: keep-all;
  text-wrap: balance;
}
.hero--home .hero__sub { max-width: 620px; }
.hero--home .hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--ink-alt);
}

/* 헤드라인 하이라이트 밑줄 */
.hl { position: relative; display: inline-block; }
.hl::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 0.16em;
  border-radius: 3px;
  transform-origin: left;
  animation: hl-underline 0.7s 0.3s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.hl--blue::after { background: rgba(47, 124, 246, 0.28); }
.hl--warm::after {
  background: linear-gradient(90deg, rgba(255, 77, 141, 0.32), rgba(201, 172, 114, 0.4));
  animation-delay: 0.55s;
}

@keyframes hl-underline { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes app-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes orb-drop { 0%, 100% { transform: scale(1) translateY(0); } 50% { transform: scale(1.06) translateY(-3px); } }
@keyframes card-shimmer { from { background-position: 0% 50%; } to { background-position: 200% 50%; } }

/* ── 제품 칩 (히어로 하단) ──────────────────────────── */
.app-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 14px;
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--line-alt);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  animation: app-float 5.2s ease-in-out infinite;
  transition: box-shadow 0.2s ease;
}
.app-chip:nth-child(2) { animation-delay: 0.5s; }
.app-chip:nth-child(3) { animation-delay: 1s; }
.app-chip:nth-child(4) { animation-delay: 1.5s; }
.app-chip:nth-child(5) { animation-delay: 2s; }
.app-chip:hover { box-shadow: inset 0 0 0 1.5px var(--primary); }
.app-chip img { width: 26px; height: 26px; border-radius: 7px; border: 1px solid var(--line-alt); }

.app-chip--skinping {
  background: #faf6f0;
  box-shadow: inset 0 0 0 1px rgba(33, 25, 19, 0.12);
  color: #211913;
}
.app-chip--skinping:hover { box-shadow: inset 0 0 0 1.5px #b5654c; }
.app-chip--skinping .app-mark--skinping { background: #fff; }

.app-chip--lol { background: #0d1020; box-shadow: none; color: #fff; }
.app-chip--lol:hover { box-shadow: inset 0 0 0 1.5px #ff4d8d; }

/* ── Hero (제품 상세 페이지) ────────────────────────── */
.hero--page { padding: clamp(56px, 8vw, 88px) clamp(16px, 5vw, 24px) clamp(48px, 6vw, 72px); }
.hero--page h1 { font-size: clamp(38px, 6vw, 60px); }

.btn--ghost {
  background: #fff;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line);
}
.btn--ghost:hover { background: var(--chip); filter: none; }

.section__sub {
  font-size: clamp(14.5px, 2.2vw, 16px);
  line-height: 1.6;
  font-weight: 500;
  color: var(--ink-neutral);
  word-break: keep-all;
}

/* ── Pillars ────────────────────────────────────────── */
.pillars__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.stats { display: flex; gap: clamp(24px, 4vw, 48px); }
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat__num {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.stat__label { font-size: 12.5px; font-weight: 600; color: var(--ink-alt); }

.pillar-grid {
  margin-top: clamp(32px, 5vw, 52px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(12px, 2vw, 20px);
}

.pillar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(22px, 3vw, 28px);
  border-radius: 20px;
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: inset 0 0 0 1px var(--line), 0 16px 36px -20px rgba(23, 23, 25, 0.25);
}
.pillar__num { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; color: var(--primary); }
.pillar__title { font-size: clamp(17px, 2.4vw, 19px); line-height: 1.4; font-weight: 700; letter-spacing: -0.012em; word-break: keep-all; }
.pillar__desc {
  font-size: 14.5px;
  line-height: 1.62;
  font-weight: 500;
  color: var(--ink-neutral);
  word-break: keep-all;
  text-wrap: pretty;
}

/* ── 유틸리티 카드 ──────────────────────────────────── */
.tool-grid {
  margin-top: clamp(28px, 4.5vw, 44px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(12px, 2vw, 20px);
}

.tool-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(22px, 3vw, 28px);
  border-radius: 22px;
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--line);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tool-card:not(.tool-card--static):hover {
  transform: translateY(-5px);
  box-shadow: inset 0 0 0 1.5px var(--primary), 0 20px 44px -22px rgba(23, 23, 25, 0.28);
}

.tool-card__head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.tool-card__head img { width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line-alt); }
.tool-card__title { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.tool-card__name { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); }
.tool-card__type { font-size: 12.5px; font-weight: 600; color: var(--ink-alt); }

.tool-card__badge {
  align-self: flex-start;
  padding: 4px 11px;
  border-radius: 999px;
  background: var(--blue-95);
  color: var(--primary-strong);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.tool-card__badge.badge--muted { background: var(--fill); color: var(--ink-neutral); }

.tool-card__one {
  font-size: 15.5px;
  line-height: 1.55;
  font-weight: 600;
  color: var(--ink);
  word-break: keep-all;
  text-wrap: pretty;
}

.tool-card__feats { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: auto; }
.tool-card__feats li {
  position: relative;
  padding-left: 12px;
  font-size: 13.5px;
  line-height: 1.55;
  font-weight: 500;
  color: var(--ink-neutral);
  word-break: keep-all;
}
.tool-card__feats li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--primary);
}

.tool-card__cta { font-size: 13.5px; font-weight: 700; color: var(--primary-strong); }
.tool-card--static .tool-card__cta { color: var(--ink-assistive); }

/* ── 라이프스타일 카드 ──────────────────────────────── */
.life-grid {
  margin-top: clamp(28px, 4.5vw, 44px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: clamp(14px, 2.2vw, 24px);
}

.life-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(26px, 4vw, 40px);
  border-radius: 26px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.life-card > * { position: relative; }
.life-card:hover { transform: translateY(-6px); }

.life-card__badges { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.life-card__badge {
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.life-card__brand { font-size: 14px; font-weight: 700; letter-spacing: 0.06em; }
.life-card__head { font-size: clamp(22px, 3.4vw, 30px); line-height: 1.4; font-weight: 700; word-break: keep-all; text-wrap: balance; }
.life-card__desc { font-size: 14.5px; line-height: 1.6; font-weight: 500; max-width: 42ch; word-break: keep-all; text-wrap: pretty; }
.life-card__cta { margin-top: auto; font-size: 14.5px; font-weight: 700; }

.life-card--skinping {
  background: #faf6f0;
  box-shadow: inset 0 0 0 1px rgba(33, 25, 19, 0.1);
}
.life-card--skinping:hover {
  box-shadow: inset 0 0 0 1px rgba(33, 25, 19, 0.16), 0 28px 56px -28px rgba(33, 25, 19, 0.35);
}
.life-card--skinping .life-card__badge { background: rgba(33, 25, 19, 0.07); color: #211913; }
.life-card--skinping .life-card__badge--sub { color: rgba(33, 25, 19, 0.65); }
.life-card--skinping .life-card__brand { color: #b5654c; }
.life-card--skinping .life-card__head { font-family: "Noto Serif KR", serif; color: #211913; max-width: 20ch; }
.life-card--skinping .life-card__desc { color: rgba(33, 25, 19, 0.72); }
.life-card--skinping .life-card__cta { color: #211913; }

.life-card__orb {
  position: absolute;
  right: clamp(20px, 4vw, 40px);
  top: clamp(20px, 4vw, 36px);
  width: clamp(44px, 6vw, 64px);
  height: clamp(56px, 7.6vw, 80px);
  border-radius: 50% 50% 50% 50% / 62% 62% 38% 38%;
  background: linear-gradient(160deg, rgba(201, 172, 114, 0.85), rgba(181, 101, 76, 0.9));
  box-shadow: inset -6px -8px 14px rgba(255, 255, 255, 0.35), 0 12px 24px -10px rgba(181, 101, 76, 0.4);
  animation: orb-drop 4.6s ease-in-out infinite;
}

.life-card--lol {
  background: #0d1020;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.life-card--lol:hover {
  box-shadow: inset 0 0 0 1px rgba(255, 77, 141, 0.4), 0 28px 56px -28px rgba(13, 16, 32, 0.7);
}
.life-card__shimmer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 77, 141, 0.16) 0%, rgba(61, 105, 255, 0.14) 45%, rgba(255, 77, 141, 0.16) 90%);
  background-size: 200% 200%;
  animation: card-shimmer 7s linear infinite;
}
.life-card--lol .life-card__badge { background: rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.85); }
.life-card--lol .life-card__badge--sub { color: rgba(255, 255, 255, 0.6); }
.life-card--lol .life-card__brand {
  background: linear-gradient(90deg, #ff4d8d, #3d69ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.life-card--lol .life-card__head { color: #fff; letter-spacing: -0.02em; }
.life-card--lol .life-card__desc { color: rgba(255, 255, 255, 0.66); }
.life-card--lol .life-card__cta { color: #fff; }

/* ── Footer 링크 컬럼 ───────────────────────────────── */
.site-footer__mail {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-neutral);
  text-decoration: none;
  overflow-wrap: anywhere;
}
.site-footer__mail:hover { color: var(--primary); }

.site-footer__cols { display: flex; gap: clamp(28px, 5vw, 64px); flex-wrap: wrap; }
.site-footer__col { display: flex; flex-direction: column; gap: 10px; }
.site-footer__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  color: var(--ink-assistive);
}
.site-footer__col a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-neutral);
  text-decoration: none;
  white-space: nowrap;
}
.site-footer__col a:hover { color: var(--primary); }

@media (max-width: 767px) {
  .nav-dropdown { right: 16px; left: 16px; max-width: none; }
  .nav-col { min-width: 0; }

}

@media (prefers-reduced-motion: reduce) {
  .hl::after, .app-chip, .life-card__orb, .life-card__shimmer { animation: none; }
  .hl::after { transform: scaleX(1); }
}

/* ─────────────────────────────────────────────────────
   앱 랜딩 (슥캔 등 제품 단독 페이지)
   ───────────────────────────────────────────────────── */
.app-id { display: flex; align-items: center; gap: 8px; min-width: 0; }
.app-id img { width: 24px; height: 24px; border-radius: 6px; border: 1px solid var(--line-alt); }
.app-id__name { font-size: 15px; font-weight: 700; letter-spacing: -0.01em; white-space: nowrap; }

.app-hero {
  background: linear-gradient(180deg, rgb(239, 246, 255) 0%, #fff 88%);
  padding: clamp(56px, 9vw, 96px) clamp(16px, 5vw, 24px) clamp(56px, 8vw, 88px);
}

.app-hero__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 6vw, 80px);
  flex-wrap: wrap;
}

.app-hero__col {
  flex: 1 1 340px;
  max-width: 560px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

/* 히어로에 기기 이미지가 없으면 한 단으로 가운데 정렬한다 */
.app-hero__col:only-child {
  max-width: 720px;
  align-items: center;
  text-align: center;
}
.app-hero__col:only-child .store-buttons,
.app-hero__col:only-child .trust-chips { justify-content: center; }

.app-hero__id { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.app-hero__id > img { width: 52px; height: 52px; border-radius: 13px; border: 1px solid var(--line-neutral); background: #fff; }
.app-hero__meta { display: flex; flex-direction: column; gap: 2px; }
.app-hero__name { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; }
.app-hero__type { font-size: 12px; font-weight: 600; letter-spacing: 0.03em; color: var(--ink-alt); }
.app-hero__badge {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--blue-95);
  color: var(--primary-strong);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.app-hero h1 {
  font-size: clamp(34px, 6.4vw, 58px);
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-weight: 700;
  word-break: keep-all;
  text-wrap: balance;
}
.app-hero h1 .grad {
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.app-hero__sub {
  font-size: clamp(15px, 2.2vw, 18px);
  line-height: 1.65;
  font-weight: 500;
  color: var(--ink-neutral);
  word-break: keep-all;
  text-wrap: pretty;
}

.trust-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.trust-chip {
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: inset 0 0 0 1px var(--line-alt);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-neutral);
  white-space: nowrap;
}


/* 기능 카드 */
.feature-grid {
  margin-top: clamp(28px, 4.5vw, 44px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(12px, 2vw, 20px);
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(22px, 3vw, 28px);
  border-radius: 20px;
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: inset 0 0 0 1.5px rgb(59, 130, 246), 0 16px 36px -20px rgba(29, 78, 216, 0.3);
}
.feature-card__glyph {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--blue-95);
  color: var(--primary-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
}
.feature-card__title { font-size: 17px; line-height: 1.4; font-weight: 700; letter-spacing: -0.01em; word-break: keep-all; }
.feature-card__desc {
  font-size: 14.5px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--ink-neutral);
  word-break: keep-all;
  text-wrap: pretty;
}

/* 스크린샷 가로 스크롤 */
.section--bleed { padding-left: 0; padding-right: 0; }
.section--bleed > .container { padding: 0 clamp(16px, 5vw, 24px); }

.screens {
  margin-top: clamp(28px, 4.5vw, 44px);
  display: flex;
  gap: clamp(14px, 2vw, 24px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px clamp(16px, 5vw, 24px) 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.screens::-webkit-scrollbar { display: none; }
.screens::after { content: ""; flex: 0 0 clamp(4px, 3vw, 12px); }

.screen {
  flex: 0 0 min(240px, 68vw);
  min-width: 0;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.screen__frame { padding: 8px; border-radius: 28px; background: var(--dark-btn); }
.screen__frame > div, .screen__frame img { border-radius: 21px; }
.screen__frame img { width: 100%; height: auto; aspect-ratio: 9 / 19; object-fit: cover; background: #0b0d12; }
.screen__text { display: flex; flex-direction: column; gap: 4px; padding: 0 4px; }
.screen__num { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; color: var(--primary-strong); }
.screen__title { font-size: 16px; line-height: 1.4; font-weight: 700; letter-spacing: -0.01em; word-break: keep-all; }
.screen__desc {
  font-size: 13.5px;
  line-height: 1.55;
  font-weight: 500;
  color: var(--ink-neutral);
  word-break: keep-all;
  text-wrap: pretty;
}

/* 다른 앱 카드 */
.more-grid {
  margin-top: clamp(24px, 4vw, 36px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: clamp(12px, 2vw, 16px);
}

.more-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--line);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.more-card:hover { transform: translateY(-3px); box-shadow: inset 0 0 0 1.5px var(--primary); }
.more-card img { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--line-alt); flex-shrink: 0; }
.more-card__text { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.more-card__name { font-size: 14.5px; font-weight: 700; color: var(--ink); }
.more-card__desc { font-size: 12.5px; font-weight: 500; color: var(--ink-alt); word-break: keep-all; }

.app-mark--md { width: 38px; height: 38px; border-radius: 10px; font-size: 14px; }
.app-mark--md.app-mark--skinping .drop { width: 13px; height: 17px; }

.more-card--skinping {
  background: #faf6f0;
  box-shadow: inset 0 0 0 1px rgba(33, 25, 19, 0.1);
}
.more-card--skinping:hover { box-shadow: inset 0 0 0 1.5px #b5654c; }
.more-card--skinping .app-mark--skinping { background: #fff; }
.more-card--skinping .more-card__name { color: #211913; }
.more-card--skinping .more-card__desc { color: rgba(33, 25, 19, 0.62); }

.more-card--lol {
  background: #0d1020;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.more-card--lol:hover { box-shadow: inset 0 0 0 1.5px #ff4d8d; }
.more-card--lol .more-card__name { color: #fff; }
.more-card--lol .more-card__desc { color: rgba(255, 255, 255, 0.6); }

/* 앱 랜딩 푸터 */
.site-footer__logo { display: flex; align-items: center; gap: 8px; }
.site-footer__logo img { width: 22px; height: 22px; border-radius: 6px; border: 1px solid var(--line-alt); }
.site-footer__by { font-size: 13px; font-weight: 600; color: var(--ink-alt); }

.site-footer__inline { display: flex; align-items: center; gap: 10px 20px; flex-wrap: wrap; }
.site-footer__inline a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-neutral);
  text-decoration: none;
  white-space: nowrap;
}
.site-footer__inline a:hover { color: var(--primary); }

@media (max-width: 767px) {
  .app-hero__inner { gap: 32px; }
  .app-id { display: none; }
}

/* 온글 랜딩 변형 */
.app-hero--ongle { background: linear-gradient(180deg, rgb(240, 245, 255) 0%, #fff 88%); }
.app-hero--ongle h1 .grad { background: linear-gradient(90deg, #3366ff, #60a5fa); -webkit-background-clip: text; background-clip: text; }
.app-hero__badge--muted { background: var(--fill); color: var(--ink-neutral); }

.theme-ongle .eyebrow,
.theme-ongle .screen__num,
.theme-ongle .feature-card__glyph { color: rgb(51, 102, 255); }
.theme-ongle .feature-card:hover {
  box-shadow: inset 0 0 0 1.5px rgb(96, 165, 250), 0 16px 36px -20px rgba(29, 78, 216, 0.3);
}
.theme-ongle .more-card:hover { box-shadow: inset 0 0 0 1.5px rgb(51, 102, 255); }
.theme-ongle .more-card--skinping:hover { box-shadow: inset 0 0 0 1.5px #b5654c; }
.theme-ongle .more-card--lol:hover { box-shadow: inset 0 0 0 1.5px #ff4d8d; }

.site-footer__inner--stack { flex-direction: column; gap: 20px; }
.site-footer__row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
  flex-wrap: wrap;
}
.site-footer__disclaimer {
  max-width: 74ch;
  font-size: 11.5px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--ink-assistive);
  word-break: keep-all;
}

/* ── 몽글 (라이프스타일 3번째) ──────────────────────── */
.app-mark--mongle {
  background: linear-gradient(160deg, #ffd8ca, #ffb199);
  box-shadow: inset 0 0 0 1px rgba(51, 41, 43, 0.1);
}
.app-mark--mongle .blob {
  width: 12px;
  height: 12px;
  border-radius: 50% 50% 46% 46%;
  background: #db8365;
}
.app-mark--sm.app-mark--mongle .blob { width: 11px; height: 11px; }
.app-mark--md.app-mark--mongle .blob { width: 16px; height: 16px; }

.app-chip--mongle {
  background: #fffbf5;
  box-shadow: inset 0 0 0 1px rgba(51, 41, 43, 0.12);
  color: #33292b;
}
.app-chip--mongle:hover { box-shadow: inset 0 0 0 1.5px #db8365; }

.life-card--mongle {
  background: linear-gradient(150deg, #fffbf5 0%, #ffeee6 60%, #f3e6fd 100%);
  box-shadow: inset 0 0 0 1px rgba(51, 41, 43, 0.1);
}
.life-card--mongle:hover {
  box-shadow: inset 0 0 0 1px rgba(51, 41, 43, 0.16), 0 28px 56px -28px rgba(51, 41, 43, 0.3);
}
.life-card--mongle .life-card__badge { background: rgba(51, 41, 43, 0.07); color: #33292b; }
.life-card--mongle .life-card__brand { color: #b44a25; }
.life-card--mongle .life-card__head { color: #33292b; }
.life-card--mongle .life-card__desc { color: rgba(51, 41, 43, 0.72); }
.life-card--mongle .life-card__cta { color: #33292b; }

.life-card__mongles {
  position: absolute;
  right: clamp(16px, 3vw, 28px);
  top: clamp(16px, 3vw, 24px);
  display: flex;
  align-items: flex-end;
  gap: 2px;
  opacity: 0.95;
  pointer-events: none;
}
.life-card__mongles svg { display: block; }

@media (max-width: 767px) {
  .life-card__mongles { position: static; margin-bottom: 4px; }
}


/* ── 게임 라인 (스도쿠 보야지) ──────────────────────── */
.app-mark--sudoku {
  background: #2c6e63;
  box-shadow: inset 0 0 0 1px rgba(23, 43, 39, 0.2);
}
.app-mark--sudoku .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 2px;
  width: 16px;
  height: 16px;
}
.app-mark--sudoku .grid i { border-radius: 1.5px; background: rgba(250, 246, 239, 0.9); }
.app-mark--sudoku .grid i:nth-child(2n) { background: rgba(250, 246, 239, 0.35); }
.app-mark--sudoku .grid i:nth-child(5) { background: #d9772b; }
.app-mark--sm.app-mark--sudoku .grid { width: 14px; height: 14px; }
.app-mark--md.app-mark--sudoku .grid { width: 21px; height: 21px; }

/* 사각사각 — 크림 종이 위 잉크 분할 */
.app-mark--sagak {
  background: #fbf9f1;
  box-shadow: inset 0 0 0 1px rgba(16, 15, 15, 0.16);
}
.app-mark--sagak .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 1.5px;
  width: 16px;
  height: 16px;
}
.app-mark--sagak .grid i { background: #fbf9f1; box-shadow: inset 0 0 0 1px #100f0f; }
.app-mark--sagak .grid i:nth-child(1) { grid-area: 1 / 1 / 2 / 3; background: #af3029; }
.app-mark--sagak .grid i:nth-child(2) { grid-area: 1 / 3 / 3 / 4; background: #205ea6; }
.app-mark--sagak .grid i:nth-child(3) { grid-area: 2 / 1 / 4 / 2; background: #ad8301; }
.app-mark--sagak .grid i:nth-child(4) { grid-area: 2 / 2 / 3 / 3; }
.app-mark--sagak .grid i:nth-child(5) { grid-area: 3 / 2 / 4 / 4; background: #66800b; }
.app-mark--sm.app-mark--sagak .grid { width: 14px; height: 14px; }
.app-mark--md.app-mark--sagak .grid { width: 21px; height: 21px; }

.app-chip--sudoku {
  background: #f6faf8;
  box-shadow: inset 0 0 0 1px rgba(44, 110, 99, 0.16);
}

.game-card {
  margin-top: clamp(28px, 4.5vw, 44px); /* .tool-grid / .life-grid 와 동일 */
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 4.5vw, 56px);
  padding: clamp(26px, 4vw, 40px);
  border-radius: 26px;
  background: linear-gradient(135deg, #faf6ef 0%, #f1ece1 100%);
  box-shadow: inset 0 0 0 1px rgba(31, 41, 51, 0.08);
  color: var(--ink-normal);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.game-card:hover {
  transform: translateY(-3px);
  box-shadow: inset 0 0 0 1px rgba(31, 41, 51, 0.12), 0 18px 44px -12px rgba(31, 41, 51, 0.3);
}

/* 사각사각 카드 아트 — 시카쿠 분할 (5×5) */
.game-card + .game-card { margin-top: clamp(16px, 2.4vw, 22px); }
.game-card__board.game-card__board--sagak {
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr);
  background: #fdfaf3;
}
.game-card__board.game-card__board--sagak i {
  aspect-ratio: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 7px 8px;
  border: 1.5px solid var(--sg-ink);
  border-radius: 2px;
  background: color-mix(in srgb, var(--sg-ink) 22%, transparent);
  color: var(--sg-ink);
  font-family: Manrope, var(--font-sans, sans-serif);
  font-size: clamp(13px, 1.8vw, 18px);
  font-style: normal;
  font-weight: 700;
}

.game-card__board {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  aspect-ratio: 1;
  border: 1.5px solid rgba(31, 41, 51, 0.5);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 30px -10px rgba(31, 41, 51, 0.35);
}
.game-card__board i {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  font-family: Manrope, var(--font-sans, sans-serif);
  font-size: clamp(9px, 1.2vw, 13px);
  font-style: normal;
  font-weight: 600;
  color: rgba(31, 41, 51, 0.25);
  border-right: 1px solid rgba(31, 41, 51, 0.11);
  border-bottom: 1px solid rgba(31, 41, 51, 0.11);
}
.game-card__board i.is-given { color: #1f2933; }
.game-card__board i:nth-child(9n) { border-right: none; }
.game-card__board i:nth-child(3n):not(:nth-child(9n)) { border-right: 1.5px solid rgba(31, 41, 51, 0.5); }
.game-card__board i:nth-child(n + 73) { border-bottom: none; }
.game-card__board i:nth-child(n + 25):nth-child(-n + 27),
.game-card__board i:nth-child(n + 52):nth-child(-n + 54) { border-bottom: 1.5px solid rgba(31, 41, 51, 0.5); }

.game-card__body { display: flex; flex-direction: column; gap: 10px; }
.game-card__badges { display: flex; flex-wrap: wrap; gap: 6px; }
.game-card__badge {
  padding: 4px 11px;
  border-radius: 999px;
  background: rgba(44, 110, 99, 0.12);
  color: #1f5249;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.game-card__brand { font-size: 14px; font-weight: 700; letter-spacing: 0.06em; color: #2c6e63; }
.game-card__head {
  font-size: clamp(22px, 3.4vw, 30px);
  font-weight: 700;
  line-height: 1.4;
  word-break: keep-all;
  text-wrap: balance;
}
.game-card__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-alternative);
  word-break: keep-all;
}
.game-card__feats { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.game-card__feat {
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(31, 41, 51, 0.72);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  padding: 5px 11px;
  box-shadow: inset 0 0 0 1px rgba(31, 41, 51, 0.08);
}
.game-card__cta { margin-top: 8px; font-size: 14px; font-weight: 700; color: #2c6e63; }

@media (max-width: 760px) {
  .game-card { grid-template-columns: 1fr; }
  .game-card__board { max-width: 320px; margin: 0 auto; }
}
