/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Design Tokens ── */
:root {
  /* Warm dusk primary */
  --amber:        #E8945C;
  --amber-mid:    #F2B57A;
  --amber-light:  #F5D4A8;
  --amber-pale:   #FDF0E0;

  /* Dusty rose accent */
  --rose:         #C4706A;
  --rose-light:   #E8A89C;
  --rose-pale:    #F9E8E6;

  /* Teal (kept for dashboard contrast) */
  --teal:         #0D9488;
  --teal-light:   #5EEAD4;
  --teal-pale:    #CCFBF1;

  /* Backgrounds */
  --bg-page:      #F8F0E8;
  --bg-card:      #FFFAF4;
  --bg-input:     #FEFAF6;

  /* Text */
  --text-dark:    #2A1A0E;
  --text-mid:     #6B4B35;
  --text-light:   #9B7A62;
  --text-white:   #F5EFE6;

  /* Recording red */
  --rec-red:      #EF4444;

  /* Gradients */
  --grad-hero:    linear-gradient(135deg, #E8945C 0%, #F2B57A 100%);
  --grad-rose:    linear-gradient(135deg, #C4706A 0%, #E8A89C 100%);
  --grad-teal:    linear-gradient(135deg, #0D9488 0%, #14B8A6 100%);
  --grad-page:    linear-gradient(180deg, #FDF0E0 0%, #F8F0E8 60%);

  /* Shadows */
  --shadow-sm:    0 2px 12px rgba(232,148,92,0.12);
  --shadow-md:    0 6px 24px rgba(232,148,92,0.18);
  --shadow-lg:    0 12px 40px rgba(232,148,92,0.22);
  --shadow-amber: 0 6px 20px rgba(232,148,92,0.32);
  --shadow-rose:  0 6px 20px rgba(196,112,106,0.28);

  /* Radii */
  --r-sm:   12px;
  --r-md:   18px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-full: 999px;

  /* Dark screen background — warm dusk aurora */
  --bg-dark:
    radial-gradient(ellipse 80% 50% at 20% 0%,    rgba(253,184,149,0.18), transparent 60%),
    radial-gradient(ellipse 60% 40% at 85% 25%,   rgba(244,199,123,0.14), transparent 60%),
    radial-gradient(ellipse 70% 50% at 50% 100%,  rgba(212,132,122,0.12), transparent 60%),
    linear-gradient(160deg, #1f0e16 0%, #0d0608 60%, #1a0c14 100%);
}

/* ── Base ── */
html, body {
  height: 100%;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans Bengali', sans-serif;
  background: var(--bg-page);
  color: var(--text-dark);
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
}

/* ── Screen System ── */
.screen {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: var(--grad-page);
  transition: opacity 0.35s ease, transform 0.35s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.screen.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

/* ── All dark screens use warm dusk aurora ── */
#screen-auth,
#screen-language,
#screen-welcome,
#screen-setup,
#screen-home,
#screen-conversation {
  background: var(--bg-dark);
}

/* Remove old star-field pseudo on all screens */
#screen-auth::before,
#screen-language::before,
#screen-welcome::before,
#screen-home::before,
#screen-conversation::before {
  display: none;
}

/* ══════════════════════════════════════
   AUTH SCREEN
══════════════════════════════════════ */
#screen-auth {
  align-items: center;
  justify-content: center;
  padding: 64px 32px 48px;
  text-align: center;
}
#auth-step-email,
#auth-step-otp {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* ══════════════════════════════════════
   LANGUAGE PICKER
══════════════════════════════════════ */
#screen-language {
  align-items: center;
  justify-content: center;
  padding: 48px 28px;
  text-align: center;
}

#screen-language .welcome-illustration { margin-bottom: 28px; }

#screen-language .welcome-title {
  color: var(--text-white);
  font-size: 32px;
  margin-bottom: 6px;
}
#screen-language .welcome-subtitle {
  color: rgba(245,239,230,0.62);
  font-size: 16px;
  margin-bottom: 36px;
}
#screen-language .lang-prompt {
  color: rgba(245,239,230,0.82);
  font-size: 18px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.lang-row {
  display: flex;
  gap: 16px;
  width: 100%;
  max-width: 320px;
}
.lang-btn {
  flex: 1;
  padding: 24px 12px;
  border-radius: var(--r-xl);
  border: 1px solid rgba(245,239,230,0.16);
  background: rgba(255,245,238,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  cursor: pointer;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.32,0.72,0,1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  -webkit-appearance: none;
}
.lang-btn:active {
  background: rgba(255,245,238,0.16);
  transform: scale(0.96);
  border-color: rgba(244,199,123,0.5);
}
.lang-flag { font-size: 40px; }
.lang-name {
  font-family: 'Tiro Bangla', 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-white);
}
.lang-sub { font-size: 13px; color: rgba(245,239,230,0.52); }

