:root {
  --bg: #f7f7f8;
  --surface: #ffffff;
  --surface-2: #fbfbfc;
  --text: #333333;
  --text-strong: #1f2328;
  --sub: #6b7280;
  --muted: #8a9099;
  --line: #e8e8ec;
  --line-strong: #d9dbe1;
  --primary: #e76f86;
  --primary-dark: #cf526d;
  --primary-soft: #fff2f5;
  --danger: #d94b55;
  --danger-soft: #fff2f3;
  --success: #218b5f;
  --success-soft: #eefaf4;
  --warning: #8a650d;
  --warning-soft: #fff8e6;
  --info: #315f9f;
  --info-soft: #f2f6ff;
  --radius-xs: 10px;
  --radius-sm: 14px;
  --radius-md: 18px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.04), 0 8px 20px rgba(16, 24, 40, 0.05);
  --shadow-md: 0 12px 34px rgba(16, 24, 40, 0.08);
  --container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 14px; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--primary-dark); }
button, input, textarea { font: inherit; }
button { border: 0; }
img, video { display: block; max-width: 100%; }

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 0%, rgba(231, 111, 134, 0.075), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(120, 128, 145, 0.07), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7f7f8 42%, #f8f8fa 100%);
}

.topbar {
  position: sticky;
  top: 12px;
  z-index: 30;
  width: min(var(--container), calc(100% - 32px));
  margin: 14px auto 0;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  object-fit: contain;
}
.brand-copy {
  min-width: 0;
}
.brand strong {
  display: block;
  color: var(--text-strong);
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
.brand small {
  display: block;
  margin-top: 1px;
  color: var(--muted);
  font-size: 10.5px;
  line-height: 1.2;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  color: var(--sub);
  font-size: 13px;
  font-weight: 600;
}
.nav a,
.link-button {
  min-height: 34px;
  padding: 8px 11px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: var(--sub);
  background: transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.nav a:hover,
.link-button:hover {
  color: var(--text-strong);
  background: #f2f2f4;
  transform: translateY(-1px);
}
.nav a.is-active {
  color: var(--text-strong);
  background: #f6eff1;
  box-shadow: inset 0 0 0 1px #ecd8dd;
}
.nav-pill {
  color: #fff !important;
  background: var(--text-strong) !important;
}
.inline-form { display: inline-flex; margin: 0; }

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 30px auto 72px;
}
.footer {
  padding: 26px 16px 34px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}
.footer-business {
  max-width: 960px;
  margin: 0 auto;
  line-height: 1.7;
}
.footer-business p {
  margin: 0;
}

.footer-links-row {
  margin-top: 8px !important;
}

.footer-links-row a {
  color: #6b7280;
  font-weight: 700;
}

.footer-links-row span {
  margin: 0 6px;
  color: #c0c6d0;
}

.eyebrow {
  margin: 0 0 7px;
  color: var(--primary-dark);
  font-size: 11px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
h1, h2, h3 { color: var(--text-strong); letter-spacing: -0.035em; }
h1 {
  margin: 0 0 10px;
  font-size: clamp(25px, 3.2vw, 36px);
  line-height: 1.2;
  font-weight: 760;
}
h2 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.32;
  font-weight: 740;
}
h3 {
  margin: 0 0 8px;
  font-size: 15.5px;
  line-height: 1.35;
  font-weight: 740;
}
p { margin: 0 0 12px; }
.muted { color: var(--sub); line-height: 1.72; }
.center { text-align: center; justify-content: center; }
.full { width: 100%; }
.full-width { grid-column: 1 / -1; }
.mb-8 { margin-bottom: 8px; }

.btn {
  min-height: 38px;
  padding: 9px 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--text-strong);
  background: #f4f4f5;
  font-size: 13px;
  font-weight: 740;
  line-height: 1.2;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.btn:hover {
  transform: translateY(-1px);
  color: var(--text-strong);
  box-shadow: 0 8px 16px rgba(16, 24, 40, 0.08);
}
.btn:active { transform: translateY(0); box-shadow: none; }
.btn:disabled { opacity: 0.52; cursor: not-allowed; transform: none; box-shadow: none; }
.btn.primary {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}
.btn.primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; }
.btn.ghost {
  color: var(--text);
  background: #fff;
  border-color: var(--line-strong);
}
.btn.ghost:hover { background: #f7f7f8; border-color: #cfd2da; }
.btn.kakao {
  color: #191600;
  background: #fee500;
  border-color: #fee500;
  box-shadow: 0 12px 28px rgba(254, 229, 0, 0.18);
}
.btn.kakao:hover {
  color: #191600;
  background: #f4dc00;
  border-color: #f4dc00;
}
.btn.danger {
  color: #fff;
  background: var(--danger);
  border-color: var(--danger);
}
.btn.danger:hover { color: #fff; background: #c83d48; }
.btn.small { min-height: 34px; padding: 8px 12px; font-size: 12.5px; }
.btn.tiny { min-height: 29px; padding: 6px 10px; font-size: 12px; }

.flash-stack {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 120;
  display: grid;
  gap: 10px;
  width: min(360px, calc(100% - 24px));
}

.flash,
.notice {
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(14px);
}

.flash {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 12px;
  opacity: 0;
  transform: translateY(-10px) scale(0.98);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.flash.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.flash.is-leaving {
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
}

.flash-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.flash-body {
  min-width: 0;
}

.flash-title {
  display: block;
  margin-bottom: 2px;
  color: #1f2937;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.flash-message {
  margin: 0;
  color: #4b5563;
  font-size: 12.5px;
  line-height: 1.55;
}

.flash-close {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 999px;
  color: #9ca3af;
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.flash-close:hover {
  color: #4b5563;
  background: rgba(148, 163, 184, 0.12);
}

.flash-success {
  border-color: #d9f0e2;
}

.flash-success .flash-icon {
  color: #1f8a5a;
  background: #eef9f2;
}

.flash-danger,
.danger-soft {
  border-color: #f5d7dc;
}

.flash-danger .flash-icon,
.danger-soft .flash-icon {
  color: #c2414f;
  background: #fff1f3;
}

.flash-warning {
  border-color: #f0e2b3;
}

.flash-warning .flash-icon {
  color: #8a650d;
  background: #fff7e2;
}

.flash-info {
  border-color: #dbe4fb;
}

.flash-info .flash-icon {
  color: #315f9f;
  background: #f2f6ff;
}

@media (max-width: 720px) {
  .flash-stack {
    top: 12px;
    right: 12px;
    left: 12px;
    width: auto;
  }

  .flash {
    gap: 10px;
    padding: 12px 13px;
  }
}

.hero-card,
.panel,
.stat-card,
.album-card,
.setting-card,
.empty-card,
.media-card,
.detail-cover,
.detail-info,
.guest-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.auth-wrap {
  min-height: calc(100vh - 220px);
  display: grid;
  place-items: center;
  padding: 8px 0;
}
.auth-card {
  width: min(440px, 100%);
  padding: 30px;
}
.auth-card.wide { width: min(680px, 100%); }
.form-stack { display: grid; gap: 13px; }
.form-stack label {
  display: grid;
  gap: 7px;
  color: var(--text-strong);
  font-size: 13px;
  font-weight: 720;
}
input,
select,
textarea {
  width: 100%;
  min-height: 40px;
  padding: 10px 12px;
  color: var(--text-strong);
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  outline: 0;
  box-shadow: 0 1px 0 rgba(16, 24, 40, 0.02);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
input::placeholder,
textarea::placeholder { color: #a1a6b0; }
input:focus,
select:focus,
textarea:focus {
  border-color: rgba(231, 111, 134, 0.8);
  box-shadow: 0 0 0 4px rgba(231, 111, 134, 0.13);
}
input:disabled { color: var(--muted); background: #f5f5f6; }
input[type="file"] { padding: 8px 10px; }
textarea { resize: vertical; line-height: 1.65; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; }
.span-2 { grid-column: 1 / -1; }
.check-row {
  display: flex !important;
  align-items: center;
  gap: 8px !important;
  color: var(--sub) !important;
  font-weight: 650 !important;
}
.check-row input,
.check-card input,
.select-box input { width: auto; min-height: 0; box-shadow: none; }
.check-card {
  display: flex !important;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px !important;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-2);
}
.check-card input { margin-top: 3px; }
.check-card strong { display: block; color: var(--text-strong); font-size: 13px; }
.check-card small { display: block; margin-top: 2px; color: var(--sub); font-size: 12px; line-height: 1.55; font-weight: 500; }

.page-head,
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}
.page-head > div,
.section-head > div { min-width: 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}
.stat-card { padding: 18px; }
.stat-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.stat-card strong {
  display: block;
  color: var(--text-strong);
  font-size: 17px;
  line-height: 1.35;
  font-weight: 760;
}
.progress {
  height: 7px;
  margin-top: 11px;
  overflow: hidden;
  background: #eceef2;
  border-radius: 999px;
}
.progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--primary);
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}
.album-card { overflow: hidden; transition: transform 0.15s ease, box-shadow 0.15s ease; }
.album-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.album-cover {
  position: relative;
  display: block;
  height: 192px;
  overflow: hidden;
  background: #f2f2f4;
}
.album-cover img,
.detail-cover img,
.guest-visual img { width: 100%; height: 100%; object-fit: cover; }
.cover-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  color: transparent;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.08)),
    url("../img/background.png") center/cover no-repeat;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.cover-placeholder.big { min-height: 280px; font-size: 30px; }
.badges {
  position: absolute;
  top: 11px;
  left: 11px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.badge {
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 12px rgba(16, 24, 40, 0.08);
  font-size: 11px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}
.badge.ok { color: var(--success); }
.badge.gray { color: var(--sub); }
.badge.danger { color: var(--danger); }
.album-body { padding: 16px; }
.album-body h2 { margin-bottom: 6px; font-size: 17px; }
.card-actions,
.action-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.card-actions { margin-top: 12px; }
.wrap { flex-wrap: wrap; }

.detail-hero {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: 18px;
  align-items: stretch;
  margin-bottom: 22px;
}
.detail-cover { overflow: hidden; min-height: 300px; }
.detail-info { padding: 28px; }
.detail-hero-remodel {
  align-items: stretch;
}
.detail-cover-remodel {
  position: relative;
}
.detail-cover-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.detail-info-remodel {
  display: flex;
  flex-direction: column;
}
.detail-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0 18px;
}
.detail-summary-card {
  padding: 13px 14px;
  border: 1px solid #eee6e8;
  border-radius: 18px;
  background: #fcfbfb;
}
.detail-summary-card span {
  display: block;
  margin-bottom: 6px;
  color: #8a8186;
  font-size: 11.5px;
  font-weight: 700;
}
.detail-summary-card strong {
  display: block;
  color: #262228;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 760;
}
.detail-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 2px 0 18px;
}
.detail-stat-grid-compact {
  margin-top: 0;
}
.detail-stat-card {
  padding: 14px 15px;
  border: 1px solid #f1eaec;
  border-radius: 18px;
  background: linear-gradient(180deg, #fffefe 0%, #fbf9fa 100%);
}
.detail-stat-card span {
  display: block;
  margin-bottom: 6px;
  color: #8b8187;
  font-size: 11.5px;
  font-weight: 700;
}
.detail-stat-card strong {
  display: block;
  color: #241f24;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 760;
}
.detail-link-panel {
  margin: 0 0 18px;
}
.detail-link-label {
  display: block;
  margin-bottom: 8px;
  color: #8a8085;
  font-size: 11.5px;
  font-weight: 700;
}
.detail-link-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid #eee6e8;
  border-radius: 18px;
  background: #fcfbfb;
}
.detail-link-input {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 40px;
  padding: 10px 12px;
  text-align: left;
  color: #525866;
  background: #ffffff;
  border: 1px solid #ece6e8;
  border-radius: 14px;
}
.detail-link-copy {
  flex: 0 0 auto;
}
.detail-action-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.detail-action-head strong {
  color: #211f24;
  font-size: 14px;
  font-weight: 780;
}
.detail-action-head small {
  color: #8a8086;
  font-size: 11.5px;
  line-height: 1.45;
}
.detail-primary-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.detail-action-btn {
  min-height: 74px;
  justify-content: flex-start;
  padding: 13px 14px;
  border-radius: 18px;
  text-align: left;
  white-space: normal;
}
.detail-action-btn span {
  display: grid;
  gap: 3px;
}
.detail-action-btn strong {
  display: block;
  font-size: 13.5px;
  line-height: 1.25;
  font-weight: 780;
}
.detail-action-btn small {
  display: block;
  color: #7e848d;
  font-size: 11.5px;
  line-height: 1.4;
  font-weight: 650;
}
.btn-svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.detail-info-remodel .detail-meta,
.detail-info-remodel .detail-meta.compact {
  display: none;
}
.settings-grid,
.detail-manage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 26px;
}
.setting-card { padding: 19px; }
.detail-manage-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.detail-card-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.detail-card-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #8e99ab;
  background: #f6f8fb;
}
.detail-card-icon.danger {
  color: #d55a66;
  background: #fff0f2;
}
.detail-icon-svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.detail-card-head h3 {
  margin-bottom: 4px;
}
.detail-card-head .muted {
  margin-bottom: 0;
}
.detail-inline-btn {
  justify-content: center;
}
.detail-section-head {
  margin-top: 6px;
}
.danger-zone { background: linear-gradient(180deg, #fff, #fff8f9); }
.thumb-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 9px;
}
.thumb {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #f0f0f2;
}
.thumb img,
.thumb video,
.media-preview img,
.media-preview video { width: 100%; height: 100%; object-fit: cover; }
.play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 26px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
}

