/* ════════════════════════════════════════════════════════════
   MY MOVEMENT — Landing Page + Customer Portal
   ════════════════════════════════════════════════════════════ */

/* ── Reset & Variables ── */
:root {
  --my-bg: #0a0a0a;
  --my-bg-card: #1a1a1a;
  --my-bg-elevated: #141414;
  --my-bg-input: #111111;
  --my-text: #f5f5f7;
  --my-text-sec: rgba(245,245,247,0.6);
  --my-text-muted: rgba(245,245,247,0.35);
  --my-accent: #e77500;
  --my-accent-hover: #ff8c1a;
  --my-success: #34C759;
  --my-border: rgba(255,255,255,0.08);
  --my-radius: 12px;
  --my-font: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
  --my-max-width: 1200px;
  --my-transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}
body {
  background: var(--my-bg);
  color: var(--my-text);
  font-family: var(--my-font);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: var(--my-accent); text-decoration: none; }
a:hover { color: var(--my-accent-hover); }
img { max-width: 100%; display: block; }

.my-view { display: flex; }

/* ════════════════════════════════════════════════════════════
   GNB Navigation (homepage/subsnap/ambassador 통일)
   ════════════════════════════════════════════════════════════ */
.gnb {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}
.gnb.scrolled {
  background: rgba(231, 117, 0, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}
.gnb.scrolled .gnb-link { color: rgba(255, 255, 255, 0.75); }
.gnb.scrolled .gnb-link:hover,
.gnb.scrolled .gnb-link.active { color: #fff; }
.gnb.scrolled .gnb-link-cta { color: #fff !important; }
.gnb.scrolled .gnb-logo { color: #fff; }

.gnb-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--my-max-width);
  margin: 0 auto;
}
.gnb-logo {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--my-text);
  white-space: nowrap;
  text-decoration: none;
}
.gnb-logo:hover { color: var(--my-text); }
.gnb-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.gnb-link {
  font-size: 13px;
  font-weight: 400;
  color: var(--my-text-sec);
  transition: color 0.2s;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-decoration: none;
}
.gnb-link:hover { color: var(--my-text); }
.gnb-link.active { color: var(--my-text); font-weight: 500; }
.gnb-link-cta { color: var(--my-accent) !important; font-weight: 600; }
.gnb-link-my {
  background: var(--my-accent) !important;
  color: #fff !important;
  padding: 5px 12px !important;
  border-radius: 6px;
  font-size: 11px !important;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: background 0.2s;
}
.gnb-link-my:hover { background: var(--my-accent-hover) !important; color: #fff !important; }

/* Mobile menu button */
.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-btn span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--my-text);
  transition: transform 0.3s, opacity 0.3s;
}
.menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.menu-btn.active span:nth-child(2) { opacity: 0; }
.menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10, 10, 10, 0.97);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}
.mobile-link {
  font-size: 20px;
  color: var(--my-text-sec);
  letter-spacing: 1px;
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-link.active { color: var(--my-text); }
.mobile-link-cta { color: var(--my-accent) !important; }
.mobile-link-my {
  display: inline-block !important;
  background: var(--my-accent);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: 8px;
}
.mobile-link-my:hover { background: var(--my-accent-hover); color: #fff !important; }
.mobile-link:hover { color: var(--my-text); }

/* ════════════════════════════════════════════════════════════
   Reveal Animation (scroll-triggered)
   ════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ════════════════════════════════════════════════════════════
   LANDING VIEW — Section 1: Hero + Login
   ════════════════════════════════════════════════════════════ */
#landingView {
  display: block;
}
.my-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 48px 80px;
  overflow: hidden;
}
.my-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(231,117,0,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(231,117,0,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.my-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  width: 100%;
  max-width: var(--my-max-width);
  margin: 0 auto;
}
.my-hero-content {
  flex: 1;
  max-width: 520px;
}
.my-hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--my-accent);
  border: 1px solid rgba(231,117,0,0.3);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.my-hero-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--my-text);
}
.my-hero-desc {
  font-size: 15px;
  color: var(--my-text-sec);
  line-height: 1.8;
}

/* Hero Login Card */
.my-hero-login {
  flex: 0 0 360px;
}
.my-login-card {
  background: var(--my-bg-card);
  border: 1px solid var(--my-border);
  border-radius: 16px;
  padding: 32px;
}
.my-login-card-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--my-text-muted);
  text-transform: uppercase;
  margin-bottom: 24px;
  text-align: center;
}
.my-login-card .my-input-group {
  margin-bottom: 14px;
}
.my-login-card .my-btn-primary {
  margin-top: 8px;
}
.my-login-help {
  text-align: center;
  font-size: 12px;
  color: var(--my-text-muted);
  margin-top: 16px;
  line-height: 1.6;
}
.my-login-help a {
  font-weight: 600;
}

/* ════════════════════════════════════════════════════════════
   LANDING VIEW — Section 2: System Intro
   ════════════════════════════════════════════════════════════ */
