@charset "utf-8";

/* ==========================================================================
   비드캐치 — 04.시작하기 (Figma node 501:1672)
   데스크톱 전용. 모바일/태블릿 반응형 없음.
   배경(GNB · 히어로 · 푸터 등)은 뷰포트 폭 100%로 펼치고,
   내용 폭은 디자인과 동일하게 1440 기준(내용 1200 / FAQ·클로징 960)으로 중앙 고정.
   1440보다 좁은 화면은 기존과 같이 가로 스크롤.
   근거: WIKI-BC-0093(디자인 시스템 v12),
         WIKI-BC-0113 제약 9번 "모바일/반응형 디자인을 임의로 생성하지 않는다"
   토큰 / GNB / Footer / btn-primary 는 01.Main · 02.활용사례 style.css 와 동일 정의
   (의도적 복제, 각 페이지가 독립 실행 가능해야 하므로 import 하지 않음)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. 폰트 — Pretendard (WIKI-BC-0093 §3)
   -------------------------------------------------------------------------- */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable-dynamic-subset.css");

/* --------------------------------------------------------------------------
   2. 토큰 (WIKI-BC-0093 §2 · §5)
   -------------------------------------------------------------------------- */
:root {
  /* Brand */
  --brand-50: #eff6ff;
  --brand-100: #dbeafe;
  --brand-300: #c7d2fe;
  --brand-primary: #2563eb;
  --brand-700: #1d4ed8;

  /* Indigo */
  --indigo-50: #eef2ff;
  --indigo-400: #818cf8;
  --indigo-600: #4f46e5;
  --indigo-700: #4338ca;

  /* Semantic */
  --category-fg: #7e22ce;
  --category-bg: #f3e8ff;

  /* Text */
  --text-heading: #1e293b;
  --text-body: #64748b;
  --text-body-strong: #475569;
  --text-muted: #94a3b8;
  --text-feature: #5b6474;      /* feature-box 본문 */
  --text-ink-secondary: #3e3f3f;
  --text-disabled: #cbd5e1;

  /* Border / Surface */
  --border-default: #e2e8f0;
  --border-strong: #cbd5e1;
  --bg-page: #f8fafc;
  --bg-subtle: #f1f5f9;
  --surface-card: #ffffff;
  --surface-mock: #fbfcfe;      /* mock 좌측 패널 */
  --footer-bg: #0f172a;

  /* Elevation */
  --shadow-window: 0 18px 44px -8px rgba(15, 23, 41, 0.14);
  --shadow-card: 0 4px 10px 0 rgba(0, 0, 0, 0.05);
  --shadow-cta: 0 6px 16px -2px rgba(37, 99, 235, 0.28);

  /* Spacing (§9) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;

  /* Layout */
  --page-width: 1440px;
  --gutter: 120px;
  --gutter-closing: 240px;

  /* 풀블리드 — 배경은 화면 끝까지, 내용은 1440 중앙 정렬.
     화면이 1440보다 넓으면 남는 폭을 좌우 여백으로 흡수한다. */
  --pad-x: max(
    var(--gutter),
    calc((100% - var(--page-width)) / 2 + var(--gutter))
  );
  --pad-x-closing: max(
    var(--gutter-closing),
    calc((100% - var(--page-width)) / 2 + var(--gutter-closing))
  );
}

/* --------------------------------------------------------------------------
   3. Reset
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Pretendard Variable", Pretendard, -apple-system,
    BlinkMacSystemFont, sans-serif;
  background: var(--bg-page);
  color: var(--text-heading);
}

h1,
h2,
h3,
p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   4. 페이지 셸 — 배경은 뷰포트 100%, 내용 폭은 1440 기준 유지
   -------------------------------------------------------------------------- */
.page {
  width: 100%;
  min-width: var(--page-width);
  overflow: hidden;
}

/* 재사용 — 뱃지 (block-label) */
.block-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 14px;
  border-radius: 9999px;
  background: var(--indigo-50);
  color: var(--brand-primary);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.35px;
  white-space: nowrap;
}

/* 히어로용 — 흰 배경 + 테두리 변형 (512:2117) */
.block-label--outline {
  height: auto;
  padding: 7px 14px;
  background: #fff;
  border: 1px solid var(--brand-300);
  font-weight: 600;
}

