/* =========================================================
   AUREA — Design System
   Deep obsidian blue-black + antique gold
   ========================================================= */
:root {
  /* AUREA palette — warm obsidian red-black + soft antique gold */
  --bg:        #070303;  /* base background */
  --bg-2:      #0B0606;  /* deepest panel */
  --surface:   #0E0808;  /* card surface */
  --surface-2: #160B09;  /* raised surface */
  --surface-3: #1F1310;  /* highest */
  --line:      rgba(201, 164, 90, 0.45);   /* antique gold border (C9A45A) */
  --line-soft: rgba(255, 255, 255, 0.07);
  --gold:      #D8B76A;  /* primary antique gold */
  --gold-2:    #E7C978;  /* bright highlight */
  --gold-deep: #A87525;  /* deep gold */
  --text:      #F7F2E8;  /* warm white */
  --muted:     rgba(201,189,164,0.92);     /* warm muted (C9BDA4) */
  --muted-2:   rgba(201,189,164,0.55);
  --danger:    #FFB4AB;
  --ok:        #A9C8A0;
  --radius:    22px;
  --radius-sm: 14px;
  --shadow:    0 18px 40px rgba(0,0,0,0.55);
  --glow:      0 0 24px rgba(216, 183, 106, 0.30);
  --serif: "Cormorant Garamond", "Noto Serif KR", Georgia, serif;
  --sans:  "Pretendard", "Inter", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html, body { height: 100%; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 15px;
  letter-spacing: -0.01em;
}

/* ---------- App shell (mobile-first phone frame) ---------- */
#app {
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  background: linear-gradient(180deg, #080303 0%, #050303 55%, #000 100%);
  position: relative;
  padding-bottom: 96px;
  overflow-x: hidden;
}
@media (min-width: 460px) {
  body { padding: 0; }
  #app { box-shadow: 0 0 80px rgba(0,0,0,0.7); }
}

/* ---------- Typography ---------- */
.serif { font-family: var(--serif); }
h1,h2,h3 { font-family: var(--serif); font-weight: 600; letter-spacing: -0.01em; line-height: 1.3; }
.eyebrow {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}
.muted { color: var(--muted); }
.gold { color: var(--gold); }
.center { text-align: center; }

/* AUREA accents */
.metallic {
  background: linear-gradient(100deg, #E8BF6B, #F6D56E 45%, #B8893D);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.label-caps {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
}
.ms { font-family: "Material Symbols Outlined"; font-weight: 300; font-style: normal;
  line-height: 1; vertical-align: middle; -webkit-font-feature-settings: 'liga'; }

/* ---------- Top bar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px 14px;
  background: linear-gradient(180deg, rgba(5,8,12,0.96), rgba(5,8,12,0.80));
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(184,137,61,0.30);
}
.topbar .back {
  width: 36px; height: 36px; flex: none;
  display: grid; place-items: center;
  border: 1px solid rgba(184,137,61,0.45); border-radius: 10px;
  color: var(--gold); background: rgba(0,0,0,0.25); cursor: pointer; font-size: 18px;
}
.topbar .title { font-family: var(--sans); font-weight: 800; letter-spacing: -0.03em; font-size: 17px; flex: 1; }
.topbar .bell { position: relative; cursor: pointer; color: var(--gold); font-size: 20px; }
.topbar .bell .dot {
  position: absolute; top: -2px; right: -2px; width: 8px; height: 8px;
  background: var(--gold); border-radius: 50%; border: 2px solid var(--bg);
}

/* ---------- Page padding ---------- */
.page { padding: 22px 20px 32px; }
.section { margin-bottom: 26px; }
.section-title {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 800; letter-spacing: -0.02em;
  color: var(--gold); margin-bottom: 14px;
}
.section-title::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(to right, rgba(184,137,61,0.40), transparent);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 15px 18px; border-radius: var(--radius);
  font-family: var(--sans); font-size: 15px; font-weight: 600;
  border: 1px solid transparent; cursor: pointer; transition: transform .12s ease, box-shadow .3s, opacity .2s;
  letter-spacing: 0.01em;
}
.btn:active { transform: scale(0.985); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold) 55%, var(--gold-deep));
  color: #241A00; box-shadow: var(--glow);
}
.btn-gold:hover { box-shadow: 0 0 34px rgba(212,175,55,0.32); }
.btn-line-gold {
  background: var(--bg-2); border-color: var(--gold-deep); color: var(--gold);
  box-shadow: var(--glow);
}
.btn-line-gold:hover { box-shadow: 0 0 34px rgba(212,175,55,0.32); transform: translateY(-2px); }
.btn-outline { background: transparent; border-color: var(--line); color: var(--text); }
.btn-ghost { background: var(--surface); border-color: var(--line-soft); color: var(--text); }
.btn-danger { background: transparent; border-color: rgba(255,180,171,0.35); color: var(--danger); }
.btn-sm { width: auto; padding: 10px 16px; font-size: 13px; border-radius: var(--radius-sm); }
.btn[disabled] { opacity: 0.4; cursor: not-allowed; }
.btn-row { display: flex; gap: 10px; }
.btn-row .btn { width: auto; flex: 1; }