.my-intro {
  padding: 120px 48px;
  border-top: 1px solid var(--my-border);
}
.my-intro-inner {
  max-width: var(--my-max-width);
  margin: 0 auto;
  text-align: center;
}
.my-intro-title {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--my-text);
}
.my-intro-sub {
  font-size: 14px;
  color: var(--my-text-sec);
  margin-bottom: 60px;
  letter-spacing: 0.02em;
}
.my-intro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.my-intro-item {
  text-align: center;
  padding: 36px 20px;
  background: var(--my-bg-card);
  border: 1px solid var(--my-border);
  border-radius: 16px;
  transition: border-color 0.3s, transform 0.3s;
}
.my-intro-item:hover {
  border-color: rgba(231,117,0,0.25);
  transform: translateY(-4px);
}
.my-intro-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(231,117,0,0.1);
  border-radius: 14px;
  color: var(--my-accent);
  margin-bottom: 20px;
}
.my-intro-item-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--my-text);
  margin-bottom: 10px;
}
.my-intro-item-desc {
  font-size: 13px;
  color: var(--my-text-sec);
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════════════
   LANDING VIEW — Section 3: Prototype Preview
   ════════════════════════════════════════════════════════════ */
.my-preview {
  padding: 120px 48px;
  border-top: 1px solid var(--my-border);
  background: var(--my-bg-elevated);
}
.my-preview-inner {
  max-width: var(--my-max-width);
  margin: 0 auto;
  text-align: center;
}
.my-preview-title {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--my-text);
}
.my-preview-sub {
  font-size: 14px;
  color: var(--my-text-sec);
  margin-bottom: 48px;
}

/* Phone Lineup Container */
.my-preview-phones {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* Phone Frame — iPhone 16 Pro Max 비율 (1:2.17) */
.my-preview-phone {
  position: relative;
  width: 220px;
  height: 477px;  /* 220 × 2.17 */
  flex-shrink: 0;
  background: #1c1c1e;
  border-radius: 38px;
  border: 2.5px solid rgba(255,255,255,0.22);
  padding: 8px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 30px 60px rgba(0,0,0,0.6),
    0 0 80px rgba(231,117,0,0.06),
    inset 0 0 0 1px rgba(255,255,255,0.05);
  overflow: hidden;
}
.my-preview-phone-center {
  z-index: 2;
  border-color: rgba(255,255,255,0.2);
}
/* Dynamic Island (아이폰 14 Pro+) */
.my-preview-island {
  width: 68px;
  height: 18px;
  background: #000;
  border-radius: 10px;
  margin: 2px auto 4px;
  position: relative;
  z-index: 5;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06);
}
.my-preview-screen {
  background: var(--my-bg);
  border-radius: 30px;
  height: calc(100% - 24px);
  overflow: hidden;
  position: relative;
}

/* ── Demo phases ── */
.demo-phase {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  overflow: hidden;
}
#demoPhaseLogin { z-index: 3; }
#demoPhaseDash { z-index: 2; }

/* ── PIN Login Screen ── */
.demo-login-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 20px 16px;
}
.demo-login-logo {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--my-accent);
  color: #fff;
  font-size: 18px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
}
.demo-login-brand {
  font-size: 8px; letter-spacing: 2px;
  color: var(--my-text-sec); font-weight: 600;
  text-transform: uppercase; margin-bottom: 4px;
}
.demo-login-subtitle {
  font-size: 13px; font-weight: 600; color: var(--my-text);
  margin-bottom: 16px;
}
.demo-login-field {
  width: 100%; margin-bottom: 8px;
}
.demo-login-field label {
  display: block; font-size: 7px;
  color: var(--my-text-sec); margin-bottom: 3px;
  font-weight: 500;
}
.demo-login-input {
  width: 100%; height: 30px;
  background: var(--my-bg-input);
  border: 1px solid var(--my-border);
  border-radius: 6px; padding: 0 8px;
  display: flex; align-items: center;
  font-size: 11px; color: var(--my-text);
  font-family: var(--my-font);
  transition: border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.demo-login-input.typing {
  border-color: var(--my-accent);
}
.demo-cursor {
  display: inline-block;
  width: 1px; height: 16px;
  background: var(--my-accent);
  animation: demo-blink 1s step-end infinite;
  vertical-align: middle;
  margin-left: 1px;
}
@keyframes demo-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.demo-login-btn {
  width: 100%; padding: 8px;
  background: var(--my-accent);
  color: #fff; border-radius: 6px;
  font-size: 11px; font-weight: 600;
  text-align: center; margin-top: 4px;
  transition: opacity 0.3s, transform 0.12s;
  opacity: 0.5;
}
.demo-login-btn.active {
  opacity: 1;
}
.demo-login-help {
  font-size: 7px; color: var(--my-text-muted);
  margin-top: 8px;
}

/* ════════════════════════════════════════════════════════════
   PHONE MOCKUP — 실제 MY MOVEMENT 대시보드 디자인 1:1 재현
   ════════════════════════════════════════════════════════════ */
.demo-scroll-content {
  padding: 0;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.demo-scroll-content::-webkit-scrollbar { display: none; }

/* ── 탑바 (실제: flex space-between, accent 브랜드 + 로그아웃) ── */
.demo-real-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px 8px;
  position: sticky;
  top: 0;
  background: var(--my-bg);
  z-index: 2;
  border-bottom: 1px solid var(--my-border);
}
.demo-real-brand {
  font-size: 8px;
  letter-spacing: 2px;
  color: var(--my-accent);
  font-weight: 700;
}
.demo-real-logout {
  font-size: 7px;
  color: var(--my-text-sec);
  padding: 3px 8px;
  border: 1px solid var(--my-border);
  border-radius: 4px;
  opacity: 0.7;
}

/* ── 인사말 ── */
.demo-real-greeting {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--my-text);
  padding: 12px 12px 1px;
}
.demo-real-heart { color: var(--my-accent); margin: 0 2px; }
.demo-real-greeting-sub {
  text-align: center;
  font-size: 8px;
  color: var(--my-text-sec);
  margin-bottom: 10px;
}

