*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111827;
  background: #f8fafc;
  line-height: 1.5;
}

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

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

.logo {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #1e3a5f;
  text-transform: lowercase;
}

.header-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e5e7eb;
  color: #374151;
}

.hero {
  position: relative;
  flex: 1;
  padding: 1rem 1.5rem 3rem;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(191, 219, 254, 0.55), transparent 70%),
    linear-gradient(180deg, #eef4ff 0%, #f5f3ff 40%, #f8fafc 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  padding: 0.45rem 0.9rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #374151;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 6vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.lead {
  margin: 0 0 1.75rem;
  color: #6b7280;
  font-size: 1.02rem;
  line-height: 1.65;
}

.waitlist-form {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1.25rem;
  padding: 1.25rem;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
}

.intent-group {
  border: 0;
  margin: 0 0 1.25rem;
  padding: 0;
}

.intent-group legend {
  font-size: 0.84rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.65rem;
}

.intent-card {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.9rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.9rem;
  margin-bottom: 0.65rem;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.intent-card:has(input:checked) {
  border-color: #111827;
  box-shadow: 0 0 0 1px #111827;
}

.intent-card input {
  margin-top: 0.2rem;
  accent-color: #111827;
}

.intent-body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.intent-body strong {
  font-size: 0.95rem;
  color: #111827;
}

.intent-body span {
  font-size: 0.84rem;
  color: #6b7280;
  line-height: 1.45;
}

.field-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 560px) {
  .field-row {
    grid-template-columns: 1fr;
  }
}

label span {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.4rem;
}

label span em {
  font-style: normal;
  font-weight: 500;
  color: #9ca3af;
}

input[type="email"],
input[type="tel"] {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 0.8rem 0.95rem;
  font-size: 0.95rem;
  font-family: inherit;
  color: #111827;
  background: #fff;
}

input:focus {
  outline: none;
  border-color: #9ca3af;
  box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.06);
}

.consent {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin: 1rem 0 1.15rem;
  font-size: 0.78rem;
  color: #6b7280;
  line-height: 1.45;
  cursor: pointer;
}

.consent input {
  margin-top: 0.15rem;
  accent-color: #111827;
  flex-shrink: 0;
}

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.95rem 1.5rem;
  border: none;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.submit-btn:hover:not(:disabled) {
  background: #1f2937;
  transform: translateY(-1px);
}

.submit-btn:disabled {
  opacity: 0.65;
  cursor: wait;
}

.form-message {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.9rem;
}

.form-message.success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}

.form-message.error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.82rem;
  color: #6b7280;
}

.trust-list li::before {
  content: "✓ ";
  color: #059669;
  font-weight: 700;
}

.footer {
  padding: 1.5rem;
  text-align: center;
  font-size: 0.78rem;
  color: #9ca3af;
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

.footer-links {
  margin-top: 0.5rem;
}

.footer a {
  color: #6b7280;
  text-decoration: none;
}

.footer a:hover {
  color: #111827;
}
