:root {
  --cream: #fff6ed;
  --blue: #73acd9;
  --blue-dark: #5785aa;
  --blue-soft: #eff8ff;
  --ink: #474747;
  --muted: #787878;
  --line: #e4e4e4;
  --line-dark: #c1c1c1;
  --white: #fff;
}

@font-face {
  font-family: "Hero Pretendard";
  src: url("../fonts/Pretendard-SemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

* { box-sizing: border-box; }
html { min-width: 320px; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans KR", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; margin: -1px; padding: 0; border: 0; clip: rect(0 0 0 0); white-space: nowrap; }
button { color: inherit; }
button:focus-visible, a:focus-visible, input:focus-visible {
  outline: 3px solid rgb(115 172 217 / 30%);
  outline-offset: 2px;
}

/* 피그마 공통 헤더: 1440 화면에서 x=119~1321, 높이 72 */
.site-header {
  height: 72px;
  background: var(--cream);
  border-bottom: 1px solid var(--line-dark);
}
.header-inner {
  width: min(calc(100% - 48px), 1202px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}
.brand { width: 70px; height: 26px; display: block; flex: 0 0 70px; }
.brand img { width: 100%; height: 100%; display: block; object-fit: contain; }
.profile-button { width: 44px; height: 44px; display: block; flex: 0 0 44px; overflow: hidden; border-radius: 50%; }
.profile-button img { width: 100%; height: 100%; display: block; object-fit: cover; }
.desktop-nav { display: flex; align-items: center; gap: 100px; margin-left: 32px; color: #555; font-size: 13px; }
.desktop-nav a { min-width: 42px; text-align: center; }
.desktop-nav a.active { color: var(--blue-dark); font-weight: 700; }

/* 홈 */
.home-main { width: min(calc(100% - 48px), 1202px); margin: 0 auto; padding: 50px 0 137px; }
.hero {
  position: relative;
  height: 315px;
  overflow: hidden;
  border-radius: 8px;
  background-image: linear-gradient(90deg, rgb(22 39 28 / 58%), rgb(22 39 28 / 4%) 68%), url("../figma/home-hero-original.jpg");
  background-position: center 51%;
  background-size: cover;
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .5;
  background-image: linear-gradient(rgb(255 246 237 / 95%) 1px, transparent 1px), linear-gradient(90deg, rgb(255 246 237 / 95%) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-copy { position: absolute; top: 158px; left: 47px; color: var(--cream); font-family: "Hero Pretendard", Pretendard, "Noto Sans KR", sans-serif; }
.hero-copy p, .hero-copy h1 { margin: 0; }
.hero-copy p { margin-bottom: 22px; font-size: 28px; font-weight: 600; line-height: 1.2; letter-spacing: -.7px; }
.hero-copy h1 { display: flex; align-items: center; margin-left: 2px; font-size: 28px; font-weight: 600; line-height: 1.2; letter-spacing: -.8px; white-space: nowrap; }
.hero-copy h1 i { width: 70px; height: 2px; flex: 0 0 70px; margin: 2px 30px 0; background: var(--cream); }
.feedback-card { min-height: 217px; margin-top: 52px; padding: 23px 34px 26px; border-radius: 8px; background: var(--blue-soft); }
.feedback-card h2, .feedback-card p { margin: 0; }
.feedback-card h2 { color: var(--blue-dark); font-size: 16px; line-height: 1.4; }
.feedback-card > div:first-child p { margin-top: 7px; color: var(--muted); font-size: 11px; }
.feedback-options { width: 347px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin: 28px auto 22px; }
.feedback-options button { width: 42px; height: 42px; display: grid; place-items: center; padding: 0; border: 0; border-radius: 50%; background: transparent; cursor: pointer; }
.feedback-options img { width: 34px; height: 34px; display: block; border-radius: 50%; }
.text-button { padding: 0; border: 0; border-bottom: 1px solid currentcolor; background: transparent; color: #555; font-size: 11px; cursor: pointer; }
.coaching-section { padding-top: 50px; }
.coaching-section > h2 { margin: 0 0 24px 34px; color: var(--blue); font-size: 25px; line-height: 1.3; }
.coaching-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 72px; }
.action-card { height: 462px; padding: 28px 33px; border: 1px solid var(--line-dark); border-radius: 16px; background: var(--white); }
.action-visual { height: 215px; border-radius: 15px; background: #e4e4e4; }
.action-card h3 { margin: 22px 0 10px; font-size: 16px; font-weight: 700; }
.action-card p { margin: 0; color: var(--line-dark); font-size: 11px; }

/* 버튼과 입력 */
.primary-button, .secondary-button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; padding: 0 20px; border-radius: 4px; font-size: 12px; font-weight: 600; }
.primary-button { border: 1px solid var(--blue); background: var(--blue); color: var(--white); }
.secondary-button { border: 1px solid var(--line-dark); background: var(--white); color: var(--ink); }
.field-group { margin-bottom: 28px; }
.field-group label { display: block; margin-bottom: 11px; color: var(--ink); font-size: 12px; font-weight: 500; }
.field-group label b { color: #e60405; }
.field-group input { width: 100%; height: 54px; padding: 0 14px; border: 1px solid var(--line-dark); border-radius: 4px; background: var(--white); color: var(--ink); font-size: 13px; }
.field-group input::placeholder { color: #b7b7b7; }
.field-group input:focus { border-color: var(--blue); outline: 0; }
.field-error { min-height: 0; margin: 0; color: #e60405; font-size: 11px; }
.check-row { display: flex; align-items: flex-start; gap: 12px; color: var(--ink); }
.check-row input { width: 16px; height: 16px; flex: 0 0 16px; margin: 1px 0 0; accent-color: var(--blue); }
.form-submit { width: 100%; }

/* 로그인: 원본 x=538, 폭 410, 제목 y=227 */
.auth-main { min-height: calc(100vh - 72px); padding: 151px 20px 80px; }
.auth-panel { width: 410px; max-width: 100%; margin: 0 auto; }
.auth-panel h1 { margin: 0 0 52px; color: var(--ink); font-size: 20px; font-weight: 500; line-height: 1; }
[data-page="login"] .field-group { margin-bottom: 34px; }
[data-page="login"] .field-group label { margin: 0; color: var(--muted); font-size: 11px; font-weight: 400; }
[data-page="login"] .field-group input { height: 28px; padding: 0; border: 0; border-bottom: 1px solid var(--line-dark); border-radius: 0; }
[data-page="login"] .field-group input:focus { border-bottom-color: var(--blue); }
.save-email { margin: -30px 0 24px; color: var(--muted); font-size: 11px; }
.save-email input { width: 14px; height: 14px; flex-basis: 14px; }
.auth-links { display: flex; align-items: center; justify-content: center; margin-top: 13px; color: var(--muted); font-size: 11px; }
.auth-links a, .auth-links button { padding: 5px 15px; border: 0; background: transparent; cursor: pointer; }
.auth-links > * + * { border-left: 1px solid var(--line); }
.social-divider { display: flex; align-items: center; gap: 18px; margin: 60px 0 31px; color: var(--muted); font-size: 12px; white-space: nowrap; }
.social-divider::before, .social-divider::after { height: 1px; flex: 1; background: var(--line-dark); content: ""; }
.social-buttons { display: flex; justify-content: center; gap: 14px; }
.social-buttons button { width: 52px; height: 52px; display: grid; place-items: center; overflow: hidden; padding: 0; border: 0; border-radius: 50%; background: transparent; cursor: pointer; }
.social-buttons img { width: 52px; height: 52px; display: block; object-fit: cover; }

/* 회원가입 공통 */
.signup-main { min-height: calc(100vh - 72px); padding: 55px 20px 90px; }
.signup-panel { width: 418px; max-width: 100%; margin: 0 auto; }
.steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); margin: 0 0 70px; padding: 0; color: var(--muted); font-size: 11px; list-style: none; text-align: center; }
.steps::before { position: absolute; top: 8px; right: 16.67%; left: 16.67%; z-index: 0; height: 1px; background: var(--line); content: ""; }
.steps li { position: relative; z-index: 1; display: flex; align-items: center; flex-direction: column; gap: 14px; }
.steps li span { width: 17px; height: 17px; display: grid; place-items: center; border: 1px solid var(--line-dark); border-radius: 50%; background: var(--white); color: var(--muted); font-size: 10px; line-height: 1; }
.steps li.active, .steps li.complete { color: var(--blue); }
.steps li.active span { border-color: var(--blue); color: var(--blue); }
.steps li.complete span { border-color: var(--blue); background: var(--blue); color: var(--white); }
.signup-heading { margin-bottom: 100px; }
.signup-heading p, .signup-heading h1, .signup-heading span { display: block; margin: 0; }
.signup-heading p { margin-bottom: 22px; font-size: 16px; }
.signup-heading h1 { font-size: 23px; font-weight: 700; letter-spacing: -.5px; line-height: 1.4; }
.signup-heading span { margin-top: 8px; color: var(--muted); font-size: 12px; }
.verification-card { width: 410px; max-width: 100%; height: 75px; display: grid; grid-template-columns: 27px 1fr; align-items: center; gap: 13px; padding: 0 22px; border: 1px solid var(--line-dark); border-radius: 4px; background: var(--white); }
.phone-icon { width: 27px; height: 35px; display: block; object-fit: contain; }
.verification-card strong { font-size: 12px; font-weight: 500; }
.signup-notice { margin: 102px 0 0; padding-top: 17px; border-top: 1px solid var(--line-dark); color: var(--muted); font-size: 10px; }

/* 정보 입력 */
.info-page { padding-bottom: 105px; }
.info-page .steps { margin-bottom: 67px; }
.signup-heading.compact { margin-bottom: 48px; }
.signup-heading.compact h1 { font-size: 18px; }
.info-page .field-group { margin-bottom: 29px; }
.guide-section { margin: 72px 0 76px; }
.guide-section h2, .agreement-section h2 { margin: 0 0 44px; font-size: 18px; }
.guide-check { font-size: 12px; line-height: 1.7; }
.agreement-section { margin-bottom: 75px; }
.agreement-all { min-height: 58px; align-items: center; padding-bottom: 18px; border-bottom: 1px solid var(--line-dark); font-size: 12px; }
.agreement-list .check-row { min-height: 58px; align-items: center; border-bottom: 1px solid var(--line); font-size: 12px; }
.agreement-list .check-row label { flex: 1; }
.agreement-list .check-row label b { color: var(--blue); }
.agreement-list .check-row button { border: 0; background: transparent; color: var(--ink); font-size: 11px; cursor: pointer; }

/* 가입 완료 */
.complete-page .steps { margin-bottom: 83px; }
.complete-content > p, .complete-content h1 { margin: 0; }
.complete-content > p:first-child { margin-bottom: 21px; font-size: 16px; }
.complete-content h1 { font-size: 23px; font-weight: 700; line-height: 1.85; letter-spacing: -.6px; }
.complete-check { width: 114px; height: 116px; display: block; margin: 52px auto 48px; object-fit: contain; }
.complete-note { margin: 0; padding-top: 17px; border-top: 1px solid var(--line-dark); color: var(--muted); font-size: 10px; }
.complete-note em { color: var(--blue); font-style: normal; }
.complete-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 31px; }

/* 모바일 웹: 원본 요소는 유지하고 한 열로만 재배치 */
@media (max-width: 820px) {
  .site-header { height: 60px; }
  .header-inner { width: calc(100% - 32px); }
  .brand { width: 66px; height: 24px; flex-basis: 66px; }
  .profile-button { width: 38px; height: 38px; flex-basis: 38px; }
  .desktop-nav { gap: clamp(12px, 4vw, 36px); margin: 0 12px; font-size: 11px; }
  .desktop-nav a { min-width: auto; }
  .home-main { width: calc(100% - 32px); padding: 24px 0 60px; }
  .hero { height: clamp(230px, 62vw, 315px); }
  .hero-copy { top: auto; bottom: 30px; left: 24px; }
  .hero-copy p { margin-bottom: 14px; font-size: 22px; }
  .hero-copy h1 { font-size: clamp(18px, 5.2vw, 22px); }
  .hero-copy h1 i { width: clamp(28px, 10vw, 48px); flex-basis: clamp(28px, 10vw, 48px); margin-right: clamp(10px, 3vw, 18px); margin-left: clamp(10px, 3vw, 18px); }
  .feedback-card { margin-top: 24px; padding: 22px 20px; }
  .feedback-options { width: min(100%, 347px); gap: 4px; }
  .coaching-section { padding-top: 34px; }
  .coaching-section > h2 { margin-left: 0; font-size: 21px; }
  .coaching-grid { grid-template-columns: 1fr; gap: 20px; }
  .action-card { height: auto; min-height: 360px; padding: 20px; }
  .auth-main, .signup-main { min-height: calc(100vh - 60px); padding-right: 20px; padding-left: 20px; }
  .auth-main { padding-top: 74px; }
  .signup-main { padding-top: 36px; }
  .steps { margin-bottom: 54px; }
  .signup-heading { margin-bottom: 52px; }
  .signup-notice { margin-top: 68px; }
}

@media (max-width: 560px) {
  .site-header { height: 108px; }
  .header-inner {
    height: 108px;
    flex-wrap: wrap;
    align-content: flex-start;
    padding-top: 10px;
  }
  .brand { order: 1; }
  .profile-button { order: 2; margin-left: auto; }
  .desktop-nav {
    width: 100%;
    height: 50px;
    display: grid;
    order: 3;
    flex: 0 0 100%;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    margin: 0;
    font-size: 12px;
  }
  .desktop-nav a {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
  }
  .auth-main, .signup-main { min-height: calc(100vh - 108px); }
  .auth-main { padding-top: 56px; }
  .auth-panel h1 { margin-bottom: 36px; }
  .social-divider { margin-top: 48px; }
  .social-buttons button, .social-buttons img { width: 48px; height: 48px; }
  .signup-heading h1, .complete-content h1 { font-size: 20px; }
  .complete-content h1 br { display: none; }
}

@media (max-width: 370px) {
  .home-main, .header-inner { width: calc(100% - 24px); }
  .auth-main, .signup-main { padding-right: 16px; padding-left: 16px; }
  .auth-links a, .auth-links button { padding-right: 9px; padding-left: 9px; }
  .complete-actions { grid-template-columns: 1fr; }
}

/* =========================================================
   모바일 인증 화면 (Figma 360px 원본 기준)
   - 기존 PC 레이아웃/기능은 그대로 유지
   - 767px 이하에서만 로그인/회원가입 화면을 모바일 원본에 맞춤
   ========================================================= */
@media (max-width: 767px) {
  body[data-page="login"],
  body[data-page="signup-verify"],
  body[data-page="signup-info"],
  body[data-page="signup-complete"] {
    min-width: 320px;
    background: #fff;
  }

  body[data-page="login"] .site-header,
  body[data-page="signup-verify"] .site-header,
  body[data-page="signup-info"] .site-header,
  body[data-page="signup-complete"] .site-header {
    height: 64px;
    border-bottom: 0;
    background: #fff;
  }

  body[data-page="login"] .header-inner,
  body[data-page="signup-verify"] .header-inner,
  body[data-page="signup-info"] .header-inner,
  body[data-page="signup-complete"] .header-inner {
    width: 100%;
    height: 64px;
    flex-wrap: nowrap;
    align-content: normal;
    padding: 16px 21px 0;
  }

  body[data-page="login"] .brand,
  body[data-page="signup-verify"] .brand,
  body[data-page="signup-info"] .brand,
  body[data-page="signup-complete"] .brand {
    width: 63px;
    height: 23px;
    flex: 0 0 63px;
    order: initial;
  }

  body[data-page="login"] .profile-button,
  body[data-page="signup-verify"] .profile-button,
  body[data-page="signup-info"] .profile-button,
  body[data-page="signup-complete"] .profile-button {
    width: 27px;
    height: 27px;
    flex: 0 0 27px;
    order: initial;
    margin-left: auto;
  }

  /* 로그인 */
  body[data-page="login"] .auth-main {
    min-height: calc(100vh - 64px);
    padding: 59px 20px 72px;
  }

  body[data-page="login"] .auth-panel {
    width: 100%;
    max-width: none;
  }

  body[data-page="login"] .auth-panel h1 {
    margin: 0 0 54px 27px;
    color: #474747;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
  }

  body[data-page="login"] .form-layout {
    width: 100%;
  }

  body[data-page="login"] .field-group {
    position: relative;
    margin-bottom: 45px;
  }

  body[data-page="login"] .field-group label {
    margin: 0 0 3px;
    color: #787878;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.4;
  }

  body[data-page="login"] .field-group input {
    height: 24px;
    padding: 0 2px;
    border: 0;
    border-bottom: 1px solid #c1c1c1;
    border-radius: 0;
    background: transparent;
    font-size: 13px;
  }

  body[data-page="login"] .field-group input:focus {
    border-bottom-color: #73acd9;
  }

  body[data-page="login"] .field-error {
    position: absolute;
    top: 43px;
    left: 0;
    color: #e60405;
    font-size: 10px;
    line-height: 1.3;
  }

  body[data-page="login"] .save-email {
    align-items: center;
    gap: 8px;
    margin: -21px 0 77px;
    color: #8a8a8a;
    font-size: 11px;
    line-height: 1;
  }

  body[data-page="login"] .save-email input {
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
    margin: 0;
  }

  body[data-page="login"] .form-submit {
    width: calc(100% - 28px);
    min-height: 54px;
    margin: 0 14px;
    border-radius: 4px;
    font-size: 12px;
  }

  body[data-page="login"] .auth-links {
    margin-top: 7px;
    color: #858585;
    font-size: 10px;
    line-height: 1;
  }

  body[data-page="login"] .auth-links a,
  body[data-page="login"] .auth-links button {
    padding: 5px 11px;
  }

  body[data-page="login"] .social-divider {
    justify-content: center;
    margin: 101px 0 25px;
    color: #777;
    font-size: 13px;
    font-weight: 500;
  }

  body[data-page="login"] .social-divider::before,
  body[data-page="login"] .social-divider::after {
    display: none;
  }

  body[data-page="login"] .social-buttons {
    gap: 16px;
  }

  body[data-page="login"] .social-buttons button,
  body[data-page="login"] .social-buttons img {
    width: 48px;
    height: 48px;
  }

  /* 회원가입 단계 공통 */
  body[data-page="signup-verify"] .signup-main,
  body[data-page="signup-complete"] .signup-main {
    min-height: calc(100vh - 64px);
    padding: 56px 20px 80px;
  }

  body[data-page="signup-info"] .signup-main {
    min-height: calc(100vh - 64px);
    padding: 56px 16px 98px;
  }

  body[data-page="signup-verify"] .signup-panel,
  body[data-page="signup-info"] .signup-panel,
  body[data-page="signup-complete"] .signup-panel {
    width: 100%;
    max-width: none;
  }

  body[data-page="signup-verify"] .steps,
  body[data-page="signup-info"] .steps,
  body[data-page="signup-complete"] .steps {
    width: 100%;
    margin: 0 0 65px;
    color: #8b8b8b;
    font-size: 12px;
  }

  body[data-page="signup-verify"] .steps::before,
  body[data-page="signup-info"] .steps::before,
  body[data-page="signup-complete"] .steps::before {
    top: 12px;
    right: 16.667%;
    left: 16.667%;
    background: #dedede;
  }

  body[data-page="signup-verify"] .steps li,
  body[data-page="signup-info"] .steps li,
  body[data-page="signup-complete"] .steps li {
    gap: 12px;
  }

  body[data-page="signup-verify"] .steps li span,
  body[data-page="signup-info"] .steps li span,
  body[data-page="signup-complete"] .steps li span {
    width: 25px;
    height: 25px;
    border-color: #bfbfbf;
    font-size: 13px;
  }

  body[data-page="signup-verify"] .steps li.active,
  body[data-page="signup-verify"] .steps li.complete,
  body[data-page="signup-info"] .steps li.active,
  body[data-page="signup-info"] .steps li.complete,
  body[data-page="signup-complete"] .steps li.active,
  body[data-page="signup-complete"] .steps li.complete {
    color: #73acd9;
  }

  body[data-page="signup-verify"] .steps li.active span,
  body[data-page="signup-info"] .steps li.active span,
  body[data-page="signup-complete"] .steps li.active span {
    border-color: #73acd9;
    color: #73acd9;
  }

  body[data-page="signup-verify"] .steps li.complete span,
  body[data-page="signup-info"] .steps li.complete span,
  body[data-page="signup-complete"] .steps li.complete span {
    border-color: #73acd9;
    background: #73acd9;
  }

  /* 본인인증 */
  body[data-page="signup-verify"] .signup-main {
    padding-right: 25px;
    padding-left: 25px;
  }

  body[data-page="signup-verify"] .signup-heading {
    margin: 0 0 73px;
  }

  body[data-page="signup-verify"] .signup-heading p {
    margin: 0 0 20px;
    color: #474747;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
  }

  body[data-page="signup-verify"] .signup-heading h1 {
    color: #474747;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: -.2px;
  }

  body[data-page="signup-verify"] .verification-card {
    width: 100%;
    height: 75px;
    grid-template-columns: 24px 1fr;
    gap: 12px;
    padding: 0 26px;
    border-color: #c1c1c1;
  }

  body[data-page="signup-verify"] .phone-icon {
    width: 18px;
    height: 28px;
  }

  body[data-page="signup-verify"] .verification-card strong {
    font-size: 14px;
    font-weight: 600;
  }

  body[data-page="signup-verify"] .signup-notice {
    margin: 96px -4px 0;
    padding: 15px 0 0;
    border-top-color: #c1c1c1;
    color: #898989;
    font-size: 10px;
    line-height: 1.5;
  }

  /* 정보입력 */
  body[data-page="signup-info"] .steps {
    margin-bottom: 65px;
  }

  body[data-page="signup-info"] .signup-heading.compact {
    margin: 0 0 48px;
  }

  body[data-page="signup-info"] .signup-heading.compact h1 {
    color: #474747;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
  }

  body[data-page="signup-info"] .signup-heading.compact span {
    display: none;
  }

  body[data-page="signup-info"] .field-group {
    margin-bottom: 29px;
  }

  body[data-page="signup-info"] .field-group label {
    margin-bottom: 11px;
    color: #4a4a4a;
    font-size: 13px;
    font-weight: 600;
  }

  body[data-page="signup-info"] .field-group input {
    height: 48px;
    padding: 0 14px;
    border-color: #bdbdbd;
    border-radius: 4px;
    font-size: 13px;
  }

  body[data-page="signup-info"] .field-group input::placeholder {
    color: #bdbdbd;
  }

  body[data-page="signup-info"] .guide-section {
    margin: 72px 0 76px;
  }

  body[data-page="signup-info"] .guide-section h2,
  body[data-page="signup-info"] .agreement-section h2 {
    margin: 0 0 48px;
    color: #474747;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
  }

  body[data-page="signup-info"] .guide-check {
    align-items: flex-start;
    gap: 17px;
    color: #474747;
    font-size: 12px;
    line-height: 1.55;
  }

  body[data-page="signup-info"] .guide-check input,
  body[data-page="signup-info"] .agreement-section input {
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
    margin-top: 1px;
  }

  body[data-page="signup-info"] .agreement-section {
    margin-bottom: 78px;
  }

  body[data-page="signup-info"] .agreement-all {
    min-height: 72px;
    gap: 17px;
    padding: 0 0 20px;
    border-bottom-color: #c1c1c1;
    font-size: 12px;
  }

  body[data-page="signup-info"] .agreement-list .check-row {
    min-height: 66px;
    gap: 17px;
    border-bottom: 0;
    font-size: 12px;
  }

  body[data-page="signup-info"] .agreement-list .check-row:first-child {
    margin-top: 20px;
  }

  body[data-page="signup-info"] .agreement-list .check-row label {
    min-width: 0;
  }

  body[data-page="signup-info"] .agreement-list .check-row label b {
    color: #73acd9;
  }

  body[data-page="signup-info"] .agreement-list .check-row button {
    flex: 0 0 auto;
    padding: 8px 2px 8px 10px;
    font-size: 12px;
  }

  body[data-page="signup-info"] .form-submit {
    min-height: 54px;
    margin: 0 8px;
    width: calc(100% - 16px);
    border-radius: 4px;
    font-size: 12px;
  }

  /* 가입완료 */
  body[data-page="signup-complete"] .complete-page .steps,
  body[data-page="signup-complete"] .steps {
    margin-bottom: 72px;
  }

  body[data-page="signup-complete"] .complete-content {
    padding: 0 5px;
  }

  body[data-page="signup-complete"] .complete-content > p:first-child {
    margin: 0 0 18px;
    color: #474747;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
  }

  body[data-page="signup-complete"] .complete-content h1 {
    color: #555;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0;
  }

  body[data-page="signup-complete"] .complete-content h1 br {
    display: inline;
  }

  body[data-page="signup-complete"] .complete-check {
    width: 108px;
    height: 108px;
    margin: 51px auto 56px;
  }

  body[data-page="signup-complete"] .complete-note {
    margin: 0 -5px;
    padding: 15px 0 0;
    border-top-color: #c1c1c1;
    color: #8a8a8a;
    font-size: 10px;
    line-height: 1.8;
  }

  body[data-page="signup-complete"] .complete-actions {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 35px -3px 0;
  }

  body[data-page="signup-complete"] .complete-actions a {
    min-height: 54px;
    font-size: 12px;
  }
}


/* =========================================================
   모바일 공통 하단 내비게이션 (Figma 360x800 기본 프레임 기준)
   - PC에서는 숨김
   - 모바일에서 화면 하단에 고정
   ========================================================= */
.mobile-app-bottom-nav { display: none; }

@media (max-width: 767px) {
  body:has(.mobile-app-bottom-nav) {
    padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-app-bottom-nav {
    position: fixed;
    z-index: 120;
    right: 0;
    bottom: 0;
    left: 0;
    height: calc(56px + env(safe-area-inset-bottom, 0px));
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: start;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    border-top: 1px solid #f1eee9;
    background: #fff9f3;
  }

  .mobile-app-bottom-nav a {
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7d7d7d;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
    touch-action: manipulation;
  }

  .mobile-app-bottom-nav a.active,
  .mobile-app-bottom-nav a[aria-current="page"] {
    color: #73acd9;
  }
}