/* ── 카드 공통 ── */
.demo-real-card {
  background: var(--my-bg-card);
  border: 1px solid var(--my-border);
  border-radius: 8px;
  padding: 10px 10px;
  margin: 0 10px 6px;
}
.demo-real-card-title {
  font-size: 8px;
  font-weight: 700;
  color: var(--my-text-muted);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

/* ── 정보 행 (예약정보 등) ── */
.demo-real-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.demo-real-info-row:last-child { border-bottom: none; }
.demo-real-label {
  font-size: 7px;
  color: var(--my-text-sec);
  flex-shrink: 0;
}
.demo-real-value {
  font-size: 8px;
  color: var(--my-text);
  font-weight: 500;
  text-align: right;
}

/* ── 초상권 안내 ── */
.demo-real-portrait {
  background: rgba(231,117,0,0.06);
  border-color: rgba(231,117,0,0.15);
  font-size: 7px;
  color: var(--my-text-sec);
  line-height: 1.5;
}
.demo-real-portrait strong { color: var(--my-accent); }

/* ════════════════════════════════════════════════════════════
   스텝퍼 (실제 디자인: 원형 + ✓ + 연결선)
   ════════════════════════════════════════════════════════════ */
.demo-real-stepper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  padding: 4px 0 2px;
}
.demo-real-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 0 0 auto;
  min-width: 36px;
}
/* 원형 (32px → 폰 목업용 20px) */
.demo-real-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7px;
  font-weight: 700;
  color: var(--my-text-muted);
  border: 1.5px solid var(--my-border);
  background: transparent;
  position: relative;
  z-index: 1;
}
.demo-real-circle.done {
  background: var(--my-success);
  border-color: var(--my-success);
  color: #fff;
  font-size: 9px;
}
.demo-real-circle.current {
  border-color: var(--my-accent);
  color: var(--my-accent);
  animation: demo-real-pulse 2s infinite;
}
/* 서브스냅 보라색 테마 */
.demo-real-circle.done.ss {
  background: #AF52DE;
  border-color: #AF52DE;
}
.demo-real-circle.current.ss {
  border-color: #AF52DE;
  color: #AF52DE;
  animation: demo-real-pulse-ss 2s infinite;
}
@keyframes demo-real-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(231,117,0,0.4); }
  50% { box-shadow: 0 0 0 4px rgba(231,117,0,0); }
}
@keyframes demo-real-pulse-ss {
  0%, 100% { box-shadow: 0 0 0 0 rgba(175,82,222,0.4); }
  50% { box-shadow: 0 0 0 4px rgba(175,82,222,0); }
}

/* 스텝 라벨 */
.demo-real-step-label {
  font-size: 6px;
  color: var(--my-text-muted);
  margin-top: 3px;
  white-space: nowrap;
  text-align: center;
}
.demo-real-step-label.done { color: var(--my-success); font-weight: 600; }
.demo-real-step-label.current { color: var(--my-accent); font-weight: 600; }
.demo-real-step-label.done.ss { color: #AF52DE; }
.demo-real-step-label.current.ss { color: #AF52DE; }

/* 연결선 (원형 오른쪽에 표시) */
.demo-real-line {
  position: absolute;
  top: 10px;
  left: calc(50% + 10px);
  width: 16px;
  height: 1.5px;
  background: var(--my-border);
  z-index: 0;
}
.demo-real-line.done {
  background: var(--my-success);
}
.demo-real-line.done.ss {
  background: #AF52DE;
}

/* ── 하이라이트 영상 보기 버튼 ── */
.demo-real-highlight-btn {
  background: rgba(231,117,0,0.1);
  border-color: rgba(231,117,0,0.2);
  color: var(--my-accent);
  font-size: 9px;
  font-weight: 600;
  text-align: center;
  padding: 8px 10px;
}

/* ── 결제 현황 ── */
.demo-real-pay-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.demo-real-pay-row:last-child { border-bottom: none; }
.demo-real-pay-label {
  font-size: 7px;
  color: var(--my-text-sec);
}
.demo-real-pay-value {
  font-size: 8px;
  color: var(--my-text);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}
.demo-real-pay-value.paid { color: var(--my-success); }
.demo-real-pay-value.pending { color: var(--my-accent); }

/* 배지 (완료/미납) */
.demo-real-badge {
  display: inline-block;
  font-size: 6px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 3px;
  letter-spacing: 0.3px;
}
.demo-real-badge.paid {
  background: rgba(52,199,89,0.15);
  color: var(--my-success);
}
.demo-real-badge.unpaid {
  background: rgba(231,117,0,0.15);
  color: var(--my-accent);
}

/* ── 계약서 버튼 ── */
.demo-real-contract-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--my-border);
  border-radius: 6px;
  font-size: 8px;
  font-weight: 600;
  color: var(--my-text);
}

