:root {
  --bg: #f6f1e8;
  --text: #243331;
  --muted: #556764;
  --accent: #335c57;
  --line: #b7aea2;
  --content-width: 700px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
}

h1,
h2,
h3 {
  font: inherit;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.simple-page {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 40px 20px 72px;
}

.brand-mark {
  font-size: 1.2rem;
  line-height: 1.2;
  margin-bottom: 32px;
  font-weight: 500;
}

.story {
  display: grid;
  gap: 22px;
}

.story p {
  font-size: 1.12rem;
  line-height: 1.78;
  color: var(--muted);
}

.waitlist-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
}

.waitlist-form input {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font: inherit;
  padding: 12px 14px;
  flex: 1;
}

.waitlist-form input:focus {
  outline: 1px solid var(--accent);
  outline-offset: 0;
}

.waitlist-form input::placeholder {
  color: #7b8b87;
}

.waitlist-form button {
  border: 0;
  background: var(--accent);
  color: #f7f3ed;
  font: inherit;
  font-weight: 600;
  padding: 12px 16px;
  cursor: pointer;
  transition: transform 160ms ease, opacity 160ms ease;
}

.waitlist-form button:hover,
.waitlist-form button:focus-visible {
  transform: translateY(-1px);
}

.waitlist-form button[disabled] {
  cursor: wait;
  opacity: 0.7;
}

.form-note {
  margin-top: 8px;
  color: var(--muted);
}

.form-note.success {
  color: var(--accent);
}

.form-note.error {
  color: #9a4c3a;
}

.signup-block,
.simple-section {
  margin-top: 32px;
}

.signup-block {
  margin-top: 28px;
}

.privacy-note {
  margin-top: 6px;
  font-size: 0.84rem;
  line-height: 1.6;
  color: #768582;
  font-weight: 400;
  font-style: italic;
}

.form-note:empty {
  display: none;
}

.honeypot,
.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: 720px) {
  .simple-page {
    padding: 40px 16px 56px;
  }

  .waitlist-form {
    flex-direction: column;
  }
}
