:root {
  --bg-dark: #1a0b15;
  --card-dark: #2d1625;
  --primary: #f20da6;
  --secondary: #06b6d4;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-underline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
  border-radius: 8px;
}

img {
  max-width: 100%;
  height: auto;
}

/* Shared visual helpers migrated from inline page styles */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1a0b15;
}

::-webkit-scrollbar-thumb {
  background: #49223c;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #f20da6;
}

.glass-panel {
  background: rgba(45, 22, 37, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.avatar-card:hover .avatar-info {
  transform: translateY(0);
}

.check-list-item {
  position: relative;
  padding-left: 2rem;
}

.check-list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #f20da6;
  font-weight: 700;
}

.accordion-content {
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}

.accordion-check:checked ~ .accordion-content {
  max-height: 200px;
  opacity: 1;
  padding-top: 1rem;
}

.accordion-check:checked ~ label .icon-plus {
  transform: rotate(45deg);
}

.chibi-float {
  animation: float 6s ease-in-out infinite;
}

.anim-delay-0 {
  animation-delay: 0s;
}

.anim-delay-1 {
  animation-delay: 1s;
}

.anim-delay-2 {
  animation-delay: 2s;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

.nav-active {
  color: var(--primary) !important;
}

.cta-disabled {
  opacity: 0.9;
  cursor: default;
}

/* Lead modal: stub-only UX */
.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.68);
  padding: 20px;
  backdrop-filter: blur(4px);
}

.lead-modal.show {
  display: flex;
}

.lead-modal__card {
  width: 100%;
  max-width: 480px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 20px;
  background: linear-gradient(180deg, #2d1625 0%, #1a0b15 100%);
  color: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.lead-modal__title {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 10px;
  font-weight: 800;
}

.lead-modal__desc {
  color: #c9c9d1;
  margin-bottom: 14px;
  font-size: 14px;
}

.lead-modal__grid {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.lead-modal__input {
  width: 100%;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding: 0 14px;
}

.lead-modal__actions {
  display: flex;
  gap: 10px;
}

.lead-modal__btn {
  height: 44px;
  border-radius: 999px;
  padding: 0 18px;
  border: 0;
  font-weight: 700;
  cursor: pointer;
}

.lead-modal__btn--primary {
  flex: 1;
  background: var(--primary);
  color: #fff;
}

.lead-modal__btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.lead-toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 110;
  max-width: 320px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(45, 22, 37, 0.96);
  color: #fff;
  transform: translateY(12px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
  font-size: 14px;
}

.lead-toast.show {
  transform: translateY(0);
  opacity: 1;
}