/* ── 구분선 ── */
.demo-real-divider {
  height: 6px;
  background: rgba(255,255,255,0.02);
  margin: 4px 0;
  border-top: 1px solid var(--my-border);
  border-bottom: 1px solid var(--my-border);
}

/* ── 식순지 업로드 영역 ── */
.demo-real-upload-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  border: 1.5px dashed var(--my-border);
  background: transparent;
  border-radius: 8px;
}

/* ── 원본 다운로드 (보라색 #AF52DE 테마) ── */
.demo-real-original-link {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(175,82,222,0.1);
  border: 1px solid rgba(175,82,222,0.3);
  border-radius: 6px;
  color: #AF52DE;
  font-size: 7px;
  font-weight: 600;
  margin-top: 4px;
}

/* ── 셀렉 파일 전달 완료 ── */
.demo-real-select-done-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(175,82,222,0.15);
  color: #AF52DE;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin: 4px auto;
}
.demo-real-select-done-text {
  font-size: 8px;
  color: #AF52DE;
  font-weight: 600;
  margin: 4px 0;
}
.demo-real-select-files {
  font-size: 6px;
  color: var(--my-text-muted);
  line-height: 1.6;
  word-break: break-all;
}

/* ── 카카오톡 문의 ── */
.demo-real-kakao-btn {
  display: inline-block;
  font-size: 8px;
  color: #3B1E1E;
  background: #FEE500;
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 600;
  margin-top: 4px;
}

/* ════════════════════════════════════════════════════════════
   LANDING VIEW — Section 4: CTA
   ════════════════════════════════════════════════════════════ */
.my-cta {
  padding: 120px 48px;
  border-top: 1px solid var(--my-border);
  text-align: center;
}
.my-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}
.my-cta-title {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--my-text);
}
.my-cta-desc {
  font-size: 14px;
  color: var(--my-text-sec);
  margin-bottom: 40px;
}
.my-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: #FEE500;
  color: #191919;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 24px rgba(254,229,0,0.2);
}
.my-cta-btn:hover {
  background: #FDD835;
  color: #191919;
  transform: translateY(-2px);
}
.my-cta-btn svg { flex-shrink: 0; }

/* ════════════════════════════════════════════════════════════
   Footer (homepage 통일)
   ════════════════════════════════════════════════════════════ */
.footer {
  padding: 60px 48px;
  border-top: 1px solid var(--my-border);
}
.footer-inner {
  max-width: var(--my-max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-logo {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 16px;
  color: var(--my-text);
}
.footer-copyright {
  font-size: 11px;
  color: var(--my-text-muted);
  line-height: 1.8;
}
.footer-sns {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.footer-sns a {
  font-size: 12px;
  color: var(--my-text-muted);
  transition: color 0.2s;
  text-decoration: none;
}
.footer-sns a:hover { color: var(--my-text-sec); }

/* ════════════════════════════════════════════════════════════
   Kakao Floating Button
   ════════════════════════════════════════════════════════════ */
.kakao-floating-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #FEE500;
  color: #191919;
  padding: 12px 20px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.2s ease;
  opacity: 1;
  transform: translateY(0);
}
.kakao-floating-btn:hover {
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.55);
  transform: translateY(-2px);
  color: #191919;
}
.kakao-floating-btn.hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
.kakao-floating-btn svg { flex-shrink: 0; }

/* ════════════════════════════════════════════════════════════
   PIN Setup View (기존 유지)
   ════════════════════════════════════════════════════════════ */
#setupView {
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
}
.my-container {
  width: 100%;
  max-width: 380px;
}
.my-header {
  text-align: center;
  margin-bottom: 32px;
}
.my-logo-mark {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--my-accent);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.my-brand {
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--my-text-sec);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.my-subtitle {
  font-size: 20px;
  font-weight: 600;
  color: var(--my-text);
}

/* ── 카드 ── */
.my-card {
  background: var(--my-bg-card);
  border: 1px solid var(--my-border);
  border-radius: var(--my-radius);
  padding: 24px;
  margin-bottom: 16px;
}
.my-input-group {
  margin-bottom: 16px;
}
.my-input-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--my-text-sec);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.my-input {
  width: 100%;
  padding: 12px 14px;
  background: var(--my-bg-input);
  border: 1px solid var(--my-border);
  border-radius: 8px;
  color: var(--my-text);
  font-size: 16px;
  font-family: var(--my-font);
  outline: none;
  transition: border-color 0.2s;
}
.my-input:focus {
  border-color: var(--my-accent);
}
.my-input::placeholder {
  color: var(--my-text-muted);
}

