/* ===== CSS Variables ===== */
:root {
  --bg: #08050c;
  --bg2: #110a18;
  --bg-card: #1a0e22;
  --bg-card2: #221430;
  --gold: #d4a06e;
  --gold2: #f0c898;
  --rose: #e8709a;
  --rose2: #f498b8;
  --rose-glow: rgba(232, 112, 154, 0.18);
  --text: #f8eef2;
  --text2: #c0a0b0;
  --muted: #6a5060;
  --border: rgba(212, 160, 110, 0.12);
  --border-rose: rgba(232, 112, 154, 0.2);
  --grad-brand: linear-gradient(135deg, #d4a06e 0%, #e8709a 100%);
  --grad-dark: linear-gradient(180deg, #110a18 0%, #08050c 100%);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --nav-h: 68px;
  --shadow: 0 8px 32px rgba(0,0,0,0.5);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4), 0 0 0 1px rgba(212,160,110,0.07);
  --shadow-glow: 0 0 40px rgba(232, 112, 154, 0.25);
}

/* ===== Reset ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'PingFang SC', 'Noto Sans SC', 'Microsoft YaHei', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100dvh;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; outline: none; background: none; font-family: inherit; }
input { outline: none; border: none; background: none; font-family: inherit; }
img { display: block; object-fit: cover; }

/* ===== Scrollbar ===== */
::-webkit-scrollbar { display: none; }

/* ===== Background decoration ===== */
.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.bg-orbs::before {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(232,112,154,0.12) 0%, transparent 70%);
  top: -80px;
  right: -80px;
  border-radius: 50%;
  animation: orbFloat 8s ease-in-out infinite;
}
.bg-orbs::after {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(212,160,110,0.08) 0%, transparent 70%);
  bottom: 100px;
  left: -60px;
  border-radius: 50%;
  animation: orbFloat 10s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

/* ===== Page wrapper ===== */
.page { position: relative; z-index: 1; }

/* ===== Buttons ===== */
.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  border-radius: 26px;
  background: var(--grad-brand);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 20px rgba(232,112,154,0.4);
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s;
}
.btn-primary:active::after { background: rgba(255,255,255,0.1); }
.btn-primary:active { transform: scale(0.98); }

.btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  border-radius: 26px;
  border: 1px solid var(--border-rose);
  color: var(--rose2);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
  background: rgba(232,112,154,0.04);
}
.btn-outline:active { background: rgba(232,112,154,0.1); transform: scale(0.98); }

.btn-ghost {
  color: var(--text2);
  font-size: 14px;
  padding: 8px 16px;
  transition: color 0.2s;
}
.btn-ghost:active { color: var(--rose2); }

/* ===== Form ===== */
.form-field {
  position: relative;
  margin-bottom: 16px;
}
.form-field label {
  display: block;
  font-size: 12px;
  color: var(--text2);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.form-field input {
  width: 100%;
  height: 52px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0 16px;
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.2s;
}
.form-field input:focus { border-color: var(--rose); }
.form-field input::placeholder { color: var(--muted); }

/* ===== Tags ===== */
.tag {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  border-radius: 13px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}
.tag-rose {
  background: rgba(232,112,154,0.12);
  color: var(--rose2);
  border: 1px solid rgba(232,112,154,0.2);
}
.tag-gold {
  background: rgba(212,160,110,0.1);
  color: var(--gold2);
  border: 1px solid rgba(212,160,110,0.18);
}

/* ===== Bottom Nav ===== */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  height: var(--nav-h);
  background: rgba(17, 10, 24, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  z-index: 100;
  padding-bottom: env(safe-area-inset-bottom);
}
.nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding-top: 8px;
  padding-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  transition: color 0.2s;
  position: relative;
}
.nav-item.active { color: var(--rose); }
.nav-item.active .nav-icon { filter: drop-shadow(0 0 6px rgba(232,112,154,0.6)); }
.nav-icon { font-size: 22px; line-height: 1; }

/* ===== Header bar ===== */
.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8,5,12,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.header-back {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-card);
  color: var(--text);
  font-size: 18px;
  border: 1px solid var(--border);
}
.header-title {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ===== Avatar ===== */
.avatar {
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

/* ===== Stars ===== */
.stars { color: var(--gold); font-size: 12px; letter-spacing: 1px; }

/* ===== Divider ===== */
.divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}
.divider-text {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: var(--muted);
  font-size: 13px;
}
.divider-text::before, .divider-text::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ===== Loading dot ===== */
@keyframes pulse { 0%,100%{opacity:0.3}50%{opacity:1} }

/* ===== Modal overlay ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  z-index: 200;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.show {
  opacity: 1;
  pointer-events: all;
}
.modal-sheet {
  width: 100%;
  background: var(--bg2);
  border-radius: 24px 24px 0 0;
  padding: 24px 24px calc(24px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--border-rose);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.modal-overlay.show .modal-sheet {
  transform: translateY(0);
}
.modal-handle {
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: var(--muted);
  margin: 0 auto 24px;
}

/* ===== Gradient text ===== */
.grad-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== Fade in animation ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease forwards; }
.fade-up-2 { animation: fadeUp 0.6s 0.1s ease both; }
.fade-up-3 { animation: fadeUp 0.6s 0.2s ease both; }
.fade-up-4 { animation: fadeUp 0.6s 0.3s ease both; }
.fade-up-5 { animation: fadeUp 0.6s 0.4s ease both; }

