@charset "utf-8";

/* ==========================================================================
   비드캐치 — 05.알림 받기 (Figma node 487:1555)
   데스크톱 전용. 모바일/태블릿 반응형 없음.
   배경(GNB · 히어로 · 푸터 등)은 뷰포트 폭 100%로 펼치고,
   내용 폭은 디자인과 동일하게 1440 기준(내용 1200 / FAQ 960 / 클로징 960)으로
   중앙 고정. 1440보다 좁은 화면은 기존과 같이 가로 스크롤.
   토큰 / GNB / Footer / btn-primary / closing 은 01.서비스 소개 · 02.활용사례와
   동일 정의 (의도적 복제, 각 페이지가 독립 실행 가능해야 하므로 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-100: #dbeafe;
  --brand-300: #c7d2fe;
  --brand-soft: #9ebbf7;
  --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;
  --success-fg: #16a34a;
  --success-bg: #e2fae9;
  --danger-fg: #dc2626;
  --danger-bg: #fef2f2;

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

  /* Border / Surface */
  --border-default: #e2e8f0;
  --border-hairline: #ccc;
  --bg-page: #f8fafc;
  --bg-subtle: #f1f5f9;
  --surface-card: #ffffff;
  --kakao-bg: #b3c9e0;
  --footer-bg: #0f172a;

  /* Spacing */
  --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-faq: 240px;      /* 120(섹션) + 120(리스트 내부) → 960 */
  --gutter-closing: 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;
}

: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;
  padding: 7px 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;
}

/* 히어로용 — 흰 배경 + 테두리 변형 (487:1558) */
.block-label--outline {
  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: 0 6px 16px -2px rgba(37, 99, 235, 0.28);
}

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

/* 재사용 — 섹션 헤드 (487:1570 / 447:3801 / 512:2012) */
.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);
  white-space: nowrap;
}

/* 재사용 — 칩 */
.chips {
  display: flex;
  gap: 6px;
  align-items: flex-start;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.275px;
  white-space: nowrap;
}

.chip--brand  { background: var(--brand-50);    color: var(--brand-primary); }
.chip--green  { background: var(--success-bg);  color: var(--success-fg); }
.chip--purple { background: var(--category-bg); color: var(--category-fg); }
.chip--red    { background: var(--danger-bg);   color: var(--danger-fg); }
.chip--slate  { background: var(--bg-subtle);   color: var(--text-body); }
.chip--white  { background: #fff;               color: var(--text-body); }
.chip--brand-text { color: var(--brand-primary); }

/* wide 카드용 큰 칩 (501:8038) */
.chip--lg {
  padding: 6px 12px;
  font-size: 12px;
  letter-spacing: -0.3px;
}

/* --------------------------------------------------------------------------
   5. GNB — Intro/GNB (487:1556) · 01 / 02 / 03과 동일
   -------------------------------------------------------------------------- */
.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 (487:1557)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  padding: 96px var(--pad-x);
  background: var(--bg-page);
  overflow: hidden;
}

/* 배경 글로우 — 487:1562 / 1563 / 1564
   원본은 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%;
}

/* Frame 12 (512:2291) */
.hero__title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

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

.hero__subcopy {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.425px;
  color: var(--text-body-strong);
  white-space: nowrap;
}

.hero__cta {
  padding-top: 14px;
}

/* mock-window (515:4949) */
.mock-window {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 600px;
  filter: drop-shadow(0 18px 22px rgba(15, 23, 41, 0.14));
}

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

.mock-window__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  padding: 20px;
  border: 1px solid var(--border-default);
  border-radius: 0 0 20px 20px;
  background: #fff;
  box-shadow: 0 18px 40px -6px rgba(38, 41, 102, 0.14);
  overflow: hidden;
}

.mock-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mock-head__avatar {
  display: block;
  width: 28px;
  height: 28px;
}

.mock-head__name {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.35px;
  color: var(--text-strong);
}

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

.mock-bubble {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  background: var(--bg-subtle);
}

.mock-bubble__title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.375px;
  color: var(--text-strong);
}

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

/* --------------------------------------------------------------------------
   7. 무엇이 달라지나 — section-changes (487:1569)
   -------------------------------------------------------------------------- */
.changes {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 104px var(--pad-x);
  background: var(--bg-page);
}

/* change-grid (487:1574) — 1200 폭 안에서 588 + 588 / 1200 wide */
.change-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  gap: 24px;
  padding: 15px 0;
}

.bento {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  flex: 0 0 auto;
  width: 588px;
  height: 333px;
  padding: 32px;
  border: 1px solid var(--border-default);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 24px -4px rgba(26, 31, 77, 0.06);
  overflow: hidden;
}