.my-btn-primary {
  width: 100%;
  padding: 14px;
  background: var(--my-accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--my-font);
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}
.my-btn-primary:hover { background: var(--my-accent-hover); }
.my-btn-primary:active { transform: scale(0.98); }
.my-btn-primary:disabled {
  background: rgba(231,117,0,0.4);
  cursor: not-allowed;
}

.my-error {
  margin-top: 12px;
  font-size: 13px;
  color: #FF453A;
  text-align: center;
  min-height: 18px;
  white-space: pre-line;
}

.my-help {
  text-align: center;
  font-size: 13px;
  color: var(--my-text-muted);
  line-height: 1.8;
}
.my-help a { font-weight: 600; }
.my-help-sub { font-size: 12px; margin-top: 2px; }

/* ── PIN Setup ── */
.my-setup-info {
  text-align: center;
  margin-bottom: 24px;
  padding: 16px;
  background: var(--my-bg-elevated);
  border: 1px solid var(--my-border);
  border-radius: var(--my-radius);
}
.my-setup-names {
  font-size: 18px;
  font-weight: 600;
  color: var(--my-text);
}
.my-setup-sub {
  font-size: 13px;
  color: var(--my-text-sec);
  margin-top: 4px;
}

/* ════════════════════════════════════════════════════════════
   DASHBOARD VIEW (기존 유지)
   ════════════════════════════════════════════════════════════ */
#dashView {
  flex-direction: column;
  min-height: 100vh;
}
.my-dash-container {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 0 16px 40px;
}

/* ── 상단바 ── */
.my-dash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  margin-bottom: 8px;
  position: sticky;
  top: 0;
  background: var(--my-bg);
  z-index: 10;
}
.my-dash-brand {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--my-accent);
  font-weight: 700;
}
.my-logout-btn {
  padding: 6px 14px;
  background: transparent;
  border: 1px solid var(--my-border);
  border-radius: 6px;
  color: var(--my-text-sec);
  font-size: 12px;
  font-family: var(--my-font);
  cursor: pointer;
  transition: all 0.2s;
}
.my-logout-btn:hover {
  border-color: var(--my-text-sec);
  color: var(--my-text);
}

/* ── 인사말 ── */
.my-dash-greeting {
  text-align: center;
  padding: 24px 0 20px;
}
.my-greeting-names {
  font-size: 22px;
  font-weight: 600;
  color: var(--my-text);
}
.my-greeting-heart {
  color: var(--my-accent);
  margin: 0 4px;
}
.my-greeting-sub {
  font-size: 13px;
  color: var(--my-text-sec);
  margin-top: 6px;
}

/* ── 앰배서더 배지 (선정자 골드 테마) ── */
.my-ambassador-badge {
  background: linear-gradient(135deg, #D4A017 0%, #F5D060 50%, #D4A017 100%);
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  color: #1a1a1a;
}
.my-ambassador-badge .my-greeting-names {
  color: #1a1a1a;
  font-size: 20px;
}
.my-ambassador-badge .my-greeting-heart {
  color: #8B0000;
}
.my-ambassador-badge-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #5a3d00;
}
.my-ambassador-quarter {
  font-size: 12px;
  font-weight: 500;
  color: #5a3d00;
  margin-top: 6px;
}

/* ── 앰배서더 상태 카드 (pending/rejected) ── */
.my-ambassador-card-pending {
  border-color: rgba(231, 117, 0, 0.25);
  background: rgba(231, 117, 0, 0.06);
}
.my-ambassador-card-rejected {
  border-color: rgba(255, 255, 255, 0.06);
}
.my-ambassador-info {
  padding: 8px 0;
}
.my-ambassador-status-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--my-text);
  margin-bottom: 4px;
}
.my-ambassador-status-sub {
  font-size: 13px;
  color: var(--my-text-sec);
}

/* ── 대시보드 카드 ── */
.my-dash-card {
  background: var(--my-bg-card);
  border: 1px solid var(--my-border);
  border-radius: var(--my-radius);
  padding: 20px;
  margin-bottom: 12px;
}

/* ── 초상권 안내 카드 ── */
.my-portrait-notice {
  background: var(--my-bg-elevated);
  border: 1px solid rgba(231, 117, 0, 0.2);
}
.my-portrait-notice-text {
  font-size: 13px;
  color: var(--my-text-sec);
  line-height: 1.7;
}
.my-portrait-notice-text strong { color: var(--my-accent); }
.my-portrait-icon { font-size: 16px; margin-right: 4px; }
.my-portrait-link { margin-top: 12px; }
.my-portrait-link:empty { display: none; }
.my-portrait-link a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: rgba(231, 117, 0, 0.1);
  border: 1px solid rgba(231, 117, 0, 0.25);
  border-radius: 10px;
  color: var(--my-accent);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.my-portrait-link a:hover {
  background: rgba(231, 117, 0, 0.18);
  color: var(--my-accent-hover);
}
.my-card-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--my-text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.my-card-body {
  font-size: 14px;
  color: var(--my-text);
  line-height: 1.7;
}