/* ===================== */
/* === INDEX PAGE === */
/* ===================== */
.landing-page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 80px 28px 60px;
  position: relative;
}

.landing-logo {
  text-align: center;
}
.landing-brand {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(232,112,154,0.4));
}
.landing-brand-en {
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--muted);
  margin-top: 8px;
  text-transform: uppercase;
}
.landing-tagline {
  font-size: 18px;
  font-weight: 400;
  color: var(--text2);
  letter-spacing: 0.08em;
  line-height: 1.7;
  text-align: center;
  margin-top: 16px;
}
.landing-tagline strong {
  color: var(--rose2);
  font-weight: 500;
}

.landing-preview {
  display: flex;
  justify-content: center;
  gap: -20px;
  position: relative;
  height: 180px;
  width: 240px;
}
.landing-preview .preview-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--bg);
  position: absolute;
  object-fit: cover;
}
.landing-preview .preview-avatar:nth-child(1) { left: 20px; top: 40px; z-index: 3; box-shadow: 0 0 0 2px var(--rose); }
.landing-preview .preview-avatar:nth-child(2) { left: 80px; top: 0px; z-index: 2; width: 90px; height: 90px; }
.landing-preview .preview-avatar:nth-child(3) { left: 148px; top: 40px; z-index: 1; }
.landing-preview .preview-count {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card2);
  border: 1px solid var(--border-rose);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 13px;
  color: var(--text2);
  white-space: nowrap;
}
.preview-count span { color: var(--rose2); font-weight: 600; }

.landing-cta {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.landing-terms {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
}
.landing-terms a { color: var(--text2); }

/* ========================= */
/* === REGISTER PAGE === */
/* ========================= */
.register-page {
  min-height: 100dvh;
  padding: 60px 28px 40px;
}
.register-header { margin-bottom: 36px; }
.register-header h1 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}
.register-header p {
  font-size: 14px;
  color: var(--text2);
  margin-top: 8px;
}

.tab-row {
  display: flex;
  gap: 0;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  padding: 4px;
  margin-bottom: 28px;
}
.tab-btn {
  flex: 1;
  height: 40px;
  border-radius: var(--radius-xs);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: all 0.25s ease;
}
.tab-btn.active {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 2px 12px rgba(232,112,154,0.35);
}

.phone-row {
  display: flex;
  gap: 8px;
}
.phone-prefix {
  width: 70px;
  flex-shrink: 0;
  height: 52px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--text2);
}
.phone-row .form-field { flex: 1; margin-bottom: 0; }

.invite-toggle {
  font-size: 13px;
  color: var(--text2);
  margin-bottom: 12px;
  cursor: pointer;
}
.invite-toggle span { color: var(--rose2); }

.agreement-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
  margin-bottom: 24px;
}
.agreement-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--rose);
}
.agreement-row span {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.5;
}
.agreement-row a { color: var(--rose2); }

/* ========================= */
/* === HOME PAGE === */
/* ========================= */
.home-page {
  padding-bottom: calc(var(--nav-h) + 16px);
  min-height: 100dvh;
}

.home-header {
  padding: 20px 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home-greeting { font-size: 22px; font-weight: 700; }
.home-greeting span { display: block; font-size: 13px; font-weight: 400; color: var(--text2); margin-top: 2px; }
.home-actions { display: flex; gap: 10px; align-items: center; }
.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  position: relative;
}
.badge {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose);
  border: 2px solid var(--bg);
}

.search-bar {
  margin: 16px 20px 0;
  height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 22px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}
.search-bar input {
  flex: 1;
  font-size: 14px;
  color: var(--text);
}
.search-bar input::placeholder { color: var(--muted); }

.filter-row {
  display: flex;
  gap: 8px;
  padding: 16px 20px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-chip {
  flex-shrink: 0;
  height: 32px;
  padding: 0 16px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--border);
  color: var(--text2);
  background: transparent;
  transition: all 0.2s;
}
.filter-chip.active {
  background: var(--grad-brand);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 2px 10px rgba(232,112,154,0.35);
}
.filter-chip:active:not(.active) { background: var(--bg-card); }

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 12px;
}
.section-title { font-size: 16px; font-weight: 600; }
.section-more { font-size: 13px; color: var(--rose2); }

