:root {
  /* ===== Design tokens =====
     truloop iOS DesignSystem(SemanticColor.swift) 값 기준 — 다크 테마 */
  --color-primary: #d93650;
  --color-primary-subtle: rgba(217, 54, 80, 0.1);
  --color-success: #12cc68;

  --color-bg: #000000;
  --color-surface: #141414;
  --color-surface-subtle: #1a1a1a;
  --color-surface-glass: rgba(255, 255, 255, 0.08);

  --color-text: #ffffff;
  --color-text-sub: rgba(255, 255, 255, 0.5);
  --color-text-tertiary: rgba(255, 255, 255, 0.3);
  --color-line: rgba(255, 255, 255, 0.08);
  --color-button-disabled: rgba(255, 255, 255, 0.1);

  --radius-card: 16px;
  --radius-button: 20px;

  font-family: 'Spline Sans', 'Pretendard Variable', Pretendard, -apple-system,
    BlinkMacSystemFont, 'Apple SD Gothic Neo', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body,
#root {
  height: 100%;
}

body {
  background: #101014;
  color: var(--color-text);
  overflow: auto;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

input,
textarea {
  font: inherit;
}

/* ===== Stage: 데모를 감싸는 데스크톱 배경 ===== */
.stage {
  min-height: 100%;
  min-width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 24px 40px;
}

.phone-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.phone-label {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.phone-label b {
  font-size: 16px;
  color: #fff;
}

.phone-label span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 1px;
}

.stage-side {
  max-width: 260px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
  line-height: 1.6;
}

.stage-side h1 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 12px;
}

.stage-side p + p {
  margin-top: 8px;
}

/* ===== Phone frame ===== */
.phone {
  width: 390px;
  height: 844px;
  max-height: calc(100vh - 90px);
  background: var(--color-bg);
  border-radius: 48px;
  border: 10px solid #2a2b31;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.statusbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 54px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 28px 8px;
  font-size: 15px;
  font-weight: 600;
  z-index: 60;
  pointer-events: none;
}

.statusbar .dynamic-island {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 118px;
  height: 34px;
  border-radius: 20px;
  background: #17181c;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* ===== Stack navigator ===== */
.nav-stack {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.nav-screen {
  position: absolute;
  inset: 0;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.32s cubic-bezier(0.32, 0.72, 0, 1);
}

.nav-screen.under {
  transform: translateX(-28%);
}

.nav-screen.entering {
  transform: translateX(100%);
}

.screen-scroll {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.screen-scroll::-webkit-scrollbar {
  display: none;
}

/* ===== 공용: 블러 배경 (iOS BlurredBackgroundModifier) ===== */
.blur-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #000;
}

.blur-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.25);
  filter: blur(80px) saturate(1.5);
}

.blur-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

/* ===== 공용: 글래스 원형 버튼 ===== */
.glass-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex: none;
}

.icon-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

/* ===== 공용: 바텀시트 ===== */
.sheet-layer {
  position: absolute;
  inset: 0;
  z-index: 40;
}

.sheet-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  animation: sheetFade 0.2s ease;
}

.sheet {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #141414;
  border-radius: 32px 32px 0 0;
  padding: 6px 20px 28px;
  animation: sheetUp 0.32s cubic-bezier(0.32, 0.72, 0, 1);
}

.sheet-grabber {
  width: 36px;
  height: 5px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.2);
  margin: 6px auto 14px;
}

.sheet h3 {
  font-size: 17px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 16px;
}

.sheet-confirm {
  display: block;
  width: 100%;
  padding: 15px 0;
  border-radius: 100px;
  background: #fff;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  margin-top: 16px;
  text-align: center;
}

@keyframes sheetFade {
  from {
    opacity: 0;
  }
}

@keyframes sheetUp {
  from {
    transform: translateY(100%);
  }
}

/* ===== 공용: 에러 shake ===== */
@keyframes shake {
  10%,
  90% {
    transform: translateX(-2px);
  }
  20%,
  80% {
    transform: translateX(4px);
  }
  30%,
  50%,
  70% {
    transform: translateX(-6px);
  }
  40%,
  60% {
    transform: translateX(6px);
  }
}

.cl-shake {
  animation: shake 0.5s ease;
}
.iv-root {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #000;
}

.iv-scroll {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  padding: 118px 0 60px;
  z-index: 5;
}

.iv-scroll::-webkit-scrollbar {
  display: none;
}

.iv-head {
  padding: 0 20px;
  margin-bottom: 20px;
}

.iv-greet {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.iv-sub {
  margin-top: 4px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.iv-stat {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  flex: none;
}

/* ===== 초대장 화면 ===== */
.ivc-scroll {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  padding: 118px 0 40px;
  z-index: 5;
}

.ivc-scroll::-webkit-scrollbar {
  display: none;
}

.ivc-card {
  margin: 0 24px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3 / 4;
  border: 0.5px solid rgba(255, 255, 255, 0.12);
}

.ivc-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ivc-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.1) 30%, rgba(0, 0, 0, 0.85));
}

