:root {
  --bg: #ffffff;
  --text: #1d2a19;
  --muted: #5e6f57;
  --brand-green: #3ea735;
  --brand-gold: #edc42e;
  --card-border: #ebf2e8;
  --input-border: #d9e6d5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: "Outfit", "Segoe UI", sans-serif;
  position: relative;
  overflow: hidden;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 1.25rem;
  position: relative;
  z-index: 1;
}

.coming-soon {
  width: min(92vw, 680px);
  text-align: center;
  background: linear-gradient(155deg, #ffffff 0%, #fdfffc 100%);
  border: 1px solid var(--card-border);
  border-radius: 28px;
  padding: clamp(1.5rem, 4vw, 3rem);
  box-shadow:
    0 22px 55px rgba(23, 52, 15, 0.08),
    0 8px 22px rgba(0, 0, 0, 0.03);
}

.logo {
  width: min(280px, 65vw);
  height: auto;
  margin-bottom: 0.75rem;
}

.tag {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-green);
  font-weight: 600;
}

h1 {
  margin: 0.55rem 0 0;
  font-family: "Urbanist", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 7vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.description {
  margin: 0.9rem auto 1.5rem;
  max-width: 52ch;
  color: var(--muted);
  line-height: 1.6;
}

.notify-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.notify-form input {
  width: min(330px, 100%);
  padding: 0.82rem 0.95rem;
  border: 1px solid var(--input-border);
  border-radius: 999px;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.notify-form input:focus {
  border-color: var(--brand-green);
  box-shadow: 0 0 0 4px rgba(62, 167, 53, 0.14);
}

.notify-form button {
  border: 0;
  border-radius: 999px;
  padding: 0.82rem 1.2rem;
  font: inherit;
  font-weight: 600;
  background: linear-gradient(140deg, var(--brand-green), #4eb83f);
  color: #ffffff;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.notify-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(62, 167, 53, 0.25);
}

.notify-form button:active {
  transform: translateY(0);
}

.background-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(4px);
  z-index: 0;
  pointer-events: none;
}

.orb-yellow {
  width: 360px;
  height: 360px;
  left: -90px;
  top: -80px;
  background: radial-gradient(circle at 30% 30%, rgba(237, 196, 46, 0.3), rgba(237, 196, 46, 0));
}

.orb-green {
  width: 420px;
  height: 420px;
  right: -130px;
  bottom: -120px;
  background: radial-gradient(circle at 60% 40%, rgba(62, 167, 53, 0.22), rgba(62, 167, 53, 0));
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 520px) {
  .coming-soon {
    border-radius: 22px;
    padding: 1.4rem 1rem 1.8rem;
  }

  .notify-form {
    flex-direction: column;
    align-items: stretch;
  }

  .notify-form input,
  .notify-form button {
    width: 100%;
  }
}
