:root {
  --bg: #ffffff;
  --text: #000000;
  --muted: #8e8e93;
  --border: #c6c6c8;
  --fill: #f2f2f7;
  --blue: #007aff;
  --green: #34c759;
  --danger: #ff3b30;
  --tabbar: rgba(255, 255, 255, 0.92);
  --safe-b: env(safe-area-inset-bottom, 0px);
  --safe-t: env(safe-area-inset-top, 0px);
  --tabbar-h: 58px;
  --font: -apple-system, "SF Pro Display", "SF Pro Text", "Inter", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  overflow: hidden;
}

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

.app {
  height: 100%;
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--bg);
}

/* Fake mini-app header (Close · title · Minimize) — dialer only */
.app-chrome {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 48px;
  padding: max(6px, env(safe-area-inset-top, 0px)) 10px 6px;
  background: #ffffff;
  border-bottom: 0.5px solid rgba(60, 60, 67, 0.18);
  z-index: 20;
  position: relative;
}

.app-chrome[hidden] {
  display: none !important;
}

.chrome-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #111;
  flex-shrink: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.chrome-btn:active {
  background: rgba(0, 0, 0, 0.06);
}

.chrome-title {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 600;
  color: #111;
  letter-spacing: -0.2px;
  min-width: 0;
}

.chrome-title span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chrome-phone {
  flex-shrink: 0;
}

/* Logged-in Sudo user */
.user-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  padding: 10px 16px;
  border-bottom: 0.5px solid rgba(60, 60, 67, 0.18);
  background: var(--bg);
  z-index: 5;
}

.user-bar[hidden] {
  display: none !important;
}

