:root {
  --cedar-dark: #1b5e3a;
  --cedar: #2d6a4f;
  --cedar-mid: #40916c;
  --cedar-light: #95d5b2;
  --cedar-pale: #d8f3dc;
  --cream: #fff8e7;
  --text: #2d3436;
  --white: #ffffff;
  --error: #c0392b;
  --font-sans: "Nunito", system-ui, sans-serif;
}

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

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(149, 213, 178, 0.4);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
}

.header-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cedar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 0.5rem;
}

.cedar-logo img {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 4px 6px rgba(45, 106, 79, 0.15));
}

.cedar-logo-text {
  display: flex;
  flex-direction: column;
}

.wordmark {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--cedar-dark);
}

.wordmark span {
  color: var(--cedar-mid);
}

.logo-tagline {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cedar);
}

.hero {
  max-width: 72rem;
  margin: 0 auto;
  min-height: calc(100svh - 9rem);
  padding: 5rem 1.5rem;
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero {
    grid-template-columns: 1fr 1fr;
  }
}

.eyebrow {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cedar-mid);
}

.hero h1 {
  margin: 1rem 0 0;
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--cedar-dark);
}

.hero h1 span {
  color: var(--cedar-mid);
}

.waitlist {
  margin-top: 2rem;
  max-width: 28rem;
}

.tally-clip {
  height: 170px;
  overflow: hidden;
  border-radius: 0.75rem;
}

.tally-clip iframe {
  width: 100%;
  border: 0;
  display: block;
}

.note {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--cedar);
}

.note.ok {
  color: var(--cedar-dark);
}

.hero-art {
  display: flex;
  justify-content: center;
}

.hero-art img {
  width: min(100%, 360px);
  height: auto;
  pointer-events: none;
}

.site-footer {
  border-top: 1px solid rgba(149, 213, 178, 0.4);
  background: var(--cedar-dark);
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--cedar-pale);
}

.site-footer p {
  margin: 0;
  font-weight: 600;
}

.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;
}