.panel { padding: 22px; }
.asset-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
}
.locked-panel { padding: 42px 26px; text-align: center; }
.lock-icon,
.success-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  color: var(--primary-dark);
  background: var(--primary-soft);
  border: 1px solid #f7d5dc;
  border-radius: 50%;
  font-size: 24px;
}
.plan-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 17px;
}

.gallery-toolbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 15px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}
.media-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.media-card { position: relative; overflow: hidden; }
.select-box {
  position: absolute;
  top: 9px;
  left: 9px;
  z-index: 2;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 14px rgba(16, 24, 40, 0.14);
}
.select-box input { width: 15px; height: 15px; }
.media-preview {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  padding: 0;
  border: 0;
  cursor: zoom-in;
  background: #f0f0f2;
}
.media-info { padding: 13px; }
.media-info strong { display: block; color: var(--text-strong); font-size: 13.5px; }
.media-info small { display: block; margin-top: 3px; color: var(--muted); font-size: 11.5px; }
.media-info p { margin-top: 10px; color: var(--sub); font-size: 12.5px; line-height: 1.58; }
.danger-line { margin-top: 21px; text-align: right; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(20, 24, 31, 0.42);
  backdrop-filter: blur(6px);
}
.modal[aria-hidden="false"] { display: grid; }
.modal-panel {
  position: relative;
  width: min(520px, 100%);
  max-height: min(90vh, 900px);
  overflow: auto;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 26px 70px rgba(16, 24, 40, 0.22);
}
.modal-close {
  position: absolute;
  top: 13px;
  right: 13px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--sub);
  background: #f2f2f4;
  border-radius: 50%;
  font-size: 21px;
  line-height: 1;
  cursor: pointer;
}
.modal-close:hover { color: var(--text-strong); background: #e9eaee; }
.center-panel { text-align: center; }
.qr-img {
  width: 230px;
  margin: 17px auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.copy-input { text-align: center; color: var(--sub); font-size: 12px; }
.preview-panel { width: min(860px, 100%); }
.preview-media {
  width: 100%;
  max-height: 68vh;
  object-fit: contain;
  background: #121417;
  border-radius: var(--radius-md);
}
.message-box {
  margin-top: 13px;
  padding: 13px 14px;
  color: var(--text);
  background: var(--primary-soft);
  border: 1px solid #f7d5dc;
  border-radius: var(--radius-md);
  white-space: pre-wrap;
}
.lightbox-open {
  overflow: hidden;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: none;
  background: rgba(0, 0, 0, 0.96);
}
.lightbox[aria-hidden="false"] {
  display: block;
}
.lightbox-stage {
  position: absolute;
  inset: 0;
  padding: 84px 88px 130px;
  display: grid;
  place-items: center;
}
.lightbox-media {
  display: none;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.lightbox-media.is-active {
  display: block;
}
.lightbox-close,
.lightbox-download,
.lightbox-nav {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: transparent;
}
.lightbox-close,
.lightbox-download {
  top: 18px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  font-size: 32px;
  line-height: 1;
  opacity: 0.84;
}
.lightbox-close {
  right: 18px;
}
.lightbox-download {
  right: 68px;
  font-size: 24px;
  text-decoration: none;
}
.lightbox-nav {
  top: 50%;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  font-size: 56px;
  line-height: 1;
  transform: translateY(-50%);
  opacity: 0.8;
}
.lightbox-nav.prev {
  left: 22px;
}
.lightbox-nav.next {
  right: 22px;
}
.lightbox-close:hover,
.lightbox-download:hover,
.lightbox-nav:hover {
  opacity: 1;
}
.lightbox-caption {
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: min(920px, calc(100% - 32px));
  padding: 14px 18px;
  transform: translateX(-50%);
  color: #ffffff;
  background: rgba(14, 14, 16, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  backdrop-filter: blur(12px);
}
.lightbox-caption strong,
.lightbox-caption span {
  display: block;
}
.lightbox-caption strong {
  font-size: 16px;
  font-weight: 800;
}
.lightbox-caption span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12.5px;
}
.lightbox-caption p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 1.65;
  white-space: pre-wrap;
}
.member-list {
  display: grid;
  gap: 12px;
}
.member-row {
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(232, 220, 223, 0.9);
}
.member-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.member-row strong {
  display: block;
  color: var(--text-strong);
  font-size: 14px;
}
.member-row .muted {
  margin: 4px 0 0;
}

.guest-shell {
  min-height: calc(100vh - 230px);
  display: grid;
  place-items: center;
}
.guest-card {
  width: min(900px, 100%);
  display: grid;
  grid-template-columns: 340px 1fr;
  overflow: hidden;
}
.guest-visual {
  min-height: 540px;
  background: #f1f1f3;
}
.guest-content { padding: 30px; }
.upload-progress {
  height: 9px;
  overflow: hidden;
  background: #eceef2;
  border-radius: 999px;
}
.upload-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--primary);
  border-radius: inherit;
  transition: width 0.1s linear;
}
.upload-status { min-height: 20px; color: var(--sub); font-size: 13px; }
.upload-status.success { color: var(--success); font-weight: 750; }
.upload-status.danger { color: var(--danger); font-weight: 750; }

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 200;
  padding: 10px 15px;
  color: #fff;
  background: rgba(31, 35, 40, 0.94);
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translate(-50%, 14px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.empty-card { padding: 30px; text-align: center; }

.landing-body {
  color: #2b2427;
  background:
    radial-gradient(circle at top, rgba(255, 214, 220, 0.55), transparent 34%),
    linear-gradient(180deg, #fffdfa 0%, #fff8f6 42%, #fffdfb 100%);
}
.landing-body .page-bg {
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 191, 203, 0.22), transparent 24%),
    radial-gradient(circle at 82% 12%, rgba(255, 227, 193, 0.18), transparent 24%),
    radial-gradient(circle at 50% 78%, rgba(236, 180, 203, 0.18), transparent 26%),
    linear-gradient(180deg, #fffefd 0%, #fff9f7 52%, #fffdfb 100%);
}
.landing-main {
  width: 100%;
  margin: 0;
}
.landing-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.landing-topbar {
  position: sticky;
  top: 16px;
  z-index: 40;
  width: min(1180px, calc(100% - 40px));
  margin: 18px auto 0;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(255, 253, 252, 0.76);
  border: 1px solid rgba(219, 199, 205, 0.55);
  border-radius: 999px;
  box-shadow: 0 20px 50px rgba(48, 27, 36, 0.08);
  backdrop-filter: blur(18px);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.landing-body[data-scrolled="true"] .landing-topbar {
  transform: translateY(-2px);
  background: rgba(255, 252, 250, 0.9);
  box-shadow: 0 26px 60px rgba(48, 27, 36, 0.1);
}
.landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.landing-brand-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  object-fit: contain;
}
.landing-brand-copy strong,
.landing-footer-brand strong {
  display: block;
  color: #241a1d;
  font-size: 13px;
  line-height: 1.15;
  letter-spacing: 0.08em;
}
.landing-brand-copy small {
  display: block;
  margin-top: 3px;
  color: #8f7f85;
  font-size: 10.5px;
  line-height: 1.2;
  letter-spacing: 0.08em;
}
.landing-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
  color: #6e5e63;
  font-size: 13px;
  font-weight: 700;
}
.landing-nav a:not(.btn) {
  padding: 8px 10px;
  border-radius: 999px;
  transition: background 0.18s ease, color 0.18s ease;
}
.landing-nav a:not(.btn):hover {
  color: #241a1d;
  background: rgba(255, 255, 255, 0.7);
}

