@charset "utf-8";

/* ==========================================================================
   비드캐치 — 06.조직 (Figma node 447:3398)
   배경(GNB · 히어로 · 푸터 등)은 뷰포트 폭 100%로 펼치고,
   내용 폭은 디자인과 동일하게 1440 기준(내용 1200 / FAQ 960 / 클로징 960)으로
   중앙 고정.
   ※ 01~05는 1440 미만에서 가로 스크롤(min-width) 방식이지만,
     이 페이지는 요청에 따라 "1440 최대 + 축소" 방식으로 좌우 여백과
     그리드가 함께 줄어든다. 1440 이상에서는 01~05와 완전히 동일하게 보인다.
   토큰 / GNB / Footer / btn-primary / notes / faq / closing 은
   01~05와 동일 정의 (의도적 복제, 각 페이지가 독립 실행 가능해야 하므로 import 하지 않음)
   ========================================================================== */

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

/* --------------------------------------------------------------------------
   2. 토큰
   -------------------------------------------------------------------------- */
:root {
  /* Brand */
  --brand-50: #eff6ff;
  --brand-300: #c7d2fe;
  --brand-primary: #2563eb;
  --brand-400: #4d80ef;

  /* Indigo */
  --indigo-50: #eef2ff;
  --indigo-700: #4338ca;

  /* Text */
  --text-strong: #0f172a;
  --text-heading: #1e293b;
  --text-body: #64748b;
  --text-body-strong: #475569;
  --text-muted: #94a3b8;
  --text-ink-secondary: #3e3f3f;

  /* Border / Surface */
  --border-default: #e2e8f0;
  --bar-idle: #ccccd6;
  --bg-page: #f8fafc;
  --bg-subtle: #f1f5f9;
  --surface-card: #ffffff;
  --footer-bg: #0f172a;

  /* Gradient */
  --grad-soft: linear-gradient(160.4deg, #eff6ff 0%, #eef2ff 71.429%);
  --grad-brand: linear-gradient(107.29deg, #2563eb 15.357%, #4d80ef 83.131%);

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

  /* Layout — 1440 기준. 좁아지면 여백부터 줄어든다. */
  --page-width: 1440px;
  --gutter: clamp(24px, 8.3333vw, 120px);
  --gutter-faq: clamp(24px, 16.6667vw, 240px);
  --gutter-closing: clamp(24px, 16.6667vw, 240px);

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

/* 재사용 — 뱃지 (block-label) */
.block-label {
  display: inline-flex;
  align-items: 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:1799) */
.block-label--outline {
  height: auto;
  padding: 7px 14px;
  background: #fff;
  border: 1px solid var(--brand-300);
}

/* 라벨 + 설명 두 칸 (512:1802 / 512:1803) */
.block-label--split {
  gap: var(--space-2);
}

.block-label--split b {
  font-weight: 700;
  color: var(--brand-primary);
}

.block-label--split i {
  font-style: normal;
  font-weight: 500;
  color: var(--text-body);
}

/* 재사용 — CTA 버튼 (필형) */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 28px;
  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: 0 6px 16px -2px rgba(37, 99, 235, 0.28);
}

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

/* 재사용 — 섹션 헤드 */
.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
}

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

/* --------------------------------------------------------------------------
   5. GNB — Intro/GNB (485:6487) · 01~05와 동일
   -------------------------------------------------------------------------- */
.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 — hero (447:3556)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  padding: 70px var(--pad-x);
  background: var(--bg-page);
  overflow: hidden;
}

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

/* 637×311 @ (60, -170) · inset -51.45% / -25.12% */
.hero__glow--1 {
  left: calc(var(--frame-left) - 100px);
  top: -330px;
  width: 957px;
  height: 631px;
}

/* 355×251 @ (1080, 120) · inset -63.75% / -45.07% */
.hero__glow--2 {
  left: calc(var(--frame-left) + 920px);
  top: -40px;
  width: 675px;
  height: 571px;
}

/* 347×244 @ (-160, 60) · inset -65.57% / -46.11% */
.hero__glow--3 {
  left: calc(var(--frame-left) - 320px);
  top: -100px;
  width: 667px;
  height: 564px;
}

.hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  width: 100%;
  max-width: 1200px;
}

/* hero-copy (447:3557) */
.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  width: 100%;
}

.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 {
  max-width: 620px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.45px;
  color: var(--text-body);
  text-align: center;
}

.hero__cta {
  display: flex;
  gap: var(--space-3);
}

/* mock-window (447:3569) */
.mock-window {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1100px;
  height: 480px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
  overflow: hidden;
}

.mock-window__topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  background: var(--bg-page);
}

.mock-window__body {
  display: flex;
  align-items: stretch;
  flex: 1 0 0;
  min-height: 0;
  width: 100%;
  background: #fff;
  overflow: hidden;
}

.mock-col__title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.325px;
  color: var(--text-heading);
  white-space: nowrap;
}

/* members (447:3576) */
.members {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-3);
  flex: 0 1 420px;
  min-width: 300px;
  padding: 12px 24px;
  border-right: 1px solid var(--border-default);
  background: #fff;
  overflow: hidden;
}

.member {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--bg-page);
}

.member--active {
  background: var(--brand-50);
}

.member__avatar {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
}

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

.member__fill {
  flex: 1 0 0;
  min-width: 0;
  height: 8px;
}

.role-tag {
  flex: 0 0 auto;
  padding: 4px 10px;
  border: 1px solid var(--border-default);
  border-radius: 999px;
  background: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.3px;
  color: var(--text-muted);
  white-space: nowrap;
}

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

/* feed (447:3602) */
.feed {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-3);
  flex: 1 0 0;
  min-width: 0;
  padding: 12px 24px;
  background: #fff;
  overflow: hidden;
}

.feed-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--border-default);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.feed-card__head {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.375px;
  color: var(--text-heading);
}

.feed-card__head img {
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
}

.feed-card__desc {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.325px;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   7. 무엇이 달라지나 — section-benefits (447:3620)
   -------------------------------------------------------------------------- */
.benefits {
  display: flex;
  flex-direction: column;
  gap: 44px;
  padding: 70px var(--pad-x);
  background: var(--bg-page);
}

/* bento (447:3625) — 내부 15 패딩은 그림자 여유 */
.bento {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 15px;
}

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

.bento-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  border: 1px solid var(--border-default);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

/* row-a 는 740 : 410 비율 (1200 폭 기준) */
.bento-card--wide {
  flex: 0 0 calc((100% - 20px) * 740 / 1150);
  gap: var(--space-6);
  padding: var(--space-8);
}

.bento-card--narrow {
  flex: 1 1 0;
  gap: var(--space-6);
  padding: var(--space-8);
}

.bento-card--sm {
  flex: 1 1 0;
  gap: 20px;
  padding: 28px;
}

.bento-card--full {
  gap: 28px;
  width: 100%;
  padding: var(--space-10);
}

/* 카드 카피 */
.cap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
}

.cap--bottom {
  margin-top: auto;
}

.cap__title {
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-heading);
}

.cap__title--24 { font-size: 24px; letter-spacing: -0.6px; }
.cap__title--22 { font-size: 22px; letter-spacing: -0.55px; }
.cap__title--20 { font-size: 20px; letter-spacing: -0.5px; }

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

.cap__desc--14 {
  font-size: 14px;
  letter-spacing: -0.35px;
}

/* 카드 안 비주얼 영역 */
.visual {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.visual--soft {
  background: var(--grad-soft);
}

.visual--brand {
  background: var(--grad-brand);
}

/* b-01 비교 패널 (447:3631) */
.visual--compare {
  display: flex;
  align-items: stretch;
  gap: 16px;
  height: 240px;
  padding: var(--space-6);
}

.panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 1 0 0;
  min-width: 0;
  padding: 18px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.panel--accent {
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}

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

.panel--accent .panel__title {
  color: var(--brand-primary);
}

.panel__line {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  width: 100%;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.325px;
  color: var(--text-heading);
  white-space: nowrap;
}

.bar {
  flex: 0 0 auto;
  width: 4px;
  height: 14px;
  border-radius: 2px;
  background: var(--bar-idle);
}

.bar--brand {
  background: var(--brand-primary);
}

/* b-02 구성원 수신 목록 (447:3658) */
.visual--rows {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-2);
  flex: 1 0 0;
  min-height: 0;
  padding: 20px;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  width: 100%;
  padding: 16px 12px;
  border-radius: var(--space-2);
  background: rgba(255, 255, 255, 0.16);
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: -0.3px;
  color: #fff;
  white-space: nowrap;
}