/* 재사용 — CTA 버튼 (필형) */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 30px;
  border-radius: 9999px;
  background: var(--brand-primary);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.4px;
  white-space: nowrap;
  box-shadow: var(--shadow-cta);
}

/* 클로징 그라디언트 위 — 흰 버튼 (515:4607) */
.btn-primary--on-gradient {
  background: #fff;
  color: var(--indigo-700);
}

/* 재사용 — 고스트 버튼 (512:2413 / 503:1858) */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border: 1px solid var(--border-strong);
  border-radius: 9999px;
  color: var(--text-heading);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.4px;
  white-space: nowrap;
}

/* 재사용 — chip (필형 소형 라벨). 색 변형만 modifier 로 둔다 */
.chip {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 6px 13px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.325px;
  white-space: nowrap;
}

.chip--indigo {
  background: var(--indigo-50);
  color: var(--brand-primary);
  font-size: 14px;
  letter-spacing: -0.35px;
}

.chip--brand {
  background: var(--brand-50);
  color: var(--brand-primary);
}

.chip--brand-sm {
  padding: 4px 10px;
  background: var(--brand-50);
  color: var(--brand-primary);
  font-size: 12px;
  letter-spacing: -0.3px;
}

.chip--slate {
  background: var(--bg-subtle);
  color: var(--text-body-strong);
}

/* 판정 chip — 선택 / 비선택 (503:1746 · 503:1748) */
.chip--sel {
  background: var(--indigo-700);
  color: #fff;
  font-size: 12px;
  letter-spacing: -0.3px;
}

.chip--mute {
  background: var(--bg-subtle);
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: -0.3px;
}

/* deep-box 안의 흰 chip (512:2409 · 503:1854) */
.chip--white,
.chip--white-indigo {
  padding: 5px 12px;
  background: #fff;
  font-size: 12px;
  letter-spacing: -0.3px;
}

.chip--white {
  color: var(--brand-primary);
}

.chip--white-indigo {
  color: var(--indigo-700);
}

/* 재사용 — 섹션 헤드 (503:1703 · 512:2230 · 512:2254) */
.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  overflow: hidden;
}

.section-head__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -1px;
  color: var(--text-heading);
  text-align: center;
  white-space: nowrap;
}

.section-head__accent {
  color: var(--brand-primary);
}

/* --------------------------------------------------------------------------
   5. GNB — Intro/GNB (501:1673) · 01.Main과 동일
   -------------------------------------------------------------------------- */
.gnb {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 var(--pad-x);
  background: var(--surface-card);
  border-bottom: 1px solid var(--border-default);
}

.gnb__left {
  display: flex;
  align-items: center;
  gap: var(--space-10);
}

.gnb__logo {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.55px;
  color: var(--text-heading);
  white-space: nowrap;
}

.gnb__nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.gnb__nav a {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.375px;
  color: var(--text-body-strong);
  white-space: nowrap;
}

.gnb__item {
  position: relative;
}

.gnb__dropdown {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 390px;
  padding: var(--space-3) var(--space-3) calc(var(--space-3) + 12px);
  margin-top: 12px;
  background: var(--surface-card);
  border: 1px solid var(--border-default);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  z-index: 20;
  transition: opacity 0.15s ease, visibility 0s linear 0.6s;
}

.gnb__item:hover .gnb__dropdown {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.15s ease;
}

.gnb__ddrow {
  display: block;
  padding: var(--space-3);
  border-radius: 12px;
}

.gnb__ddrow:hover {
  background: var(--bg-subtle);
}

.gnb__ddtitle {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-heading);
}

.gnb__dddesc {
  margin-top: 2px;
  font-size: 13px;
  color: var(--text-body);
}

.gnb__right {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.gnb__btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.375px;
  white-space: nowrap;
}

.gnb__btn--ghost {
  border: 1px solid rgba(204, 204, 204, 0.8);
  color: var(--text-ink-secondary);
}

.gnb__btn--primary {
  background: var(--brand-primary);
  color: #fff;
}

.badge-soon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  padding: 0 10px;
  border-radius: 9999px;
  background: var(--bg-subtle);
  color: var(--text-body);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.3px;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   6. Hero — section-hero (512:2116)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  padding: 96px var(--pad-x);
  background: var(--bg-page);
  overflow: hidden;
}