.landing-hero {
  position: relative;
  padding: 88px 0 72px;
  overflow: clip;
}
.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(460px, 1fr);
  gap: 46px;
  align-items: center;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.hero-pill,
.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 16px;
  border: 1px solid rgba(222, 203, 208, 0.85);
  border-radius: 999px;
  color: #ce667d;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 30px rgba(185, 126, 145, 0.08);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.hero-copy h1,
.landing-section h2 {
  margin: 20px 0 18px;
  color: #32262b;
  font-size: clamp(52px, 6vw, 84px);
  line-height: 1.02;
  font-weight: 820;
  letter-spacing: -0.065em;
}
.landing-section h2 {
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.08;
}
.hero-lead,
.section-copy {
  max-width: 620px;
  color: #79696f;
  font-size: 18px;
  line-height: 1.8;
}
.hero-actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-btn {
  min-height: 54px;
  padding: 0 22px;
  font-size: 15px;
}
.hero-proof {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.proof-chip,
.step-card,
.review-card {
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(231, 215, 220, 0.95);
  border-radius: 28px;
  box-shadow: 0 18px 46px rgba(58, 34, 43, 0.06);
  backdrop-filter: blur(8px);
}
.proof-chip strong {
  display: block;
  margin-bottom: 5px;
  color: #2c1f25;
  font-size: 15px;
}
.proof-chip span {
  display: block;
  color: #86757c;
  font-size: 13px;
  line-height: 1.6;
}

.hero-visual {
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: center;
  --px: 0px;
  --py: 0px;
}
.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
}
.orb-a {
  top: 52px;
  left: 10px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(252, 185, 198, 0.55), rgba(252, 185, 198, 0));
}
.orb-b {
  right: 12px;
  bottom: 138px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 222, 189, 0.45), rgba(255, 222, 189, 0));
}
.floating-card {
  position: absolute;
  z-index: 1;
  width: 250px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(229, 208, 214, 0.9);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(74, 43, 53, 0.1);
  backdrop-filter: blur(14px);
}
.floating-card-left {
  top: 82px;
  left: 12px;
  transform: translate3d(calc(var(--px) * -0.18), calc(var(--py) * -0.18), 0) rotate(-8deg);
}
.floating-card-right {
  right: 0;
  bottom: 124px;
  transform: translate3d(calc(var(--px) * 0.16), calc(var(--py) * 0.16), 0) rotate(8deg);
}
.floating-label,
.review-badge,
.upload-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  color: #d35f79;
  background: rgba(255, 240, 244, 0.96);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.floating-card strong {
  display: block;
  margin: 12px 0 6px;
  color: #2f2328;
  font-size: 18px;
  line-height: 1.35;
}
.floating-card p {
  margin: 0;
  color: #7f6e74;
  font-size: 13px;
  line-height: 1.7;
}

.device-mockup {
  position: relative;
  z-index: 2;
  width: min(470px, 100%);
  transform: translate3d(calc(var(--px) * 0.08), calc(var(--py) * 0.08), 0);
  transition: transform 0.18s ease;
}
.device-frame {
  position: relative;
  padding: 14px;
  background: linear-gradient(180deg, #2b2728 0%, #060607 100%);
  border-radius: 56px;
  box-shadow:
    0 42px 100px rgba(28, 17, 22, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}
.device-notch {
  position: absolute;
  top: 16px;
  left: 50%;
  width: 122px;
  height: 26px;
  border-radius: 18px;
  background: #0a0a0b;
  transform: translateX(-50%);
  z-index: 3;
}
.device-screen {
  position: relative;
  overflow: hidden;
  padding: 54px 18px 18px;
  background:
    linear-gradient(180deg, rgba(255, 245, 241, 0.92) 0%, rgba(255, 255, 255, 0.98) 35%, rgba(255, 248, 246, 1) 100%),
    linear-gradient(120deg, #f4dedb 0%, #ffffff 100%);
  border-radius: 44px;
  min-height: 760px;
}
.device-toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.device-toolbar small,
.device-cover-text span,
.device-stats span {
  display: block;
  color: #8e7f85;
  font-size: 12px;
  line-height: 1.4;
}
.device-toolbar strong,
.device-cover-text strong {
  display: block;
  color: #241a1d;
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -0.05em;
}
.device-state {
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #29a44e;
  background: rgba(239, 255, 244, 0.94);
  font-size: 12px;
  font-weight: 800;
}
.device-cta-row {
  margin: 18px 0 20px;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 10px;
}
.device-cta-row button {
  min-height: 42px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 800;
}
.device-dark-btn {
  color: #fff;
  background: #171315;
}
.device-light-btn {
  color: #5f5659;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(223, 212, 216, 1);
}
.device-cover {
  position: relative;
  min-height: 318px;
  padding: 18px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 215, 196, 0.22), rgba(35, 19, 24, 0.58)),
    radial-gradient(circle at 30% 20%, rgba(255, 244, 207, 0.95), rgba(255, 244, 207, 0) 32%),
    radial-gradient(circle at 70% 18%, rgba(255, 209, 219, 0.8), rgba(255, 209, 219, 0) 35%),
    linear-gradient(135deg, #d68f8e 0%, #6c4c54 45%, #2d2227 100%);
}
.device-cover::before,
.device-cover::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}
.device-cover::before {
  right: 44px;
  bottom: 26px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 239, 223, 0.7), rgba(255, 239, 223, 0));
}
.device-cover::after {
  left: 22px;
  bottom: -16px;
  width: 190px;
  height: 190px;
  background: radial-gradient(circle, rgba(255, 210, 195, 0.45), rgba(255, 210, 195, 0));
}
.device-cover-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
}
.device-cover-text {
  position: relative;
  z-index: 1;
}
.device-cover-text strong {
  margin: 8px 0 4px;
  color: #fffaf8;
  font-size: 34px;
}
.device-cover-text small {
  display: block;
  color: rgba(255, 245, 244, 0.84);
  font-size: 13px;
}
.device-stats {
  margin: 18px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.device-stats div,
.metric-card {
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(229, 217, 220, 0.9);
}
.device-stats strong,
.metric-card strong {
  display: block;
  color: #2c1f25;
  font-size: 22px;
  line-height: 1.2;
}
.device-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.grid-photo,
.upload-thumb {
  min-height: 130px;
  border-radius: 22px;
  background-size: cover;
  background-position: center;
}
.photo-a {
  background:
    linear-gradient(180deg, rgba(255, 237, 230, 0), rgba(42, 26, 32, 0.32)),
    linear-gradient(135deg, #e1c6bf 0%, #ae7d7a 48%, #6d525a 100%);
}
.photo-b {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(42, 26, 32, 0.32)),
    linear-gradient(135deg, #ebe1d9 0%, #b59183 45%, #5f4344 100%);
}
.photo-c {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(42, 26, 32, 0.32)),
    linear-gradient(135deg, #dcd2ca 0%, #8b6d6c 46%, #47363e 100%);
}
.photo-d {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(42, 26, 32, 0.32)),
    linear-gradient(135deg, #e8d7d0 0%, #9b7672 44%, #5f4f59 100%);
}
.backdrop-strip {
  position: absolute;
  top: 50%;
  z-index: 0;
  width: 260px;
  height: 380px;
  border-radius: 34px;
  filter: blur(1px);
  opacity: 0.9;
}
.strip-left {
  left: 28px;
  transform: translateY(54px) rotate(-8deg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(40, 20, 28, 0.34)),
    linear-gradient(135deg, #f1ddd7 0%, #b98780 48%, #6a4a4f 100%);
}
.strip-right {
  right: 26px;
  transform: translateY(48px) rotate(8deg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(40, 20, 28, 0.34)),
    linear-gradient(135deg, #e8ddd6 0%, #aa847c 48%, #5d4248 100%);
}
.scroll-cue {
  margin: 18px auto 0;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #a7868f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.scroll-cue span {
  width: 28px;
  height: 46px;
  display: inline-block;
  position: relative;
  border: 1.5px solid rgba(210, 149, 164, 0.55);
  border-radius: 999px;
}
.scroll-cue span::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 5px;
  height: 9px;
  border-radius: 999px;
  background: #d8778d;
  transform: translateX(-50%);
  animation: scrollCue 1.8s ease-in-out infinite;
}

.landing-section {
  position: relative;
  padding: 88px 0;
}
.section-stack {
  display: grid;
  gap: 44px;
}
.section-intro.center {
  text-align: center;
}
.section-intro.center .section-kicker {
  justify-content: center;
}
.section-intro h2 {
  margin-bottom: 16px;
}
.section-intro .section-copy {
  margin: 0 auto;
}
.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: center;
}
.feature-row.reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}
.feature-row.reverse .feature-copy {
  order: 2;
}
.feature-row.reverse .feature-visual {
  order: 1;
}
.feature-copy {
  padding: 16px 8px;
}
.feature-index {
  margin: 0 0 12px;
  color: #d9758b;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.18em;
}
.feature-copy h3,
.step-card h3,
.review-card h3 {
  margin: 0 0 12px;
  color: #2f2227;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.18;
  letter-spacing: -0.05em;
}
.feature-copy p,
.step-card p,
.review-card p,
.faq-answer p,
.landing-footer-brand p {
  color: #7d6d73;
  font-size: 16px;
  line-height: 1.8;
}
.feature-points {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.feature-points li {
  position: relative;
  padding-left: 18px;
  color: #5d4d54;
  font-size: 14px;
  font-weight: 700;
}
.feature-points li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8fa1, #f1b064);
}
.feature-visual {
  position: relative;
  min-height: 430px;
  padding: 28px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(231, 215, 220, 0.92);
  box-shadow: 0 24px 70px rgba(58, 34, 43, 0.08);
  overflow: hidden;
}
.share-visual {
  background:
    radial-gradient(circle at 16% 24%, rgba(255, 224, 229, 0.7), transparent 22%),
    linear-gradient(135deg, rgba(255, 252, 251, 0.96), rgba(255, 242, 238, 0.96));
}
.share-card {
  position: absolute;
  right: 34px;
  bottom: 26px;
  width: min(430px, calc(100% - 68px));
  padding: 24px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 54px rgba(73, 45, 54, 0.1);
}
.qr-block {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}
.qr-mini {
  aspect-ratio: 1;
  border-radius: 18px;
  background:
    linear-gradient(90deg, #111 10%, transparent 10%, transparent 20%, #111 20%, #111 30%, transparent 30%, transparent 40%, #111 40%, #111 50%, transparent 50%, transparent 60%, #111 60%, #111 70%, transparent 70%, transparent 80%, #111 80%, #111 90%, transparent 90%),
    linear-gradient(#111 10%, transparent 10%, transparent 20%, #111 20%, #111 30%, transparent 30%, transparent 40%, #111 40%, #111 50%, transparent 50%, transparent 60%, #111 60%, #111 70%, transparent 70%, transparent 80%, #111 80%, #111 90%, transparent 90%),
    #fff;
  background-size: 100% 100%;
  box-shadow: inset 0 0 0 10px #fff;
}
.qr-mini-b { transform: translateY(18px); }
.qr-mini-c { transform: translateY(-10px); }
.share-buttons {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 10px;
}
.share-btn-dark,
.share-btn-light {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 800;
}
.share-btn-dark {
  color: #fff;
  background: #151113;
}
.share-btn-light {
  color: #64595c;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(223, 212, 216, 1);
}

.upload-visual {
  background:
    radial-gradient(circle at 86% 14%, rgba(255, 227, 189, 0.62), transparent 22%),
    linear-gradient(135deg, rgba(255, 248, 244, 0.96), rgba(255, 255, 255, 0.98));
}
.upload-card {
  position: absolute;
  inset: 30px;
  padding: 28px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 54px rgba(73, 45, 54, 0.1);
}
.upload-preview {
  margin: 18px 0 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.thumb-a {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(39, 20, 25, 0.22)),
    linear-gradient(135deg, #f1d7ce 0%, #b3827e 45%, #694a4f 100%);
}
.thumb-b {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(39, 20, 25, 0.22)),
    linear-gradient(135deg, #e9ddd5 0%, #9d7d79 46%, #584147 100%);
}
.thumb-c {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(39, 20, 25, 0.22)),
    linear-gradient(135deg, #e4d1c6 0%, #b88d83 46%, #6c5055 100%);
}
.thumb-d {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(39, 20, 25, 0.22)),
    linear-gradient(135deg, #eee0db 0%, #987b79 42%, #4c3942 100%);
}
.upload-progress-demo {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #f1e7e8;
}
.upload-progress-demo span {
  display: block;
  width: 84%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff8ea2, #f4b36e);
}
.upload-card p {
  margin-top: 12px;
  color: #8d7f84;
  font-size: 14px;
  font-weight: 700;
}

.manage-visual {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 225, 230, 0.68), transparent 20%),
    linear-gradient(135deg, rgba(255, 253, 252, 0.98), rgba(255, 243, 240, 0.98));
}
.metric-panel {
  width: 100%;
  max-width: 460px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.metric-card span {
  display: block;
  margin-top: 6px;
  color: #84747a;
  font-size: 13px;
  line-height: 1.6;
}
.metric-card.wide {
  grid-column: 1 / -1;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 241, 238, 0.92)),
    linear-gradient(135deg, #2e2227 0%, #815761 100%);
}
.metric-card.wide strong,
.metric-card.wide span {
  color: #fff6f4;
}

.steps-section {
  padding-top: 42px;
}
.steps-grid,
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.step-card {
  min-height: 280px;
  position: relative;
  padding-top: 72px;
}
.step-number {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #ff879c, #f5b36d);
  font-size: 16px;
  font-weight: 800;
}
.step-card h3,
.review-card h3 {
  font-size: 28px;
}

.reviews-section {
  padding-top: 42px;
}
.review-card {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 248, 246, 0.95));
}
.review-badge {
  margin-bottom: 18px;
  width: fit-content;
}

