:root {
  --canvas: #f4f5ef;
  --canvas-deep: #e9efe7;
  --surface: rgb(255 255 252 / 94%);
  --ink: #20312a;
  --ink-soft: #43564e;
  --muted-text: #718078;
  --green-100: #dfeee2;
  --green-300: #a8c9ae;
  --green-500: #4d8d63;
  --green-600: #38754f;
  --green-700: #285c3e;
  --shadow-soft: 0 1px 2px rgb(33 58 45 / 4%), 0 12px 36px rgb(33 58 45 / 7%);
  --shadow-raised: 0 2px 4px rgb(33 58 45 / 5%), 0 18px 48px rgb(33 58 45 / 11%);
  --radius-sm: 12px;
  --radius-xl: 30px;
  background: var(--canvas);
  color: var(--ink);
  font-family: ui-rounded, "SF Pro Rounded", "Avenir Next", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  line-height: 1.5;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  background:
    radial-gradient(circle at 12% -8%, rgb(255 252 240 / 92%) 0 18rem, transparent 34rem),
    radial-gradient(circle at 92% 12%, rgb(220 236 222 / 68%) 0 15rem, transparent 34rem),
    linear-gradient(160deg, var(--canvas) 0%, #f8f7f2 48%, var(--canvas-deep) 100%);
  color: var(--ink);
  display: grid;
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: clip;
  padding: clamp(14px, 5vw, 48px);
  place-items: center;
  position: relative;
}

body::before {
  background: radial-gradient(circle, rgb(77 141 99 / 10%) 0 2px, transparent 2.5px) 0 0 / 28px 28px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(to bottom, rgb(0 0 0 / 18%), transparent 36%);
  opacity: 0.3;
  pointer-events: none;
  position: fixed;
  z-index: 0;
}

.plant-decorations {
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: fixed;
  z-index: 0;
}

.plant-decoration {
  color: var(--green-500);
  opacity: 0.26;
  overflow: visible;
  position: absolute;
}

.plant-decoration-left {
  bottom: 36px;
  left: -28px;
  width: 96px;
}

.plant-decoration-top-left {
  left: -18px;
  opacity: 0.17;
  top: 5vh;
  transform: rotate(-8deg);
  width: 64px;
}

.plant-decoration-middle-left {
  display: none;
}

.plant-decoration-right {
  right: -20px;
  top: 10vh;
  width: 78px;
}

.plant-decoration-bottom-right {
  bottom: 10px;
  opacity: 0.2;
  right: -24px;
  width: 82px;
}

.plant-stem {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.plant-leaf {
  fill: currentColor;
}

.plant-leaf-soft {
  opacity: 0.58;
}

.plant-cactus {
  fill: currentColor;
  opacity: 0.78;
}

.plant-cactus-detail {
  fill: none;
  opacity: 0.34;
  stroke: var(--canvas);
  stroke-linecap: round;
  stroke-width: 1.5;
}

.plant-pot-rim {
  fill: #d5b98e;
}

.plant-pot {
  fill: #cfa574;
  opacity: 0.78;
}

.landing-shell {
  max-width: 760px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.hero-card {
  background: var(--surface);
  border: 1px solid rgb(255 255 255 / 84%);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-raised);
  overflow: hidden;
  padding: clamp(24px, 7vw, 56px);
  position: relative;
}

.hero-card::after {
  background: radial-gradient(circle, rgb(168 201 174 / 24%) 0 36%, transparent 38%);
  content: "";
  height: 220px;
  pointer-events: none;
  position: absolute;
  right: -72px;
  top: -92px;
  width: 220px;
}

.brand-heading {
  align-items: center;
  display: flex;
  gap: 14px;
  margin-bottom: clamp(28px, 7vw, 54px);
  position: relative;
  z-index: 1;
}

.brand-mark {
  align-items: center;
  background: var(--green-100);
  border-radius: 16px;
  color: var(--green-700);
  display: inline-flex;
  flex: 0 0 auto;
  height: 46px;
  justify-content: center;
  transform: rotate(-7deg);
  width: 46px;
}

.brand-mark svg {
  fill: none;
  height: 24.2px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 24.2px;
}

.eyebrow {
  color: var(--green-600);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  margin: 0;
  text-transform: uppercase;
}

h1 {
  color: #183528;
  margin: 0;
  font-size: clamp(2.3rem, 8vw, 4.35rem);
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 1.02;
  text-wrap: balance;
}

.hero-copy {
  max-width: 610px;
  position: relative;
  z-index: 1;
}

.intro {
  color: var(--muted-text);
  font-size: clamp(1.05rem, 3vw, 1.2rem);
  line-height: 1.6;
  margin: clamp(18px, 4vw, 26px) 0 clamp(26px, 6vw, 38px);
  max-width: 31rem;
  text-wrap: pretty;
}

.app-link {
  align-items: center;
  background: var(--green-600);
  border-radius: var(--radius-sm);
  box-shadow: 0 1px 2px rgb(24 63 43 / 10%);
  color: #fff;
  display: inline-flex;
  font-weight: 700;
  gap: 10px;
  justify-content: center;
  min-height: 50px;
  padding: 12px 18px;
  text-decoration: none;
  transition: box-shadow 150ms ease, filter 150ms ease, transform 150ms ease;
}

.app-link svg {
  fill: none;
  height: 19px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 19px;
}

.app-link:hover {
  box-shadow: 0 5px 14px rgb(40 92 62 / 18%);
  filter: brightness(1.04);
}

.app-link:active {
  transform: translateY(1px);
}

.app-link:focus-visible {
  outline: 3px solid rgb(77 141 99 / 32%);
  outline-offset: 3px;
}

@media (max-width: 399px) {
  .hero-card {
    border-radius: 24px;
  }

  .app-link {
    width: 100%;
  }
}

@media (min-width: 700px) {
  .plant-decoration-middle-left {
    display: block;
    left: 12px;
    opacity: 0.14;
    top: 35vh;
    transform: rotate(8deg);
    width: 62px;
  }
}

@media (min-width: 900px) {
  .plant-decoration-left {
    bottom: 46px;
    left: max(24px, calc((100vw - 1040px) / 2));
    width: 132px;
  }

  .plant-decoration-top-left {
    left: max(42px, calc((100vw - 1180px) / 2));
    top: 7vh;
    width: 88px;
  }

  .plant-decoration-middle-left {
    left: max(8px, calc((100vw - 1280px) / 2));
    width: 76px;
  }

  .plant-decoration-right {
    right: max(28px, calc((100vw - 1040px) / 2));
    top: 10vh;
    width: 108px;
  }

  .plant-decoration-bottom-right {
    bottom: 26px;
    right: max(38px, calc((100vw - 1160px) / 2));
    width: 116px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .app-link {
    transition: none;
  }
}
