:root {
  --text: #1c1917;
  --muted: #57534e;
  --bg: #fffaf5;
  --accent: #4d7c0f;
  --accent-dark: #3f6212;
  --border: #e7e0d8;
  --max-width: 1000px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 18px;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

a {
  color: var(--accent-dark);
}

h1, h2, h3 {
  line-height: 1.25;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.25rem;
}

.site-header {
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 700;
  font-size: 1.5rem;
  text-decoration: none;
  color: var(--text);
}

.site-header nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.site-header nav a {
  text-decoration: none;
  color: var(--text);
}

.site-header nav a:hover,
.site-header nav a:focus {
  color: var(--accent-dark);
}

.hero {
  padding: 4rem 0;
  text-align: center;
}

.hero .lede {
  max-width: 640px;
  margin: 1rem auto 2rem;
  color: var(--muted);
  font-size: 1.15rem;
}

.cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
}

.button.primary {
  background: var(--accent);
  color: #fff;
}

.button.primary:hover,
.button.primary:focus {
  background: var(--accent-dark);
}

.button.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.platforms {
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

section {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}

.feature {
  margin-bottom: 2rem;
}

.feature:last-child {
  margin-bottom: 0;
}

.waitlist-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-top: 1.5rem;
}

.waitlist-form label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.waitlist-form input[type="email"] {
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-size: 1rem;
  min-width: 260px;
}

.fine-print {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

.site-footer {
  padding: 2rem 0;
  color: var(--muted);
  font-size: 0.9rem;
}
