:root {
  color-scheme: light;
  --bg: #ffffff;
  --app-background: #1f1f1d;
  --canvas: #06120c;
  --canvas-raised: #081b0e;
  --panel: #0b2311;
  --panel-raised: #20231f;
  --instrument: rgba(30, 43, 33, 0.78);
  --instrument-border: rgba(245, 255, 247, 0.09);
  --app-text: #f5fff7;
  --app-muted: rgba(245, 255, 247, 0.68);
  --app-subtle: rgba(245, 255, 247, 0.46);
  --growth: #59bf62;
  --growth-line: #63c568;
  --growth-surface: rgba(89, 191, 98, 0.12);
  --action: #ffad8f;
  --action-surface: #26120d;
  --water: #74d7ff;
  --weed: #8ed9a4;
  --amber: #d7a75e;
  --bg-soft: #f4f8f2;
  --bg-field: #edf4ee;
  --ink: #082e1d;
  --ink-soft: #375243;
  --muted: #657467;
  --line: #dfe7dc;
  --line-strong: #c6d3c2;
  --green: #0b5a35;
  --green-deep: #062518;
  --green-soft: #dcebdd;
  --sky: #dcecf2;
  --sky-ink: #285f70;
  --clay: #b86649;
  --clay-soft: #f4e2da;
  --shadow: 0 24px 70px rgba(8, 46, 29, 0.13);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 46%, #f7faf5 100%);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.section-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1180px, calc(100% - 48px));
  min-height: 76px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.03rem;
  font-weight: 780;
  color: var(--green-deep);
}

.brand-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--green-deep);
  overflow: hidden;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  content: "";
  position: absolute;
  bottom: 8px;
  width: 5px;
  height: 18px;
  border-radius: 999px 999px 0 0;
  background: #f7fff6;
  transform-origin: bottom center;
}

.brand-mark::before {
  left: 10px;
  transform: rotate(-18deg);
}

.brand-mark span {
  left: 15px;
}

.brand-mark::after {
  left: 20px;
  transform: rotate(18deg);
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 640;
}

.nav-links a,
.site-footer a {
  transition: color 180ms ease;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--green);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: var(--radius-sm);
  font-weight: 760;
  font-size: 0.95rem;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.header-cta {
  min-width: 112px;
  padding: 0 18px;
  background: var(--green-deep);
  color: #ffffff;
}

.button {
  min-width: 132px;
  padding: 0 22px;
}

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

.button-primary {
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(11, 90, 53, 0.2);
}

.button-secondary {
  background: #ffffff;
  color: var(--green-deep);
  border: 1px solid var(--line-strong);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--ink);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(460px, 1.14fr);
  gap: 54px;
  align-items: center;
  min-height: calc(100svh - 76px);
  padding: 58px 0 74px;
}

.hero-copy {
  max-width: 565px;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 10ch;
  font-size: clamp(4.4rem, 10vw, 8.8rem);
  line-height: 0.91;
  font-weight: 860;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2.15rem, 5vw, 4.7rem);
  line-height: 1;
  font-weight: 820;
  letter-spacing: 0;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.2;
  font-weight: 780;
}

.hero-lede {
  max-width: 580px;
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.35;
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 38px 0 0;
}

.hero-proof div {
  border-left: 1px solid var(--line-strong);
  padding-left: 16px;
}

.hero-proof dt {
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 790;
}

.hero-proof dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-media {
  position: relative;
  min-height: 620px;
  isolation: isolate;
}

.hero-media > img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: auto 28px -16px 28px;
  z-index: -1;
  height: 56px;
  border-radius: 999px;
  background: rgba(8, 46, 29, 0.18);
  filter: blur(22px);
}

.phone-preview {
  position: absolute;
  right: clamp(18px, 5vw, 58px);
  bottom: -28px;
  width: min(310px, 45%);
  min-width: 270px;
  border: 8px solid #111711;
  border-radius: 34px;
  background: var(--canvas);
  color: var(--app-text);
  box-shadow: 0 28px 70px rgba(8, 27, 14, 0.42);
  padding: 18px;
  overflow: hidden;
}