/* ── 예약 정보 테이블 ── */
.my-info-row {
  display: flex;
  padding: 8px 0;
  border-bottom: 1px solid var(--my-border);
}
.my-info-row:last-child { border-bottom: none; }
.my-info-label {
  flex: 0 0 80px;
  font-size: 12px;
  font-weight: 600;
  color: var(--my-text-sec);
}
.my-info-value {
  flex: 1;
  font-size: 14px;
  color: var(--my-text);
}

/* ── 스테퍼 ── */
.my-stepper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 12px 0;
}
.my-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
}
.my-step-circle {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  border: 2px solid var(--my-border);
  color: var(--my-text-muted);
  background: var(--my-bg-card);
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
.my-step-circle.done {
  background: var(--my-success);
  border-color: var(--my-success);
  color: #fff;
}
.my-step-circle.current {
  border-color: var(--my-accent);
  color: var(--my-accent);
}
.my-step-label {
  margin-top: 6px;
  font-size: 11px;
  color: var(--my-text-muted);
  font-weight: 500;
  letter-spacing: 0.3px;
}
.my-step-label.done { color: var(--my-success); }
.my-step-label.current { color: var(--my-accent); }
.my-step-line {
  position: absolute;
  top: 16px;
  left: calc(50% + 18px);
  right: calc(-50% + 18px);
  height: 2px;
  background: var(--my-border);
  z-index: 0;
}
.my-step-line.done { background: var(--my-success); }
.my-step:last-child .my-step-line { display: none; }

/* 서브스냅 스테퍼 색상 */
.my-step-circle.current.subsnap { border-color: #AF52DE; color: #AF52DE; }
.my-step-label.current.subsnap { color: #AF52DE; }
.my-step-circle.done.subsnap { background: #AF52DE; border-color: #AF52DE; }
.my-step-label.done.subsnap { color: #AF52DE; }
.my-step-line.done.subsnap { background: #AF52DE; }

/* ── 결제 현황 ── */
.my-payment-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--my-border);
}
.my-payment-row:last-child { border-bottom: none; }
.my-payment-label {
  font-size: 13px;
  color: var(--my-text-sec);
  flex-shrink: 0;
  padding-top: 2px;
}
.my-payment-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--my-text);
  text-align: right;
}
.my-payment-value.paid { color: var(--my-success); }
.my-payment-value.pending { color: var(--my-accent); }
.my-payment-sub {
  font-size: 11px;
  font-weight: 500;
  color: var(--my-text-muted);
  margin-top: 2px;
}
.my-payment-value.paid .my-payment-sub { color: rgba(52,199,89,0.6); }
.my-payment-value.pending .my-payment-sub { color: rgba(231,117,0,0.6); }
.my-payment-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
}
.my-payment-badge.paid { background: rgba(52,199,89,0.15); color: var(--my-success); }
.my-payment-badge.unpaid { background: rgba(231,117,0,0.15); color: var(--my-accent); }

/* ── 계좌 정보 ── */
.my-bank-info {
  margin-top: 14px;
  padding: 16px;
  background: rgba(231,117,0,0.08);
  border: 1px solid rgba(231,117,0,0.2);
  border-radius: 10px;
  text-align: center;
}
.my-bank-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--my-accent);
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.my-bank-amount { font-size: 16px; font-weight: 700; color: var(--my-text); margin-bottom: 8px; }
.my-bank-account { font-size: 15px; font-weight: 600; color: var(--my-text); letter-spacing: 0.5px; }
.my-bank-holder { font-size: 13px; color: var(--my-text-sec); margin-top: 2px; margin-bottom: 12px; }
.my-bank-copy-btn {
  width: 100%;
  padding: 12px;
  background: var(--my-accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--my-font);
  cursor: pointer;
  transition: background 0.2s;
}
.my-bank-copy-btn:hover { background: var(--my-accent-hover); }
.my-bank-copy-btn:active { transform: scale(0.98); }

/* ── 복사 토스트 ── */
.my-copy-toast {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(0,0,0,0.85);
  color: #fff;
  padding: 10px 24px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--my-font);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 1000;
  pointer-events: none;
}
.my-copy-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── 현금영수증 ── */
.my-receipt-section { margin-top: 12px; }
.my-receipt-form {
  padding: 16px;
  background: var(--my-bg-elevated);
  border: 1px solid var(--my-border);
  border-radius: 10px;
}
.my-receipt-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--my-text-sec);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.my-receipt-radio-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.my-receipt-radio { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--my-text); cursor: pointer; }
.my-receipt-radio input[type="radio"] { accent-color: var(--my-accent); width: 16px; height: 16px; }
.my-receipt-submit-btn {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  background: var(--my-bg-card);
  border: 1px solid var(--my-accent);
  border-radius: 8px;
  color: var(--my-accent);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--my-font);
  cursor: pointer;
  transition: all 0.2s;
}
.my-receipt-submit-btn:hover { background: rgba(231,117,0,0.1); }
.my-receipt-submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.my-receipt-done {
  padding: 14px;
  background: rgba(52,199,89,0.08);
  border: 1px solid rgba(52,199,89,0.2);
  border-radius: 10px;
  text-align: center;
}
.my-receipt-done-icon { font-size: 20px; color: var(--my-success); margin-bottom: 4px; }
.my-receipt-done-text { font-size: 13px; font-weight: 600; color: var(--my-success); }
.my-receipt-done-number { font-size: 14px; color: var(--my-text-sec); margin-top: 4px; }
.my-receipt-edit-btn {
  margin-top: 8px;
  padding: 6px 16px;
  background: transparent;
  border: 1px solid var(--my-border);
  border-radius: 6px;
  color: var(--my-text-muted);
  font-size: 12px;
  font-family: var(--my-font);
  cursor: pointer;
  transition: all 0.2s;
}
.my-receipt-edit-btn:hover { border-color: var(--my-text-sec); color: var(--my-text-sec); }

