:root {
  --bg: #f8f5ef;
  --panel: #fffdf7;
  --text: #132a13;
  --muted: #4f5d4f;
  --brand: #0f6b44;
  --brand-strong: #0a4d31;
  --accent: #e39a2f;
  --line: #d8ddcf;
  --shadow: 0 18px 44px rgba(12, 43, 26, 0.11);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Outfit", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

h1,
h2,
h3 {
  font-family: "Newsreader", Georgia, serif;
  margin: 0;
  line-height: 1.08;
}

a {
  color: inherit;
}

.container {
  width: min(1100px, calc(100vw - 2rem));
  margin: 0 auto;
}

.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 9% 13%, rgba(227, 154, 47, 0.17), transparent 36%),
    radial-gradient(circle at 92% 21%, rgba(15, 107, 68, 0.17), transparent 34%),
    linear-gradient(180deg, #fdf9f1 0%, #f8f5ef 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(19, 42, 19, 0.09);
  backdrop-filter: blur(8px);
  background: rgba(248, 245, 239, 0.82);
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.2px;
}

nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

nav a {
  text-decoration: none;
  color: var(--muted);
}

.nav-pill {
  border: 1px solid var(--line);
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  padding: 4.8rem 0 2.7rem;
}

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

.hero-copy h1 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  margin-top: 0.5rem;
}

.hero-copy p {
  margin: 1rem 0 0;
  font-size: 1.07rem;
  color: var(--muted);
  max-width: 48ch;
}

.launch-note {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(227, 154, 47, 0.15);
  color: #7e4e0a;
  font-size: 0.9rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 6px 20px rgba(15, 107, 68, 0.27);
}

.button-primary:hover {
  background: var(--brand-strong);
}

.button-secondary {
  background: #fff;
  border: 1px solid var(--line);
}

.button-ghost {
  color: var(--brand-strong);
  border: 1px dashed #9cb8a4;
  background: rgba(255, 255, 255, 0.7);
}

.hero-card {
  border: 1px solid #dce4d7;
  background: linear-gradient(160deg, #fff 0%, #f7fbf6 100%);
  border-radius: 22px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  font-size: 1.55rem;
}

.hero-card ul {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}

.hero-card li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid #e8eee4;
  color: #2a4530;
}

.hero-card strong {
  color: var(--brand);
  font-size: 0.95rem;
}

.streak {
  margin: 0;
  font-size: 0.94rem;
  color: #365842;
  font-weight: 600;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 2rem 0;
}

.grid-3 article {
  background: var(--panel);
  border: 1px solid #e1e7da;
  border-radius: 16px;
  padding: 1rem;
}

.grid-3 p {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.value-strip {
  margin-top: 0.5rem;
  border: 1px solid #dce5d7;
  border-radius: 18px;
  padding: 1.3rem;
  background: #fcfff8;
}

.value-strip h2 {
  font-size: 1.8rem;
}

.value-strip p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.faq {
  padding: 2.4rem 0 3.5rem;
}

.faq h2 {
  font-size: 1.7rem;
  margin-bottom: 1rem;
}

.faq details {
  border: 1px solid #dce5d7;
  border-radius: 13px;
  background: #fff;
  margin-bottom: 0.8rem;
  padding: 0.85rem 1rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.faq p {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid #dce4d7;
  padding: 1.2rem 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #3b5240;
}

.site-footer a {
  color: var(--brand-strong);
}

.redirect-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.2rem;
}

.redirect-card {
  width: min(680px, 100%);
  border: 1px solid #dce4d7;
  border-radius: 18px;
  background: #fff;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.redirect-card p {
  color: var(--muted);
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.status-line {
  font-size: 0.95rem;
  margin-top: 0.6rem;
  color: #2f4e38;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 3.1rem;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