/* 배경 글로우 — 512:2121 / 2122 / 2123
   원본은 blur 포함 SVG. 좌표는 프레임 기준이므로 inset 보정값 포함.
   --frame-left = 화면 중앙에 놓인 1440 프레임의 왼쪽 모서리 위치. */
.hero__glow {
  --frame-left: max(0px, calc((100% - var(--page-width)) / 2));
  position: absolute;
  pointer-events: none;
  user-select: none;
}

.hero__glow--1 {
  left: calc(var(--frame-left) - 100px);
  top: -330px;
  width: 957px;
  height: 631px;
}

.hero__glow--2 {
  left: calc(var(--frame-left) + 920px);
  top: -40px;
  width: 675px;
  height: 571px;
}

.hero__glow--3 {
  left: calc(var(--frame-left) - 320px);
  top: -100px;
  width: 667px;
  height: 564px;
}

/* hero-cta (512:2124) — 폭 524 고정 */
.hero__cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 21px;
  width: 524px;
  padding-top: 14px;
}

.hero__headline {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -1px;
  color: var(--text-heading);
  text-align: center;
  white-space: nowrap;
}

.hero__subcopy {
  width: 100%;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.425px;
  color: var(--text-body-strong);
  text-align: center;
}

/* --------------------------------------------------------------------------
   7. mock-window (512:2148) — 히어로 하단 제품 목업
   -------------------------------------------------------------------------- */
.mock {
  position: relative;
  width: 1100px;
  border: 1px solid var(--border-default);
  border-radius: 12px;
  background: var(--surface-card);
  box-shadow: var(--shadow-window);
  overflow: hidden;
}

.mock__topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--bg-page);
}

.mock__dot {
  width: 10px;
  height: 10px;
}

.mock__body {
  display: flex;
  align-items: stretch;
}

.mock__caption {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.325px;
  color: var(--text-muted);
  white-space: nowrap;
}

/* 좌 — auto-filled (512:2154) */
.autofill {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 440px;
  flex-shrink: 0;
  padding: 24px 28px;
  background: var(--surface-mock);
  overflow: hidden;
}

.autofill__bizno {
  display: flex;
  align-items: center;
  padding: 13px 16px;
  border: 2px solid var(--brand-primary);
  border-radius: 12px;
  background: var(--brand-50);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.4px;
  color: var(--text-heading);
}

.autofill__row {
  display: flex;
  align-items: center;
  padding: 11px 12px 11px 16px;
  border-radius: 12px;
  background: var(--bg-page);
}

.autofill__key {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.35px;
  color: var(--text-body);
  white-space: nowrap;
}

.autofill__gap {
  width: 10px;
  flex-shrink: 0;
}

/* 값 pill (512:2161) — 흰 배경 + 테두리 */
.pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border: 1px solid var(--border-default);
  border-radius: 9999px;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.325px;
  color: var(--text-body-strong);
  white-space: nowrap;
}

/* 우 — judge (512:2178) */
.judge {
  display: flex;
  flex: 1 0 0;
  min-width: 0;
  flex-direction: column;
  gap: 10px;
  padding: 24px 28px;
  overflow: hidden;
}

.judge__notice {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 18px;
  border: 1px solid var(--border-default);
  border-radius: 12px;
  background: #fff;
}

/* 첫 카드 — 강조 상태 (512:2180) */
.judge__notice--active {
  border: 2px solid var(--brand-primary);
}

.judge__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.35px;
  color: var(--text-heading);
  white-space: nowrap;
}

.judge__meta {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.325px;
  color: var(--text-muted);
  white-space: nowrap;
}

.judge__ox {
  display: flex;
  gap: var(--space-2);
}

.ox {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 9999px;
  background: var(--bg-subtle);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.325px;
  color: var(--text-body);
  white-space: nowrap;
}

.ox--on {
  background: var(--brand-primary);
  color: #fff;
}

/* --------------------------------------------------------------------------
   8. Band — section-band (501:1691)
   -------------------------------------------------------------------------- */
.band {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 120px var(--pad-x);
  background: var(--surface-card);
  text-align: center;
}