.bento--tall { height: 366px; }

/* bento-box wide (501:8034) */
.bento--wide {
  flex-direction: row;
  align-items: center;
  gap: 40px;
  width: 1200px;
  height: 360px;
  padding: 36px;
}

.bento__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}

.bento__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.5px;
  color: var(--text-strong);
}

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

.bento__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex: 0 0 auto;
  width: 460px;
}

.bento__title--lg {
  font-size: 22px;
  letter-spacing: -0.55px;
}

.bento__desc--lg {
  font-size: 15px;
  letter-spacing: -0.375px;
}

/* visual — 카드 내부 미리보기 박스 */
.visual {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  padding: 20px;
  border-radius: 16px;
  overflow: hidden;
}

.visual--slate  { background: var(--bg-page); }
.visual--indigo { background: var(--indigo-50); }
.visual--brand  { background: var(--brand-50); }
.visual--gap12  { gap: 12px; }

/* 501:8010 — 세로 가운데 정렬 + 남은 높이 채움 */
.visual--center {
  flex: 1 0 0;
  min-height: 0;
  justify-content: center;
}

.visual__head {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.visual__head--inset { padding: 0 14px; }

.visual__head-label {
  flex: 1 0 0;
  min-width: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.325px;
  color: var(--text-strong);
}

.visual__note {
  width: 100%;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.3px;
  color: var(--text-body);
}

/* row — 공고 한 줄 */
.row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 12px 12px 14px;
  border: 1px solid var(--border-default);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

.row__label {
  flex: 1 0 0;
  min-width: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.325px;
  color: var(--text-row);
}

/* log-row (501:8137) — 이름 + 가려진 번호 + 상태 */
.log-row__name {
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.325px;
  color: var(--text-row);
  white-space: nowrap;
}

.log-row__phone {
  flex: 1 0 0;
  min-width: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.325px;
  color: var(--text-muted);
}

/* timebar (501:8015) — 00~24시 구간. 120 : 242 : 120 비율 */
.timebar {
  display: flex;
  width: 100%;
  height: 14px;
  border-radius: 999px;
  background: #fff;
  overflow: hidden;
}

.timebar__seg--quiet {
  flex: 0 0 120px;
  background: var(--brand-primary);
}

.timebar__seg--send {
  flex: 9 0 0;
  min-width: 0;
  background: var(--brand-300);
}

.scale {
  display: flex;
  width: 100%;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.275px;
}

.scale__item--muted { flex: 0 0 120px; color: var(--text-muted); }
.scale__item--brand { flex: 0 0 243px; color: var(--brand-primary); }
.scale__item--body  { flex: 1 0 0; min-width: 0; color: var(--text-body); }

.scale__item--end {
  flex: 1 0 0;
  min-width: 0;
  text-align: right;
}

/* preview-bars (501:8119) — 저장 전 예상 건수 */
.preview-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  width: 100%;
  height: 110px;
  padding: 16px;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.preview-bars__bar {
  flex: 1 0 0;
  min-width: 0;
  border-radius: 6px;
  background: var(--brand-primary);
}

.preview-bars__bar--soft { background: var(--brand-soft); }

/* kakao-mock (501:8040) */
.kakao-mock {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex: 1 0 0;
  min-width: 0;
  padding: 20px;
  border-radius: 18px;
  background: var(--kakao-bg);
  overflow: hidden;
}

.kakao-bubble {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  background: #fff;
}

.kakao-bubble__head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.kakao-bubble__icon {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: var(--brand-soft);
}

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

.kakao-bubble__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.35px;
  color: var(--text-strong);
}

.kakao-bubble__line {
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.3125px;
  color: var(--text-body);
}

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

/* notes / faq 섹션은 배경을 화면 끝까지 깔고 내부 블록에만 좌우 여백을 준다.
   (changes 섹션은 섹션 자체에 --pad-x 가 걸려 있으므로 제외) */
.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;
  overflow: hidden;
}

.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: 8px;
  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: 15px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.375px;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   9. FAQ — section-faq (512:2011)
   -------------------------------------------------------------------------- */
.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);
  overflow: hidden;
}

.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: 500;
  line-height: 1.4;
  letter-spacing: -0.375px;
  color: var(--text-body);
}

/* --------------------------------------------------------------------------
   10. Closing — section-closing (512:2079)
   -------------------------------------------------------------------------- */
.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:4330) · 01 / 02 / 03과 동일
   -------------------------------------------------------------------------- */
.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;
  }
}
