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

@font-face {
    font-family: 'EacologicaRoundSlab';
    src: url('fonts/EacologicaRoundSlab-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #fffaf4;
  color: #2a1b0f;
}

h1, h2{
  font-family: 'EacologicaRoundSlab', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Center content */
.page-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.landing {
  max-width: 480px;
  width: 100%;
  text-align: center;
}

/* Hero card */
.hero-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  margin-bottom: 32px;
}

.hero-card h1 {
  margin: 0 0 12px;
  font-size: 1.8rem;
}

.hero-text {
  margin: 0 0 20px;
  line-height: 1.4;
}

/* Form */
.waitlist-form {
  text-align: left;
}

.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}

.form-field label {
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.form-field input {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d7c7b7;
  font-size: 0.95rem;
  outline: none;
}

.form-field input:focus {
  border-color: #f0932b;
  box-shadow: 0 0 0 2px rgba(240, 147, 43, 0.2);
}

#submit-button {
  width: 100%;
  margin-top: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: #4fd8b0;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
}

#submit-button:disabled {
  opacity: 0.7;
  cursor: default;
}

.form-note {
  margin-top: 8px;
  font-size: 0.8rem;
  color: #7a6a5b;
}

.form-error {
  margin-top: 6px;
  font-size: 0.85rem;
  color: #c0392b;
}

/* B2B section */
.b2b-section h2 {
  font-size: 1.2rem;
  margin: 0 0 8px;
}

.b2b-section p {
  margin: 0 0 16px;
}

.btn-secondary,
.btn-primary {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
}

.btn-secondary {
  background: #ffffff;
  border: 1px solid #4fd8b0;
  color: #4fd8b0;
}

.btn-primary {
  background: #4fd8b0;
  color: #ffffff;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal.hidden {
  display: none;
}

.modal-content {
  background: #ffffff;
  padding: 24px 20px;
  border-radius: 16px;
  max-width: 360px;
  width: 100%;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.modal-content h2 {
  margin-top: 0;
  margin-bottom: 8px;
}

.modal-content p {
  margin-top: 0;
  margin-bottom: 16px;
}

/* Responsive tweaks */
@media (min-width: 640px) {
  .hero-card {
    padding: 28px 24px;
  }

  .hero-card h1 {
    font-size: 2rem;
  }
}

.logo{
  margin-bottom: 16px;
}