.phone-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(102deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 18px),
    radial-gradient(ellipse at 90% 10%, rgba(74, 222, 128, 0.12), transparent 48%);
  pointer-events: none;
}

.phone-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--app-subtle);
  font-size: 0.72rem;
  font-weight: 640;
  text-transform: uppercase;
}

.phone-top strong {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--growth-surface);
  border: 1px solid rgba(89, 191, 98, 0.22);
  color: #ffffff;
  font-size: 1.05rem;
  text-transform: none;
}

.phone-task {
  position: relative;
  margin-top: 18px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(8, 27, 14, 0.86);
  border: 1px solid var(--instrument-border);
  color: #ffffff;
}

.task-status {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--growth);
  font-size: 0.78rem;
  font-weight: 760;
}

.phone-task h2 {
  font-size: 1.28rem;
  line-height: 1.14;
}

.phone-task p {
  margin-top: 10px;
  color: var(--app-muted);
  font-size: 0.86rem;
  line-height: 1.42;
}

.phone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.phone-grid div {
  position: relative;
  border: 1px solid var(--instrument-border);
  border-radius: 16px;
  padding: 12px;
  background: rgba(245, 255, 247, 0.045);
}

.phone-grid span {
  display: block;
  color: var(--app-subtle);
  font-size: 0.72rem;
  font-weight: 720;
}

.phone-grid strong {
  display: block;
  margin-top: 4px;
  color: var(--app-text);
  font-size: 1rem;
}

.phone-plan {
  position: relative;
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.plan-row {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 10px;
  align-items: start;
  border-radius: 14px;
  padding: 11px;
  border: 1px solid var(--instrument-border);
  background: rgba(245, 255, 247, 0.035);
}

.plan-row > span {
  width: 9px;
  height: 9px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--growth-line);
}

.plan-row strong {
  display: block;
  color: var(--app-text);
  font-size: 0.76rem;
}

.plan-row p {
  margin-top: 2px;
  color: var(--app-muted);
  font-size: 0.74rem;
  line-height: 1.25;
}

.plan-later > span {
  background: var(--amber);
}

.workflow {
  background:
    radial-gradient(ellipse at 82% 10%, rgba(74, 222, 128, 0.1), transparent 40%),
    var(--app-background);
  color: var(--app-text);
  padding: 94px 0;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 64px;
  align-items: start;
}

.section-label {
  margin-bottom: 18px;
  color: var(--growth);
  font-size: 0.86rem;
  font-weight: 820;
  text-transform: uppercase;
}

.steps,
.recommendation-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.step-card,
.recommendation-list article,
.price-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
}

.step-card {
  min-height: 248px;
  padding: 24px;
  border-color: var(--instrument-border);
  background: rgba(245, 255, 247, 0.045);
}

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  border-radius: 50%;
  background: var(--growth-surface);
  border: 1px solid rgba(89, 191, 98, 0.22);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.88rem;
}

.step-card p,
.recommendation-copy p,
.recommendation-list p,
.pricing-copy p,
.coverage p,
.signal-copy p,
.faq-list p {
  margin-top: 12px;
  color: var(--muted);
}

.workflow .step-card p {
  color: var(--app-muted);
}

.workflow .step-card h3,
.workflow h2 {
  color: var(--app-text);
}

.signals {
  padding: 112px 0;
}

.signal-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  gap: 54px;
  align-items: center;
  padding: 54px;
  border-radius: var(--radius-xl);
  background:
    repeating-linear-gradient(102deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 20px),
    radial-gradient(ellipse at 100% 0%, rgba(116, 215, 255, 0.12), transparent 42%),
    var(--canvas-raised);
  color: var(--app-text);
}

.signal-copy p {
  max-width: 560px;
  color: var(--app-muted);
  font-size: 1.06rem;
}

.signal-board {
  display: grid;
  gap: 14px;
}

.signal-row {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 88px;
  padding: 16px;
  border: 1px solid var(--instrument-border);
  border-radius: var(--radius-md);
  background: rgba(245, 255, 247, 0.045);
}