/* ══════════════════════════════════════
   WELCOME SCREEN
══════════════════════════════════════ */
#screen-welcome {
  align-items: center;
  justify-content: center;
  padding: 64px 32px 48px;
  text-align: center;
}

.welcome-illustration {
  width: 132px;
  height: 132px;
  display: block;
  margin: 0 auto 40px;
  flex-shrink: 0;
  align-self: center;
  filter: drop-shadow(0 8px 28px rgba(244,199,123,0.22));
}
.welcome-illustration svg { width: 100%; height: 100%; display: block; }

.welcome-title {
  font-family: 'Tiro Bangla', 'Cormorant Garamond', Georgia, serif;
  font-size: 40px;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
  max-width: 320px;
}
.welcome-subtitle {
  font-size: 17px;
  font-weight: 400;
  color: rgba(245,239,230,0.60);
  line-height: 1.65;
  margin-bottom: 56px;
  max-width: 320px;
  letter-spacing: 0.1px;
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn-primary {
  width: 100%;
  padding: 18px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #2a160e;
  background: var(--grad-hero);
  border: none;
  border-radius: var(--r-full);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(232,148,92,0.32), inset 0 1px 0 rgba(255,255,255,0.22);
  transition: transform 0.3s cubic-bezier(0.32,0.72,0,1), box-shadow 0.3s cubic-bezier(0.32,0.72,0,1);
  -webkit-appearance: none;
}
.btn-primary:active {
  transform: scale(0.98);
  box-shadow: 0 4px 14px rgba(232,148,92,0.24);
}
.btn-primary:disabled {
  background: linear-gradient(135deg, #C4A898, #D4B8A0);
  box-shadow: none;
  color: rgba(42,22,14,0.5);
  opacity: 0.7;
}

.btn-secondary {
  width: 100%;
  padding: 18px;
  font-size: 17px;
  font-weight: 500;
  color: rgba(245,239,230,0.88);
  background: rgba(255,245,238,0.1);
  border: 1px solid rgba(245,239,230,0.18);
  border-radius: var(--r-full);
  cursor: pointer;
  transition: background 0.2s;
  -webkit-appearance: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-secondary:active { background: rgba(255,245,238,0.18); }

/* ══════════════════════════════════════
   SETUP SCREEN
══════════════════════════════════════ */
#screen-setup { padding: 52px 24px 40px; }

.setup-header { margin-bottom: 28px; }
.setup-back {
  font-size: 14px;
  color: rgba(245,239,230,0.78);
  background: rgba(255,245,238,0.08);
  border: 1px solid rgba(245,239,230,0.16);
  padding: 8px 16px;
  border-radius: var(--r-full);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
  font-weight: 500;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.setup-title {
  font-family: 'Tiro Bangla', 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 6px;
}
.setup-sub {
  font-size: 15px;
  color: rgba(245,239,230,0.52);
  line-height: 1.55;
}

.form-group { margin-bottom: 26px; }

.form-label {
  font-size: 15px;
  font-weight: 600;
  color: rgba(245,239,230,0.82);
  display: block;
  margin-bottom: 10px;
}
.form-input {
  width: 100%;
  font-size: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(245,239,230,0.16);
  border-radius: var(--r-md);
  background: rgba(255,245,238,0.08);
  color: var(--text-white);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Noto Sans Bengali', sans-serif;
}
.form-input::placeholder { color: rgba(245,239,230,0.30); }
.form-input:focus {
  border-color: rgba(244,199,123,0.60);
  box-shadow: 0 0 0 4px rgba(232,148,92,0.14);
}

/* Gender buttons */
.gender-row { display: flex; gap: 12px; }
.gender-btn {
  flex: 1;
  padding: 18px 10px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(245,239,230,0.14);
  background: rgba(255,245,238,0.07);
  cursor: pointer;
  text-align: center;
  transition: all 0.25s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.gender-btn.selected {
  border-color: rgba(244,199,123,0.60);
  background: rgba(232,148,92,0.16);
  box-shadow: 0 0 0 3px rgba(232,148,92,0.12);
}
.gender-btn-icon  { font-size: 32px; display: block; margin-bottom: 6px; }
.gender-btn-label { font-size: 15px; font-weight: 600; color: rgba(245,239,230,0.88); }

/* Companion name hint */
.companion-name-hint {
  font-size: 13px;
  color: rgba(245,239,230,0.40);
  margin-top: 6px;
  line-height: 1.5;
}

/* Photo upload */
.photo-upload-area {
  border: 1px dashed rgba(244,199,123,0.32);
  border-radius: var(--r-xl);
  background: rgba(255,245,238,0.06);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.photo-upload-area:active {
  background: rgba(232,148,92,0.10);
  border-color: rgba(244,199,123,0.55);
}
.photo-upload-icon { font-size: 38px; margin-bottom: 8px; }
.photo-upload-text { font-size: 16px; color: rgba(245,239,230,0.72); font-weight: 600; }
.photo-upload-hint { font-size: 13px; color: rgba(245,239,230,0.38); margin-top: 4px; }
#photo-input { display: none; }

.photo-previews { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.photo-thumb {
  width: 76px; height: 76px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(244,199,123,0.60);
  box-shadow: 0 4px 12px rgba(232,148,92,0.18);
}

/* ══════════════════════════════════════
   HOME SCREEN
══════════════════════════════════════ */
#screen-home { padding: 0; }

.home-top {
  background: transparent;
  padding: 56px 24px 28px;
  position: relative;
  z-index: 1;
}

.greeting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.greeting-name {
  font-family: 'Tiro Bangla', 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.2;
}
.greeting-sub {
  font-size: 14px;
  color: rgba(245,239,230,0.50);
  margin-top: 4px;
}

.avatar-bubble {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(255,245,238,0.10);
  border: 1px solid rgba(245,239,230,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  flex-shrink: 0;
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.avatar-bubble img { width: 100%; height: 100%; object-fit: cover; }

.big-talk-btn {
  width: 100%;
  padding: 20px 18px;
  background: rgba(255,245,238,0.08);
  border: 1px solid rgba(245,239,230,0.14);
  border-radius: var(--r-xl);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.28);
  transition: transform 0.3s cubic-bezier(0.32,0.72,0,1), background 0.2s;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.big-talk-btn:active {
  transform: scale(0.97);
  background: rgba(255,245,238,0.14);
}
.big-talk-icon {
  width: 56px; height: 56px;
  background: var(--grad-hero);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
  box-shadow: var(--shadow-amber);
}
.big-talk-label {
  font-family: 'Tiro Bangla', 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-white);
  display: block;
}
.big-talk-sub {
  font-size: 13px;
  color: rgba(245,239,230,0.50);
  display: block;
  margin-top: 3px;
}

.home-content {
  padding: 22px 24px 48px;
  flex: 1;
  overflow-y: auto;
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(245,239,230,0.40);
  margin-bottom: 14px;
}

/* Family strip */
.family-strip {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 26px;
  scrollbar-width: none;
}
.family-strip::-webkit-scrollbar { display: none; }
.family-member { flex-shrink: 0; text-align: center; }
.family-member img {
  width: 68px; height: 68px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(244,199,123,0.40);
  display: block;
  margin: 0 auto 6px;
}
.family-member-name { font-size: 12px; color: rgba(245,239,230,0.48); font-weight: 500; }
.family-add {
  width: 68px; height: 68px;
  border-radius: 50%;
  border: 1px dashed rgba(245,239,230,0.20);
  background: rgba(255,245,238,0.05);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  color: rgba(245,239,230,0.42);
  cursor: pointer;
  flex-shrink: 0;
}

/* Dashboard link */
.dashboard-link-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: rgba(255,245,238,0.07) !important;
  border: 1px solid rgba(245,239,230,0.12) !important;
  border-radius: var(--r-lg);
  font-size: 15px;
  font-weight: 500;
  color: rgba(245,239,230,0.80) !important;
  cursor: pointer;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.2s;
  text-align: left;
  -webkit-appearance: none;
}
.dashboard-link-btn:active { background: rgba(255,245,238,0.13) !important; }

/* Prompt cards — hidden for pilot */
#prompts-title, #prompt-cards { display: none; }

.prompt-cards { display: flex; flex-direction: column; gap: 12px; }
.prompt-card {
  border-radius: var(--r-lg);
  padding: 18px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.2s;
  background: rgba(255,245,238,0.07);
  border: 1px solid rgba(245,239,230,0.10);
}
.prompt-card:active { transform: scale(0.97); }
.prompt-emoji { font-size: 28px; flex-shrink: 0; }
.prompt-text  { font-size: 15px; color: rgba(245,239,230,0.80); line-height: 1.45; font-weight: 500; }

/* ══════════════════════════════════════
   CALL SCREEN
══════════════════════════════════════ */
#screen-conversation {
  align-items: center;
  justify-content: space-between;
  padding: 0 28px 52px;
  overflow: hidden;
}

.call-timer {
  position: absolute;
  top: 56px;
  right: 24px;
  color: rgba(245,239,230,0.48);
  font-size: 15px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.5px;
}

.call-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
  z-index: 1;
  padding-top: 60px;
}

/* Avatar with animated breathing ring */
.call-avatar-wrap {
  position: relative;
  width: 190px;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-avatar-ring {
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 2px solid rgba(244,199,123,0.20);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.call-avatar-ring.pulsing {
  border-color: rgba(244,199,123,0.62);
  animation: avatar-breathe 1.8s ease-in-out infinite;
}
@keyframes avatar-breathe {
  0%,100% { transform: scale(1);    box-shadow: 0 0 0 0    rgba(232,148,92,0.30); }
  50%     { transform: scale(1.10); box-shadow: 0 0 0 22px rgba(232,148,92,0); }
}

.call-avatar-ring::after {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(244,199,123,0.10);
}

.call-avatar {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(255,245,238,0.08);
  border: 3px solid rgba(245,239,230,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 84px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.42);
}
.call-avatar img { width: 100%; height: 100%; object-fit: cover; }

.call-name {
  font-family: 'Tiro Bangla', 'Cormorant Garamond', Georgia, serif;
  font-size: 34px;
  font-weight: 600;
  color: var(--text-white);
  text-align: center;
  letter-spacing: -0.3px;
}

.call-status {
  font-size: 16px;
  color: rgba(245,239,230,0.50);
  text-align: center;
  font-weight: 400;
  min-height: 24px;
}

/* End call button */
.call-footer-ui {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.call-end-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #EF4444;
  border: none;
  font-size: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(239,68,68,0.50);
  transition: transform 0.2s, box-shadow 0.2s;
}
.call-end-btn:active {
  transform: scale(0.91);
  box-shadow: 0 4px 14px rgba(239,68,68,0.36);
}

.call-end-label {
  font-size: 13px;
  color: rgba(245,239,230,0.42);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ── Toast ── */
.toast {
  position: fixed;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  background: #2A1A0E;
  color: var(--text-white);
  padding: 12px 24px;
  border-radius: var(--r-full);
  font-size: 14px;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.3s;
  text-align: center;
  max-width: 82vw;
  pointer-events: none;
  box-shadow: var(--shadow-md);
}
.toast.show { opacity: 1; }

/* ── Change language link ── */
.change-lang-btn {
  font-size: 13px;
  color: rgba(245,239,230,0.48);
  margin-top: 20px;
  cursor: pointer;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: var(--r-full);
  border: 1px solid rgba(245,239,230,0.14);
  background: transparent;
  transition: background 0.2s;
  letter-spacing: 0.3px;
  -webkit-appearance: none;
}
.change-lang-btn:active { background: rgba(245,239,230,0.06); }

/* ── Mic loading state ── */
.mic-btn.loading {
  background: var(--grad-hero);
  box-shadow: 0 6px 20px rgba(232,148,92,0.40);
  animation: pulse-load 1s infinite;
}
@keyframes pulse-load {
  0%,100% { box-shadow: 0 0 0 0    rgba(232,148,92,0.40); }
  50%     { box-shadow: 0 0 0 16px rgba(232,148,92,0); }
}

/* ── Auth Error Message ── */
.auth-error {
  min-height: 22px;
  color: #F08080;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 6px 16px 0;
  max-width: 340px;
  margin: 0 auto;
}

/* ── Settings Modal (bottom sheet) ── */
.settings-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.60);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.settings-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.settings-sheet {
  width: 100%;
  max-width: 480px;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(253,184,149,0.14), transparent 60%),
    linear-gradient(160deg, #2a1218 0%, #140808 100%);
  border: 1px solid rgba(245,239,230,0.11);
  border-bottom: none;
  border-radius: 28px 28px 0 0;
  padding: 20px 20px 40px;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.32,0.72,0,1);
}
.settings-overlay.open .settings-sheet {
  transform: translateY(0);
}
.settings-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding: 0 4px;
  font-family: 'Tiro Bangla', 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: rgba(245,239,230,0.88);
}
.settings-close-x {
  background: none;
  border: none;
  color: rgba(245,239,230,0.42);
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}
.settings-item {
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  background: rgba(255,245,238,0.07);
  border: 1px solid rgba(245,239,230,0.10);
  border-radius: 16px;
  color: rgba(245,239,230,0.82);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: 10px;
  transition: background 0.2s;
  -webkit-appearance: none;
}
.settings-item:active  { background: rgba(255,245,238,0.13); }
.settings-item-danger  { color: #F08080; border-color: rgba(240,128,128,0.16); }
.settings-cancel {
  width: 100%;
  margin-top: 4px;
  padding: 15px;
  background: none;
  border: 1px solid rgba(245,239,230,0.14);
  border-radius: 16px;
  color: rgba(245,239,230,0.42);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  -webkit-appearance: none;
}