/* ---------- Cards ---------- */
.card {
  background: linear-gradient(160deg, var(--surface), var(--bg-2));
  border: 1px solid rgba(184,137,61,0.22);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: inset 0 0 30px rgba(255,215,120,0.025);
}
.card.glow { border-color: rgba(184,137,61,0.55); box-shadow: var(--shadow), var(--glow); }

/* ---------- Lounge cards (horizontal, reference style) ---------- */
.lounge-card {
  position: relative; overflow: hidden; border-radius: var(--radius);
  border: 1px solid rgba(210,167,86,0.70); cursor: pointer;
  height: 150px; display: flex; align-items: center; gap: 0;
  padding: 0 20px; margin-bottom: 16px; text-align: left; width: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
  transition: transform .12s ease;
}
.lounge-card:active { transform: scale(0.99); }
.lounge-card .lc-badge {
  width: 80px; height: 80px; flex: none; border-radius: 50%;
  border: 1px solid rgba(215,176,92,0.70); background: rgba(0,0,0,0.35);
  display: grid; place-items: center; font-size: 36px;
  box-shadow: inset 0 0 20px rgba(224,177,80,0.18), 0 0 20px rgba(0,0,0,0.5);
}
.lounge-card .lc-body { flex: 1; margin-left: 20px; min-width: 0; }
.lounge-card { height: 154px; border-color: rgba(201,164,90,0.55); box-shadow: 0 18px 40px rgba(0,0,0,0.55); }
.lounge-card .lc-badge { width: 78px; height: 78px; border-color: rgba(216,183,106,0.70); background: rgba(0,0,0,0.45);
  box-shadow: inset 0 0 22px rgba(216,183,106,0.16), 0 0 20px rgba(0,0,0,0.6); font-size: 34px; }