.signal-row p {
  margin-top: 3px;
  color: var(--app-muted);
  font-size: 0.94rem;
}

.signal-row b {
  color: var(--growth);
}

.signal-icon,
.check-icon {
  display: inline-block;
  width: 42px;
  height: 42px;
  border-radius: 14px;
}

.signal-icon.rain {
  background: radial-gradient(circle at 50% 32%, var(--water) 0 4px, transparent 5px), rgba(116, 215, 255, 0.08);
  border: 1px solid rgba(116, 215, 255, 0.16);
}

.signal-icon.soil {
  background: radial-gradient(circle at 50% 50%, var(--growth) 0 6px, transparent 7px), var(--growth-surface);
  border: 1px solid rgba(89, 191, 98, 0.18);
}

.signal-icon.heat {
  background: radial-gradient(circle at 50% 50%, var(--action) 0 7px, transparent 8px), rgba(255, 173, 143, 0.1);
  border: 1px solid rgba(255, 173, 143, 0.22);
}

.recommendations {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 54px;
  align-items: start;
  padding: 20px 0 112px;
}

.recommendation-list article {
  padding: 24px;
}

.check-icon {
  position: relative;
  margin-bottom: 42px;
  background: var(--green-deep);
}

.check-icon::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 12px;
  width: 14px;
  height: 8px;
  border-left: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  transform: rotate(-45deg);
}

.coverage {
  padding: 94px 0;
  background: var(--green-deep);
  color: #ffffff;
}

.coverage-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 64px;
  align-items: center;
}

.coverage .section-label,
.coverage p {
  color: #d6e7dc;
}

.region-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.region-list span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-weight: 720;
}

.pricing {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) 360px;
  gap: 54px;
  align-items: center;
  padding: 112px 0;
}

.price-card {
  display: grid;
  gap: 26px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.price-card strong {
  display: block;
  font-size: 3.1rem;
  line-height: 1;
  color: var(--green);
}

.price-card .button {
  width: 100%;
}

.faq {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 54px;
  align-items: start;
  padding-bottom: 112px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 780;
}

.faq-list summary::marker {
  color: var(--green);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 640;
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-links,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-header.is-open .nav-links {
    position: fixed;
    left: 24px;
    right: 24px;
    top: 76px;
    display: grid;
    justify-items: start;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .site-header.is-open .nav-links a {
    width: 100%;
    padding: 16px;
  }

  .hero,
  .section-grid,
  .signal-panel,
  .recommendations,
  .coverage-inner,
  .pricing,
  .faq {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 36px;
    min-height: auto;
    padding-top: 42px;
  }

  .hero-media {
    min-height: 520px;
  }

  .hero-media > img {
    height: 520px;
  }

  .phone-preview {
    right: 22px;
    width: 300px;
  }

  .steps,
  .recommendation-list {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: auto;
  }

  .step-card span,
  .check-icon {
    margin-bottom: 22px;
  }

  .signal-panel {
    padding: 34px;
  }

  .pricing {
    align-items: stretch;
  }
}

@media (max-width: 620px) {
  .section-shell,
  .site-header {
    width: min(100% - 32px, 1180px);
  }

  .site-header.is-open .nav-links {
    left: 16px;
    right: 16px;
  }

  .hero {
    padding-bottom: 58px;
  }

  h1 {
    font-size: clamp(4rem, 23vw, 6.2rem);
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-media {
    min-height: 430px;
  }

  .hero-media > img {
    height: 430px;
    border-radius: 24px;
  }

  .phone-preview {
    left: 16px;
    right: auto;
    bottom: -38px;
    width: calc(100% - 32px);
    min-width: 0;
    border-width: 7px;
    border-radius: 30px;
  }

  .workflow,
  .signals,
  .coverage,
  .pricing {
    padding: 76px 0;
  }

  .recommendations {
    padding-bottom: 76px;
  }

  .signal-panel {
    padding: 26px;
    border-radius: 24px;
  }

  .signal-row {
    grid-template-columns: 42px 1fr;
  }

  .signal-row b {
    grid-column: 2;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