.user-bar-meta {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.user-bar-meta strong {
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-bar-meta span {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.view {
  display: none;
  flex: 1;
  flex-direction: column;
  min-height: 0;
  padding-top: 8px;
  padding-bottom: calc(var(--tabbar-h) + var(--safe-b) + 8px);
  overflow: hidden;
}

.view.is-active {
  display: flex;
}

.screen-header {
  padding: 8px 20px 12px;
  flex-shrink: 0;
}

.screen-header h1 {
  margin: 0;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.contacts-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.icon-btn {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--blue);
}

.my-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 20px 18px;
  border-bottom: 0.5px solid var(--border);
  flex-shrink: 0;
}

.avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(145deg, #5ac8fa, #007aff);
  color: #fff;
  font-weight: 600;
  font-size: 22px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  overflow: hidden;
}

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

.avatar-sm {
  width: 40px;
  height: 40px;
  font-size: 15px;
  background: linear-gradient(145deg, #a2a2a7, #8e8e93);
}

.avatar-me {
  background: linear-gradient(145deg, #64d2ff, #0a84ff);
}

.my-card-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.my-card-meta strong {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.2px;
}

.my-card-meta span {
  font-size: 14px;
  color: var(--muted);
}

.contacts-host {
  flex: 1;
  min-height: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.contact-list {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 0 24px;
}

.section-label {
  position: sticky;
  top: 0;
  z-index: 2;
  background: var(--fill);
  color: #3c3c43;
  font-size: 15px;
  font-weight: 600;
  padding: 4px 20px;
  border-bottom: 0.5px solid var(--border);
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  border-bottom: 0.5px solid rgba(60, 60, 67, 0.12);
  text-align: left;
  width: 100%;
  background: #fff;
}

.contact-row:active {
  background: var(--fill);
}

.contact-row .meta {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-row .name {
  font-size: 17px;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-row .sub {
  font-size: 13px;
  color: var(--muted);
}

.alpha-index {
  position: absolute;
  right: 2px;
  top: 4px;
  bottom: 4px;
  width: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  z-index: 3;
  touch-action: none;
}

.alpha-index button {
  font-size: 10px;
  font-weight: 600;
  color: var(--blue);
  line-height: 1;
  padding: 0;
}

.empty-state {
  padding: 40px 28px;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

/* Full overlay so Allow / Import are always tappable above tab bar */
.empty-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 28px 80px;
  background: rgba(255, 255, 255, 0.96);
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
  pointer-events: auto;
}

.empty-overlay[hidden] {
  display: none !important;
}

.empty-overlay p {
  margin: 0;
  max-width: 280px;
}

.contacts-debug {
  margin-top: 8px !important;
  font-size: 11px;
  color: #aeaeb2;
  word-break: break-all;
  max-width: 100%;
}

.btn-allow {
  min-width: 240px;
  height: 50px;
  padding: 0 20px;
  border-radius: 12px;
  background: var(--blue);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.btn-allow:active {
  opacity: 0.85;
  transform: scale(0.98);
}

.btn-secondary {
  min-width: 240px;
  height: 48px;
  padding: 0 20px;
  border-radius: 12px;
  background: var(--fill);
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  touch-action: manipulation;
}

.btn-secondary:active {
  background: #d1d1d6;
}

.btn-link {
  color: var(--blue);
  font-size: 16px;
  font-weight: 500;
  padding: 10px;
  min-height: 44px;
}

/* Add contact sheet */
.add-sheet {
  position: fixed;
  inset: 0;
  z-index: 220;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  padding-top: max(10px, var(--safe-t));
  padding-bottom: var(--safe-b);
  max-width: 480px;
  margin: 0 auto;
  left: 0;
  right: 0;
}

.add-sheet[hidden] {
  display: none !important;
}

.add-sheet-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px 16px;
  border-bottom: 0.5px solid var(--border);
}

.add-sheet-bar strong {
  font-size: 17px;
}

.add-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 20px 0;
  font-size: 13px;
  color: var(--muted);
}

.add-field input {
  height: 48px;
  border: 0;
  border-radius: 12px;
  background: var(--fill);
  padding: 0 14px;
  font-size: 17px;
  color: var(--text);
  outline: none;
  -webkit-user-select: text;
  user-select: text;
}

/* Keypad */
#view-keypad {
  justify-content: flex-end;
  padding-left: 28px;
  padding-right: 28px;
  padding-bottom: calc(var(--tabbar-h) + var(--safe-b) + 18px);
}

.keypad-top {
  min-height: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 20px;
  gap: 0;
  width: 100%;
}

.dial-display {
  margin: 0;
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 1px;
  text-align: center;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-height: 48px;
  line-height: 1.15;
}

.dial-rate {
  display: block;
  margin: 6px 0 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #6b7280;
  text-align: center;
  min-height: 18px;
  line-height: 1.2;
  width: 100%;
}

.dial-rate.is-ok {
  color: #1a9f4a;
}

.dial-rate.is-empty {
  color: #e11d48;
}

.dial-rate[hidden] {
  display: none;
}

/* Wallet */
#view-wallet {
  padding-left: 20px;
  padding-right: 20px;
}

.wallet-panel {
  padding-top: 8px;
}

.wallet-caption {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.wallet-balance {
  margin: 6px 0 0;
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
}

.wallet-hint {
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.35;
  max-width: 320px;
}

.wallet-add-btn {
  display: block;
  width: 100%;
  max-width: 360px;
  margin-top: 22px;
  padding: 14px 18px;
  border: none;
  border-radius: 14px;
  background: var(--blue);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

.wallet-add-btn:active {
  opacity: 0.9;
  transform: scale(0.99);
}

.wallet-fund-panel {
  margin-top: 18px;
  max-width: 360px;
}

.wallet-fund-panel[hidden] {
  display: none;
}

.wallet-add-label,
.wallet-txs-label {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.wallet-fund-panel .wallet-add-label {
  margin-top: 0;
}

.wallet-amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wallet-amt {
  min-width: 72px;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--fill);
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  border: 2px solid transparent;
}

.wallet-amt.is-selected {
  border-color: var(--blue);
  background: rgba(0, 122, 255, 0.1);
  color: var(--blue);
}

.wallet-amt:active {
  transform: scale(0.97);
  opacity: 0.9;
}

.wallet-pay-btn {
  display: block;
  width: 100%;
  margin-top: 16px;
  padding: 14px 18px;
  border: none;
  border-radius: 14px;
  background: #1a9f4a;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.wallet-pay-btn:disabled {
  opacity: 0.45;
  pointer-events: none;
}

.wallet-pay-btn[hidden] {
  display: none;
}

.wallet-pay-btn:not(:disabled):active {
  opacity: 0.9;
  transform: scale(0.99);
}

.wallet-txs {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wallet-tx {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 0.5px solid var(--border);
  font-size: 15px;
}

.wallet-tx .tx-note {
  color: var(--text);
  font-weight: 500;
}

.wallet-tx .tx-amt {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.wallet-tx .tx-amt.credit {
  color: #1a9f4a;
}

.wallet-tx .tx-amt.debit {
  color: #e11d48;
}

.wallet-empty {
  padding-top: 8px;
}

.tabbar-inner.tabbar-three {
  grid-template-columns: 1fr 1fr 1fr;
  padding: 0 12px;
}

.tabbar-inner.tabbar-two {
  grid-template-columns: 1fr 1fr;
  padding: 0 24px;
}

.keypad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 22px;
  max-width: 320px;
  margin: 0 auto;
  width: 100%;
  touch-action: none;
  -webkit-user-select: none;
  user-select: none;
}

.key {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  margin: 0 auto;
  background: var(--fill);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  transition: none;
  touch-action: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
  position: relative;
  contain: layout style;
}

.key.key-spacer {
  visibility: hidden;
  pointer-events: none;
  background: transparent;
}

.key.is-pressed,
.key:active {
  background: #c7c7cc;
  /* no scale — scales shift hit boxes and drop the next tap in WebView */
  transform: none;
}

.key.is-long {
  background: #b0b0b5;
}

.key span {
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  pointer-events: none;
}

.key small {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--text);
  margin-top: 2px;
  pointer-events: none;
}

/* iOS-style delete — always reserve grid cell (no layout jump) */
.key.key-backspace {
  background: transparent;
  transform: none;
  visibility: hidden;
  pointer-events: none;
  display: flex !important;
}

.key.key-backspace.is-pressed,
.key.key-backspace:active {
  background: transparent;
  transform: none;
}

.key.key-backspace .backspace-icon {
  display: block;
}

.key.key-backspace .backspace-body {
  fill: #c7c7cc;
  transition: fill 0.05s;
}

.key.key-backspace .backspace-x {
  fill: none;
  stroke: #1c1c1e;
  stroke-width: 2.4;
  stroke-linecap: round;
}

.key.key-backspace.is-pressed .backspace-body,
.key.key-backspace:active .backspace-body {
  fill: #a1a1a6;
}

.keypad-actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px 22px;
  max-width: 320px;
  margin: 22px auto 0;
  width: 100%;
  min-height: 78px;
  align-items: center;
  justify-items: center;
}

.keypad-slot {
  width: 72px;
  height: 72px;
}

.call-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 14px rgba(52, 199, 89, 0.35);
  touch-action: manipulation;
}

.call-btn:active {
  transform: scale(0.96);
}

/* Tab bar */
.tabbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  padding-bottom: var(--safe-b);
  background: var(--tabbar);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-top: 0.5px solid rgba(0, 0, 0, 0.12);
}

.tabbar-inner {
  max-width: 480px;
  margin: 0 auto;
  height: var(--tabbar-h);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: center;
  padding: 0 8px 0 4px;
}

.tabbar-inner.tabbar-two {
  grid-template-columns: 1fr 1fr;
  padding: 0 24px;
}

.tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
  height: 100%;
  padding-top: 4px;
}

.tab.is-active {
  color: var(--blue);
}

.tab-ico {
  width: 26px;
  height: 26px;
}

.tab-search {
  width: 56px;
  padding: 0;
}

.search-fab {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--blue);
  color: var(--blue);
  display: grid;
  place-items: center;
  background: #fff;
}

/* Search sheet */
.search-sheet {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  display: none;
  flex-direction: column;
  padding-top: max(10px, var(--safe-t));
  padding-bottom: var(--safe-b);
  max-width: 480px;
  margin: 0 auto;
  left: 0;
  right: 0;
  pointer-events: auto;
}

.search-sheet.is-open,
.search-sheet:not([hidden]) {
  display: flex;
}

.search-sheet[hidden] {
  display: none !important;
}

body.search-open {
  overflow: hidden;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 12px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  background: var(--bg);
}

.search-bar input {
  flex: 1;
  height: 36px;
  border-radius: 10px;
  border: 0;
  background: var(--fill);
  padding: 0 12px;
  font-size: 16px;
  outline: none;
  -webkit-user-select: text;
  user-select: text;
}

.btn-text {
  color: var(--blue);
  font-size: 17px;
  white-space: nowrap;
  padding: 10px 6px;
  min-width: 64px;
  min-height: 44px;
  position: relative;
  z-index: 5;
  -webkit-touch-callout: none;
  touch-action: manipulation;
}

#search-results {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: calc(var(--tabbar-h) + var(--safe-b) + 24px);
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.78);
  color: #fff;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 14px;
  z-index: 100;
  max-width: 90%;
  text-align: center;
}