.ivc-meta {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ivc-meta h2 {
  font-size: 26px;
  font-weight: 700;
  line-height: 33px;
  color: #fff;
}

.ivc-meta .line {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.ivc-host {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.ivc-rsvp {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.ivc-rsvp span {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
}

.ivc-rsvp .yes {
  background: #12cc68;
  color: #000;
}

.ivc-rsvp .no {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.ivc-note {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 12px;
}

.ivc-actions {
  padding: 20px 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ivc-share {
  height: 52px;
  border-radius: 14px;
  background: #fff;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.ivc-preview {
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-weight: 600;
}

/* ===== 받는 사람 웹 뷰 (라이트) ===== */
.gv-root {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #f2f3f6;
  color: #111;
}

.gv-browser {
  position: absolute;
  top: 54px;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: #e7e8ec;
}

.gv-url {
  flex: 1;
  background: #fff;
  border-radius: 100px;
  padding: 9px 16px;
  font-size: 13px;
  color: #555;
  text-align: center;
}

.gv-scroll {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  padding: 116px 20px 40px;
  z-index: 5;
}

.gv-scroll::-webkit-scrollbar {
  display: none;
}

.gv-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.gv-card > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.gv-body {
  padding: 18px 20px 20px;
}

.gv-body h2 {
  font-size: 22px;
  font-weight: 700;
  color: #111;
}

.gv-body .line {
  margin-top: 8px;
  font-size: 14px;
  color: #555;
}

.gv-host {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #777;
}

.gv-rsvp {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.gv-rsvp button {
  flex: 1;
  padding: 14px 0;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
}

.gv-rsvp .yes {
  background: #12cc68;
  color: #fff;
}

.gv-rsvp .no {
  background: #eef0f3;
  color: #555;
}

.gv-rsvp button.dim {
  opacity: 0.35;
}

.gv-done {
  margin-top: 18px;
  background: #eafaf1;
  border-radius: 14px;
  padding: 16px;
  text-align: center;
}

.gv-done b {
  font-size: 15px;
  color: #0d9a4e;
}

.gv-done p {
  margin-top: 4px;
  font-size: 13px;
  color: #555;
}

.gv-foot {
  margin-top: 16px;
  text-align: center;
  font-size: 12px;
  color: #999;
}
.rm-root {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #000;
}

.rm-scroll {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  padding: 118px 0 120px;
  z-index: 5;
}

.rm-scroll::-webkit-scrollbar {
  display: none;
}

.rm-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
  margin-bottom: 8px;
}

.rm-head img {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  object-fit: cover;
  border: 0.5px solid rgba(255, 255, 255, 0.08);
}

.rm-head-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.rm-head-text b {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.rm-head-text small {
  font-size: 13px;
  color: #ffcc1b;
  font-weight: 600;
}

.rm-sec {
  padding: 16px 20px 0;
}

.rm-sec h3 {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}

.rm-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
}

.rm-row:last-child {
  border-bottom: none;
}

.rm-row .nm {
  flex: 1;
  font-size: 15px;
  color: #fff;
}

.rm-row .nm small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  margin-left: 6px;
}

.rm-status {
  font-size: 13px;
  font-weight: 600;
}

.rm-status.ok {
  color: #12cc68;
}

.rm-status.no {
  color: rgba(255, 255, 255, 0.4);
}

.rm-status.sent {
  color: rgba(255, 255, 255, 0.55);
}

.rm-cta {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 24px;
  z-index: 20;
  height: 52px;
  border-radius: 14px;
  background: #fff;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.rm-cta:disabled {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  box-shadow: none;
}

/* 시트 내부 */
.rm-ai-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 10px;
}

.rm-preview {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 18px 18px 18px 4px;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 21px;
  color: #fff;
  min-height: 74px;
}

.rm-tones {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.tone-chip {
  padding: 8px 14px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}

.tone-chip.on {
  background: #fff;
  color: #000;
}

.rm-to {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* 토스트 */
.toast {
  position: absolute;
  left: 50%;
  bottom: 96px;
  transform: translateX(-50%);
  z-index: 45;
  background: #1a1a1a;
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  animation: toastIn 0.25s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

@keyframes toastIn {
  from {
    transform: translate(-50%, 10px);
    opacity: 0;
  }
}
.lm-root {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #000;
}

.lm-header {
  position: absolute;
  top: 54px;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  padding: 6px 20px 0;
}

.lm-header-right {
  margin-left: auto;
  display: flex;
  gap: 12px;
}

.lm-scroll {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  padding: 130px 0 120px;
  z-index: 5;
}

.lm-scroll::-webkit-scrollbar {
  display: none;
}

/* ===== 포스터 (탭하면 QR로 플립) ===== */
.lm-poster-wrap {
  margin: 0 20px;
  perspective: 1000px;
}

.lm-poster {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  transform-style: preserve-3d;
  transition: transform 0.55s ease-in-out;
  cursor: pointer;
}

.lm-poster.flipped {
  transform: rotateY(180deg);
}

.lm-face {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.lm-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lm-face.back {
  transform: rotateY(180deg);
  background: #1a1a1a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.lm-qr-box {
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  display: flex;
}

.lm-face.back small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== 텍스트 스택 ===== */
.lm-text {
  padding: 28px 20px 0;
}

.lm-title {
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  color: #fff;
}

.lm-sub {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lm-sub span {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.lm-host {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

/* ===== 채팅 프리뷰 필 ===== */
.lm-chat {
  margin: 20px 20px 0;
  height: 56px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  width: calc(100% - 40px);
  text-align: left;
  overflow: hidden;
}

.lm-chat-msg {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
  animation: chatIn 0.35s ease;
}

.lm-chat-msg span {
  font-size: 14px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lm-chat-msg small {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
}

.lm-chat-empty {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.lm-unread {
  background: #d93650;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  border-radius: 100px;
  padding: 2px 6px;
  flex: none;
}

@keyframes chatIn {
  from {
    transform: translateY(14px);
    opacity: 0;
  }
}

/* ===== 인포 섹션 ===== */
.lm-sections {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lm-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.03);
  margin: 0 20px;
}

.lm-sec-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.lm-sec-head h4 {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}

.lm-sec-head button {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

/* 위치 카드 */
.lm-loc-card {
  margin: 0 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px;
}

.lm-loc-top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lm-loc-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lm-loc-text span {
  font-size: 17px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lm-loc-text small {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lm-loc-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  transition: transform 0.25s;
}

.lm-loc-btn.open {
  transform: rotate(180deg);
}

/* 설명 */
.lm-desc {
  padding: 0 20px;
}

.lm-desc h4 {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}

.lm-desc p {
  font-size: 15px;
  line-height: 23px;
  color: #fff;
  white-space: pre-line;
}

.lm-desc-add {
  width: 100%;
  height: 56px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* 멤버 */
.lm-members {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 16px 20px 0;
}

.lm-members::-webkit-scrollbar {
  display: none;
}

.lm-member {
  width: 88px;
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
}

.lm-member img.big {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
}

.lm-member .nm {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  max-width: 88px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lm-rsvp {
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  border-radius: 100px;
  padding: 2px 8px;
  white-space: nowrap;
  z-index: 2;
}

.lm-newloop {
  margin: 0 20px;
  padding: 14px 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

/* 사진 */
.lm-photos {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 20px 0;
}

.lm-photos::-webkit-scrollbar {
  display: none;
}

.lm-photo-wrap {
  position: relative;
  flex: none;
}

.lm-photo {
  width: 210px;
  height: 280px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

.lm-photo-like {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 100px;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.lm-photo-empty {
  width: 210px;
  height: 280px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: none;
}

.lm-photo-empty small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

/* 노트 */
.lm-notes {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 12px 20px 0;
}

.lm-notes::-webkit-scrollbar {
  display: none;
}

.lm-note {
  width: 220px;
  height: 150px;
  flex: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  padding: 14px;
  display: flex;
  flex-direction: column;
}

.lm-note-head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lm-note-head b {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.lm-note-head small {
  margin-left: auto;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.lm-note p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.lm-note-foot {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  align-items: center;
}

.lm-note-foot span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ===== FAB ===== */
.lm-fab-dim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 25;
}

.lm-fab {
  position: absolute;
  right: 16px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.lm-fab-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.lm-fab-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 100px;
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  animation: fabIn 0.25s ease backwards;
}

.lm-fab-main {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  border: 0.5px solid rgba(255, 255, 255, 0.1);
}

.lm-fab-main.open {
  transform: rotate(45deg);
}

@keyframes fabIn {
  from {
    transform: translateY(8px);
    opacity: 0;
  }
}

/* ===== 초대 링크 (신규 룹) ===== */
.lm-invite {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 16px;
  z-index: 22;
  height: 48px;
  border-radius: 12px;
  background: #fff;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.lm-tooltip {
  position: absolute;
  left: 20px;
  bottom: 84px;
  z-index: 23;
  max-width: 280px;
  background: #fff;
  border-radius: 12px;
  padding: 12px 32px 12px 16px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.lm-tooltip::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 28px;
  border: 8px solid transparent;
  border-top-color: #fff;
  border-bottom: none;
}

.lm-tooltip b {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #000;
  line-height: 21px;
  white-space: pre-line;
}

.lm-tooltip p {
  margin-top: 6px;
  font-size: 13px;
  color: #808080;
  line-height: 19px;
  white-space: pre-line;
}

.lm-tooltip .close {
  position: absolute;
  top: 10px;
  right: 10px;
}
/* 개편안 룹 메인 — lm-* 공용 스타일 위에 얹는 v2 전용 */

.v2-poster {
  margin: 0 20px;
  position: relative;
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  border: 0.5px solid rgba(255, 255, 255, 0.08);
}

.v2-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.v2-poster-edit {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  padding: 0 14px;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

/* 제목 인라인 수정 */
.v2-title-input {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  color: #fff;
  padding: 0;
  border-bottom: 1px dashed transparent;
}

.v2-title-input:focus {
  border-bottom-color: rgba(255, 255, 255, 0.25);
}

.v2-title-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.v2-title-hint {
  margin-top: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

/* 메타 칩 (날짜/장소) */
.v2-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.v2-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.v2-chip.empty {
  background: transparent;
  border: 1px dashed rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

/* 멤버 + 추가 */
.v2-add-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 1.5px dashed rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

/* 설명 인라인 */
.v2-desc-input {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-size: 15px;
  line-height: 23px;
  color: #fff;
  resize: none;
  padding: 0;
  font-family: inherit;
}

.v2-desc-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

/* 부가기능 */
.addon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 12px 20px 0;
}

.addon-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
}

.addon-card .ic {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.addon-card b {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.addon-card small {
  font-size: 12px;
  line-height: 17px;
  color: rgba(255, 255, 255, 0.5);
}

.addon-card.on {
  border-color: rgba(255, 204, 27, 0.6);
}

.addon-badge {
  font-size: 11px;
  font-weight: 600;
  color: #000;
  background: #ffcc1b;
  border-radius: 100px;
  padding: 2px 8px;
}

/* 조율 상태 카드 (부가기능 활성 시) */
.coord-card {
  margin: 20px 20px 0;
  background: rgba(255, 255, 255, 0.15);
  border: 0.5px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 19px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.coord-card > b {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.coord-dates {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.coord-dates b {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.coord-status-link {
  margin-left: auto;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  flex: none;
}

.coord-progress {
  position: relative;
  height: 22px;
}

.coord-progress .bar {
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 204, 27, 0.1);
}

.coord-dot {
  position: absolute;
  top: 10px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 0.3px solid rgba(255, 255, 255, 0.6);
}

.coord-dot.on {
  width: 20px;
  height: 20px;
  background: #ffcc1b;
}

.coord-dot.off {
  width: 10px;
  height: 10px;
  background: rgba(255, 204, 27, 0.5);
}

.coord-labels {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: #afafaf;
  padding: 0 2px;
}

.coord-labels .on {
  color: #fff;
}

.coord-action {
  width: 100%;
  height: 40px;
  border-radius: 8px;
  background: #fff;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ===== 장소 시트 ===== */
.place-search {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 18px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
}

.place-search input {
  flex: 1;
  min-width: 0;
  background: none;
  border: none;
  outline: none;
  font-size: 16px;
  color: #fff;
}

.place-search input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.place-recent-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  padding: 16px 8px 2px;
}
.h3v-root {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #000;
}

.h3v-topbar {
  position: absolute;
  top: 54px;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 12px 0 20px;
}

.h3v-wordmark {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.h3v-scroll {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  padding: 118px 0 60px;
  z-index: 5;
}

.h3v-scroll::-webkit-scrollbar {
  display: none;
}

.h3v-head {
  padding: 0 20px;
  margin-bottom: 18px;
}

.h3v-greet {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.h3v-sub {
  margin-top: 4px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== 비서 컴포저 ===== */
.composer-wrap {
  margin: 0 20px 12px;
  border-radius: 26px;
  padding: 1.5px;
  background: linear-gradient(135deg, #d93650, #7c5cff);
}

.composer {
  border-radius: 25px;
  background: rgba(0, 0, 0, 0.78);
  padding: 8px 8px 8px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.composer input {
  flex: 1;
  min-width: 0;
  background: none;
  border: none;
  outline: none;
  font-size: 16px;
  color: #fff;
}

.composer input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.composer-send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.chips-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 20px;
  margin-bottom: 28px;
}

.chips-row::-webkit-scrollbar {
  display: none;
}

.sug-chip {
  flex: none;
  padding: 9px 14px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* ===== 비서 초안 카드 ===== */
.draft-card {
  margin: 0 20px 28px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.draft-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
}

.draft-title {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.draft-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.draft-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.draft-make {
  flex: 1;
  padding: 13px 0;
  border-radius: 100px;
  background: #fff;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.draft-retry {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  flex: none;
}

/* ===== 섹션 공통 ===== */
.h3v-sec {
  padding: 0 20px;
  margin-bottom: 28px;
}

.h3v-sec h3 {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
}

.h3v-sec-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0 20px;
  margin-bottom: 12px;
}

.h3v-sec-head h3 {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== 다음 일정 카드 캐러셀 ===== */
.next-carousel {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 20px;
  margin-bottom: 28px;
}

.next-carousel::-webkit-scrollbar {
  display: none;
}

.next-card {
  position: relative;
  width: 240px;
  height: 150px;
  border-radius: 16px;
  overflow: hidden;
  flex: none;
  text-align: left;
}

.next-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.next-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 20%, rgba(0, 0, 0, 0.78));
}

.next-meta {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.next-meta b {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.next-meta small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.next-card .dday {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.5);
}

/* ===== 할 일 컴팩트 ===== */
.todo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: left;
  padding: 11px 0;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
}

.todo-row:last-child {
  border-bottom: none;
}

.todo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex: none;
}

/* 색깔 점(.todo-dot)도 span이므로 텍스트 span만 겨냥 — 안 그러면 dot이 flex로 늘어남 */
.todo-row > span:not(.todo-dot) {
  flex: 1;
  min-width: 0;
  font-size: 14px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.todo-row small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  flex: none;
}
.ib-root {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #000;
}

.ib-scroll {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  padding: 118px 0 130px;
  z-index: 5;
}

.ib-scroll::-webkit-scrollbar {
  display: none;
}

.ib-day {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.ib-msg-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 0 16px;
  margin-bottom: 12px;
}

.ib-msg-row.me {
  justify-content: flex-end;
}

.ib-bot-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d93650, #7c5cff);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.ib-bubble {
  max-width: 75%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 18px 18px 18px 4px;
  padding: 11px 14px;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
}

.ib-msg-row.me .ib-bubble {
  background: #fff;
  color: #000;
  border-radius: 18px 18px 4px 18px;
}

.ib-card {
  max-width: 82%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px 18px 18px 4px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ib-card b {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.ib-card p {
  font-size: 13px;
  line-height: 19px;
  color: rgba(255, 255, 255, 0.7);
}

.ib-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ib-act {
  padding: 9px 14px;
  border-radius: 100px;
  background: #fff;
  color: #000;
  font-size: 13px;
  font-weight: 600;
}

.ib-act.ghost {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

.ib-done {
  font-size: 12px;
  font-weight: 600;
  color: #12cc68;
}

.ib-inputbar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  gap: 8px;
  padding: 12px 16px 28px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.ib-input {
  flex: 1;
  height: 48px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  padding: 0 18px;
}

.ib-input input {
  flex: 1;
  min-width: 0;
  background: none;
  border: none;
  outline: none;
  font-size: 15px;
  color: #fff;
}

.ib-input input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.ib-send {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.h2-root {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #000;
}

.h2-topbar {
  position: absolute;
  top: 54px;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 12px 0 20px;
}

.h2-wordmark {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.h2-topbar-group {
  display: flex;
}

.h2-scroll {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  padding: 118px 0 110px;
  z-index: 5;
}

.h2-scroll::-webkit-scrollbar {
  display: none;
}

.h2-head {
  padding: 0 20px;
  margin-bottom: 20px;
}

.h2-date {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.h2-greet {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.h2-sec {
  padding: 0 20px;
  margin-bottom: 28px;
}

.h2-sec h3 {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
}

/* ===== 지금 할 일 ===== */
.action-card {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
  /* iOS 라이트 머티리얼 — 프로스티드 글래스. 뒤 카드도 같은 밝은 톤이라 비쳐도 티 안 남 */
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(26px) saturate(150%);
  -webkit-backdrop-filter: blur(26px) saturate(150%);
  border: 0.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.14);
}

.action-card + .action-card {
  margin-top: 8px;
}

.action-ic {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.action-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.action-title {
  font-size: 15px;
  font-weight: 600;
  color: #141414;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.action-sub {
  font-size: 13px;
  line-height: 18px;
  color: rgba(0, 0, 0, 0.5);
}

.action-cta {
  background: #1a1a1a;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 100px;
  padding: 8px 12px;
  flex: none;
}

/* ===== 할 일 — iOS 알림센터식 스택(접힘) ↔ 펼침, 하나의 구조로 morph ===== */
.h2-todos {
  position: relative;
}

.todo-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.todo-row .action-card,
.stack-cards {
  flex: 1;
  min-width: 0;
}

/* peek 기준 높이를 '카드 하나'로 한정 */
.stack-cards {
  position: relative;
  display: block;
}

.stack-front {
  position: relative;
  z-index: 3;
}

/* 뒤에 카드가 더 있다는 걸 보여주는 겹침 레이어 — 앞 카드와 같은 밝은 유리 톤 */
.stack-peek {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.5);
  border: 0.5px solid rgba(255, 255, 255, 0.3);
  transition:
    opacity 0.3s ease,
    transform 0.32s cubic-bezier(0.32, 0.72, 0, 1);
}

.stack-peek.peek1 {
  transform: translateY(9px) scale(0.955);
  z-index: 2;
}

.stack-peek.peek2 {
  transform: translateY(18px) scale(0.91);
  z-index: 1;
  background: rgba(255, 255, 255, 0.34);
}

/* 펼치면 뒤 겹침 레이어는 앞 카드 뒤로 사라짐 */
.h2-todos.is-open .stack-peek {
  opacity: 0;
  transform: translateY(0) scale(1);
  pointer-events: none;
}

/* 완료 체크 */
.todo-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  transition:
    opacity 0.24s ease,
    transform 0.24s ease,
    width 0.3s cubic-bezier(0.32, 0.72, 0, 1),
    margin-right 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}

.todo-check:active {
  background: rgba(18, 204, 104, 0.25);
  border-color: rgba(18, 204, 104, 0.6);
}

/* 접힘: 앞 카드의 체크는 자리 없이 숨김 (gap 상쇄) */
.h2-todos.is-stack > .todo-row > .todo-check {
  width: 0;
  border-width: 0;
  margin-right: -10px;
  opacity: 0;
  transform: scale(0.6);
  pointer-events: none;
  overflow: hidden;
}

/* 나머지 카드 — 높이 애니메이션 (grid 0fr ↔ 1fr) */
.todos-extra {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.34s cubic-bezier(0.32, 0.72, 0, 1);
}

.h2-todos.is-open .todos-extra {
  grid-template-rows: 1fr;
}

.todos-extra-inner {
  overflow: hidden;
  min-height: 0;
}

.todos-extra .todo-row {
  margin-top: 8px;
}

/* 펼치기 / 접기 토글 */
.todos-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
  margin-top: 22px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  transition: margin-top 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}

.h2-todos.is-open .todos-toggle {
  margin-top: 14px;
}

/* ===== 할 일 없음 ===== */
.todos-empty {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.todos-empty-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(18, 204, 104, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

/* ===== 새 룹 만들기 CTA ===== */
.h2-create {
  display: flex;
  align-items: center;
  gap: 14px;
  width: calc(100% - 40px);
  margin: 0 20px 28px;
  text-align: left;
  background: #fff;
  border-radius: 20px;
  padding: 16px 18px;
}

.h2-create-plus {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.h2-create b {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

/* ===== 다가오는 모임 / 조율 중 (컴팩트 행) ===== */
.up-row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
  padding: 8px 0;
}

.up-row img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  flex: none;
  border: 0.5px solid rgba(255, 255, 255, 0.08);
}

.up-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.up-body b {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.up-body small {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===== 하단 탭 바 ===== */
.h2-tabbar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 30;
  height: 82px;
  padding-bottom: 22px;
  display: flex;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 0.5px solid rgba(255, 255, 255, 0.08);
}

.h2-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
}

.h2-tab.on {
  color: #fff;
}

/* ===== 타임라인 탭 ===== */
.h2-tl-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  color: #fff;
  padding: 0 20px;
  margin-bottom: 8px;
}

/* ===== 퀵 생성 시트 ===== */
.qc-input {
  height: 56px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.qc-input input {
  flex: 1;
  min-width: 0;
  background: none;
  border: none;
  outline: none;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.qc-input input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.cal4-root {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #000;
}

.cal4-scroll {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  padding: 118px 0 60px;
  z-index: 5;
}

.cal4-scroll::-webkit-scrollbar {
  display: none;
}

.cal4-month {
  padding: 0 20px;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 16px;
}

.cal4-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  row-gap: 4px;
  padding: 0 12px;
  margin-bottom: 24px;
}

.cal4-dow {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  padding-bottom: 8px;
}

.cal4-day {
  height: 62px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 8px;
  gap: 4px;
  position: relative;
}

.cal4-day .num {
  font-size: 14px;
  color: #fff;
  line-height: 1;
}

.cal4-day.past .num {
  color: rgba(255, 255, 255, 0.25);
}

.cal4-day.today .num {
  color: #d93650;
  font-weight: 700;
}

.cal4-day.sel {
  background: rgba(255, 255, 255, 0.12);
}

.cal4-day img {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  object-fit: cover;
  border: 0.5px solid rgba(255, 255, 255, 0.2);
}

.cal4-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

/* 선택한 날 아젠다 */
.cal4-agenda {
  padding: 0 20px;
  margin-bottom: 28px;
}

.cal4-agenda h3 {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
}

.cal4-empty {
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cal4-empty small {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.cal4-empty-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
  padding: 11px 18px;
}

.cal4-sec {
  padding: 0 20px;
  margin-bottom: 28px;
}

.cal4-sec h3 {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
}
.feed-root {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #000;
}

.feed-scroll {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  padding: 118px 0 100px;
  z-index: 5;
}

.feed-scroll::-webkit-scrollbar {
  display: none;
}

.feed-head {
  padding: 0 20px;
  margin-bottom: 20px;
}

.feed-greet {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.feed-sub {
  margin-top: 4px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.feed-card {
  margin: 0 20px 16px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  overflow: hidden;
  width: calc(100% - 40px);
  text-align: left;
  display: block;
}

.feed-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
}

.feed-card-head .who {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.feed-card-head .who b {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.feed-card-head .who small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

/* 히어로(다가오는 모임) 카드 */
.feed-hero {
  position: relative;
  aspect-ratio: 16 / 10;
}

.feed-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feed-hero .grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 25%, rgba(0, 0, 0, 0.8));
}

.feed-hero .dday {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.5);
}

.feed-hero-meta {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.feed-hero-meta b {
  font-size: 19px;
  font-weight: 600;
  color: #fff;
}

.feed-hero-meta small {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

/* 사진 포스트 */
.feed-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  padding: 0 3px;
}

.feed-photos img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.feed-foot {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.feed-foot span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* 노트 포스트 */
.feed-note-text {
  padding: 0 16px 4px;
  font-size: 15px;
  line-height: 22px;
  color: #fff;
}

/* 액션 카드 배지 */
.feed-need {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 100px;
  background: rgba(217, 54, 80, 0.18);
  color: #ff7a90;
  font-size: 11px;
  font-weight: 600;
}

/* FAB */
.feed-fab {
  position: absolute;
  right: 16px;
  bottom: 20px;
  z-index: 30;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}
.fc-root {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #000;
}

.fc-scroll {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  padding: 118px 0 40px;
  z-index: 5;
}

.fc-scroll::-webkit-scrollbar {
  display: none;
}

.fc-card {
  margin: 0 20px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3 / 4;
  border: 0.5px solid rgba(255, 255, 255, 0.1);
}

.fc-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fc-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.15) 20%, rgba(0, 0, 0, 0.88));
}

.fc-meta {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
}

.fc-dday {
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.fc-count {
  margin-top: 6px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  font-variant-numeric: tabular-nums;
}

.fc-title {
  margin-top: 14px;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}

.fc-line {
  margin-top: 6px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.fc-avatars {
  display: flex;
  margin-top: 12px;
}

.fc-actions {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.fc-act {
  flex: 1;
  height: 44px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.fc-act.primary {
  background: #fff;
  color: #000;
}

.fc-rest {
  margin: 16px 20px 0;
  width: calc(100% - 40px);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 15px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

.fc-rest small {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
}

.fc-rest-list {
  margin: 8px 20px 0;
  padding: 4px 16px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
}

.fc-chevron {
  transition: transform 0.25s;
  display: flex;
}

.fc-chevron.open {
  transform: rotate(180deg);
}
.home-root {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #000;
}

.home-logo {
  position: absolute;
  top: 54px;
  left: 0;
  right: 0;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.home-topbar {
  position: absolute;
  top: 56px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 12px;
  z-index: 20;
}

.home-topbar-group {
  display: flex;
}

.home-scroll {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  padding: 150px 0 60px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  z-index: 5;
}

.home-scroll::-webkit-scrollbar {
  display: none;
}

.home-section {
  padding: 0 20px;
  scroll-margin-top: 130px;
}

.home-h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  color: #fff;
  margin-bottom: 12px;
}

/* ===== 상태 요약 ===== */
.status-date {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 6px;
}

.status-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  width: 100%;
  text-align: left;
}

.status-row + .status-row {
  border-top: 0.5px solid rgba(255, 255, 255, 0.04);
}

.status-row .ic {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.status-row .lbl {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.status-row .cnt {
  margin-left: auto;
  font-size: 16px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.status-row.zero .lbl,
.status-row.zero .cnt {
  color: rgba(255, 255, 255, 0.3);
}

/* ===== 츄룹 타임라인 ===== */
.tl-row {
  display: flex;
  gap: 16px;
  padding: 10px 0;
  align-items: center;
  width: 100%;
  text-align: left;
}

.tl-thumb {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  flex: none;
}

.tl-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.tl-date {
  font-size: 13px;
  line-height: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.tl-title {
  font-size: 17px;
  font-weight: 600;
  line-height: 24px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tl-members {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.tl-members .stack {
  display: flex;
}

/* ===== 모임 리스트 카드 ===== */
.loop-card {
  display: flex;
  gap: 12px;
  align-items: center;
  width: 100%;
  text-align: left;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px 20px;
}

.loop-card + .loop-card {
  margin-top: 12px;
}

.loop-card-poster {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  flex: none;
}

.loop-card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  flex: 1;
}

.loop-avatars {
  display: flex;
}

.loop-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.loop-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dday {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 4px 8px;
  line-height: 1;
  flex: none;
}

.loop-info {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.5);
  min-width: 0;
}

.loop-info b {
  font-weight: 600;
}

.loop-info .txt {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.loop-cta {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #12cc68;
}

.cal-add {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 0.5px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

/* ===== 새로운 모임 제안 ===== */
.cs-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px dashed rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  text-align: left;
}

.cs-card + .cs-card {
  margin-top: 8px;
}

.cs-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.cs-info {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.cl-root {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #000;
}

.cl-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  z-index: 15;
  pointer-events: none;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(0, 0, 0, 0.15);
  mask-image: linear-gradient(
    to bottom,
    black 0%,
    black 35%,
    rgba(0, 0, 0, 0.6) 70%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    black 0%,
    black 35%,
    rgba(0, 0, 0, 0.6) 70%,
    transparent 100%
  );
}

.cl-header {
  position: absolute;
  top: 54px;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px 0;
}

.cl-header-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.cl-scroll {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  padding: 135px 0 8px;
  z-index: 10;
}

.cl-scroll::-webkit-scrollbar {
  display: none;
}

/* ===== 포스터 ===== */
.cl-poster {
  width: 240px;
  height: 240px;
  margin: 0 auto 20px;
  border-radius: 16px;
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.cl-poster > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cl-poster-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
  pointer-events: none;
}

.cl-poster-btn {
  position: absolute;
  bottom: 10px;
  height: 44px;
  min-width: 44px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.cl-poster-btn.capsule {
  padding: 0 12px;
  max-width: 200px;
}

.cl-poster-btn.capsule span {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===== 폼 ===== */
.cl-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 4px 20px 0;
}

.cl-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}

.cl-chips::-webkit-scrollbar {
  display: none;
}

.cl-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 6px 4px 4px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
  flex: none;
}

.cl-chip img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.cl-chip span {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.cl-chip button {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cl-chip-add {
  width: 32px;
  height: 32px;
  justify-content: center;
  padding: 0;
}

.cl-title {
  height: 56px;
  flex: none;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 8px;
  border: 1px solid transparent;
}

.cl-title input {
  flex: 1;
  min-width: 0;
  background: none;
  border: none;
  outline: none;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.cl-title input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.cl-title.cl-error {
  border-color: #ff453a;
}

.cl-card {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
}

.cl-row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 16px 12px 16px 18px;
  text-align: left;
}

.cl-row-placeholder {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.5);
}

.cl-row-placeholder16 {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
}

.cl-row-value17 {
  font-size: 17px;
  color: #fff;
}

.cl-row-value16 {
  font-size: 16px;
  color: #fff;
}

.cl-row-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.cl-row-clear {
  margin-left: auto;
  display: flex;
  flex: none;
}

.cl-divider {
  height: 0.5px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0 18px;
}

.cl-card-note {
  font-size: 13px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.5);
  padding: 4px 18px 12px;
}

/* RSVP */
.cl-rsvp-row {
  justify-content: space-between;
  padding: 16px 18px;
}

.cl-rsvp-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cl-rsvp-text span {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.cl-rsvp-text small {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.cl-toggle {
  width: 51px;
  height: 31px;
  border-radius: 100px;
  background: rgba(120, 120, 128, 0.32);
  position: relative;
  transition: background 0.2s;
  flex: none;
}

.cl-toggle span {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cl-toggle.on {
  background: #d93650;
}

.cl-toggle.on span {
  transform: translateX(20px);
}

.cl-deadline {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 18px;
}

.cl-deadline small {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.cl-deadline-value {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cl-deadline-value > span {
  font-size: 17px;
  color: #fff;
}

.cl-deadline-value button {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* 장소 */
.cl-place-input {
  height: 56px;
  flex: none;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.cl-place-input input {
  flex: 1;
  min-width: 0;
  background: none;
  border: none;
  outline: none;
  font-size: 17px;
  color: #fff;
}

.cl-place-input input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.cl-suggest {
  margin-top: 8px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.cl-suggest button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.cl-suggest button + button {
  border-top: 0.5px solid rgba(255, 255, 255, 0.08);
}

.cl-suggest button small {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  margin-right: 6px;
  font-size: 14px;
}

.cl-place-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.cl-place-text span {
  font-size: 17px;
  color: #fff;
}

.cl-place-text small {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.fake-map {
  height: 160px;
  border-radius: 20px;
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    #1c2128;
  background-size: 28px 28px;
}

.fake-map .pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -90%);
}

/* 하단 */
.cl-bottom-note {
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.cl-create {
  margin-top: 12px;
  width: 100%;
  padding: 16px 0;
  border-radius: 20px;
  background: #fff;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

/* ===== 시트 내부 ===== */
.cal-month {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  row-gap: 6px;
  justify-items: center;
}

.cal-dow {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  padding-bottom: 6px;
}

.cal-day {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 16px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cal-day.today {
  color: #d93650;
  font-weight: 700;
}

.cal-day.sel {
  background: #d93650;
  color: #fff;
  font-weight: 600;
}

.cal-hint {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

.time-list {
  max-height: 300px;
  overflow-y: auto;
}

.time-list button {
  display: block;
  width: 100%;
  padding: 13px 8px;
  text-align: center;
  font-size: 17px;
  color: #fff;
  border-radius: 12px;
}

.time-list button.sel {
  background: rgba(255, 255, 255, 0.1);
  font-weight: 600;
}

.bgm-list button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 13px 8px;
  font-size: 16px;
  color: #fff;
  border-radius: 12px;
  text-align: left;
}

.bgm-list button small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}
