.cvCorneliusLauncher {
  --cv-cornelius-navy: #071f3a;
  --cv-cornelius-teal: #16b8aa;
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 2147482998;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 62px;
  padding: 6px 18px 6px 6px;
  border: 1px solid rgba(7, 31, 58, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.97);
  color: var(--cv-cornelius-navy);
  box-shadow: 0 14px 38px rgba(7, 31, 58, 0.2), 0 3px 10px rgba(7, 31, 58, 0.1);
  font: 700 14px/1.1 Arial, Helvetica, sans-serif;
  letter-spacing: 0.015em;
  cursor: pointer;
  isolation: isolate;
  -webkit-tap-highlight-color: transparent;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.cvCorneliusLauncher::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(125deg, rgba(11, 64, 113, 0.32), rgba(22, 184, 170, 0.38));
  opacity: 0;
  transition: opacity 180ms ease;
}

.cvCorneliusLauncher:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(7, 31, 58, 0.25), 0 4px 12px rgba(7, 31, 58, 0.12);
}

.cvCorneliusLauncher:hover::before,
.cvCorneliusLauncher:focus-visible::before {
  opacity: 1;
}

.cvCorneliusLauncher:focus-visible {
  outline: 3px solid rgba(22, 184, 170, 0.65);
  outline-offset: 4px;
}

.cvCorneliusLauncher img {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.48);
}

.cvCorneliusLauncher span {
  white-space: nowrap;
}

body.cv-burn-sticky-visible .cvCorneliusLauncher {
  bottom: calc(6.5rem + env(safe-area-inset-bottom));
}

@media (max-width: 520px) {
  .cvCorneliusLauncher {
    right: max(12px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
    min-width: 58px;
    min-height: 58px;
    padding: 4px;
  }

  .cvCorneliusLauncher img {
    width: 50px;
    height: 50px;
  }

  .cvCorneliusLauncher span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  body.cv-burn-sticky-visible .cvCorneliusLauncher {
    bottom: calc(6.25rem + env(safe-area-inset-bottom));
  }
}

@media (prefers-reduced-motion: reduce) {
  .cvCorneliusLauncher,
  .cvCorneliusLauncher::before {
    transition: none;
  }
}