.band__headline {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -1px;
  color: var(--text-heading);
  white-space: nowrap;
}

.band__accent {
  color: var(--brand-primary);
}

.band__sub {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.45px;
  color: var(--text-body);
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   9. 무엇이 달라지나 — section-changes (501:1692)
   -------------------------------------------------------------------------- */
.changes {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  padding: 40px var(--pad-x) 120px;
  background: var(--bg-page);
}

.grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.grid__row {
  display: flex;
  align-items: stretch;
  gap: 20px;
  width: 100%;
}

/* feature-box (503:1709 / 1728 / 1739 / 1757) */
.feature {
  display: flex;
  flex: 1 0 0;
  min-width: 0;
  flex-direction: column;
  gap: 14px;
  padding: 36px;
  border-radius: 12px;
  overflow: hidden;
}

.feature--blue   { background: var(--brand-50); }
.feature--indigo { background: var(--indigo-50); }
.feature--purple { background: var(--category-bg); }
.feature--slate  { background: var(--bg-subtle); }

.feature__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.65px;
  color: var(--text-heading);
  white-space: nowrap;
}

.feature__desc {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.4px;
  color: var(--text-feature);
}

.feature__visual {
  display: flex;
  flex-direction: column;
  padding: 18px 20px;
  border: 1px solid #fff;
  border-radius: 12px;
  background: #fff;
}

.feature__visual--rows     { gap: 20px; }
.feature__visual--options,
.feature__visual--cards,
.feature__visual--keywords { gap: var(--space-2); }

/* key–value 행 (503:1713) */
.kv {
  display: flex;
  align-items: center;
  width: 100%;
}

.kv__key {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.35px;
  color: var(--text-body);
  white-space: nowrap;
}

.kv__gap {
  width: 10px;
  flex-shrink: 0;
}

/* 출발점 옵션 (503:1732) */
.opt {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--bg-subtle);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.35px;
  color: var(--text-disabled);
  white-space: nowrap;
}

.opt--on {
  background: var(--brand-primary);
  color: #fff;
  font-weight: 600;
}

/* 판정 미니 카드 (503:1743) */
.mini {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-default);
  border-radius: 12px;
  background: #fff;
}

.mini--active {
  border: 2px solid var(--indigo-700);
}

.mini__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.35px;
  color: var(--text-heading);
  white-space: nowrap;
}

.mini__ox {
  display: flex;
  gap: 6px;
}

/* 키워드 + 예상 건수 (503:1761 · 503:1768) */
.keywords {
  display: flex;
  gap: 6px;
}

.estimate {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--bg-page);
}

.estimate__key {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.35px;
  color: var(--text-body);
  white-space: nowrap;
}

.estimate__gap {
  width: 10px;
  flex-shrink: 0;
}

.estimate__value {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.375px;
  color: var(--brand-primary);
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   10. deep 섹션 — section-deep-01 (501:1693) / -02 (501:1694)
   -------------------------------------------------------------------------- */
.deep {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-page);
}

.deep--01 { padding: 0 var(--pad-x) 20px; }
.deep--02 { padding: 20px var(--pad-x) 120px; }

.deep__box {
  display: flex;
  align-items: center;
  gap: var(--space-10);
  width: 100%;
  padding: 56px;
  border-radius: 12px;
  overflow: hidden;
}

.deep__box--blue {
  background: linear-gradient(159.07deg, #eef2ff 0%, #ffffff 100%);
}

.deep__box--purple {
  border: 1px solid var(--brand-100);
  background: linear-gradient(156.25deg, #f3e8ff 0%, #ffffff 100%);
}

.deep__copy {
  display: flex;
  flex: 1 0 0;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  overflow: hidden;
}

.deep__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -1px;
  color: var(--text-heading);
  white-space: nowrap;
}

.deep__desc {
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.4px;
  color: var(--text-muted);
}

.deep__desc--dark {
  color: var(--text-feature);
}

/* 우측 카드 (503:1828 · 503:1860) */
.deep__visual {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 520px;
  flex-shrink: 0;
  padding: 24px;
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-window);
}

.deep__visual--bordered {
  border: 1px solid var(--brand-100);
}

.deep__caption {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.3px;
  color: var(--text-body);
  white-space: nowrap;
}