.brand-row img {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
}

.brand-row b { font-weight: 700; }
.brand-row span:last-child { font-weight: 500; }

.brand-row__fill {
  flex: 1 0 0;
  min-width: 0;
  height: 8px;
}

/* b-03 역할 목록 (447:3676) */
.visual--roles {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-2);
  height: 140px;
  padding: 16px;
}

.role-line {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: var(--space-2) var(--space-3);
  border: 1px solid transparent;
  border-radius: var(--space-2);
  background: #fff;
  white-space: nowrap;
}

.role-line--active {
  border-color: var(--brand-primary);
}

.role-line b {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.3px;
  color: var(--text-heading);
}

.role-line--active b {
  color: var(--brand-primary);
}

.role-line span {
  font-size: 11px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.275px;
  color: var(--text-muted);
}

/* b-04 무료 뱃지 (447:3690) */
.visual--badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 140px;
}

.free-badge {
  padding: 12px 22px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.45px;
  color: var(--brand-primary);
  white-space: nowrap;
}

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

/* b-05 초대 링크 (447:3698) */
.visual--invite {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  height: 140px;
  padding: 18px;
}

.link-field {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--space-2);
  background: rgba(255, 255, 255, 0.14);
}

.link-field b {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.3px;
  color: #fff;
  white-space: nowrap;
}

.link-field__fill {
  flex: 1 0 0;
  min-width: 0;
  height: 8px;
}

.link-field__copy {
  flex: 0 0 auto;
  padding: 4px 10px;
  border-radius: 999px;
  background: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.275px;
  color: var(--brand-400);
  white-space: nowrap;
}

.invite-meta {
  display: flex;
  gap: 6px;
}

.pill {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.275px;
  color: #fff;
  white-space: nowrap;
}

/* b-06 타임라인 (447:3716) */
.timeline {
  display: flex;
  align-items: stretch;
  gap: 16px;
  width: 100%;
}

.tl-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  flex: 1 0 0;
  min-width: 0;
  padding: 18px 20px;
  border-radius: 12px;
  background: linear-gradient(159.93deg, #eff6ff 0%, #eef2ff 71.429%), #f8fafc;
  overflow: hidden;
}

.tl-item img {
  width: 8px;
  height: 8px;
}

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

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

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

/* notes / faq 섹션은 배경을 화면 끝까지 깔고 내부 블록에만 좌우 여백을 준다. */
.notes > .section-head,
.faq > .section-head,
.note-grid {
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.note-grid {
  display: flex;
  align-items: stretch;
  gap: 20px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.note {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  flex: 1 0 0;
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--border-default);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  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;
  align-items: flex-start;
  gap: var(--space-2);
  width: 100%;
}

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

.note__desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.35px;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   9. FAQ — section-faq (447:3775)
   -------------------------------------------------------------------------- */
.faq {
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
  padding: 70px 0;
  background: var(--bg-page);
}

/* faq-list는 섹션 패딩(120) 위에 120을 더해 960 폭 */
.faq-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 0 var(--pad-x-faq);
}

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

.q-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  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-item__txt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 1 0 0;
  min-width: 0;
}

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

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

/* --------------------------------------------------------------------------
   10. Closing — section-closing (447:3899)
   -------------------------------------------------------------------------- */
.closing {
  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__subcopy {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.425px;
  color: #fff;
  opacity: 0.85;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   11. Footer — Intro/Footer (515:4328) · 01~05와 동일
   -------------------------------------------------------------------------- */
.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;
}

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