.companion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0 14px;
}

.companion-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-card);
}
.companion-card:active { transform: scale(0.97); }

.card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.companion-card:active .card-img-wrap img { transform: scale(1.04); }
.card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,5,12,0.85) 0%, rgba(8,5,12,0.1) 50%, transparent 100%);
}
.card-online-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(8,5,12,0.7);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 3px 10px;
  font-size: 11px;
  color: #4ce87a;
  border: 1px solid rgba(76,232,122,0.25);
}
.card-online-badge.busy { color: var(--gold2); border-color: rgba(212,160,110,0.25); }

.card-info {
  padding: 10px 12px 12px;
}
.card-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.card-name { font-size: 15px; font-weight: 600; }
.card-age { font-size: 13px; color: var(--text2); }
.card-location { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.card-location span { color: var(--gold2); }
.card-tags { display: flex; flex-wrap: wrap; gap: 4px; }
.card-rating { font-size: 12px; color: var(--gold2); display: flex; align-items: center; gap: 3px; }

/* ========================== */
/* === PROFILE PAGE === */
/* ========================== */
.profile-page { min-height: 100dvh; }

.gallery-wrap {
  position: relative;
  width: 100%;
  height: 65vw;
  max-height: 420px;
  overflow: hidden;
}
.gallery-track {
  display: flex;
  height: 100%;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}
.gallery-slide {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
}
.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,5,12,1) 0%, rgba(8,5,12,0.3) 40%, transparent 70%);
}
.gallery-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.gallery-dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.3);
  transition: all 0.3s;
}
.gallery-dot.active {
  width: 18px;
  background: var(--rose);
}
.gallery-back {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 36px;
  height: 36px;
  background: rgba(8,5,12,0.5);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 10;
  border: 1px solid rgba(255,255,255,0.1);
}
.gallery-fav {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(8,5,12,0.5);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 10;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.2s;
}
.gallery-fav.faved { color: var(--rose); border-color: rgba(232,112,154,0.4); }
.gallery-count {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(8,5,12,0.5);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 4px 12px;
  font-size: 12px;
  color: var(--text2);
}

.profile-body {
  padding: 0 20px;
  margin-top: -20px;
  position: relative;
}
.profile-name-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 8px;
}
.profile-name { font-size: 26px; font-weight: 700; line-height: 1.1; }
.profile-age { font-size: 16px; color: var(--text2); margin-left: 6px; }
.profile-verified {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--gold2);
  background: rgba(212,160,110,0.08);
  border: 1px solid rgba(212,160,110,0.2);
  border-radius: 12px;
  padding: 4px 10px;
}
.profile-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.profile-meta-item { font-size: 13px; color: var(--text2); display: flex; align-items: center; gap: 4px; }
.profile-meta-item .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--muted); }

.profile-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }

.profile-section { margin-bottom: 20px; }
.profile-section-title {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.profile-section-body { font-size: 14px; color: var(--text2); line-height: 1.75; }

.stats-row {
  display: flex;
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 20px;
}
.stat-item {
  flex: 1;
  background: var(--bg-card);
  padding: 14px 8px;
  text-align: center;
}
.stat-value { font-size: 20px; font-weight: 700; color: var(--rose2); }
.stat-label { font-size: 11px; color: var(--muted); margin-top: 2px; }

.specialties-grid { display: flex; flex-wrap: wrap; gap: 6px; }

.profile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
  background: rgba(8,5,12,0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  z-index: 100;
}
.profile-bottom-space { height: 88px; }

/* ========================= */
/* === CONTACT MODAL === */
/* ========================= */
.contact-modal .modal-sheet { text-align: center; }
.contact-modal-title { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.contact-modal-sub { font-size: 13px; color: var(--text2); margin-bottom: 24px; }
.contact-avatar-row { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; text-align: left; }
.contact-avatar-row img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; border: 2px solid var(--rose); }
.contact-avatar-info .name { font-size: 15px; font-weight: 600; }
.contact-avatar-info .sub { font-size: 13px; color: var(--text2); margin-top: 2px; }
.contact-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.contact-option {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  transition: border-color 0.2s;
}
.contact-option:active { border-color: var(--rose); }
.contact-option-icon { font-size: 24px; width: 36px; }
.contact-option-text .title { font-size: 15px; font-weight: 500; }
.contact-option-text .desc { font-size: 12px; color: var(--muted); margin-top: 2px; }
.contact-option-arrow { margin-left: auto; color: var(--muted); }
