* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  background: #0F0F23;
  color: #F8FAFC;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.container {
  max-width: 520px;
  width: 100%;
  text-align: center;
}

/* Logo */
.logo {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}
.logo img {
  width: 120px;
  height: auto;
}

/* Headline */
h1 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
h1 span {
  color: #00D0FF;
}

/* Subtitle */
.subtitle {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(248, 250, 252, 0.55);
  margin-bottom: 40px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

/* Form */
.form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}
.form-row input {
  flex: 1;
  height: 52px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  padding: 0 20px;
  font-size: 15px;
  color: #F8FAFC;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.form-row input::placeholder {
  color: rgba(248,250,252,0.3);
}
.form-row input:focus {
  border-color: #00D0FF;
}
.form-row button {
  height: 52px;
  padding: 0 28px;
  border-radius: 12px;
  border: none;
  background: #00D0FF;
  color: #0F0F23;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.form-row button:hover {
  opacity: 0.9;
}
.form-row button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Error message */
.form-error {
  font-size: 13px;
  color: #f87171;
  margin-bottom: 14px;
  min-height: 20px;
}

/* Privacy note */
.privacy {
  font-size: 12px;
  color: rgba(248,250,252,0.3);
  margin-bottom: 56px;
}

/* Stats */
.stats {
  display: flex;
  justify-content: center;
  gap: 48px;
}
.stat-item {
  text-align: center;
}
.stat-value {
  font-size: 28px;
  font-weight: 700;
  color: #00D0FF;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 13px;
  color: rgba(248,250,252,0.4);
}

/* Glow effect */
.glow {
  position: fixed;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,208,255,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* ── Confirmation page ── */

.check-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 208, 255, 0.12);
  border: 2px solid #00D0FF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.check-circle svg { width: 28px; height: 28px; }

.confirm-text {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(248, 250, 252, 0.55);
  margin-bottom: 12px;
}
.email-highlight {
  font-size: 15px;
  font-weight: 600;
  color: #00D0FF;
  margin-bottom: 40px;
}

/* Divider */
.divider {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 0 auto 40px;
}

/* Share section */
.share-section {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 24px;
  margin-bottom: 20px;
}
.share-badge {
  display: inline-block;
  background: rgba(0, 208, 255, 0.12);
  color: #00D0FF;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.share-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.share-desc {
  font-size: 14px;
  color: rgba(248, 250, 252, 0.5);
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Referral link */
.referral-row {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.referral-link {
  flex: 1;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  padding: 0 14px;
  font-size: 13px;
  color: rgba(248, 250, 252, 0.6);
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.copy-btn {
  height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  border: none;
  background: #00D0FF;
  color: #0F0F23;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.copy-btn:hover { opacity: 0.9; }

/* Social share buttons */
.social-row {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.social-btn {
  height: 40px;
  padding: 0 20px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  color: #F8FAFC;
  font-size: 13px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: border-color 0.2s;
}
.social-btn:hover {
  border-color: rgba(255,255,255,0.25);
}

/* Responsive */
@media (max-width: 480px) {
  h1 { font-size: 28px; }
  .form-row { flex-direction: column; }
  .stats { gap: 28px; }
  .stat-value { font-size: 22px; }
  .social-row { flex-wrap: wrap; }
}