/* ── 셀렉본 파일명 ── */
#dashSelectFiles {
  margin-top: 14px;
  border-top: 1px solid var(--my-border);
  padding-top: 14px;
}
/* ── 원본 파일 URL 카드 ──────────────────────────────── */
.my-original-url-card {
  text-align: center;
  margin-top: 14px;
  border-top: 1px solid var(--my-border);
  padding-top: 14px;
}
.my-original-url-icon {
  font-size: 24px;
  margin-bottom: 6px;
}
.my-original-url-text {
  font-size: 13px;
  font-weight: 600;
  color: #AF52DE;
  margin-bottom: 12px;
}
.my-original-url-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(175, 82, 222, 0.08);
  border: 1px solid rgba(175, 82, 222, 0.2);
  border-radius: 12px;
  padding: 14px 20px;
  color: #AF52DE;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
}
.my-original-url-link:hover {
  background: rgba(175, 82, 222, 0.15);
  border-color: #AF52DE;
}
.my-original-url-link-icon { font-size: 16px; }
.my-original-url-arrow {
  font-size: 16px;
  margin-left: auto;
  opacity: 0.6;
}

.my-select-form { text-align: center; }
.my-select-title { font-size: 12px; font-weight: 700; color: var(--my-text-sec); letter-spacing: 0.5px; margin-bottom: 6px; }
.my-select-desc { font-size: 12px; color: var(--my-text-muted); margin-bottom: 10px; }
.my-select-textarea {
  width: 100%;
  padding: 12px;
  background: var(--my-bg-input);
  border: 1px solid var(--my-border);
  border-radius: 8px;
  color: var(--my-text);
  font-size: 14px;
  font-family: var(--my-font);
  resize: vertical;
  outline: none;
  transition: border-color 0.2s;
  min-height: 80px;
}
.my-select-textarea:focus { border-color: #AF52DE; }
.my-select-textarea::placeholder { color: var(--my-text-muted); }
.my-select-submit-btn {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  background: #AF52DE;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--my-font);
  cursor: pointer;
  transition: background 0.2s;
}
.my-select-submit-btn:hover { background: #C77DFF; }
.my-select-submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.my-select-done { text-align: center; }
.my-select-done-icon { font-size: 20px; color: #AF52DE; margin-bottom: 4px; }
.my-select-done-text { font-size: 13px; font-weight: 600; color: #AF52DE; }
.my-select-done-content {
  font-size: 13px;
  color: var(--my-text-sec);
  margin-top: 6px;
  padding: 10px;
  background: var(--my-bg-input);
  border-radius: 6px;
  white-space: pre-wrap;
  word-break: break-all;
  text-align: left;
  line-height: 1.6;
}
.my-select-edit-btn {
  margin-top: 8px;
  padding: 6px 16px;
  background: transparent;
  border: 1px solid var(--my-border);
  border-radius: 6px;
  color: var(--my-text-muted);
  font-size: 12px;
  font-family: var(--my-font);
  cursor: pointer;
  transition: all 0.2s;
}
.my-select-edit-btn:hover { border-color: #AF52DE; color: #AF52DE; }

/* ── 계약서 다운로드 ── */
.my-contract-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: var(--my-bg-elevated);
  border: 1px solid var(--my-border);
  border-radius: 10px;
  color: var(--my-text);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--my-font);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.my-contract-btn:hover { border-color: var(--my-accent); color: var(--my-accent); }

/* ── 식순지 업로드 ── */
.my-ceremony-form { text-align: center; }
.my-ceremony-desc { font-size: 13px; color: var(--my-text-sec); margin-bottom: 14px; line-height: 1.6; }
.my-ceremony-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 14px;
  border: 1px solid var(--my-border);
  border-radius: 8px;
  overflow: hidden;
}
.my-ceremony-tab {
  flex: 1;
  padding: 10px;
  background: var(--my-bg-input);
  border: none;
  color: var(--my-text-muted);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--my-font);
  cursor: pointer;
  transition: all 0.2s;
}
.my-ceremony-tab.active { background: var(--my-accent); color: #fff; }
.my-ceremony-panel { margin-bottom: 12px; }
.my-ceremony-file-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border: 2px dashed var(--my-border);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.my-ceremony-file-label:hover { border-color: var(--my-accent); }
.my-ceremony-file-icon { font-size: 28px; margin-bottom: 8px; }
.my-ceremony-file-text { font-size: 13px; color: var(--my-text-sec); }
.my-ceremony-file-name { font-size: 12px; color: var(--my-accent); margin-top: 8px; min-height: 16px; }
.my-ceremony-file-limit { font-size: 11px; color: var(--my-text-muted); margin-top: 4px; }
.my-ceremony-textarea {
  width: 100%;
  padding: 12px;
  background: var(--my-bg-input);
  border: 1px solid var(--my-border);
  border-radius: 8px;
  color: var(--my-text);
  font-size: 14px;
  font-family: var(--my-font);
  resize: vertical;
  outline: none;
  transition: border-color 0.2s;
  min-height: 120px;
  box-sizing: border-box;
}
.my-ceremony-textarea:focus { border-color: var(--my-accent); }
.my-ceremony-textarea::placeholder { color: var(--my-text-muted); }
.my-ceremony-submit-btn {
  width: 100%;
  padding: 12px;
  margin-top: 2px;
  background: var(--my-accent);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--my-font);
  cursor: pointer;
  transition: background 0.2s;
}
.my-ceremony-submit-btn:hover { background: var(--my-accent-hover); }
.my-ceremony-submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.my-ceremony-done { text-align: center; padding: 8px 0; }
.my-ceremony-done-icon { font-size: 20px; color: var(--my-success); margin-bottom: 4px; }
.my-ceremony-done-text { font-size: 14px; font-weight: 600; color: var(--my-success); margin-bottom: 12px; }
.my-ceremony-done-guide { font-size: 13px; color: var(--my-text-sec); line-height: 1.8; }
.my-ceremony-done-guide a { color: var(--my-accent); text-decoration: none; font-weight: 600; }
.my-ceremony-done-guide a:hover { text-decoration: underline; }

/* ── 카카오톡 버튼 (대시보드) ── */
.my-kakao-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: #FEE500;
  border: none;
  border-radius: 10px;
  color: #191919;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--my-font);
  text-decoration: none;
  transition: background 0.2s;
}
.my-kakao-btn:hover { background: #FDD835; color: #191919; }
.my-kakao-icon { font-size: 18px; }

/* ── 하단 ── */
.my-dash-footer {
  text-align: center;
  padding: 32px 0 16px;
}
.my-footer-text {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--my-text-muted);
  font-weight: 500;
}

/* ── 성공 메시지 ── */
.my-success-msg {
  text-align: center;
  padding: 20px;
  background: rgba(52,199,89,0.1);
  border: 1px solid rgba(52,199,89,0.2);
  border-radius: var(--my-radius);
  color: var(--my-success);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* ════════════════════════════════════════════════════════════
   Responsive — Tablet (1024px)
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .gnb { padding: 0 32px; }
  .my-hero { padding: 100px 32px 80px; }
  .my-hero-inner { gap: 48px; }
  .my-intro { padding: 100px 32px; }
  .my-preview { padding: 100px 32px; }
  .my-cta { padding: 100px 32px; }
  .footer { padding: 60px 32px; }
  .my-intro-grid { grid-template-columns: repeat(2, 1fr); }
  .my-preview-phone { width: 210px; height: 455px; }
}

/* ════════════════════════════════════════════════════════════
   Responsive — Mobile (768px)
   ════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .gnb { padding: 0 24px; }
  .gnb-links { display: none; }
  .menu-btn { display: flex; }
  .mobile-menu { display: flex; }

  .my-hero {
    padding: 100px 24px 60px;
    min-height: auto;
  }
  .my-hero-inner {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  .my-hero-content { max-width: 100%; }
  .my-hero-login { flex: none; width: 100%; max-width: 400px; }
  .my-hero-title { font-size: 32px; }

  .my-intro { padding: 80px 24px; }
  .my-intro-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .my-intro-item { padding: 24px 16px; }

  .my-preview { padding: 80px 24px; }
  .my-preview-phone { width: 200px; height: 434px; border-radius: 34px; }

  .my-cta { padding: 80px 24px; }

  .footer { padding: 40px 24px; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-sns { align-items: flex-start; }
}

/* ════════════════════════════════════════════════════════════
   Responsive — Small Mobile (480px)
   ════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .my-hero { padding: 88px 16px 48px; }
  .my-hero-title { font-size: 28px; }
  .my-login-card { padding: 24px 20px; }

  .my-intro { padding: 64px 16px; }
  .my-intro-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .my-intro-item { padding: 20px 12px; }
  .my-intro-item-title { font-size: 14px; }
  .my-intro-item-desc { font-size: 12px; }

  .my-preview { padding: 64px 16px; }
  .my-preview-phone { width: 190px; height: 412px; border-radius: 32px; }

  .my-cta { padding: 64px 16px; }

  .my-dash-container { padding: 0 12px 40px; }
  .my-dash-card { padding: 16px; }
  .my-info-label { flex: 0 0 70px; }
  .my-step-circle { width: 28px; height: 28px; font-size: 11px; }
  .my-step-line { top: 14px; left: calc(50% + 16px); right: calc(-50% + 16px); }
}

@supports (padding: env(safe-area-inset-bottom)) {
  .my-dash-container { padding-bottom: calc(40px + env(safe-area-inset-bottom)); }
}
