body { display: flex; flex-direction: column; min-height: 100vh; }

.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  text-align: center;
}

/* ── Logo badge ── */
.logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 48px;
}
.logo-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #80b0ff, #a080ff);
  box-shadow: 0 0 8px rgba(120,150,255,0.6);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 8px rgba(120,150,255,0.6); }
  50% { box-shadow: 0 0 16px rgba(120,150,255,1); }
}

/* ── Hero ── */
.hero-title {
  font-size: clamp(48px, 12vw, 88px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: clamp(18px, 5vw, 28px);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 28px;
}
.hero-desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 340px;
  margin: 0 auto 64px;
}

/* ── Feature pills ── */
.features {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 16px;
}
.feature-pill {
  padding: 7px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ── CTA Button ── */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 48px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  border: none;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.04) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
  overflow: hidden;
  margin-bottom: 64px;
}
.btn-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.1), transparent);
  pointer-events: none;
}
.btn-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(160,160,255,0.15), transparent 70%);
  pointer-events: none;
}
.btn-cta:hover {
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.07) 100%);
  border-color: rgba(255,255,255,0.28);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 48px rgba(0,0,0,0.5), 0 0 30px rgba(180,180,255,0.1);
}
.btn-cta:active { transform: scale(0.97); }
.btn-cta svg { flex-shrink: 0; }

/* ── Decorative face scan ── */
.face-scan-deco {
  position: absolute;
  width: 260px; height: 260px;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.face-scan-deco::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 50%;
}
.face-scan-deco::after {
  content: '';
  position: absolute;
  inset: 40px;
  border: 1px dashed rgba(255,255,255,0.04);
  border-radius: 50%;
  animation: scan-rotate 12s linear infinite;
}
@keyframes scan-rotate { to { transform: rotate(360deg); } }
