:root {
  color-scheme: light dark;
  --page: #f8f6ea;
  --ink: #18312b;
  --muted: #64766e;
  --line: rgba(24, 49, 43, 0.14);
  --panel: rgba(255, 252, 239, 0.78);
  --panel-strong: rgba(255, 252, 239, 0.94);
  --leaf: #4c8b58;
  --leaf-dark: #2f6540;
  --sun: #f3c762;
  --sky: #9fd6cc;
  --shadow: 0 24px 70px rgba(55, 76, 63, 0.16);
}

@media (prefers-color-scheme: dark) {
  :root {
    --page: #10211d;
    --ink: #edf4e6;
    --muted: #aebdb3;
    --line: rgba(237, 244, 230, 0.16);
    --panel: rgba(20, 43, 37, 0.78);
    --panel-strong: rgba(18, 39, 34, 0.94);
    --leaf: #92c48d;
    --leaf-dark: #b8dcac;
    --sun: #f0d28c;
    --sky: #6fb6ac;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  }
}

html {
  min-height: 100%;
  background: var(--page);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 18%, rgba(243, 199, 98, 0.36), transparent 28rem),
    radial-gradient(circle at 14% 12%, rgba(159, 214, 204, 0.32), transparent 25rem),
    linear-gradient(145deg, var(--page), color-mix(in oklab, var(--page) 86%, var(--leaf) 14%));
  overflow-x: hidden;
}

a {
  color: inherit;
}

.page {
  position: relative;
  isolation: isolate;
  width: min(1120px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 28px 0 40px;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.page::before {
  content: "";
  position: fixed;
  inset: auto -12vw -28vh -12vw;
  z-index: -1;
  height: 48vh;
  background:
    radial-gradient(ellipse at 18% 100%, rgba(76, 139, 88, 0.34), transparent 38%),
    radial-gradient(ellipse at 60% 100%, rgba(159, 214, 204, 0.28), transparent 42%),
    linear-gradient(180deg, transparent, rgba(76, 139, 88, 0.18));
  filter: blur(2px);
  pointer-events: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 4px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.mark {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(243, 199, 98, 0.68), transparent 48%),
    linear-gradient(315deg, rgba(76, 139, 88, 0.42), transparent 52%),
    var(--panel-strong);
  box-shadow: 0 8px 22px rgba(76, 139, 88, 0.14);
}

.tiny-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in oklab, var(--panel-strong) 90%, transparent);
  color: var(--leaf-dark);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.hero {
  align-self: center;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
  padding: clamp(56px, 9vw, 118px) 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: clamp(0.82rem, 1vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 7px color-mix(in oklab, var(--leaf) 20%, transparent);
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3.4rem, 9vw, 8.6rem);
  line-height: 0.88;
  letter-spacing: -0.085em;
  text-wrap: balance;
}

.lead {
  max-width: 690px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.12rem, 2.2vw, 1.45rem);
  line-height: 1.55;
  letter-spacing: -0.025em;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--leaf-dark);
  color: color-mix(in oklab, var(--page) 96%, white 4%);
  box-shadow: 0 16px 34px rgba(47, 101, 64, 0.22);
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(47, 101, 64, 0.26);
}

.button.secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--leaf-dark);
  box-shadow: none;
}

.garden-card {
  position: relative;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 38px;
  background:
    linear-gradient(180deg, color-mix(in oklab, var(--panel-strong) 88%, transparent), var(--panel)),
    radial-gradient(circle at 50% 20%, rgba(243, 199, 98, 0.26), transparent 34%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.garden-card::before,
.garden-card::after {
  content: "";
  position: absolute;
  border-radius: 999px 999px 0 0;
  bottom: -2px;
  background: color-mix(in oklab, var(--leaf) 74%, var(--page));
  opacity: 0.72;
  transform-origin: bottom center;
}

.garden-card::before {
  left: 13%;
  width: 44px;
  height: 240px;
  transform: rotate(-13deg);
}

.garden-card::after {
  right: 18%;
  width: 52px;
  height: 300px;
  transform: rotate(10deg);
}

.sun {
  position: absolute;
  top: 46px;
  right: 48px;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 0 0 18px rgba(243, 199, 98, 0.13), 0 0 64px rgba(243, 199, 98, 0.24);
}

.ground {
  position: absolute;
  inset: auto -10% -8% -10%;
  height: 38%;
  border-radius: 50% 50% 0 0;
  background:
    linear-gradient(180deg, rgba(159, 214, 204, 0.38), transparent 42%),
    color-mix(in oklab, var(--leaf) 52%, var(--page));
}

.note {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  z-index: 1;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: color-mix(in oklab, var(--panel-strong) 88%, transparent);
  backdrop-filter: blur(16px);
}

.note strong {
  display: block;
  margin-bottom: 8px;
  letter-spacing: -0.025em;
}

.note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.truth {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 0.42fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: end;
  padding: 30px 0 44px;
  border-top: 1px solid var(--line);
}

.truth p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.7;
}

.small-status {
  justify-self: end;
  width: 100%;
  max-width: 280px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
}

.small-status span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.small-status a {
  display: inline-block;
  margin-top: 8px;
  color: var(--leaf-dark);
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
}

@media (max-width: 860px) {
  .page {
    width: min(100% - 28px, 680px);
  }

  .nav {
    align-items: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 52px 0 36px;
  }

  .garden-card {
    min-height: 340px;
    border-radius: 30px;
  }

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

  .small-status {
    justify-self: start;
    max-width: none;
  }
}

@media (max-width: 520px) {
  .brand {
    font-size: 0.94rem;
  }

  .tiny-link {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .note {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 18px;
  }
}