.faq-shell {
  max-width: 980px;
}
.faq-list {
  display: grid;
  gap: 14px;
}
.faq-item {
  border: 1px solid rgba(232, 220, 223, 0.96);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 46px rgba(58, 34, 43, 0.05);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #312529;
  background: transparent;
  text-align: left;
  font-size: 18px;
  font-weight: 760;
  cursor: pointer;
}
.faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #d57288;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-item.open .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.2);
}
.faq-answer {
  padding: 0 24px 22px;
}
.faq-answer[hidden] {
  display: none;
}

.closing-section {
  padding-top: 36px;
}
.closing-shell {
  padding: 54px 28px;
  text-align: center;
  border-radius: 44px;
  background:
    radial-gradient(circle at top, rgba(255, 221, 226, 0.8), transparent 28%),
    linear-gradient(180deg, rgba(255, 250, 248, 0.96), rgba(255, 242, 238, 0.92));
  border: 1px solid rgba(233, 216, 220, 0.96);
  box-shadow: 0 28px 70px rgba(58, 34, 43, 0.08);
}
.center-actions {
  justify-content: center;
}

.landing-footer {
  padding: 30px 0 42px;
}
.landing-footer-shell {
  padding: 28px 0 8px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  border-top: 1px solid rgba(226, 211, 215, 0.95);
}
.landing-footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.landing-footer-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.landing-footer-brand strong {
  margin-bottom: 10px;
}
.landing-footer-brand p {
  margin: 0 0 4px;
  font-size: 13px;
}
.landing-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  color: #6e5e63;
  font-size: 13px;
  font-weight: 700;
}

.landing-body.has-motion [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.landing-body.has-motion [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes scrollCue {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.2; }
  40% { opacity: 1; }
  60% { transform: translate(-50%, 12px); opacity: 0.25; }
}

.app-body {
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 218, 224, 0.16), transparent 24%),
    radial-gradient(circle at 82% 10%, rgba(255, 232, 203, 0.14), transparent 26%),
    linear-gradient(180deg, #fffefd 0%, #fffaf8 44%, #fffdfc 100%);
}
.app-body .page-bg {
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 210, 218, 0.16), transparent 24%),
    radial-gradient(circle at 82% 15%, rgba(255, 230, 201, 0.12), transparent 26%),
    linear-gradient(180deg, #fffefd 0%, #fffaf8 52%, #fffdfc 100%);
}
.topbar {
  width: min(1180px, calc(100% - 40px));
  margin-top: 18px;
  padding: 12px 16px;
  background: rgba(255, 253, 252, 0.76);
  border: 1px solid rgba(219, 199, 205, 0.55);
  box-shadow: 0 20px 50px rgba(48, 27, 36, 0.08);
}
.container {
  width: min(1180px, calc(100% - 40px));
  margin: 26px auto 72px;
}
h1 {
  font-size: clamp(22px, 2.8vw, 32px);
  letter-spacing: -0.05em;
}
h2 {
  font-size: 18px;
}
.eyebrow {
  margin-bottom: 10px;
  font-size: 10px;
  letter-spacing: 0.14em;
}
.panel,
.stat-card,
.album-card,
.setting-card,
.media-card,
.detail-cover,
.detail-info,
.guest-card,
.auth-card,
.auth-copy-panel,
.review-card,
.proof-chip,
.step-card,
.landing-feature-card,
.landing-flow-step,
.landing-mini-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(231, 215, 220, 0.92);
  box-shadow: 0 18px 46px rgba(58, 34, 43, 0.06);
  backdrop-filter: blur(10px);
}
.page-head,
.app-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}
.app-hero .muted,
.page-head .muted {
  max-width: 540px;
}
.compact-stats-grid {
  gap: 14px;
}
.compact-stat-card {
  padding: 20px;
}
.compact-stat-card span {
  margin-bottom: 8px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.compact-stat-card strong {
  font-size: 22px;
  line-height: 1.15;
}
.compact-stat-card small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}
.album-body,
.media-info,
.setting-card,
.panel,
.detail-info,
.guest-content {
  padding: 20px;
}
.album-body h2 {
  font-size: 16px;
}
.detail-info h1 {
  margin-bottom: 12px;
}
.detail-meta {
  gap: 7px;
}
.detail-meta span,
.plan-list span {
  font-size: 11px;
}
.auth-wrap {
  min-height: calc(100vh - 230px);
}
.auth-layout {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(360px, 1fr);
  gap: 18px;
}
.auth-copy-panel,
.auth-form-panel {
  padding: 26px;
}
.auth-copy-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.auth-copy-panel h1 {
  max-width: 320px;
}
.auth-chip-list {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.auth-chip-list span {
  min-height: 34px;
  padding: 7px 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #7d5d68;
  background: rgba(255, 243, 246, 0.9);
  border: 1px solid rgba(238, 209, 218, 0.95);
  font-size: 12px;
  font-weight: 750;
}
.auth-form-panel h2 {
  margin-bottom: 18px;
  font-size: 24px;
}
.guest-shell {
  min-height: calc(100vh - 240px);
}
.guest-card {
  grid-template-columns: 320px 1fr;
  border-radius: 34px;
}
.guest-content h1 {
  margin-bottom: 10px;
}

.landing-topbar,
.landing-shell {
  width: min(1180px, calc(100% - 40px));
}
.landing-hero {
  padding: 60px 0 34px;
}
.compact-hero-shell {
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.9fr);
  gap: 28px;
}
.hero-copy h1 {
  margin: 16px 0 12px;
  font-size: clamp(34px, 4.5vw, 60px);
  line-height: 0.98;
}
.hero-lead {
  max-width: 520px;
  font-size: 15px;
  line-height: 1.72;
}
.hero-pill,
.section-kicker {
  min-height: 36px;
  padding: 7px 14px;
  font-size: 11px;
}
.hero-actions {
  margin-top: 22px;
}
.hero-btn {
  min-height: 48px;
  font-size: 14px;
}
.landing-mini-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.landing-mini-card {
  padding: 16px;
  border-radius: 24px;
}
.landing-mini-card strong {
  display: block;
  margin-bottom: 5px;
  color: #2f2328;
  font-size: 14px;
}
.landing-mini-card span {
  display: block;
  color: #85757b;
  font-size: 12px;
  line-height: 1.55;
}
.hero-visual-compact {
  min-height: 640px;
}
.compact-card {
  width: 210px;
  padding: 16px 18px;
}
.compact-card strong {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.4;
}
.compact-stats div {
  padding: 12px;
}
.compact-stats strong {
  font-size: 20px;
}
.compact-section {
  padding: 42px 0;
}
.compact-intro h2 {
  margin-top: 12px;
  font-size: clamp(24px, 3vw, 36px);
}
.landing-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.landing-feature-card {
  padding: 22px;
  border-radius: 30px;
}
.landing-feature-card h3 {
  margin: 10px 0 8px;
  color: #2f2227;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.04em;
}
.landing-feature-card p:last-child {
  margin-bottom: 0;
  color: #7c6d72;
  font-size: 14px;
  line-height: 1.7;
}
.compact-flow-shell {
  display: grid;
  gap: 20px;
}
.landing-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.landing-flow-step {
  padding: 20px;
  border-radius: 28px;
}
.landing-flow-step span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #ff879c, #f5b36d);
  font-size: 13px;
  font-weight: 800;
}
.landing-flow-step strong {
  display: block;
  margin: 12px 0 6px;
  color: #302328;
  font-size: 18px;
}
.landing-flow-step p {
  margin: 0;
  color: #7d6d73;
  font-size: 13px;
}
.compact-closing {
  padding: 40px 24px;
}
.compact-closing h2 {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.footer,
.landing-footer {
  padding-top: 20px;
}
.footer-business,
.landing-footer-brand p {
  font-size: 11.5px;
  line-height: 1.7;
}

.profile-actions .inline-form {
  display: inline-flex;
}

.settings-background-panel {
  margin-bottom: 18px;
  padding: 24px;
}
.settings-hero {
  align-items: center;
}
.settings-background-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.settings-background-head h2 {
  margin-bottom: 8px;
}
.settings-background-head .muted {
  max-width: 520px;
  margin: 0;
}
.settings-background-preview {
  position: relative;
  min-height: 340px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 28px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.32), 0 18px 40px rgba(54, 34, 41, 0.08);
}
.settings-background-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 38px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(92, 83, 88, 0.62);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
}