.deep__field {
  display: flex;
  align-items: center;
  padding: 13px 16px;
  border: 2px solid var(--brand-primary);
  border-radius: 12px;
  background: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.4px;
  color: var(--text-heading);
}

.deep__row {
  display: flex;
  align-items: center;
  padding: 10px 12px 10px 16px;
  border-radius: 12px;
}

.deep__key {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.35px;
  color: var(--text-muted);
  white-space: nowrap;
}

.deep__gap {
  width: 10px;
  flex-shrink: 0;
}

/* 판정 카드 (503:1861) */
.pick {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 13px 16px;
  border: 1px solid var(--border-default);
  border-radius: 12px;
  background: #fff;
}

.pick--active {
  border: 2px solid var(--indigo-700);
}

.pick__title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.375px;
  color: var(--text-heading);
  white-space: nowrap;
}

.pick__meta {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.325px;
  color: var(--text-muted);
  white-space: nowrap;
}

.pick__ox {
  display: flex;
  gap: 6px;
}

/* --------------------------------------------------------------------------
   11. 짚어둘 것 — section-notes (512:2229)
   -------------------------------------------------------------------------- */
.notes {
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
  padding: 70px 0;
  background: var(--surface-card);
}

.notes__head {
  width: 100%;
  padding: 0 var(--pad-x);
}

.notes__grid {
  display: flex;
  align-items: stretch;
  gap: 20px;
  width: 100%;
  padding: 15px var(--pad-x);
  overflow: hidden;
}

.note {
  display: flex;
  flex: 1 0 0;
  min-width: 0;
  flex-direction: column;
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--border-default);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.note__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 11px;
  background: var(--indigo-50);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.4px;
  color: var(--text-body);
}

.note__txt {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.note__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.45px;
  color: var(--text-heading);
}

.note__desc {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.375px;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   12. FAQ — section-faq (512:2253)
   -------------------------------------------------------------------------- */
.faq {
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
  padding: 70px var(--pad-x);
  background: var(--bg-page);
}

.faq .section-head {
  width: 100%;
}

/* faq-list 는 1200 안에서 좌우 120 을 더 물린다 → 내용 폭 960 */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding: 0 var(--gutter);
}

.faq__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-6);
  width: 100%;
  padding: 28px 32px;
  border: 1px solid var(--border-default);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.faq__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--brand-50);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.35px;
  color: var(--brand-primary);
}

.faq__txt {
  display: flex;
  flex: 1 0 0;
  min-width: 0;
  flex-direction: column;
  gap: 10px;
}

.faq__q {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.45px;
  color: var(--text-heading);
  white-space: nowrap;
}

.faq__a {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.375px;
  color: var(--text-body);
}

/* --------------------------------------------------------------------------
   13. Closing — section-closing (512:2280)
   -------------------------------------------------------------------------- */
.closing {
  display: flex;
  flex-direction: column;
  padding: 0 var(--pad-x-closing) 70px;
  background: var(--bg-page);
}

.closing__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 100%;
  padding: 64px;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    #d1d9fb 0%,
    #b6bef9 56.893%,
    #bcb7f5 100%
  );
  overflow: hidden;
}

.closing__headline {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -1.2px;
  color: #fff;
  text-align: center;
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}

.closing__sub {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.425px;
  color: #fff;
  opacity: 0.85;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   14. Footer — Intro/Footer (515:4326) · 01.Main과 동일
   -------------------------------------------------------------------------- */
.footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-10);
  padding: 32px var(--pad-x);
  background: var(--footer-bg);
}

.footer__columns {
  display: flex;
  align-items: flex-start;
  gap: var(--space-8);
  width: 100%;
  overflow: hidden;
}

.footer__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-3);
  width: 200px;
  overflow: hidden;
}

.footer__col a {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.325px;
  color: #fff;
  white-space: nowrap;
}

.footer__bizbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 24px;
  width: 100%;
  padding-top: 24px;
  border-top: 1px solid var(--text-muted);
  overflow: hidden;
}

.biz {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  overflow: hidden;
}

.biz__key,
.biz__value {
  font-size: 11px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.275px;
  color: var(--text-muted);
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   15. 모션 최소화 환경
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