.lounge-card .lc-body h3 { font-family: var(--sans); font-size: 26px; font-weight: 900; letter-spacing: -0.075em; color: #F7F2E8; }
.lounge-card .lc-body p { font-size: 14px; font-weight: 700; letter-spacing: -0.04em; color: #D8D0BC; margin-top: 8px; line-height: 1.4; }
.lounge-card .lc-enter { font-size: 12px; font-weight: 800; letter-spacing: 0.08em; color: var(--gold); margin-top: 8px; }
.lounge-card .lc-chev { font-size: 30px; font-weight: 300; color: var(--gold); flex: none; }
.lounge-card > * { position: relative; z-index: 1; }
.lounge-card::after {
  content:""; position:absolute; inset:0; z-index:0; border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent 45%, rgba(0,0,0,0.4));
  pointer-events:none;
}
.lounge-golf   { background: radial-gradient(circle at 85% 50%, rgba(65,130,75,0.28), transparent 38%), linear-gradient(100deg, #112315 0%, #07140C 45%, #050505 100%); }
.lounge-wine   { background: radial-gradient(circle at 85% 50%, rgba(150,20,60,0.28), transparent 38%), linear-gradient(100deg, #2A0710 0%, #160407 45%, #050505 100%); }
.lounge-dining { background: radial-gradient(circle at 85% 50%, rgba(180,120,45,0.25), transparent 38%), linear-gradient(100deg, #241609 0%, #120C05 45%, #050505 100%); }

/* ---------- Home: luxury hero / quick menu / ticket box ---------- */
.home-hero {
  position: relative; overflow: hidden;
  padding: 26px 24px 34px;
  background: radial-gradient(circle at 50% 0%, #401013 0%, #1A0507 38%, #050303 100%);
}
.home-hero::before {
  content:""; position: absolute; inset: 0; opacity: 0.12; pointer-events: none;
  background-image: linear-gradient(135deg, rgba(255,255,255,0.08) 0.5px, transparent 0.5px);
  background-size: 14px 14px;
}
.home-hero > * { position: relative; z-index: 1; }
.home-hd { display: flex; align-items: center; justify-content: space-between; }
.home-hd .brand { font-family: var(--serif); font-size: 36px; font-weight: 700; letter-spacing: 0.24em; color: var(--gold); text-shadow: 0 0 12px rgba(216,183,106,0.28); }
.home-hd .bell-btn {
  position: relative; display: grid; place-items: center; width: 40px; height: 40px;
  border-radius: 50%; border: 1px solid rgba(201,164,90,0.30); background: rgba(0,0,0,0.20);
  color: var(--gold); cursor: pointer; backdrop-filter: blur(6px);
}
.home-hd .bell-btn .ms { font-size: 21px; }
.home-hd .bell-btn .dot { position: absolute; top: 6px; right: 6px; width: 8px; height: 8px; border-radius: 50%; background: #E7C978; box-shadow: 0 0 12px #E7C978; }
.gem-divider {
  position: relative; height: 1px; margin: 28px 0 0;
  background: linear-gradient(to right, transparent, rgba(201,164,90,0.70), transparent);
}
.gem-divider span {
  position: absolute; left: 50%; top: 50%; width: 8px; height: 8px;
  transform: translate(-50%,-50%) rotate(45deg);
  background: #E7C978; box-shadow: 0 0 18px #E7C978;
}
.hero-c { text-align: center; padding-top: 34px; }
.hero-c .eyb { font-size: 13px; font-weight: 800; letter-spacing: 0.18em; color: var(--gold); margin-bottom: 12px; }
.hero-c .h-title { font-family: var(--serif); font-size: 44px; font-weight: 700; line-height: 0.98; letter-spacing: -0.03em; color: var(--gold); }
.hero-c .h-sub { max-width: 330px; margin: 20px auto 0; font-size: 15px; font-weight: 600; letter-spacing: -0.04em; line-height: 1.6; color: #C9BDA4; }

.quick-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.quick-btn {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; padding: 0 16px; border-radius: 16px;
  border: 1px solid rgba(201,164,90,0.35); background: #090707;
  box-shadow: inset 0 0 18px rgba(216,183,106,0.04); cursor: pointer;
  transition: transform .1s;
}
.quick-btn:active { transform: scale(0.99); }
.quick-btn .ql { display: flex; align-items: center; gap: 12px; }
.quick-btn .ql .qi { font-size: 22px; color: var(--gold); }
.quick-btn .ql .qt { font-size: 15px; font-weight: 900; letter-spacing: -0.05em; color: #F7F2E8; }
.quick-btn .qchev { font-size: 22px; color: var(--gold); }

.ticket-box {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px; border-radius: var(--radius);
  border: 1px solid rgba(201,164,90,0.50); background: linear-gradient(135deg, #120C0A, #050505);
  box-shadow: 0 18px 40px rgba(0,0,0,0.55);
}
.ticket-box .tl .lab { font-size: 14px; font-weight: 800; letter-spacing: -0.04em; color: #F1E2B8; }
.ticket-box .tl .num { display: flex; align-items: flex-end; gap: 3px; margin-top: 8px; }
.ticket-box .tl .num b { font-family: var(--serif); font-size: 52px; font-weight: 700; line-height: 0.8; color: var(--gold); }
.ticket-box .tl .num span { margin-bottom: 4px; font-size: 20px; font-weight: 900; color: var(--gold); }
.ticket-box .tdiv { width: 1px; height: 56px; background: rgba(201,164,90,0.25); }
.ticket-box .tbuy {
  display: inline-flex; align-items: center; gap: 7px;
  border: none; cursor: pointer; border-radius: 14px; padding: 15px 20px;
  font-size: 15px; font-weight: 900; letter-spacing: -0.04em; color: #160C02;
  background: linear-gradient(to bottom, #F3D982, #D8B76A 55%, #A87525);
  box-shadow: 0 0 24px rgba(216,183,106,0.35);
}

/* Premium invitation copy card */
.premium-card { border: 1px solid rgba(201,164,90,0.25); background: rgba(18,5,7,0.70); border-radius: var(--radius); padding: 22px; }
.premium-card .pc-title { text-align: center; font-family: var(--serif); font-size: 28px; font-weight: 600; line-height: 1.1; color: var(--gold); }
.premium-card .pc-body { text-align: center; margin-top: 12px; font-size: 13px; font-weight: 500; letter-spacing: -0.035em; line-height: 1.7; color: #B7A98B; }

/* ---------- Avatars ---------- */
.avatar {
  border-radius: 50%; display: grid; place-items: center;
  font-family: var(--serif); font-weight: 600; color: #1A130A;
  border: 2px solid rgba(212,175,55,0.55); flex: none;
}
.avatar.lg { width: 84px; height: 84px; font-size: 30px; }
.avatar.md { width: 56px; height: 56px; font-size: 20px; }
.avatar.sm { width: 40px; height: 40px; font-size: 15px; }

/* ---------- Member list cards ---------- */
.member-card {
  display: flex; gap: 14px; align-items: center;
  background: linear-gradient(160deg, var(--surface), var(--bg-2));
  border: 1px solid rgba(184,137,61,0.38); border-radius: var(--radius);
  padding: 16px; margin-bottom: 12px; cursor: pointer;
  box-shadow: inset 0 0 24px rgba(255,215,120,0.025);
  transition: border-color .2s, transform .1s;
}
.member-card:active { transform: scale(0.995); }
.member-card:hover { border-color: rgba(184,137,61,0.6); }
.member-card .mc-body { flex: 1; min-width: 0; }
.member-card .mc-name { font-family: var(--sans); font-weight: 800; letter-spacing: -0.03em; font-size: 16px; color: #fff; }
.member-card .mc-meta { font-size: 13px; color: var(--muted); margin: 3px 0 7px; }
.member-card .mc-bio { font-size: 13px; color: rgba(255,255,255,0.62);
  display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.member-card .mc-chev { font-size: 26px; font-weight: 300; color: var(--gold); flex: none; }

/* ---------- Tags / chips / badges ---------- */
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-size: 11.5px; padding: 4px 10px; border-radius: 999px;
  border: 1px solid var(--line); color: var(--gold); background: rgba(184,137,61,0.06);
}
.chip {
  font-size: 13px; padding: 9px 14px; border-radius: 999px;
  border: 1px solid var(--line-soft); background: var(--surface); color: var(--text);
  cursor: pointer; transition: all .15s;
}
.chip.active { border-color: var(--gold); color: var(--gold); background: rgba(184,137,61,0.08); }
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11.5px; padding: 5px 11px; border-radius: 999px; font-weight: 600;
  border: 1px solid rgba(184,137,61,0.32); color: var(--gold-2); background: rgba(184,137,61,0.07);
}
.badge.ok { border-color: rgba(127,176,138,0.35); color: var(--ok); background: rgba(127,176,138,0.07); }

/* ---------- Status pill ---------- */
.status {
  display: inline-block; font-size: 11.5px; font-weight: 600; padding: 4px 10px; border-radius: 8px;
  background: var(--surface-2); border: 1px solid var(--line-soft); color: var(--muted);
}
.status.sent   { color: var(--gold);   border-color: var(--line); }
.status.accept { color: var(--ok);     border-color: rgba(127,176,138,0.35); }
.status.reject { color: var(--danger); border-color: rgba(255,180,171,0.35); }
.status.wait   { color: var(--muted); }

/* ---------- Notice box ---------- */
.notice {
  background: rgba(184,137,61,0.05);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 14px 16px; font-size: 13px; color: rgba(255,255,255,0.82); line-height: 1.7;
}
.notice.lock { text-align: center; color: var(--muted); }
.invite-copy {
  font-family: var(--serif); font-size: 14px; line-height: 1.9; color: rgba(255,255,255,0.9);
  text-align: center; padding: 6px 4px;
}

/* ---------- Form ---------- */
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; color: var(--muted); margin-bottom: 7px; }
.input, .textarea, select.input {
  width: 100%; padding: 13px 14px; font-size: 14.5px; font-family: var(--sans);
  background: var(--bg-2); border: 1px solid var(--line-soft); border-radius: 12px;
  color: var(--text); outline: none; transition: border-color .2s;
}
.input:focus, .textarea:focus { border-color: var(--gold); }
.textarea { min-height: 96px; resize: vertical; }
.input::placeholder, .textarea::placeholder { color: var(--muted-2); }

.check {
  display: flex; align-items: flex-start; gap: 11px; padding: 12px 0;
  border-bottom: 1px solid var(--line-soft); cursor: pointer; font-size: 13.5px;
}
.check:last-child { border-bottom: none; }
.check .box {
  width: 22px; height: 22px; flex: none; border-radius: 7px; border: 1.5px solid var(--line);
  display: grid; place-items: center; color: transparent; font-size: 13px; margin-top: 1px;
  transition: all .15s;
}
.check.on .box { background: var(--gold); border-color: var(--gold); color: #1A130A; }

.gender-pick { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.gender-pick .opt {
  border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 26px 16px;
  text-align: center; cursor: pointer; transition: all .15s;
}
.gender-pick .opt.active { border-color: var(--gold); background: rgba(184,137,61,0.06); }
.gender-pick .opt .em { font-size: 30px; display:block; margin-bottom: 10px; }

/* ---------- Step indicator ---------- */
.steps { display: flex; gap: 6px; margin-bottom: 22px; }
.steps .s { height: 4px; flex: 1; border-radius: 2px; background: var(--surface-2); }
.steps .s.done { background: var(--gold); }

/* ---------- Ticket products ---------- */
.ticket {
  display: flex; align-items: center; justify-content: space-between;
  border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 16px;
  margin-bottom: 11px; cursor: pointer; transition: all .15s;
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
}
.ticket.active { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold) inset, var(--glow); }
.ticket .t-qty { font-weight: 800; letter-spacing: -0.03em; font-size: 17px; }
.ticket .t-per { font-size: 12px; color: var(--muted); margin-top: 2px; }
.ticket .t-price { font-weight: 800; letter-spacing: -0.03em; font-size: 16px; text-align: right; }
.ticket .t-save { font-size: 12px; color: var(--ok); margin-top: 2px; }

/* ---------- Balance pill ---------- */
.balance {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px; border-radius: var(--radius);
  background: var(--bg-2);
  border: 1px solid rgba(184,137,61,0.55);
  box-shadow: inset 0 0 30px rgba(255,215,120,0.04);
}
.balance .b-n { font-size: 24px; font-weight: 900; letter-spacing: -0.04em; color: var(--gold); }

/* ---------- Chat ---------- */
.chat-wrap { display: flex; flex-direction: column; height: calc(100vh - 64px); }
.chat-scroll { flex: 1; overflow-y: auto; padding: 18px 16px 8px; }
.bubble { max-width: 76%; padding: 11px 14px; border-radius: 16px; font-size: 14px; margin-bottom: 10px; line-height: 1.55; }
.bubble.them { background: var(--surface-2); border: 1px solid var(--line-soft); border-bottom-left-radius: 5px; }
.bubble.me { background: linear-gradient(135deg, #F7D977, #B88127); color: #1A1200; font-weight: 600; margin-left: auto; border-bottom-right-radius: 5px; box-shadow: 0 0 18px rgba(238,191,91,0.18); }
.bubble.sys {
  max-width: 100%; text-align: center; background: transparent; color: var(--muted);
  font-size: 12px; border: 1px dashed var(--line-soft); border-radius: 10px;
}
.chat-input { display: flex; gap: 8px; padding: 12px 14px; border-top: 1px solid var(--line-soft); background: var(--bg-2); }
.chat-input .input { border-radius: 999px; }
.chat-input .send { width: 46px; height: 46px; flex: none; border-radius: 50%; border: none;
  background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #1A130A; font-size: 18px; cursor: pointer; }
.chat-warn { font-size: 11.5px; color: var(--danger); text-align: center; padding: 6px 14px; }

/* ---------- Bottom nav ---------- */
.bottomnav {
  position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 430px; z-index: 50; height: calc(78px + env(safe-area-inset-bottom));
  display: grid; grid-template-columns: repeat(5,1fr);
  background: rgba(6,3,3,0.95);
  backdrop-filter: blur(16px); border-top: 1px solid rgba(201,164,90,0.25);
  padding-bottom: env(safe-area-inset-bottom);
}
.bottomnav .nav {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  color: #8D8069; font-size: 11px; font-weight: 800; letter-spacing: -0.04em;
  cursor: pointer; position: relative; height: 78px;
}
.bottomnav .nav .ni { font-size: 22px; }
.bottomnav .nav.active { color: #E7C978; }
.bottomnav .nav.active::before {
  content:""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(201,164,90,0.20), transparent);
}
.bottomnav .nav.active::after {
  content:""; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 40px; height: 2px; background: #E7C978; box-shadow: 0 0 12px #E7C978;
}
.bottomnav .nav .ni, .bottomnav .nav span { position: relative; }
.bottomnav .nav .nd { position:absolute; top:14px; right: 50%; margin-right:-16px;
  width:7px; height:7px; background: var(--gold); border-radius:50%; z-index:2; }

/* ---------- Misc ---------- */
.divider { height: 1px; background: var(--line-soft); margin: 18px 0; }
.row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.kv { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--line-soft); font-size: 14px; }
.kv:last-child { border-bottom: none; }
.kv .k { color: var(--muted); }
.list-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 2px; border-bottom: 1px solid var(--line-soft); cursor: pointer; font-size: 14.5px;
}
.list-link:last-child { border-bottom: none; }
.list-link .chev { color: var(--gold); font-size: 18px; }
.empty { text-align: center; color: var(--muted); padding: 48px 20px; }
.empty .em { font-size: 36px; display:block; margin-bottom: 12px; opacity: 0.6; }
.locked-box {
  position: relative; border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 26px 18px; text-align: center; overflow: hidden;
}
.locked-box .lk { font-size: 26px; color: var(--gold); margin-bottom: 10px; }
.fade-in { animation: fade .35s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(6px);} to { opacity:1; transform:none; } }

/* ---------- Photo member cards (lounge list) ---------- */
.pmember { overflow: hidden; border-radius: 24px; border: 1px solid rgba(201,164,90,0.45); background: #0B0707; margin-bottom: 20px; }
.pmember .pm-photo { position: relative; height: 360px; background: linear-gradient(160deg, #1F1310, #0B0707); }
.pmember .pm-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pmember .pm-photo::after { content:""; position: absolute; inset: 0; background: linear-gradient(to top, #000 2%, rgba(0,0,0,0.25) 40%, transparent 70%); }
.pmember .pm-ph-fallback { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--serif); font-size: 64px; color: rgba(216,183,106,0.5); }
.pmember .pm-cap { position: absolute; left: 20px; right: 20px; bottom: 20px; z-index: 1; }
.pmember .pm-badge { display: inline-flex; align-items: center; border: 1px solid rgba(216,183,106,0.60); background: rgba(0,0,0,0.55); color: var(--gold); border-radius: 6px; padding: 4px 11px; font-size: 11px; font-weight: 900; letter-spacing: 0.04em; margin-bottom: 12px; }
.pmember .pm-name { font-size: 28px; font-weight: 900; letter-spacing: -0.05em; color: #fff; }
.pmember .pm-meta { margin-top: 4px; font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.85); }
.pmember .pm-tag { margin-top: 8px; font-size: 13px; font-weight: 700; color: var(--gold); }
.pmember .pm-intro { margin-top: 8px; font-size: 14px; color: rgba(255,255,255,0.82); line-height: 1.5; }
.pmember .pm-foot { border-top: 1px solid rgba(201,164,90,0.25); padding: 16px; }
.pmember .pm-lock { border-radius: 12px; background: rgba(0,0,0,0.35); padding: 16px; text-align: center; font-size: 13.5px; font-weight: 700; color: #C9BDA4; margin-bottom: 16px; line-height: 1.6; }
.pmember .pm-lock .ms { color: var(--gold); display: block; margin: 0 auto 8px; font-size: 22px; }
.pmember .pm-invite { width: 100%; border: none; border-radius: 12px; padding: 15px; font-weight: 900; font-size: 16px; color: #160C02; cursor: pointer;
  background: linear-gradient(to bottom, #F3D982, #D8B76A 55%, #A87525); box-shadow: 0 0 22px rgba(216,183,106,0.25); }

/* ---------- Light theme (verification / account / settings) ---------- */
.light { background: #fff; color: #141414; min-height: 100vh; margin-bottom: -96px; }
.light .l-top {
  position: sticky; top: 0; z-index: 30; display: flex; align-items: center;
  height: 64px; padding: 0 14px; background: #fff; border-bottom: 1px solid #f0f0f0;
}
.light .l-top .lt-back { width: 40px; height: 40px; display: grid; place-items: center; color: #111; cursor: pointer; }
.light .l-top .lt-back .ms { font-size: 26px; }
.light .l-top h1 { flex: 1; text-align: center; font-weight: 900; font-size: 19px; letter-spacing: -0.04em; padding-right: 40px; }
.light .l-page { padding: 18px 20px 48px; }
.light .l-sec-title { font-weight: 900; font-size: 21px; letter-spacing: -0.04em; margin: 26px 0 14px; }
.light .l-sec-title:first-child { margin-top: 4px; }
.light .l-card {
  display: flex; align-items: center; gap: 15px; width: 100%; text-align: left;
  border: 1px solid #e6e6e6; border-radius: 18px; background: #fff; padding: 18px; margin-bottom: 12px; cursor: pointer;
  transition: background .12s;
}
.light .l-card:active { background: #fafafa; }
.light .l-card .lc-ic { width: 26px; flex: none; color: #111; display: grid; place-items: center; }
.light .l-card .lc-ic .ms { font-size: 23px; }
.light .l-card .lc-bd { flex: 1; min-width: 0; }
.light .l-card .lc-tt { font-weight: 900; font-size: 17px; letter-spacing: -0.04em; }
.light .l-card .lc-ds { margin-top: 5px; font-size: 13px; color: #6b6b6b; line-height: 1.5; }
.light .l-card .lc-rt { color: #999; font-size: 13px; font-weight: 600; }
.light .l-card .lc-chev { color: #c4c4c4; font-size: 22px; flex: none; }
.light .l-prof {
  display: flex; align-items: center; gap: 16px; border: 1px solid #ececec; border-radius: 20px; padding: 18px; margin-bottom: 6px; background: #fafafa;
}
.light .l-prof .lp-av { width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center; font-family: var(--serif); font-weight: 700; font-size: 24px; color: #160C02; }
.light .l-prof .lp-name { font-weight: 900; font-size: 19px; letter-spacing: -0.04em; }
.light .l-prof .lp-sub { margin-top: 3px; font-size: 13px; color: #777; }
.light .l-prof .lp-lv { margin-left: auto; font-size: 11.5px; font-weight: 900; color: #A87525; border: 1px solid #E7D4A4; background: #FBF4E2; border-radius: 999px; padding: 6px 12px; }
.light .l-seal { width: 108px; height: 108px; border-radius: 50%; background: #E7D4A4; display: grid; place-items: center; margin: 6px auto 0; }
.light .l-seal .ms { font-size: 52px; color: #6b541e; }
.light .l-h2 { text-align: center; font-weight: 900; font-size: 27px; letter-spacing: -0.05em; margin-top: 22px; }
.light .l-p { text-align: center; font-size: 15.5px; color: #555; margin-top: 12px; line-height: 1.7; }
.light .l-field { margin-bottom: 16px; }
.light .l-field label { font-weight: 800; font-size: 13px; }
.light .l-field .ph { margin-top: 8px; border: 1px solid #ddd; border-radius: 12px; padding: 14px; color: #9a9a9a; font-size: 14px; background: #fff; }
.light .l-note { border: 1px solid #e6e6e6; border-radius: 16px; padding: 16px; font-size: 13px; color: #555; line-height: 1.7; }
.light .l-check { display: flex; align-items: center; gap: 10px; margin-top: 14px; font-weight: 700; font-size: 13.5px; cursor: pointer; }
.light .l-check .cbx { width: 22px; height: 22px; flex: none; border: 1.5px solid #bbb; border-radius: 6px; display: grid; place-items: center; color: transparent; font-size: 14px; }
.light .l-check.on .cbx { background: #111; border-color: #111; color: #fff; }
.light .l-btn { width: 100%; border: 1px solid #111; border-radius: 12px; padding: 16px; font-weight: 900; font-size: 17px; background: #fff; color: #111; cursor: pointer; }
.light .l-btn.solid { background: #111; color: #fff; }
.light .l-btn.muted { border: none; color: #b0b0b0; }
.light .l-btn[disabled] { opacity: 0.3; cursor: not-allowed; }
.light .info-card { border: 1px solid #e6e6e6; border-radius: 16px; padding: 18px; margin-bottom: 12px; }
.light .info-card .ic-t { font-size: 13px; font-weight: 700; color: #888; }
.light .info-card .ic-v { margin-top: 6px; font-size: 18px; font-weight: 900; letter-spacing: -0.03em; }
.light .l-code { text-align: center; font-weight: 900; font-size: 40px; letter-spacing: 0.4em; margin: 28px 0 8px; padding-left: 0.4em; }
.light .l-info-row { display: flex; gap: 16px; border: 1px solid #ededed; border-radius: 18px; padding: 18px; margin-bottom: 14px; }
.light .l-info-row .iri { width: 52px; height: 52px; flex: none; border: 1px solid #ddd; border-radius: 50%; display: grid; place-items: center; }
.light .l-info-row .iri .ms { font-size: 24px; }
.light .l-info-row .irt { font-weight: 900; font-size: 15px; line-height: 1.5; }
.light .l-info-row .ird { margin-top: 8px; font-size: 13.5px; color: #666; line-height: 1.6; }

/* ---------- AUREA landing / hero ---------- */
.hero {
  position: absolute; inset: 0; min-height: 100vh; overflow: hidden;
  display: flex; flex-direction: column;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: #050303; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; animation: zoom 22s infinite alternate ease-in-out; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,3,3,0) 0%, rgba(5,3,3,0.55) 55%, #050303 100%);
}
@keyframes zoom { 0% { transform: scale(1);} 100% { transform: scale(1.07);} }
.hero-content { position: relative; z-index: 1; display: flex; flex-direction: column; min-height: 100vh; }
.wordmark {
  font-family: var(--serif); font-weight: 700; font-size: 30px; letter-spacing: 0.22em;
  text-align: center;
}
.hero-fade { opacity: 0; transform: translateY(18px); animation: heroIn .9s cubic-bezier(.2,.8,.2,1) forwards; }
@keyframes heroIn { to { opacity: 1; transform: none; } }
.trust-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 18px; }
.trust { display: flex; align-items: center; gap: 7px; }
.trust .ms { font-size: 17px; color: var(--gold); }
.trust span:last-child { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.dotsep { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.2); }

/* ---------- AUREA landing — full design image + filler + buttons ---------- */
.land { background: #050302; min-height: 100vh; margin-bottom: -96px; }
.land-full { width: 100%; display: block; }
.land-body { padding: 20px 22px 30px; display: flex; flex-direction: column; gap: 18px; }

.land-features { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid rgba(216,183,106,0.25); background: rgba(0,0,0,0.5); border-radius: 22px; padding: 18px 6px; }
.land-features .fi { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 4px; border-right: 1px solid rgba(216,183,106,0.15); }
.land-features .fi:last-child { border-right: none; }
.land-features .fi .t { margin-top: 10px; font-size: 12px; font-weight: 900; letter-spacing: -0.05em; color: #F2E4C2; }
.land-features .fi .d { margin-top: 3px; font-size: 10px; font-weight: 600; letter-spacing: -0.04em; color: #A99A7D; line-height: 1.4; }

.land-trust { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; border-top: 1px solid rgba(216,183,106,0.20); padding-top: 18px; }
.land-trust .ti { display: flex; flex-direction: column; align-items: center; text-align: center; }
.land-trust .ti .t { margin-top: 10px; font-size: 12px; font-weight: 900; letter-spacing: -0.05em; color: #F2E4C2; }
.land-trust .ti .d { margin-top: 3px; font-size: 10px; font-weight: 600; letter-spacing: -0.04em; color: #8F8269; line-height: 1.4; }

.land-features .fem, .land-trust .fem { font-size: 24px; line-height: 1; }

.land-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 4px; }
.land-actions button { display: flex; align-items: center; justify-content: center; gap: 8px; border-radius: 18px; padding: 0 22px; font-size: 18px; font-weight: 900; letter-spacing: -0.05em; cursor: pointer; transition: box-shadow .3s, transform .12s; }
.land-actions button:active { transform: scale(0.99); }
.land-actions .b1 { height: 62px; border: none; color: #150B03; background: linear-gradient(to bottom, #F5D98A, #D8B76A 55%, #A87525); box-shadow: 0 0 28px rgba(216,183,106,0.26); }
.land-actions .b2 { height: 58px; border: 1px solid rgba(216,183,106,0.70); background: rgba(0,0,0,0.4); color: #F2E4C2; }

/* ---------- Toast ---------- */
#toast {
  position: fixed; bottom: 110px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--surface-2); border: 1px solid var(--line); color: var(--text);
  padding: 13px 20px; border-radius: 12px; font-size: 13.5px; z-index: 200;
  opacity: 0; transition: all .25s; box-shadow: var(--shadow); max-width: 86%; text-align: center;
}
#toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Modal sheet ---------- */
.sheet-bg { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 100; display: grid; align-items: end; }
.sheet {
  max-width: 430px; margin: 0 auto; width: 100%;
  background: var(--bg-2); border-top: 1px solid var(--line);
  border-radius: 22px 22px 0 0; padding: 22px 20px calc(22px + env(safe-area-inset-bottom));
  animation: up .25s ease;
}
@keyframes up { from { transform: translateY(100%);} to { transform: none; } }
.sheet h3 { margin-bottom: 14px; }

/* ---------- Admin ---------- */
.admin-tabs { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; margin-bottom: 18px; }
.admin-tabs::-webkit-scrollbar { display: none; }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.stat { background: var(--surface); border: 1px solid rgba(184,137,61,0.30); border-radius: 14px; padding: 16px; box-shadow: inset 0 0 20px rgba(255,215,120,0.03); }
.stat .n { font-size: 26px; font-weight: 900; letter-spacing: -0.04em; color: var(--gold); }
.stat .l { font-size: 12px; color: var(--muted); margin-top: 3px; }