.settings-usage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}
.settings-usage-card {
  padding: 22px 24px;
  border: 1px solid #f0e0e2;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 250, 0.98));
}
.settings-usage-card--album {
  background:
    radial-gradient(circle at top right, rgba(245, 180, 192, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 248, 0.98));
}
.settings-usage-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.settings-usage-head > div {
  min-width: 0;
}
.settings-usage-icon {
  margin-right: 2px;
}
.settings-usage-icon.soft {
  color: #7b90b2;
  background: #f4f7fd;
}
.settings-usage-label {
  display: block;
  margin-bottom: 8px;
  color: #8c7e83;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.settings-usage-head strong {
  display: block;
  color: #2b2528;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}
.settings-usage-pill {
  min-height: 34px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #ed716f, #e78aa4);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(231, 111, 134, 0.18);
}
.settings-usage-pill.soft {
  color: #755d66;
  background: #f8eef0;
  box-shadow: none;
}
.settings-progress {
  height: 12px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: #f5e6ea;
}
.settings-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ed716f 0%, #e78aa4 100%);
  box-shadow: 0 8px 18px rgba(231, 111, 134, 0.18);
  transition: width 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.settings-progress.soft {
  background: #f2f1f4;
}
.settings-progress.soft span {
  background: linear-gradient(90deg, #2d2528 0%, #88737b 100%);
  box-shadow: 0 8px 18px rgba(45, 37, 40, 0.12);
}
.settings-usage-meta {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #807379;
  font-size: 12.5px;
  font-weight: 600;
}
.settings-form-panel {
  gap: 18px;
}
.settings-section-title {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 2px;
}
.settings-section-title h2 {
  margin-bottom: 6px;
}
.settings-section-title .muted {
  margin-bottom: 0;
}
.settings-panel-icon {
  color: #8a97ad;
  background: #f5f7fb;
}
.settings-asset-grid {
  gap: 14px;
}
.settings-upload-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid #efe6e8;
  border-radius: 22px;
  background: linear-gradient(180deg, #fffefe 0%, #fbf8f9 100%);
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}
.settings-upload-card:hover {
  transform: translateY(-1px);
  border-color: #ebd4da;
  box-shadow: 0 16px 34px rgba(59, 38, 47, 0.07);
}
.settings-upload-card.highlight {
  background: linear-gradient(180deg, #fff7f8 0%, #fffefe 100%);
  border-color: #efcfd6;
}
.settings-upload-preview {
  position: relative;
  width: 100%;
  min-height: 132px;
  border-radius: 18px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}
.settings-upload-preview.tall {
  min-height: 182px;
}
.settings-upload-preview.wide {
  min-height: 116px;
}
.settings-upload-preview-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  min-height: 28px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(52, 34, 40, 0.58);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
}
.settings-file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.settings-upload-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #8e99ab;
  background: #f5f7fb;
}
.settings-upload-copy {
  display: grid;
  gap: 6px;
}
.settings-upload-copy strong {
  color: #242228;
  font-size: 14px;
  line-height: 1.35;
}
.settings-upload-copy small {
  color: #80767d;
  font-size: 12px;
  line-height: 1.7;
}
.settings-upload-button {
  min-height: 34px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #5e6470;
  background: #ffffff;
  border: 1px solid #e6e8ee;
  font-size: 12px;
  font-weight: 760;
}
.settings-upload-card.has-file .settings-upload-button {
  color: #8a3f52;
  border-color: #f0d2da;
  background: #fff5f7;
}
.settings-submit-btn {
  min-height: 46px;
  min-width: 148px;
}

.guest-mobile-body {
  background: #ffffff;
}
.guest-mobile-body .page-bg {
  background: #ffffff;
}
.guest-mobile-main {
  width: 100%;
  margin: 0;
}
.guest-mobile-shell {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  background: #ffffff;
}
.guest-mobile-app,
.guest-mobile-panel {
  width: min(100%, 430px);
  min-height: 100vh;
}
.guest-step {
  display: none;
}
.guest-step.is-active {
  display: block;
}
.guest-mobile-panel {
  margin: 0 auto;
  padding: 22px 22px 28px;
  display: flex;
  flex-direction: column;
  background: #ffffff;
}
.guest-mobile-panel--hero {
  padding: 0 22px 28px;
}
.guest-mobile-panel--form,
.guest-mobile-panel--status,
.guest-mobile-unavailable {
  gap: 18px;
}
.guest-mobile-hero-media {
  position: relative;
  min-height: 67vh;
  border-radius: 0 0 22px 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    url("../img/background.png") center/cover no-repeat;
}
.guest-mobile-brand-badge {
  position: absolute;
  top: 22px;
  right: 20px;
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(108, 99, 103, 0.56);
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}
.guest-mobile-brand-badge strong,
.guest-mobile-brandline strong {
  margin-left: 6px;
  font-weight: 800;
}
.guest-mobile-copy-block {
  padding: 26px 10px 0 10px;
}
.guest-mobile-date {
  margin: 0 0 10px;
  color: #73696c;
  font-size: 15px;
  font-weight: 500;
}
.guest-mobile-copy-block h1,
.guest-mobile-section h1 {
  margin: 0;
  color: #292223;
  font-size: 26px;
  line-height: 1.28;
  letter-spacing: -0.05em;
  font-weight: 760;
}
.guest-mobile-copy {
  margin: 12px 0 0;
  color: #7f7276;
  font-size: 15px;
  line-height: 1.7;
}
.guest-mobile-primary,
.guest-mobile-secondary {
  min-height: 62px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 760;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}
.guest-mobile-primary {
  margin-top: auto;
  color: #ffffff;
  background: #ed716f;
  box-shadow: 0 16px 30px rgba(237, 113, 111, 0.2);
}
.guest-mobile-primary:hover,
.guest-mobile-secondary:hover {
  transform: translateY(-1px);
}
.guest-mobile-primary.is-soft,
.guest-mobile-primary:disabled {
  background: #f5b1b4;
  box-shadow: none;
}
.guest-mobile-primary.is-soft.is-ready {
  background: #ed716f;
  box-shadow: 0 16px 30px rgba(237, 113, 111, 0.2);
}
.guest-mobile-primary:disabled {
  cursor: not-allowed;
  opacity: 1;
}
.guest-mobile-secondary {
  color: #352d2e;
  background: #ffffff;
  border: 1px solid #eddede;
  box-shadow: 0 10px 24px rgba(50, 33, 38, 0.04);
}
.guest-mobile-back,
.guest-mobile-toplink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  color: #272122;
  background: transparent;
  font-size: 15px;
  font-weight: 700;
}
.guest-mobile-back::before,
.guest-mobile-toplink::before {
  content: "‹";
  font-size: 30px;
  line-height: 1;
  transform: translateY(-1px);
}
.guest-mobile-toplink::before {
  display: none;
}
.guest-mobile-back.is-disabled {
  color: #b7aaae;
}
.guest-mobile-section {
  padding-top: 8px;
}
.guest-mobile-section--center {
  text-align: center;
}
.guest-mobile-label {
  color: #463e40;
  font-size: 15px;
  font-weight: 700;
}
.guest-mobile-input {
  width: 100%;
  min-height: 64px;
  padding: 0 22px;
  border: 0;
  border-radius: 24px;
  color: #2d2628;
  background: #f5f4f6;
  font-size: 18px;
  font-weight: 600;
  outline: none;
}
.guest-mobile-input::placeholder {
  color: #998d91;
}
.guest-file-picker {
  min-height: 220px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px dashed #f1dfdb;
  border-radius: 28px;
  color: #76686b;
  background: #ffffff;
}
.guest-file-picker-icon {
  font-size: 34px;
  line-height: 1;
}
.guest-file-picker strong {
  font-size: 17px;
  font-weight: 700;
}
.guest-mobile-error {
  padding: 14px 16px;
  border-radius: 18px;
  color: #bf4454;
  background: #fff2f3;
  font-size: 14px;
  font-weight: 600;
}
.guest-mobile-note {
  padding: 18px 18px 16px;
  border-radius: 22px;
  color: #85777b;
  background: #f8f6f6;
  font-size: 14px;
  line-height: 1.7;
}
.guest-mobile-note p {
  position: relative;
  margin: 0 0 8px;
  padding-left: 14px;
}
.guest-mobile-note p:last-child {
  margin-bottom: 0;
}
.guest-mobile-note p::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
}
.guest-mobile-note.compact {
  width: min(100%, 320px);
  margin: 0 auto;
}
.guest-mobile-recent {
  width: min(100%, 430px);
  margin: 0 auto;
  padding: 4px 22px 28px;
}
.guest-mobile-recent-head {
  display: grid;
  gap: 4px;
  margin-bottom: 12px;
}
.guest-mobile-recent-head strong {
  color: #201b1d;
  font-size: 16px;
  font-weight: 800;
}
.guest-mobile-recent-head span {
  color: #8f8388;
  font-size: 12.5px;
  line-height: 1.6;
}
.guest-mobile-recent-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.guest-mobile-recent-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #f0e6e7;
  box-shadow: 0 12px 28px rgba(58, 35, 42, 0.07);
}
.guest-mobile-recent-card img,
.guest-mobile-recent-card video {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
  background: #f6f1f2;
}
.guest-mobile-recent-meta {
  padding: 10px 11px 12px;
}
.guest-mobile-recent-meta strong {
  display: block;
  color: #241f21;
  font-size: 13px;
  font-weight: 760;
}
.guest-mobile-recent-meta span {
  display: block;
  margin-top: 3px;
  color: #8d8287;
  font-size: 11px;
}
.guest-mobile-recent-play {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(29, 22, 25, 0.72);
  font-size: 11px;
  z-index: 1;
}
.guest-selected-wrap {
  display: grid;
  gap: 16px;
}
.guest-selected-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.guest-selected-head strong {
  color: #2d2527;
  font-size: 22px;
  letter-spacing: -0.04em;
}
.guest-selected-add {
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid #eddede;
  border-radius: 999px;
  color: #3a3032;
  background: #ffffff;
  font-size: 15px;
  font-weight: 700;
}
.guest-file-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.guest-file-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 18px;
  background: #f3f0f1;
}
.guest-file-thumb-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.guest-file-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(112, 107, 111, 0.7);
  font-size: 22px;
  line-height: 1;
}
.guest-progress-ring,
.guest-success-ring {
  width: 194px;
  height: 194px;
  margin: 28px auto 0;
  border-radius: 50%;
}
.guest-progress-ring {
  display: grid;
  place-items: center;
  background: conic-gradient(#ed716f var(--progress), #f2e6e7 0deg);
}
.guest-progress-ring__inner {
  width: 146px;
  height: 146px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
}
.guest-progress-ring__inner strong,
.guest-success-ring span {
  color: #2b2325;
  font-size: 34px;
  font-weight: 800;
}
.guest-progress-meta {
  margin-top: 18px;
  text-align: center;
}
.guest-progress-meta strong,
.guest-progress-meta span {
  display: block;
}
.guest-progress-meta strong {
  color: #574d50;
  font-size: 18px;
  font-weight: 700;
}
.guest-progress-meta span {
  margin-top: 6px;
  color: #85767a;
  font-size: 16px;
}
.guest-success-ring {
  display: grid;
  place-items: center;
  border: 12px solid #dff5de;
}
.guest-success-ring span {
  color: #59c35f;
  font-size: 90px;
  line-height: 1;
}
.guest-mobile-brandline {
  margin-top: auto;
  padding-top: 16px;
  text-align: center;
  color: #3a3234;
  font-size: 16px;
  font-weight: 600;
}
.guest-mobile-unavailable {
  justify-content: center;
}

@media (max-width: 540px) {
  .guest-mobile-app,
  .guest-mobile-panel {
    width: 100%;
  }
  .guest-mobile-panel--hero {
    padding-left: 18px;
    padding-right: 18px;
  }
  .guest-mobile-panel--form,
  .guest-mobile-panel--status,
  .guest-mobile-unavailable {
    padding-left: 18px;
    padding-right: 18px;
  }
  .guest-mobile-hero-media {
    min-height: 58vh;
  }
  .guest-mobile-brand-badge {
    top: 18px;
    right: 16px;
    min-height: 40px;
    padding: 0 16px;
    font-size: 13px;
  }
  .guest-mobile-copy-block {
    padding-left: 4px;
    padding-right: 4px;
  }
  .guest-selected-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .guest-selected-add,
  .guest-mobile-primary,
  .guest-mobile-secondary {
    width: 100%;
  }
  .settings-usage-grid {
    grid-template-columns: 1fr;
  }
  .settings-background-panel {
    padding: 20px;
  }
  .settings-background-preview {
    min-height: 260px;
  }
  .settings-usage-meta {
    align-items: flex-start;
    flex-direction: column;
  }
}

.minimalist-page {
  background: #fcfaf8;
}
.minimalist-page .page-bg {
  background:
    radial-gradient(circle at 18% 12%, rgba(248, 220, 226, 0.14), transparent 24%),
    radial-gradient(circle at 84% 10%, rgba(250, 233, 213, 0.14), transparent 24%),
    linear-gradient(180deg, #fffefd 0%, #fcfaf8 100%);
}
.minimal-main {
  width: 100%;
  margin: 0;
}
.minimal-shell {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
}
.minimal-topbar {
  position: sticky;
  top: 16px;
  z-index: 40;
  width: min(1040px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #eee3e5;
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(41, 26, 31, 0.05);
  backdrop-filter: blur(10px);
}
.minimal-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.minimal-brand-mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.minimal-brand-copy strong {
  display: block;
  color: #231f21;
  font-size: 13px;
  line-height: 1.1;
  letter-spacing: 0.08em;
}
.minimal-brand-copy small {
  display: block;
  margin-top: 2px;
  color: #93878b;
  font-size: 10.5px;
  line-height: 1.2;
  letter-spacing: 0.06em;
}
.minimal-nav,
.minimal-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.minimal-nav {
  color: #5e5659;
  font-size: 13px;
  font-weight: 650;
}
.minimal-nav a:not(.btn) {
  padding: 6px 8px;
  border-radius: 999px;
}
.minimal-nav a:not(.btn):hover {
  background: #f6f0f1;
}
.minimal-hero {
  padding: 52px 0 24px;
}
.minimal-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 28px;
  align-items: center;
}
.minimal-kicker {
  margin: 0 0 12px;
  color: #dc6884;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.minimal-copy h1,
.minimal-section-head h2,
.minimal-cta-card h2 {
  margin: 0;
  color: #2b2528;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}
.minimal-section-head h2,
.minimal-cta-card h2 {
  font-size: clamp(24px, 3vw, 34px);
}
.minimal-lead {
  max-width: 460px;
  margin: 16px 0 0;
  color: #72686c;
  font-size: 16px;
  line-height: 1.7;
}
.minimal-actions {
  margin-top: 22px;
}
.minimal-kakao-cta {
  min-width: 210px;
}
.minimal-social-note {
  margin: 14px 0 0;
  color: #8a7d82;
  font-size: 13px;
  line-height: 1.7;
  font-weight: 600;
}
.minimal-preview-card,
.minimal-info-card,
.minimal-step,
.minimal-cta-card,
.simple-auth-card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid #eadfe1;
  border-radius: 26px;
  box-shadow: 0 18px 44px rgba(41, 26, 31, 0.06);
}
.minimal-preview-card {
  padding: 20px;
}
.minimal-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #2c2629;
  font-size: 14px;
  font-weight: 700;
}
.minimal-preview-head strong {
  min-height: 30px;
  padding: 6px 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #24944a;
  background: #eef9f0;
  font-size: 12px;
}
.minimal-preview-actions {
  margin: 14px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.minimal-preview-actions span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e3d8db;
  border-radius: 14px;
  color: #544d50;
  font-size: 13px;
  font-weight: 700;
  background: #fff;
}
.minimal-preview-actions span:first-child {
  color: #fff;
  background: #1f1a1d;
  border-color: #1f1a1d;
}
.minimal-preview-cover {
  min-height: 220px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(26, 22, 24, 0.08), rgba(26, 22, 24, 0.16)),
    url("../img/main.jpg") center/cover no-repeat;
}
.minimal-preview-stats {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.minimal-preview-stats div {
  padding: 12px;
  border: 1px solid #eadfe1;
  border-radius: 16px;
  background: #fff;
}
.minimal-preview-stats strong {
  display: block;
  color: #2c2629;
  font-size: 18px;
}
.minimal-preview-stats span {
  display: block;
  margin-top: 3px;
  color: #8c8186;
  font-size: 11px;
}
.minimal-section {
  padding: 34px 0;
}
.minimal-section-head {
  margin-bottom: 18px;
}
.minimal-card-grid,
.minimal-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.minimal-flow-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.minimal-info-card,
.minimal-step {
  padding: 22px;
}
.minimal-info-card strong,
.minimal-step strong {
  display: block;
  color: #2d2629;
  font-size: 18px;
  line-height: 1.3;
}
.minimal-info-card p,
.minimal-step p {
  margin: 8px 0 0;
  color: #776c70;
  font-size: 14px;
  line-height: 1.65;
}
.minimal-step span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 50%;
  color: #fff;
  background: #e56a85;
  font-size: 12px;
  font-weight: 800;
}
.minimal-cta-card {
  padding: 34px 24px;
  text-align: center;
}
.minimal-footer {
  padding: 28px 0 34px;
}
.minimal-footer-inner {
  border-top: 1px solid #eee3e5;
  padding-top: 18px;
}
.minimal-footer-inner strong {
  display: block;
  margin-bottom: 8px;
  color: #2a2528;
  font-size: 13px;
}
.minimal-footer-inner p {
  margin: 0 0 4px;
  color: #8a7d82;
  font-size: 11.5px;
  line-height: 1.65;
}
.simple-auth-wrap {
  min-height: calc(100vh - 240px);
  display: grid;
  place-items: center;
  padding: 10px 0;
}
.simple-auth-card {
  width: min(440px, 100%);
  padding: 28px;
}
.simple-auth-wide {
  width: min(680px, 100%);
}
.simple-auth-card h1 {
  margin-bottom: 10px;
}
.simple-auth-card .muted {
  margin-bottom: 18px;
}
.social-divider {
  position: relative;
  margin: 18px 0;
  text-align: center;
}
.social-divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: #ece4e6;
}
.social-divider span {
  position: relative;
  display: inline-block;
  padding: 0 12px;
  color: #93868b;
  background: rgba(255, 255, 255, 0.96);
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .minimal-hero-grid,
  .minimal-card-grid,
  .minimal-flow-grid {
    grid-template-columns: 1fr;
  }
  .auth-layout,
  .compact-hero-shell,
  .landing-feature-grid,
  .landing-flow {
    grid-template-columns: 1fr;
  }
  .hero-visual-compact {
    min-height: 560px;
  }
  .landing-topbar,
  .landing-shell { width: min(1180px, calc(100% - 28px)); }
  .hero-shell,
  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
  }
  .feature-row.reverse .feature-copy,
  .feature-row.reverse .feature-visual {
    order: initial;
  }
  .hero-visual {
    min-height: 700px;
  }
  .hero-proof,
  .steps-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .metric-panel {
    max-width: none;
  }
  .stats-grid,
  .album-grid,
  .settings-grid,
  .detail-manage-grid,
  .media-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .detail-hero { grid-template-columns: 1fr; }
  .detail-cover { max-height: 360px; }
  .thumb-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .guest-card { grid-template-columns: 1fr; }
  .guest-visual { min-height: 280px; max-height: 360px; }
}

