* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #ffffff;
  background-color: #0a0a0a; /* near black */
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
}

.hero {
  max-width: 760px;
  width: 100%;
  text-align: center;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1.22;
  margin: 0 0 24px;
}

.subheading {
  font-size: clamp(1rem, 1.2vw, 1.22rem);
  line-height: 1.6;
  color: #d1d5db;
  margin-bottom: 32px;
}

.form-wrapper {
  margin-top: 16px;
  margin-bottom: 40px; 
}

.credibility {
  font-size: 0.9rem;
  text-align: center;
  display: block;
  color: #9ca3af;
  width: 100%;
}

.accent {
  color: #3B82F6;
}

.microtrust {
  margin-top: -20px;
  margin-bottom: 40px;
  font-size: 0.8rem;
  color: #6b7280;
  text-align: center;
}

.subheading-secondary {
  margin-top: -12px;
  font-size: 0.95rem;
  color: #9ca3af;
}

@media (max-width: 640px) {
  .page {
    align-items: flex-start;
    padding-top: 40px;
  }
}