:root {
  --forest: #1c6b4c;
  --forest-deep: #0f4532;
  --forest-soft: #c7e8d6;
  --moss: #5c9a74;
  --sky: #f3ead6;
  --path: #f7f1e4;
  --ink: #1a1b1c;
  --muted: #5c5d60;
  --paper: #f7f6f3;
  --white: #ffffff;
  --line: rgba(26, 27, 28, 0.12);
  --shadow: 0 24px 60px rgba(15, 69, 50, 0.18);
  --font-display: "Syne", sans-serif;
  --font-body: "Outfit", sans-serif;
  --max: 1100px;
  --radius: 28px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem clamp(1.25rem, 4vw, 2.5rem);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-mark img {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.brand-mark span {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 1.15rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
  opacity: 0.9;
}

.nav-links a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.06);
  animation: drift 18s ease-in-out infinite alternate;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(15, 69, 50, 0.28) 0%, rgba(15, 69, 50, 0.12) 38%, rgba(15, 69, 50, 0.72) 100%),
    linear-gradient(90deg, rgba(15, 69, 50, 0.45) 0%, rgba(15, 69, 50, 0.08) 55%, transparent 100%);
}

.hero-copy {
  width: min(100% - 2.5rem, 640px);
  margin: 0 auto 0 clamp(1.25rem, 4vw, 2.5rem);
  padding: 7.5rem 0 3.5rem;
  animation: rise 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-brand {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 5.4rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.92;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.hero-headline {
  margin: 0 0 0.85rem;
  max-width: 14ch;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.45rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.hero-lede {
  margin: 0 0 1rem;
  max-width: 34ch;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-status {
  margin: 0 0 1.75rem;
  max-width: 34ch;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--forest-soft);
  animation: rise 900ms cubic-bezier(0.22, 1, 0.36, 1) 120ms both;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.1rem;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: var(--white);
  color: var(--forest-deep);
}

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

.button-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.button-forest {
  background: var(--forest);
  color: var(--white);
}

.button-forest:hover {
  background: var(--forest-deep);
}

.section {
  padding: clamp(4rem, 9vw, 6.5rem) clamp(1.25rem, 4vw, 2.5rem);
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-kicker {
  margin: 0 0 0.75rem;
  color: var(--forest);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-title {
  margin: 0 0 0.85rem;
  max-width: 14ch;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 3rem);
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.section-copy {
  margin: 0;
  max-width: 42ch;
  color: var(--muted);
}

.modes {
  background:
    radial-gradient(circle at top left, rgba(28, 107, 76, 0.12), transparent 40%),
    linear-gradient(180deg, #eef6f1 0%, var(--paper) 100%);
}

.mode-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 820px) {
  .mode-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.mode {
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  animation: rise 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.mode:nth-child(2) {
  animation-delay: 80ms;
}

.mode:nth-child(3) {
  animation-delay: 160ms;
}

.mode h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.mode p {
  margin: 0;
  color: var(--muted);
}

.privacy {
  background:
    radial-gradient(circle at bottom right, rgba(28, 107, 76, 0.1), transparent 42%),
    linear-gradient(180deg, var(--paper) 0%, #eef3ef 100%);
}

.privacy .section-copy {
  margin-bottom: 1.75rem;
}

.privacy .section-inner {
  animation: rise 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.closing {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--forest-deep), var(--forest) 55%, #2f8a62);
  color: var(--white);
}

.closing::before {
  content: "";
  position: absolute;
  inset: auto -10% -40% 40%;
  height: 70%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 60%);
  pointer-events: none;
}

.closing .section-inner {
  position: relative;
  display: grid;
  gap: 1.5rem;
}

.closing .section-title,
.closing .section-copy {
  color: var(--white);
}

.closing .section-copy {
  opacity: 0.88;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem clamp(1.25rem, 4vw, 2.5rem) 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

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

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

/* Privacy page */
.page-shell {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.page-header {
  position: sticky;
  top: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1.25rem, 4vw, 2.5rem);
  background: rgba(247, 246, 243, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.page-header .brand-mark span,
.page-header .nav-links a {
  color: var(--ink);
}

.legal {
  flex: 1;
  width: min(100% - 2.5rem, 760px);
  margin: 0 auto;
  padding: 3rem 0 5rem;
}

.legal h1 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.legal .updated {
  margin: 0 0 2rem;
  color: var(--muted);
}

.legal h2 {
  margin: 2.25rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.legal p,
.legal li {
  color: var(--muted);
}

.legal ul {
  padding-left: 1.2rem;
}

.legal li + li {
  margin-top: 0.45rem;
}

@keyframes drift {
  from {
    transform: scale(1.06) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.12) translate3d(-1.5%, -1%, 0);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-media img,
  .hero-copy,
  .hero-status,
  .mode,
  .privacy .section-inner {
    animation: none;
  }
}
