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

:root {
  --green-soft:   #5a8f6e;
  --green-pale:   #a8c9b4;
  --green-light:  #c8e8b8;
  --cream:        #f2ede6;
  --white-soft:   #fafaf8;
  --charcoal:     #2a2a2a;
  --text-mid:     #5a5a52;
  --teaser-bg:    #1e2e22;
  --teaser-mid:   #2a3d2f;
}

html { 
  scroll-behavior: smooth;
  background-color: #2c4a35;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--charcoal);
  overflow-x: hidden;
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding-top: env(safe-area-inset-top);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    160deg,
    #2c4a35 0%,
    #4a7a58 20%,
    #8ab89a 45%,
    #c8d8a8 60%,
    #e8c890 74%,
    #c87830 86%,
    #3a1a08 100%
  );
  background-size: cover;
  background-position: center;
}

.hero-logo {
  width: clamp(280px, 70vw, 620px);
  margin-bottom: 1rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, transparent 30%, rgba(0,0,0,0.22) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 640px;
  padding: 2rem;
  animation: riseIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.wordmark {
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.3em;
  text-shadow: 0 2px 30px rgba(0,0,0,0.2);
}

.wordmark span {
  font-weight: 600;
  color: var(--green-light);
}

.tagline {
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.07em;
  margin-bottom: 3rem;
}

.tagline em {
  font-style: normal;
  font-weight: 400;
  color: var(--green-light);
}

/* ── WAITLIST ── */
.waitlist {
  animation: riseIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.waitlist-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.85rem;
}

.input-row {
  display: flex;
  max-width: 420px;
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18), 0 0 0 1px rgba(255,255,255,0.1);
}

.input-row input {
  flex: 1;
  padding: 0.9rem 1.2rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  border: none;
  color: #ffffff;
  outline: none;
  min-width: 0;
}

.input-row input::placeholder { color: rgba(255,255,255,0.5); }

.input-row button {
  padding: 0.9rem 1.4rem;
  background: var(--green-soft);
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.input-row button:hover { background: #4a7a5e; }
.input-row button:active { transform: scale(0.98); }

.privacy-note {
  margin-top: 0.75rem;
  font-size: 0.67rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
}

.success-msg {
  display: none;
  font-size: 1.05rem;
  font-weight: 400;
  color: #4a7a58;
  padding: 1rem;
  letter-spacing: 0.02em;
}

/* ── SCROLL HINT ── */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s ease 2.5s forwards;
}

@keyframes fadeIn { to { opacity: 0.4; } }

.scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

.scroll-line {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 0.9; }
}

/* ── TEASER ── */
.teaser {
  background: var(--teaser-bg);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.teaser::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(90,143,110,0.07) 0%, transparent 70%);
}

.teaser-inner {
  max-width: 520px;
  margin: 0 auto;
  position: relative;
}

.teaser-eyebrow {
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-soft);
  margin-bottom: 1.25rem;
}

.teaser-headline {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.35;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.teaser-headline strong {
  font-weight: 500;
  color: var(--green-pale);
}

.teaser-body {
  font-size: 0.92rem;
  font-weight: 300;
  color: rgba(242, 237, 230, 0.55);
  line-height: 1.85;
}

/* ── FOOTER ── */
footer {
  background: #161f18;
  padding: 1.75rem 2rem;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(242, 237, 230, 0.2);
  letter-spacing: 0.06em;
}

footer a {
  color: var(--green-soft);
  text-decoration: none;
  opacity: 0.5;
}

@media (max-width: 480px) {
  .input-row { flex-direction: column; }
  .input-row button { padding: 0.85rem; }
}