@media (max-width: 720px) {
  .minimal-topbar,
  .minimal-shell {
    width: min(1040px, calc(100% - 20px));
  }
  .minimal-topbar {
    position: static;
    padding: 14px;
    border-radius: 28px;
    align-items: flex-start;
    flex-direction: column;
  }
  .minimal-nav {
    width: 100%;
    justify-content: flex-start;
  }
  .minimal-hero {
    padding-top: 28px;
  }
  .minimal-copy h1,
  .minimal-section-head h2,
  .minimal-cta-card h2 {
    font-size: 30px;
  }
  .minimal-lead {
    font-size: 15px;
  }
  .minimal-preview-actions,
  .minimal-preview-stats {
    grid-template-columns: 1fr;
  }
  .simple-auth-card {
    padding: 22px;
  }
  .app-hero {
    align-items: flex-start;
    flex-direction: column;
  }
  .topbar {
    width: min(1180px, calc(100% - 20px));
    padding: 12px;
  }
  .container {
    width: min(1180px, calc(100% - 20px));
    margin-top: 20px;
  }
  .auth-layout {
    width: 100%;
  }
  .auth-copy-panel,
  .auth-form-panel {
    padding: 22px;
  }
  .guest-card {
    grid-template-columns: 1fr;
  }
  html { font-size: 14px; }
  body { font-size: 14px; }
  .landing-topbar {
    position: static;
    width: min(1180px, calc(100% - 20px));
    padding: 14px;
    border-radius: 30px;
    align-items: flex-start;
    flex-direction: column;
  }
  .landing-nav {
    width: 100%;
    justify-content: flex-start;
  }
  .landing-hero {
    padding: 34px 0 38px;
  }
  .landing-shell {
    width: min(1180px, calc(100% - 20px));
  }
  .hero-copy h1,
  .landing-section h2 {
    margin-top: 16px;
    font-size: 32px;
    line-height: 1.05;
  }
  .hero-lead,
  .section-copy {
    font-size: 15px;
    line-height: 1.75;
  }
  .hero-proof {
    grid-template-columns: 1fr;
  }
  .landing-mini-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    min-height: 560px;
  }
  .floating-card {
    display: none;
  }
  .device-mockup {
    width: min(390px, 100%);
  }
  .device-screen {
    min-height: 620px;
  }
  .device-toolbar strong,
  .device-cover-text strong {
    font-size: 24px;
  }
  .device-cover {
    min-height: 250px;
  }
  .device-stats,
  .metric-panel {
    grid-template-columns: 1fr;
  }
  .backdrop-strip {
    width: 170px;
    height: 270px;
    opacity: 0.55;
  }
  .landing-section {
    padding: 56px 0;
  }
  .feature-visual,
  .share-card,
  .upload-card,
  .closing-shell {
    border-radius: 28px;
  }
  .feature-visual {
    min-height: 360px;
    padding: 18px;
  }
  .share-card {
    right: 18px;
    bottom: 18px;
    width: calc(100% - 36px);
  }
  .upload-card {
    inset: 18px;
    padding: 20px;
  }
  .faq-question {
    padding: 18px 18px;
    font-size: 16px;
  }
  .faq-answer {
    padding: 0 18px 18px;
  }
  .landing-footer-shell,
  .landing-footer-brand {
    align-items: flex-start;
    flex-direction: column;
  }
  .landing-footer-links {
    justify-content: flex-start;
  }
  .topbar {
    position: static;
    width: min(var(--container), calc(100% - 22px));
    padding: 11px;
    border-radius: var(--radius-lg);
    align-items: flex-start;
    flex-direction: column;
  }
  .brand-mark { width: 32px; height: 32px; flex-basis: 32px; }
  .nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 5px;
  }
  .nav a,
  .link-button { min-height: 32px; padding: 7px 10px; font-size: 12.5px; }
  .container {
    width: min(var(--container), calc(100% - 22px));
    margin-top: 22px;
    margin-bottom: 58px;
  }
  .page-head,
  .section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .stats-grid,
  .album-grid,
  .settings-grid,
  .media-grid,
  .grid-2,
  .asset-grid { grid-template-columns: 1fr; }
  .span-2 { grid-column: auto; }
  .auth-card,
  .panel,
  .detail-info,
  .guest-content,
  .modal-panel { padding: 21px; }
  .album-cover { height: 180px; }
  .detail-cover { min-height: 230px; }
  .cover-placeholder.big { min-height: 230px; font-size: 26px; }
  .thumb-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .gallery-toolbar { align-items: stretch; }
  .gallery-toolbar .btn { flex: 1 1 auto; }
  .lightbox-stage {
    padding: 72px 24px 138px;
  }
  .lightbox-download {
    right: 58px;
  }
  .lightbox-nav {
    width: 42px;
    height: 42px;
    font-size: 44px;
  }
  .lightbox-nav.prev {
    left: 10px;
  }
  .lightbox-nav.next {
    right: 10px;
  }
  .lightbox-caption {
    bottom: 14px;
    padding: 12px 14px;
  }
  .action-row,
  .card-actions { flex-wrap: wrap; }
  .action-row .btn,
  .card-actions .btn { flex: 1 1 auto; }
  h1 { font-size: 27px; }
  h2 { font-size: 19px; }
}

