:root {
  --green-900: #0f2e24;
  --green-800: #1a4d3e;
  --green-600: #2d7a62;
  --green-400: #5cb896;
  --cream: #f7f5f0;
  --cream-dark: #ebe6dc;
  --earth: #8b7355;
  --text: #1c2b26;
  --text-muted: #5a6b64;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 24px 64px rgba(15, 46, 36, 0.12);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--text);
  background: var(--cream);
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
  overflow-x: hidden;
}

.bg-pattern {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(92, 184, 150, 0.18), transparent),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(45, 122, 98, 0.1), transparent),
    linear-gradient(180deg, var(--cream) 0%, #eef5f1 100%);
}

.bg-pattern::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232d7a62' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
}

.header {
  padding: 1.5rem 1.25rem;
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-icon {
  font-size: 1.75rem;
  line-height: 1;
}

.logo-text {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--green-800);
  letter-spacing: -0.02em;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.25rem 3rem;
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-600);
  margin-bottom: 1rem;
}

.title {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.25rem, 8vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--green-900);
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 28rem;
  margin-bottom: 2rem;
}

.features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  margin-bottom: 2.25rem;
}

.features li {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--green-800);
  background: var(--white);
  border: 1px solid var(--cream-dark);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(15, 46, 36, 0.04);
}

.notify-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 400px;
  margin-bottom: 0.75rem;
}

.notify-form input {
  width: 100%;
  padding: 0.95rem 1.1rem;
  font: inherit;
  font-size: 1rem;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.notify-form input:focus {
  outline: none;
  border-color: var(--green-400);
  box-shadow: 0 0 0 3px rgba(92, 184, 150, 0.25);
}

.notify-form input::placeholder {
  color: #9aa8a2;
}

.notify-form button {
  padding: 0.95rem 1.5rem;
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.15s, opacity 0.15s;
}

.notify-form button:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

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

.form-note {
  font-size: 0.9rem;
  min-height: 1.4em;
  color: var(--green-600);
  margin-bottom: 1.5rem;
}

.form-note.error {
  color: #b54a4a;
}

.social .link {
  font-size: 0.95rem;
  color: var(--earth);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.social .link:hover {
  color: var(--green-800);
  border-bottom-color: var(--green-400);
}

.footer {
  padding: 1.5rem;
  text-align: center;
}

.footer p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.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 (min-width: 480px) {
  .notify-form {
    flex-direction: row;
  }

  .notify-form input {
    flex: 1;
  }

  .notify-form button {
    flex-shrink: 0;
    white-space: nowrap;
  }
}
