﻿.landing-card {
  width: min(520px, 94vw);
  text-align: center;
  padding: 40px 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.landing-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 8px;
  border-radius: 20px;
  background: #e0e7ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-title {
  font-size: 26px;
  font-weight: 700;
  margin: 0;
}

.landing-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 6px;
}

.terms {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  justify-content: center;
  text-align: left;
  font-size: 12px;
  color: var(--muted);
  width: 100%;
  max-width: 460px;
  line-height: 1.7;
  margin: 2px auto 0;
}

.terms-text {
  line-height: 1.7;
}

.terms input {
  margin-top: 2px;
}

.terms a {
  color: var(--primary);
  text-decoration: none;
}

.terms a:hover {
  text-decoration: underline;
}

.landing-actions {
  width: 100%;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.landing-actions .button:disabled {
  pointer-events: none;
}

.terms-hint {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}

.action-wrap {
  width: 100%;
  position: relative;
}

.action-wrap[data-disabled="true"]::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%);
  background: rgba(15, 23, 42, 0.92);
  color: #ffffff;
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 2;
}

.action-wrap[data-disabled="true"]:hover::after {
  opacity: 1;
}

.link-muted {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}