@media (max-width: 420px) {
  .minimal-actions .btn {
    width: 100%;
  }
  .minimal-brand-mark {
    width: 40px;
    height: 40px;
  }
  .compact-stat-card strong {
    font-size: 18px;
  }
  .landing-brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }
  .landing-nav .btn {
    width: 100%;
  }
  .hero-actions .btn,
  .landing-footer-links a {
    width: 100%;
    justify-content: center;
  }
  .hero-copy h1,
  .landing-section h2 {
    font-size: 34px;
  }
  .device-frame {
    padding: 10px;
    border-radius: 40px;
  }
  .device-screen {
    padding: 50px 14px 14px;
    border-radius: 32px;
    min-height: 560px;
  }
  .device-cta-row,
  .share-buttons,
  .qr-block,
  .device-grid,
  .upload-preview {
    grid-template-columns: 1fr;
  }
  .device-stats strong {
    font-size: 18px;
  }
  .scroll-cue {
    font-size: 11px;
  }
  .btn { width: 100%; }
  .nav .btn,
  .nav a,
  .link-button { width: auto; }
  .detail-meta span,
  .plan-list span { width: 100%; text-align: center; }
  .detail-summary-grid,
  .detail-stat-grid,
  .detail-primary-actions,
  .detail-manage-grid { grid-template-columns: 1fr; }
  .detail-link-box,
  .detail-action-head {
    flex-direction: column;
    align-items: stretch;
  }
  .thumb-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .qr-img { width: 210px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.auth-main {
  width: 100%;
  max-width: none;
  margin: 0;
}

.auth-page-body {
  background: #ffffff;
}

.auth-page-body .page-bg {
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 234, 177, 0.28), transparent 18%),
    radial-gradient(circle at 18% 78%, rgba(245, 150, 170, 0.08), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
}

.btn.kakao {
  color: #1a1400;
  background: linear-gradient(180deg, #fee500 0%, #ffe44a 100%);
  border-color: #f0d85a;
  box-shadow: 0 14px 30px rgba(254, 229, 0, 0.16), 0 0 0 4px rgba(240, 198, 214, 0.36);
}

.btn.kakao:hover {
  color: #1a1400;
  background: linear-gradient(180deg, #f9e337 0%, #f6db22 100%);
  border-color: #e6cf57;
}

.toss-auth-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px 52px;
}

.toss-auth-card {
  width: min(460px, 100%);
  padding: 40px 34px 28px;
  text-align: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #eef0f3;
  border-radius: 36px;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.08);
}

.toss-auth-card-wide {
  width: min(500px, 100%);
}

.toss-auth-logo {
  width: 172px;
  margin: 0 auto 22px;
}

.toss-auth-copy {
  margin-bottom: 22px;
}

.toss-auth-copy h1 {
  margin: 0 0 10px;
  font-size: 31px;
  font-weight: 780;
  letter-spacing: -0.04em;
}

.toss-auth-copy p {
  margin: 0;
  color: #667085;
  font-size: 15px;
  line-height: 1.75;
}

.toss-social-btn {
  min-height: 60px;
  margin-bottom: 18px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 780;
}

.toss-divider {
  position: relative;
  margin: 18px 0 20px;
  text-align: center;
}

.toss-divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: #edf0f3;
}

.toss-divider span {
  position: relative;
  display: inline-block;
  padding: 0 12px;
  color: #98a2b3;
  background: rgba(255, 255, 255, 0.96);
  font-size: 12px;
  font-weight: 700;
}

.toss-auth-form {
  display: grid;
  gap: 14px;
  text-align: left;
}

.toss-auth-form label {
  display: grid;
  gap: 8px;
  color: #111827;
  font-size: 13px;
  font-weight: 760;
}

.toss-auth-form input {
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #fafbfc;
  box-shadow: none;
}

.toss-auth-form input:focus {
  border-color: #f3a5b5;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(243, 165, 181, 0.14);
}

.toss-check-row {
  margin-top: -2px;
  font-size: 13px;
}

.toss-check-row input {
  width: auto;
  min-height: 0;
  padding: 0;
}

.toss-submit-btn {
  min-height: 56px;
  margin-top: 2px;
  border-radius: 18px;
  font-size: 15px;
  font-weight: 780;
}

