/* ── ACCOUNT MODAL ──────────────────────────────────────────────── */

.account-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}

.account-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.account-modal {
  background: #fff;
  width: 100%;
  max-width: 380px;
  padding: 44px 32px 36px;
  position: relative;
  text-align: center;
}

.account-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 20px;
  color: #000;
  line-height: 1;
  padding: 4px 6px;
  opacity: 0.45;
  transition: opacity 0.16s;
  cursor: url('cursor/crosshair-cursor.svg') 16 16, crosshair;
}

.account-close:hover { opacity: 1; }

.account-logo {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
}

.account-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.account-heading {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.account-sub {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #888;
  margin-bottom: 28px;
  line-height: 1.5;
}

.account-email-row {
  display: flex;
  align-items: center;
  border: 1.5px solid #000;
  border-radius: 999px;
  padding: 0 6px 0 20px;
  height: 50px;
  gap: 8px;
  margin-bottom: 10px;
}

.account-email-row input[type="email"] {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #000;
  min-width: 0;
  cursor: text;
}

.account-email-row input[type="email"]::placeholder { color: #bbb; }

.account-submit-arrow {
  background: #000;
  color: #fff;
  border: none;
  border-radius: 999px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  cursor: url('cursor/crosshair-cursor.svg') 16 16, crosshair;
  transition: opacity 0.16s;
}

.account-submit-arrow:hover { opacity: 0.7; }

.account-error {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  color: #b87560;
  letter-spacing: 0.05em;
  min-height: 16px;
  text-align: left;
  padding-left: 4px;
  margin-bottom: 8px;
}

.account-terms {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 300;
  color: #aaa;
  line-height: 1.65;
  margin-top: 16px;
}

.account-terms a {
  color: #aaa;
  text-decoration: underline;
  cursor: url('cursor/crosshair-cursor.svg') 16 16, crosshair;
  transition: opacity 0.18s;
}

.account-terms a:hover { opacity: 0.6; }