.toast[hidden] {
  display: none !important;
}

/* ——— In-call UI ——— */
.call-sheet {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: linear-gradient(165deg, #141416 0%, #000 50%, #0a0a0a 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  max-width: 480px;
  margin: 0 auto;
  left: 0;
  right: 0;
}

.call-sheet[hidden] {
  display: none !important;
}

.call-sheet-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  width: 100%;
  padding: max(16px, env(safe-area-inset-top, 0px)) 20px max(20px, env(safe-area-inset-bottom, 0px));
  box-sizing: border-box;
  text-align: center;
}

.call-top {
  flex-shrink: 0;
  padding-top: 8px;
}

.call-brand {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: #fff;
  line-height: 1.15;
}

.call-wallet {
  margin: 10px 0 0;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.3px;
  font-variant-numeric: tabular-nums;
  word-break: break-all;
}

.call-mid {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 12px 0 24px;
}

.call-label {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.3px;
}

.call-number {
  margin: 0 0 10px;
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0.5px;
  word-break: break-all;
  max-width: 100%;
  color: #fff;
}

.call-line,
.call-from {
  display: none !important;
}

.call-hint {
  display: none;
}

.call-from {
  display: none;
}

.call-timer {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.8);
  min-height: 28px;
}

.call-timer[hidden] {
  display: none !important;
}