.toss-auth-switch {
  margin: 18px 0 14px;
  color: #667085;
  font-size: 14px;
}

.toss-auth-switch a {
  color: #111827;
  font-weight: 760;
}

.toss-auth-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  color: #98a2b3;
  font-size: 12.5px;
  font-weight: 700;
}

.toss-auth-links a:hover {
  color: #4b5563;
}

.account-page {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 12px 0 20px;
}

.account-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 28px;
  color: #7b6d72;
  font-size: 13px;
  font-weight: 760;
}

.account-profile-hero {
  text-align: center;
  margin-bottom: 28px;
}

.account-avatar {
  width: 110px;
  height: 110px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: linear-gradient(180deg, #d9e7f7 0%, #c9d7ea 100%);
  box-shadow: 0 12px 30px rgba(148, 163, 184, 0.22);
}

.account-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.account-avatar span {
  color: #ffffff;
  font-size: 42px;
  font-weight: 800;
  text-transform: uppercase;
}

.account-profile-hero h1 {
  margin-bottom: 6px;
  font-size: 40px;
}

.account-profile-hero p {
  margin: 0 0 10px;
  color: #786f72;
  font-size: 16px;
}

.account-provider-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  color: #6d5600;
  background: #fff3ac;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.account-section-label {
  margin: 0 0 14px;
  color: #d08b77;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.account-plan-card,
.account-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #f0ecec;
  border-radius: 30px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}

.account-plan-card {
  padding: 28px 30px;
  margin-bottom: 28px;
}

.account-plan-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.account-plan-head strong {
  display: block;
  margin-bottom: 6px;
  color: #262228;
  font-size: 29px;
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.account-plan-head p {
  margin: 0;
  color: #82787d;
}

.account-plan-status {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  color: #d88475;
  background: #ffe5de;
  font-size: 13px;
  font-weight: 800;
}

.account-usage-row {
  padding: 18px 0 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid #f1ebec;
}

.account-usage-icon,
.account-card-icon {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #97a1b2;
  background: #f7f8fb;
  font-size: 12px;
  font-weight: 800;
}

.account-icon-svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.account-card-icon.danger {
  color: #ef6b5f;
  background: #ffe9e4;
}

.account-usage-copy span,
.account-storage-meta span {
  display: block;
  color: #8a8186;
  font-size: 13px;
}

.account-usage-copy strong,
.account-storage-meta strong,
.account-card-body strong {
  display: block;
  color: #28242a;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.account-storage-card {
  padding-top: 6px;
}

.account-storage-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.account-storage-card small {
  display: block;
  margin-top: 10px;
  color: #867c82;
  font-size: 12.5px;
  line-height: 1.7;
}

.account-progress {
  height: 12px;
  border-radius: 999px;
  background: #f3e7ea;
}

.account-progress span {
  background: linear-gradient(90deg, #f4aa99 0%, #e66b85 100%);
}

.account-card {
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 16px;
}

.account-card-body {
  flex: 1 1 auto;
  min-width: 0;
}

.account-card-body p {
  margin: 4px 0 0;
  color: #82787d;
}

.account-card-arrow {
  align-self: center;
  color: #9a8f94;
  font-size: 18px;
  font-weight: 700;
}

.account-form-grid {
  margin: 16px 0 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.account-edit-card label {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  color: #2b2730;
  font-size: 13px;
  font-weight: 760;
}

.account-edit-card label:first-child {
  margin-top: 0;
}

.account-inline-button {
  margin-top: 16px;
  min-width: 132px;
}

.account-link-card {
  color: inherit;
}

.account-logout-card {
  align-items: center;
}

@media (max-width: 720px) {
  .toss-auth-card,
  .toss-auth-card-wide {
    width: min(100%, 480px);
    padding: 32px 22px 24px;
    border-radius: 28px;
  }

  .toss-auth-logo {
    width: 156px;
  }

  .toss-auth-copy h1 {
    font-size: 28px;
  }

  .account-page {
    padding-top: 6px;
  }

  .account-profile-hero h1 {
    font-size: 32px;
  }

  .account-plan-card,
  .account-card {
    padding: 22px 20px;
    border-radius: 24px;
  }

  .account-plan-head,
  .account-storage-meta,
  .account-logout-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .account-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .toss-auth-shell {
    padding: 24px 14px 34px;
  }

  .toss-social-btn,
  .toss-submit-btn {
    min-height: 56px;
    font-size: 16px;
  }

  .toss-auth-links {
    flex-direction: column;
    gap: 8px;
  }

  .account-avatar {
    width: 92px;
    height: 92px;
  }

  .account-card,
  .account-usage-row {
    gap: 14px;
  }

  .account-inline-button {
    width: 100%;
  }
}

/* Compact consistency pass */
.topbar {
  top: 10px;
  padding: 8px 12px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  flex-basis: 40px;
}

.brand strong {
  font-size: 11.5px;
}

.brand small {
  font-size: 10px;
}

.nav {
  gap: 4px;
  font-size: 12.5px;
}

.nav a,
.link-button {
  min-height: 32px;
  padding: 7px 10px;
}

.container {
  margin: 24px auto 64px;
}

h1 {
  font-size: clamp(23px, 2.6vw, 32px);
}

h2 {
  font-size: 18px;
}

h3 {
  font-size: 14.5px;
}

.btn {
  min-height: 36px;
  padding: 8px 14px;
  font-size: 12.5px;
}

.btn.small {
  min-height: 32px;
  padding: 7px 11px;
  font-size: 12px;
}

.hero-card,
.panel,
.stat-card,
.album-card,
.setting-card,
.empty-card,
.media-card,
.detail-cover,
.detail-info,
.guest-card {
  border-radius: 20px;
}

.minimal-topbar {
  padding: 12px 14px;
}

.minimal-brand-mark {
  width: 40px;
  height: 40px;
  flex-basis: 40px;
}

.minimal-brand-copy strong {
  font-size: 11.5px;
}

.minimal-brand-copy small {
  font-size: 10px;
}

.minimal-nav {
  gap: 5px;
  font-size: 12.5px;
}

.minimal-nav a:not(.btn),
.minimal-nav .btn {
  min-height: 32px;
}

.minimal-hero {
  padding-top: 34px;
}

.minimal-copy h1,
.minimal-section-head h2,
.minimal-cta-card h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
}

.minimal-lead,
.minimal-social-note {
  font-size: 14px;
}

.minimal-preview-card,
.minimal-info-card,
.minimal-step,
.faq-item,
.minimal-cta-card {
  border-radius: 24px;
}

.minimal-preview-card {
  padding: 18px;
}

.minimal-preview-head strong,
.minimal-preview-head span,
.minimal-preview-actions span,
.minimal-preview-stats span {
  font-size: 12px;
}

.minimal-preview-stats strong {
  font-size: 21px;
}

.minimal-info-card,
.minimal-step {
  padding: 20px;
}

.minimal-step strong,
.minimal-info-card strong {
  font-size: 15px;
}

.faq-question {
  padding: 18px 20px;
}

.faq-answer {
  padding: 0 20px 18px;
}

.toss-auth-card,
.toss-auth-card-wide {
  width: min(430px, 100%);
  padding: 34px 28px 24px;
  border-radius: 30px;
}

.toss-auth-logo {
  width: 154px;
  margin-bottom: 18px;
}

.toss-auth-copy {
  margin-bottom: 18px;
}

.toss-auth-copy h1 {
  font-size: 27px;
}

.toss-auth-copy p {
  font-size: 14px;
}

.toss-social-btn {
  min-height: 54px;
  margin-bottom: 16px;
  font-size: 15px;
}

.toss-divider {
  margin: 16px 0 18px;
}

.toss-auth-form {
  gap: 12px;
}

.toss-auth-form input {
  min-height: 50px;
  padding: 12px 15px;
  border-radius: 16px;
}

.toss-submit-btn {
  min-height: 50px;
  border-radius: 16px;
  font-size: 14px;
}

.toss-auth-switch {
  margin: 16px 0 12px;
  font-size: 13px;
}

.toss-auth-links {
  gap: 12px;
  font-size: 12px;
}

.account-page {
  width: min(860px, 100%);
}

.account-back-link {
  margin-bottom: 22px;
  font-size: 12.5px;
}

.account-profile-hero {
  margin-bottom: 22px;
}

.account-avatar {
  width: 92px;
  height: 92px;
  margin-bottom: 14px;
}

.account-avatar span {
  font-size: 34px;
}

.account-profile-hero h1 {
  font-size: 32px;
}

.account-profile-hero p {
  font-size: 14px;
}

.account-provider-badge {
  min-height: 28px;
  padding: 0 12px;
  font-size: 11px;
}

.account-section-label {
  margin-bottom: 12px;
  font-size: 11px;
}

.account-plan-card,
.account-card {
  border-radius: 24px;
}

.account-plan-card {
  padding: 22px 24px;
  margin-bottom: 22px;
}

.account-plan-head strong {
  font-size: 24px;
}

.account-plan-head p,
.account-card-body p {
  font-size: 13px;
}

.account-plan-status {
  min-height: 30px;
  padding: 0 13px;
  font-size: 12px;
}

.account-usage-row {
  padding: 16px 0 14px;
}

.account-usage-icon,
.account-card-icon {
  width: 48px;
  height: 48px;
  flex-basis: 48px;
  border-radius: 16px;
}

.account-icon-svg {
  width: 20px;
  height: 20px;
}

.account-usage-copy strong,
.account-storage-meta strong,
.account-card-body strong {
  font-size: 18px;
}

.account-storage-meta span,
.account-usage-copy span {
  font-size: 12px;
}

.account-progress {
  height: 10px;
}

.account-storage-card small {
  font-size: 11.5px;
}

.account-card {
  padding: 18px 20px;
  gap: 16px;
  margin-bottom: 14px;
}

.account-card-arrow {
  font-size: 16px;
}

.account-form-grid {
  margin: 14px 0 12px;
  gap: 12px;
}

.account-inline-button {
  margin-top: 14px;
  min-width: 120px;
}

.legal-panel {
  padding: 26px 28px;
}

.legal-section + .legal-section {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid #f1ecef;
}

.legal-section h2 {
  margin-bottom: 10px;
  font-size: 17px;
}

.legal-section p {
  margin: 0 0 8px;
  color: #525866;
  line-height: 1.8;
}
