/* ============================================================
   COMPASS — site styles
   Palette from the brand: pine (logo dark end), tide (logo blue),
   warm cream ground, ink for text.
   ============================================================ */
:root {
  --pine: #134e4a;
  --pine-deep: #0d3835;
  --tide: #2b9ebe;
  --ink: #16302d;
  --ink-soft: #4f6360;
  --cream: #faf6ee;
  --cream-deep: #f3ecdd;
  --line: #e5dcc8;
  --leaf: #6fa287;
  --teal-brand: #005552;
  --teal-light: #0e7c76;
  --white: #ffffff;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: 'Albert Sans', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
}

.display { font-family: 'Playfair Display', Georgia, serif; }

a { color: var(--pine); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 3px solid var(--tide);
  outline-offset: 2px;
}

.wrap { max-width: 1060px; margin: 0 auto; padding: 0 24px; }

/* --- nav ------------------------------------------------------ */
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
}
.brand { display: flex; align-items: center; gap: 9px; text-decoration: none; }
.brand img { width: 36px; height: 36px; }
.brand span {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--teal-brand);
}
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { text-decoration: none; color: var(--ink-soft); font-size: 15px; }
.nav-links a:hover { color: var(--pine); }
.btn, a.btn, .nav-links a.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--pine) 0%, var(--tide) 100%);
  color: var(--white);
  border: none; border-radius: 999px; padding: 12px 26px;
  font-family: inherit; font-size: 16px; font-weight: 600;
  text-decoration: none; cursor: pointer;
}
.btn:hover, a.btn:hover { background: linear-gradient(135deg, var(--pine-deep) 0%, #1f7e99 100%); color: var(--white); }
.btn-nav { padding: 9px 20px; font-size: 14px; }

/* --- hero ----------------------------------------------------- */
.hero { padding: 72px 0 56px; text-align: center; }
.eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--tide); margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 500; line-height: 1.12;
  color: var(--pine-deep);
  max-width: 17ch; margin: 0 auto 22px;
}
.hero h1 em { font-style: italic; color: var(--teal-light); }
.hero .audience {
  font-size: 19px; color: var(--ink-soft);
  max-width: 52ch; margin: 0 auto 36px;
}

/* --- growth line (signature): the path from moment to strength --- */
.growth-line {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(19px, 2.6vw, 25px);
  margin: 0 auto 44px;
  color: var(--ink-soft);
}
.growth-line .stage { white-space: nowrap; }
.growth-line .grow { color: var(--teal-light); font-style: italic; font-weight: 600; }
.growth-line .arrow { color: var(--tide); padding: 0 8px; }

/* --- waitlist form -------------------------------------------- */
.signup {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  max-width: 560px; margin: 0 auto;
}
.signup input[type="email"] {
  flex: 1 1 260px; padding: 13px 18px; font-size: 16px; font-family: inherit;
  border: 1.5px solid var(--line); border-radius: 999px; background: var(--white);
  color: var(--ink);
}
.signup select {
  padding: 13px 16px; font-size: 15px; font-family: inherit;
  border: 1.5px solid var(--line); border-radius: 999px; background: var(--white);
  color: var(--ink);
}
.form-note { font-size: 13px; color: var(--ink-soft); margin-top: 12px; }

/* --- sections -------------------------------------------------- */
section { padding: 64px 0; }
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 38px); font-weight: 500;
  color: var(--pine-deep); text-align: center; margin-bottom: 14px;
}
.section-title::after {
  content: ''; display: block; width: 54px; height: 3px; border-radius: 2px;
  margin: 14px auto 0;
  background: linear-gradient(90deg, var(--pine), var(--tide));
}
.section-sub {
  text-align: center; color: var(--ink-soft);
  max-width: 56ch; margin: 0 auto 44px;
}

/* how it works: a true sequence */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step {
  background: var(--white); border: 1px solid var(--line); border-radius: 18px;
  padding: 28px 24px;
}
.step .n {
  font-family: 'Playfair Display', Georgia, serif; font-size: 15px; font-weight: 600;
  color: var(--tide); letter-spacing: 0.1em; margin-bottom: 12px;
}
.step h3 { font-size: 19px; margin-bottom: 8px; color: var(--pine-deep); }
.step p { font-size: 15.5px; color: var(--ink-soft); }
.step .quote { font-style: italic; color: var(--pine); }

/* three modes */
.modes-band { background: linear-gradient(135deg, var(--pine-deep) 0%, #14606e 100%); color: var(--cream); }
.modes-band .section-title { color: var(--cream); }
.modes-band .section-sub { color: #b9cfc9; }
.modes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.mode { border: 1px solid rgba(250,246,238,0.18); border-radius: 18px; padding: 26px 24px; }
.mode .who {
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--tide); margin-bottom: 12px;
}
.mode p { font-size: 15.5px; color: #d7e4df; }

/* tree teaser */
.tree-teaser { text-align: center; }
.tree-art { margin: 0 auto 26px; display: block; }
.link-arrow {
  font-weight: 600; text-decoration: none; font-size: 17px;
}
.link-arrow:hover { text-decoration: underline; }

/* final CTA */
.cta-band { background: var(--cream-deep); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; }

/* footer */
footer { padding: 36px 0 48px; }
.foot { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.foot .tag { font-family: 'Playfair Display', Georgia, serif; font-style: italic; color: var(--ink-soft); font-size: 15px; }
.foot-links { display: flex; gap: 20px; font-size: 14px; }
.foot-links a { color: var(--ink-soft); text-decoration: none; }
.foot-links a:hover { color: var(--pine); }

/* prose pages (privacy, thanks) */
.prose { max-width: 720px; margin: 0 auto; padding: 48px 24px 80px; }
.prose h1 { font-family: 'Playfair Display', Georgia, serif; font-weight: 500; font-size: 38px; color: var(--pine-deep); margin-bottom: 8px; }
.prose .updated { font-size: 14px; color: var(--ink-soft); margin-bottom: 36px; }
.prose h2 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; font-size: 22px; color: var(--pine-deep); margin: 34px 0 10px; }
.prose p, .prose li { color: var(--ink); font-size: 16.5px; }
.prose ul { padding-left: 22px; margin: 10px 0; }
.prose li { margin-bottom: 6px; }

@media (max-width: 760px) {
  .steps, .modes { grid-template-columns: 1fr; }
  .nav-links a:not(.btn) { display: none; }
  .hero { padding: 48px 0 40px; }
  section { padding: 48px 0; }
}