.call-pulse {
  width: 88px;
  height: 88px;
  margin: 28px auto 0;
  border-radius: 50%;
  background: rgba(52, 199, 89, 0.25);
  box-shadow: 0 0 0 0 rgba(52, 199, 89, 0.4);
  animation: call-pulse 1.5s ease-out infinite;
}

.call-sheet.is-connected .call-pulse {
  background: rgba(52, 199, 89, 0.55);
  animation: none;
}

.call-sheet.is-ended .call-pulse {
  background: rgba(142, 142, 147, 0.35);
  animation: none;
}

.call-sheet.is-muted .call-pulse {
  background: rgba(255, 149, 0, 0.45);
}

@keyframes call-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(52, 199, 89, 0.45);
    transform: scale(0.92);
  }
  70% {
    box-shadow: 0 0 0 28px rgba(52, 199, 89, 0);
    transform: scale(1);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(52, 199, 89, 0);
    transform: scale(0.92);
  }
}

/* Mute · End · Speaker — pinned to bottom */
.call-controls {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 36px;
  padding: 8px 8px 12px;
  margin-top: auto;
}

.ctrl-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 76px;
  background: transparent;
  color: #fff;
  border: 0;
  padding: 0;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  pointer-events: auto;
  z-index: 2;
}

.ctrl-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  display: grid;
  place-items: center;
  position: relative;
  pointer-events: none;
}

.ctrl-circle svg {
  width: 28px;
  height: 28px;
  display: block;
  grid-area: 1 / 1;
  pointer-events: none;
}

.ctrl-circle svg[hidden] {
  display: none !important;
}

.ctrl-circle-end {
  background: #ff3b30;
  box-shadow: 0 6px 20px rgba(255, 59, 48, 0.45);
}

.ctrl-circle-end svg {
  width: 30px;
  height: 30px;
}

.ctrl-btn.is-on .ctrl-circle {
  background: #fff;
  color: #1c1c1e;
}

.ctrl-btn:active .ctrl-circle {
  transform: scale(0.94);
}

.ctrl-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  letter-spacing: 0.2px;
  pointer-events: none;
}

#call-remote-audio {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.myphone-help {
  margin: 0;
  padding: 16px 20px 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted);
}

@media (min-width: 481px) {
  body {
    background: #f2f2f7;
  }
}
