/* Meranti — Coming Soon
   Design: clean, modern, trustworthy. System fonts only. */

:root {
  --green-dark:    #1a3d2b;
  --green-mid:     #2d6a4f;
  --green-light:   #52b788;
  --green-pale:    #d8f3dc;
  --bg:            #faf9f7;
  --text:          #1a1a1a;
  --text-muted:    #5a5a5a;
  --border:        #e0ddd8;
  --white:         #ffffff;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --radius: 8px;
  --max-width: 960px;
}

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ──────────────────────────────────────────── */

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

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--green-dark);
}

/* ── Hero ────────────────────────────────────────────── */

.hero {
  padding: 80px 0 72px;
  text-align: center;
}

.badge {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-mid);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--green-dark);
  margin-bottom: 24px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Differentiators ─────────────────────────────────── */

.differentiators {
  background: var(--green-dark);
  padding: 72px 0;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 64px;
  list-style: none;
}

.pillars li h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-light);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.pillars li p {
  font-size: 0.95rem;
  color: #b0c8bb;
  line-height: 1.65;
}

/* ── Signup ──────────────────────────────────────────── */

.signup {
  padding: 80px 0;
}

.signup-inner {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.signup h2 {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.signup p {
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

.inline-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.inline-form input[type="email"] {
  flex: 1 1 260px;
  padding: 12px 16px;
  font-size: 1rem;
  font-family: var(--font);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color 0.15s;
}

.inline-form input[type="email"]:focus {
  border-color: var(--green-light);
}

.inline-form button {
  padding: 12px 24px;
  font-size: 1rem;
  font-family: var(--font);
  font-weight: 600;
  background: var(--green-dark);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}

.inline-form button:hover {
  background: var(--green-mid);
}

/* ── Footer ──────────────────────────────────────────── */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  text-align: center;
}

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

.site-footer a {
  color: var(--green-mid);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* ── Responsive ──────────────────────────────────────── */

@media (max-width: 600px) {
  .hero {
    padding: 56px 0 48px;
  }

  .differentiators {
    padding: 48px 0;
  }

  .pillars {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .services,
  .signup {
    padding: 56px 0;
  }

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

  .inline-form input[type="email"],
  .inline-form button {
    flex: none;
    width: 100%;
  }
}
