html, body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #F8FAFC;
  color: #1e293b; /* slate-800 */
}

/* Tailwind-like color variables */
:root {
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;

  --emerald-600: #059669;
  --emerald-700: #047857;
  --emerald-100: #d1fae5;
}



.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ecfdf5;
  border: 1px solid #d1fae5;
  color: var(--emerald-700);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  text-transform: uppercase;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--slate-900);
}

.hero-title span {
  color: var(--emerald-600);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--slate-600);
  max-width: 720px;
  margin-inline: auto;
}


.card-early {
  border: none;
  border-radius: 1.25rem;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.btn-primary {
  background-color: #0f9d6a;
  border: none;
  border-radius: 0.75rem;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: #0c7c54;
}

.card-glass {
  background: #ffffff;
  border-radius: 2.5rem;
  border: 1px solid #f1f5f9;
  box-shadow:
    0 20px 25px -5px rgba(0,0,0,.08),
    0 10px 10px -5px rgba(0,0,0,.04);
}


.input-soft {
  background: #f8fafc;
  border: 2px solid #f1f5f9;
  border-radius: 1.25rem;
  padding: 1rem 1.25rem;
  font-weight: 500;
}

.input-soft:focus {
  border-color: var(--emerald-600);
  box-shadow: 0 0 0 4px rgba(5,150,105,.15);
}

.btn-emerald {
  background: var(--emerald-600);
  color: white;
  font-weight: 900;
  padding: 1rem;
  border-radius: 1.25rem;
  box-shadow: 0 12px 20px rgba(5,150,105,.25);
}

button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.badge-soft {
  max-width: 100%;
  white-space: normal;     /* allow wrapping */
  text-align: center;
  line-height: 1.4;
}
/* Reduce vertical space on small screens */
@media (max-width: 576px) {
  .badge-soft {
    flex-wrap: wrap;       /* wrap text to next line */
    justify-content: center;
  }

  .mb-3 {
    text-align: center;    /* center the badge container */
  }

  section {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  header {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  footer {
    text-align: center;
  }
}
