:root {
  --green: #5ba17a;
  --green-deep: #3f8159;
  --green-soft: #b8dbc0;
  --green-pale: #e5f0e7;
  --coral: #ff7a6b;
  --coral-soft: #ffd4bc;
  --honey: #f4c95d;
  --sky: #a8d5e8;
  --petal: #f5c7d8;
  --cream: #fbfaf7;
  --white: #ffffff;
  --bone: #f5f1e8;
  --linen: #ece6d6;
  --ink: #1f2d24;
  --muted: #4a5b50;
  --muted-light: #8b9a8e;
  --deep: var(--green-deep);
  --night: var(--ink);
  --sage: var(--green-soft);
  --moss: var(--green);
  --terracotta: var(--coral);
  --line: rgba(31, 45, 36, 0.1);
  --shadow: 0 18px 60px rgba(31, 45, 36, 0.12);
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

button,
input {
  font: inherit;
}

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

.site-shell {
  min-height: 100vh;
  overflow: clip;
}

.topbar {
  position: fixed;
  z-index: 50;
  top: 14px;
  left: 50%;
  width: min(1120px, calc(100% - 28px));
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px 0 18px;
  color: var(--cream);
  background: rgba(23, 39, 32, 0.78);
  border: 1px solid rgba(250, 246, 238, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: box-shadow 220ms var(--ease), background 220ms var(--ease);
}

.topbar.is-elevated {
  background: rgba(23, 39, 32, 0.9);
  box-shadow: 0 16px 48px rgba(23, 39, 32, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
}

.brand-logo {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}

.brand-mark {
  position: relative;
  width: 28px;
  height: 28px;
  display: inline-block;
  background: var(--cream);
  border-radius: 8px;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  top: 7px;
  width: 11px;
  height: 17px;
  background: var(--deep);
  border-radius: 999px 999px 2px 999px;
  transform-origin: bottom center;
}

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

.brand-mark::after {
  right: 5px;
  transform: rotate(35deg);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(250, 246, 238, 0.78);
  font-size: 0.92rem;
}

.desktop-nav a {
  transition: color 180ms var(--ease);
}

.desktop-nav a:hover {
  color: var(--cream);
}

.nav-cta {
  min-width: 104px;
  padding: 11px 18px;
  color: var(--night);
  text-align: center;
  font-weight: 750;
  background: var(--honey);
  border-radius: 999px;
}

.section-band {
  position: relative;
  padding: 116px max(22px, calc((100vw - 1120px) / 2));
}

.hero {
  min-height: 86svh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: 56px;
  align-items: center;
  color: var(--cream);
  background:
    linear-gradient(110deg, rgba(23, 39, 32, 0.98), rgba(33, 79, 55, 0.92)),
    var(--night);
}

.garden-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.68;
}

.hero-copy,
.hero-stage {
  position: relative;
  z-index: 2;
}

.kicker {
  margin: 0 0 12px;
  color: var(--terracotta);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .kicker {
  color: var(--honey);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.95;
  letter-spacing: 0;
  font-family:
    Fraunces, Georgia, "Times New Roman", serif;
  font-weight: 650;
}

h1 {
  font-size: clamp(4rem, 13vw, 9.5rem);
  font-style: italic;
}

h2 {
  max-width: 780px;
  font-size: clamp(2.2rem, 6vw, 5.2rem);
}

h3 {
  font-size: clamp(1.45rem, 3.2vw, 2.4rem);
}

.hero-tagline {
  margin: 10px 0 0;
  color: var(--sage);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 700;
}

.hero-text {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(250, 246, 238, 0.78);
  font-size: 1.1rem;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 180ms var(--ease),
    border-color 180ms var(--ease),
    background 180ms var(--ease);
}

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

.button.primary {
  color: var(--cream);
  background: var(--terracotta);
  box-shadow: 0 12px 34px rgba(201, 123, 92, 0.28);
}

.button.secondary {
  color: var(--cream);
  border-color: rgba(250, 246, 238, 0.28);
  background: rgba(250, 246, 238, 0.08);
}

.full {
  width: 100%;
}

.hero-stage {
  min-height: 620px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.screen-stack {
  position: relative;
  width: min(390px, 86vw);
  height: 620px;
  transform: rotateY(-10deg) rotateX(5deg);
  transform-style: preserve-3d;
  transition: transform 260ms var(--ease);
}

.app-shot {
  display: block;
  width: 100%;
  height: auto;
  border: 10px solid rgba(250, 246, 238, 0.22);
  border-radius: 42px;
  background: var(--cream);
  box-shadow:
    0 36px 110px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(33, 79, 55, 0.16);
}

.main-shot {
  position: relative;
  z-index: 3;
}

.side-shot {
  position: absolute;
  z-index: 1;
  top: 54px;
  width: 76%;
  opacity: 0.86;
  filter: saturate(0.95);
}

.side-a {
  left: -126px;
  transform: translateZ(-80px) rotate(-8deg);
}

.side-b {
  right: -126px;
  transform: translateZ(-80px) rotate(8deg);
}

.phone {
  position: relative;
  width: min(360px, 86vw);
  min-height: 586px;
  padding: 18px;
  color: var(--ink);
  background: linear-gradient(180deg, var(--cream), #e9f0de);
  border: 10px solid rgba(250, 246, 238, 0.22);
  border-radius: 42px;
  box-shadow:
    0 36px 110px rgba(0, 0, 0, 0.36),
    inset 0 0 0 1px rgba(33, 79, 55, 0.16);
  transform: rotateY(-10deg) rotateX(5deg);
  transition: transform 260ms var(--ease);
}

.phone-top,
.panel-topline,
.timeline-caption,
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.phone-top {
  font-size: 0.9rem;
  font-weight: 800;
}

.signal {
  min-width: 42px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--cream);
  background: var(--deep);
  border-radius: 999px;
}

.plant-portrait {
  position: relative;
  height: 258px;
  display: grid;
  place-items: center;
  margin: 22px 0 16px;
  background:
    radial-gradient(circle at 50% 70%, rgba(164, 197, 212, 0.62), transparent 34%),
    linear-gradient(140deg, rgba(168, 201, 161, 0.7), rgba(241, 235, 224, 0.9));
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
}

.health-ring {
  position: absolute;
  width: 176px;
  height: 176px;
  border-radius: 50%;
  background:
    conic-gradient(var(--sage) 0 78%, var(--honey) 78% 88%, rgba(33, 79, 55, 0.12) 88%),
    var(--bone);
  animation: pulseRing 3.8s var(--ease) infinite;
}

.health-ring::after {
  content: "";
  position: absolute;
  inset: 12px;
  background: var(--cream);
  border-radius: inherit;
}

.plant-art,
.scan-plant,
.timeline-visual {
  position: relative;
}

.plant-art {
  z-index: 1;
  width: 180px;
  height: 210px;
}

.stem,
.scan-stem,
.growth-stem {
  position: absolute;
  left: 50%;
  bottom: 20px;
  width: 8px;
  height: 142px;
  background: linear-gradient(var(--moss), var(--deep));
  border-radius: 999px;
  transform: translateX(-50%);
}

.leaf,
.scan-leaf,
.growth-leaf {
  position: absolute;
  display: block;
  background: linear-gradient(140deg, var(--sage), var(--deep));
  border-radius: 999px 999px 4px 999px;
  box-shadow: inset -8px -10px 24px rgba(23, 39, 32, 0.16);
}

.leaf-a {
  width: 72px;
  height: 110px;
  left: 16px;
  top: 24px;
  transform: rotate(-45deg);
}

.leaf-b {
  width: 62px;
  height: 102px;
  right: 20px;
  top: 38px;
  transform: rotate(42deg) scaleX(-1);
}

.leaf-c {
  width: 52px;
  height: 82px;
  left: 44px;
  top: 102px;
  transform: rotate(-70deg);
}

.leaf-d {
  width: 54px;
  height: 86px;
  right: 42px;
  top: 112px;
  transform: rotate(63deg) scaleX(-1);
}

.plant-summary {
  display: grid;
  gap: 2px;
}

.plant-name {
  font-family: Fraunces, Georgia, serif;
  font-size: 2.05rem;
  font-style: italic;
  font-weight: 700;
}

.plant-species {
  color: var(--muted);
  font-size: 0.92rem;
}

.ritual-stack {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.ritual-item {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid var(--line);
  border-radius: 18px;
  font-weight: 650;
}

.ritual-item.done {
  background: rgba(168, 201, 161, 0.3);
}

.ritual-icon,
.feature-glyph {
  position: relative;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: inline-block;
  border-radius: 10px;
}

.ritual-icon.water,
.feature-glyph.ritual {
  background: var(--sky);
}

.ritual-icon.scan,
.feature-glyph.identify {
  background: var(--terracotta);
}

.ritual-icon.sun,
.feature-glyph.growth {
  background: var(--honey);
}

.feature-glyph.diagnose {
  background: var(--petal);
}

.ritual-icon::after,
.feature-glyph::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px solid rgba(23, 39, 32, 0.72);
  border-radius: 50% 50% 50% 8px;
  transform: rotate(45deg);
}

.floating-note {
  position: absolute;
  z-index: 4;
  width: 168px;
  display: grid;
  gap: 3px;
  padding: 14px;
  color: var(--night);
  background: rgba(250, 246, 238, 0.92);
  border: 1px solid rgba(250, 246, 238, 0.5);
  border-radius: 18px;
  box-shadow: var(--shadow);
  animation: float 5s var(--ease) infinite;
}

.screen-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
  margin-top: 22px;
}

.screen-gallery img,
.module-shot {
  display: block;
  width: 100%;
  border: 8px solid rgba(255, 255, 255, 0.82);
  border-radius: 32px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.note-a {
  top: 120px;
  left: 0;
}

.note-b {
  right: 8px;
  bottom: 96px;
  animation-delay: -1.8s;
}

.note-value {
  color: var(--deep);
  font-weight: 900;
  font-size: 1.3rem;
}

.floating-note span:last-child {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-next {
  position: absolute;
  z-index: 3;
  bottom: -28px;
  left: 50%;
  width: min(220px, 55vw);
  height: 56px;
  background: var(--cream);
  border-radius: 999px 999px 0 0;
  transform: translateX(-50%);
}

.hero-next span {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 42px;
  height: 4px;
  background: var(--sage);
  border-radius: 999px;
  transform: translateX(-50%);
}

.section-heading {
  display: grid;
  gap: 4px;
  margin-bottom: 46px;
}

.product-band {
  background: var(--cream);
}

.feature-grid,
.saas-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.metric-card,
.price-card,
.diagnosis-panel,
.scanner-panel,
.tab-shell,
.timeline-card,
.calculator,
details,
.waitlist-inner {
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 12px 42px rgba(33, 79, 55, 0.08);
}

.feature-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  background: var(--bone);
}

.feature-card h3 {
  margin-top: 34px;
  font-size: 1.6rem;
}

.feature-card p,
.diagnosis-panel p,
.tab-content p,
.price-card p,
details p,
.metric-card p {
  color: var(--muted);
}

.demo-band {
  color: var(--cream);
  background: linear-gradient(140deg, var(--night), #2b4938 58%, #704335);
}

.demo-band .section-heading h2,
.lab-band .section-heading h2 {
  color: var(--cream);
}

.scanner-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  gap: 18px;
  align-items: stretch;
}

.scanner-panel,
.diagnosis-panel {
  padding: 18px;
  background: rgba(250, 246, 238, 0.1);
  border-color: rgba(250, 246, 238, 0.2);
  backdrop-filter: blur(14px);
}

.scan-window {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 70%, rgba(164, 197, 212, 0.28), transparent 28%),
    linear-gradient(145deg, rgba(250, 246, 238, 0.13), rgba(168, 201, 161, 0.16));
  border: 1px solid rgba(250, 246, 238, 0.18);
  border-radius: 20px;
}

.app-result-window {
  min-height: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 212, 188, 0.2), transparent 44%),
    rgba(250, 246, 238, 0.1);
}

.app-result-window img {
  width: min(330px, 100%);
  border: 8px solid rgba(250, 246, 238, 0.18);
  border-radius: 34px;
  box-shadow: 0 22px 72px rgba(0, 0, 0, 0.28);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
}

.scan-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(250, 246, 238, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250, 246, 238, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
}

.scan-beam {
  position: absolute;
  z-index: 3;
  inset: 0 0 auto;
  height: 90px;
  background: linear-gradient(180deg, transparent, rgba(229, 181, 103, 0.35), transparent);
  animation: scan 3.8s var(--ease) infinite;
}

.scan-plant {
  position: absolute;
  left: 50%;
  bottom: 38px;
  width: 260px;
  height: 320px;
  transform: translateX(-50%);
  transition: transform 240ms var(--ease);
}

.scan-pot {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 130px;
  height: 86px;
  background: linear-gradient(135deg, #d5906e, var(--terracotta));
  border-radius: 0 0 28px 28px;
  transform: translateX(-50%);
}

.scan-pot::before {
  content: "";
  position: absolute;
  top: -16px;
  left: -12px;
  width: 154px;
  height: 28px;
  background: #e3a17e;
  border-radius: 999px;
}

.scan-stem {
  height: 218px;
  bottom: 70px;
}

.scan-leaf.one {
  width: 96px;
  height: 146px;
  left: 34px;
  top: 26px;
  transform: rotate(-42deg);
}

.scan-leaf.two {
  width: 92px;
  height: 138px;
  right: 38px;
  top: 54px;
  transform: rotate(44deg) scaleX(-1);
}

.scan-leaf.three {
  width: 74px;
  height: 112px;
  left: 94px;
  top: 0;
  transform: rotate(7deg);
}

.scan-lock {
  position: absolute;
  z-index: 4;
  top: 22px;
  right: 22px;
  width: 112px;
  display: grid;
  place-items: center;
  padding: 12px;
  color: var(--night);
  background: rgba(250, 246, 238, 0.9);
  border-radius: 18px;
}

.scan-lock span:first-child {
  font-size: 1.55rem;
  font-weight: 950;
}

.scan-lock span:last-child {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.scan-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.chip,
.tab,
.billing-toggle button {
  min-height: 42px;
  padding: 0 16px;
  color: var(--cream);
  background: rgba(250, 246, 238, 0.1);
  border: 1px solid rgba(250, 246, 238, 0.18);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}

.chip.active,
.tab.active,
.billing-toggle button.active {
  color: var(--night);
  background: var(--honey);
}

.diagnosis-panel {
  display: flex;
  flex-direction: column;
  color: var(--cream);
}

.panel-topline {
  color: rgba(250, 246, 238, 0.72);
  font-size: 0.85rem;
  font-weight: 800;
}

.diagnosis-panel h3 {
  margin-top: 38px;
}

.diagnosis-panel p {
  color: rgba(250, 246, 238, 0.72);
}

.care-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: auto 0 18px;
}

.care-metrics div {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 12px;
  background: rgba(250, 246, 238, 0.1);
  border: 1px solid rgba(250, 246, 238, 0.12);
  border-radius: 16px;
}

.care-metrics span {
  color: rgba(250, 246, 238, 0.64);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.care-metrics strong {
  overflow-wrap: anywhere;
}

.result-json {
  min-height: 118px;
  margin: 0 0 18px;
  padding: 14px;
  overflow: auto;
  color: rgba(250, 246, 238, 0.86);
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(250, 246, 238, 0.12);
  border-radius: 16px;
  font-size: 0.8rem;
  line-height: 1.45;
}

.care-toast,
.form-message {
  min-height: 26px;
  margin: 14px 0 0;
  font-weight: 800;
}

.lab-band {
  background:
    linear-gradient(180deg, rgba(33, 79, 55, 0.92), rgba(23, 39, 32, 0.98)),
    var(--deep);
}

.lab-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
}

.tab-shell,
.timeline-card {
  padding: 18px;
  color: var(--cream);
  background: rgba(250, 246, 238, 0.08);
  border-color: rgba(250, 246, 238, 0.16);
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tab-content {
  padding: 70px 10px 10px;
}

.tab-content p {
  max-width: 640px;
  color: rgba(250, 246, 238, 0.72);
}

.timeline-card {
  display: grid;
  gap: 18px;
}

.timeline-card .module-shot {
  max-height: 420px;
  object-fit: cover;
  object-position: top;
  border-color: rgba(250, 246, 238, 0.18);
}

.timeline-visual {
  height: 310px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(250, 246, 238, 0.1), rgba(164, 197, 212, 0.16));
  border: 1px solid rgba(250, 246, 238, 0.14);
  border-radius: 20px;
}

.growth-stem {
  height: var(--growth-height, 170px);
  bottom: 26px;
  transition: height 260ms var(--ease);
}

.growth-leaf {
  left: 50%;
  bottom: calc(var(--growth-height, 170px) * 0.58);
  opacity: var(--growth-opacity, 0.8);
  transition:
    width 260ms var(--ease),
    height 260ms var(--ease),
    bottom 260ms var(--ease),
    opacity 260ms var(--ease);
}

.growth-leaf.l1 {
  width: var(--leaf-size, 70px);
  height: calc(var(--leaf-size, 70px) * 1.45);
  transform: translateX(-86%) rotate(-44deg);
}

.growth-leaf.l2 {
  width: calc(var(--leaf-size, 70px) * 0.9);
  height: calc(var(--leaf-size, 70px) * 1.32);
  transform: translateX(2%) rotate(44deg) scaleX(-1);
}

.growth-leaf.l3 {
  bottom: calc(var(--growth-height, 170px) * 0.82);
  width: calc(var(--leaf-size, 70px) * 0.65);
  height: calc(var(--leaf-size, 70px) * 0.98);
  transform: translateX(-42%) rotate(5deg);
}

input[type="range"] {
  width: 100%;
  accent-color: var(--honey);
}

.saas-band {
  background: linear-gradient(180deg, var(--cream), #eef5e8);
}

.categories-band {
  background:
    radial-gradient(ellipse 70% 45% at 100% 10%, rgba(168, 213, 232, 0.28), transparent 64%),
    var(--cream);
}

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

.care-category {
  min-height: 220px;
  display: grid;
  align-content: space-between;
  gap: 22px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 12px 42px rgba(31, 45, 36, 0.08);
}

.care-category span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 999px;
  font-weight: 900;
}

.care-category h3 {
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
}

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

.saas-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric-card {
  min-height: 210px;
  padding: 24px;
  background: var(--bone);
}

.metric-card span,
.price-card .plan-name {
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.metric-card strong {
  display: block;
  margin: 24px 0 12px;
  color: var(--deep);
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  line-height: 0.85;
  font-family: Fraunces, Georgia, serif;
}

.calculator {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 0.7fr;
  gap: 20px;
  align-items: center;
  margin-top: 18px;
  padding: 24px;
  background: var(--night);
  color: var(--cream);
}

.calculator h3 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.calc-control label {
  display: block;
  margin-bottom: 10px;
  color: rgba(250, 246, 238, 0.72);
  font-weight: 800;
}

.calc-result {
  display: grid;
  gap: 6px;
  justify-items: end;
}

.calc-result span {
  color: var(--sage);
  font-weight: 800;
}

.calc-result strong {
  color: var(--honey);
  font-size: 1.65rem;
}

.pricing-band {
  background: var(--bone);
}

.billing-toggle {
  width: max-content;
  display: flex;
  gap: 8px;
  padding: 6px;
  margin: -20px 0 28px;
  background: var(--night);
  border-radius: 999px;
}

.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.price-card {
  display: grid;
  gap: 18px;
  padding: 28px;
  background: var(--cream);
}

.price-card.featured {
  color: var(--cream);
  background: var(--deep);
  border-color: rgba(250, 246, 238, 0.2);
}

.price-card strong {
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  line-height: 0.88;
  font-family: Fraunces, Georgia, serif;
}

.price-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 4px 0 10px;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 28px;
  font-weight: 700;
}

.price-card li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 2px;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--terracotta);
  border-bottom: 3px solid var(--terracotta);
  transform: rotate(-45deg);
}

.price-card.featured p {
  color: rgba(250, 246, 238, 0.72);
}

.price-card:not(.featured) .button.secondary {
  color: var(--deep);
  background: rgba(33, 79, 55, 0.08);
  border-color: var(--line);
}

.price-note {
  font-size: 0.78rem;
  color: rgba(33, 79, 55, 0.6);
  margin: -4px 0 0;
}
.price-card.featured .price-note {
  color: rgba(250, 246, 238, 0.6);
}

.billing-badge {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 6px;
  background: var(--honey);
  color: var(--deep);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.trust-band {
  background: linear-gradient(180deg, var(--bone), var(--cream));
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.trust-card {
  padding: 22px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 22px;
  display: grid;
  gap: 8px;
}

.trust-card h3 {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--deep);
  margin: 0;
}

.trust-card p {
  font-size: 0.92rem;
  color: rgba(33, 79, 55, 0.74);
  margin: 0;
  line-height: 1.5;
}

.faq-band {
  background: var(--cream);
}

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

details {
  padding: 20px 22px;
  background: var(--bone);
}

summary {
  cursor: pointer;
  color: var(--deep);
  font-weight: 900;
}

.waitlist-band {
  background: linear-gradient(140deg, var(--sky), var(--petal) 46%, var(--honey));
}

.waitlist-inner {
  max-width: 790px;
  margin: 0 auto;
  padding: 48px;
  color: var(--cream);
  background: rgba(23, 39, 32, 0.84);
  border-color: rgba(250, 246, 238, 0.18);
  text-align: center;
}

.waitlist-inner h2 {
  margin: 0 auto;
}

.waitlist-form {
  display: flex;
  gap: 10px;
  margin: 32px auto 0;
  max-width: 560px;
}

.waitlist-form input {
  min-width: 0;
  flex: 1;
  height: 54px;
  padding: 0 18px;
  color: var(--cream);
  background: rgba(250, 246, 238, 0.1);
  border: 1px solid rgba(250, 246, 238, 0.22);
  border-radius: 999px;
  outline: none;
}

.waitlist-form input::placeholder {
  color: rgba(250, 246, 238, 0.58);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.footer {
  min-height: 76px;
  padding: 0 max(22px, calc((100vw - 1120px) / 2));
  color: var(--cream);
  background: var(--night);
}

.footer span:first-child {
  font-family: Fraunces, Georgia, serif;
  font-style: italic;
  font-size: 1.45rem;
  font-weight: 750;
}

.blog-hero {
  padding-top: 138px;
  background:
    radial-gradient(ellipse 60% 42% at 0% 0%, rgba(184, 219, 192, 0.52), transparent 62%),
    radial-gradient(ellipse 48% 38% at 100% 24%, rgba(245, 199, 216, 0.34), transparent 64%),
    var(--cream);
}

.blog-hero h1 {
  max-width: 980px;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
}

.blog-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.15rem;
}

.blog-section {
  padding-top: 40px;
}

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.blog-filters span {
  padding: 10px 14px;
  color: var(--green-deep);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 850;
}

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

.article-card {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 12px 42px rgba(31, 45, 36, 0.08);
}

.article-card span {
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-card h2,
.article-card h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.05;
}

.article-card h2 a,
.article-card h3 a {
  text-decoration: none;
}

.article-card h2 a:hover,
.article-card h3 a:hover {
  color: var(--green-deep);
}

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

.article-body {
  display: grid;
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.article-body p {
  font-size: 0.95rem;
  line-height: 1.55;
}

.featured-article {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(229, 240, 231, 0.92), rgba(255, 255, 255, 0.84));
}

.article-page {
  background: var(--cream);
}

.article-hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 42px;
  align-items: center;
  padding-top: 132px;
  background:
    radial-gradient(ellipse 60% 42% at 0% 0%, rgba(184, 219, 192, 0.52), transparent 62%),
    radial-gradient(ellipse 48% 38% at 100% 24%, rgba(245, 199, 216, 0.34), transparent 64%),
    var(--cream);
}

.article-hero-copy {
  display: grid;
  gap: 18px;
}

.article-hero h1 {
  max-width: 920px;
  font-size: clamp(3rem, 7vw, 6.1rem);
}

.article-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.13rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.article-meta span {
  padding: 9px 12px;
  color: var(--green-deep);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 850;
}

.article-illo {
  position: relative;
  min-height: 450px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.article-illo::before,
.article-illo::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.article-illo::before {
  width: 230px;
  height: 230px;
  right: -58px;
  top: -42px;
  background: var(--green-pale);
}

.article-illo::after {
  width: 190px;
  height: 190px;
  left: -48px;
  bottom: -38px;
  background: var(--coral-soft);
  opacity: 0.55;
}

.illo-pot {
  position: absolute;
  left: 50%;
  bottom: 48px;
  width: 150px;
  height: 105px;
  background: var(--coral);
  border-radius: 0 0 34px 34px;
  transform: translateX(-50%);
  z-index: 3;
}

.illo-pot::before {
  content: "";
  position: absolute;
  top: -18px;
  left: -16px;
  width: 182px;
  height: 32px;
  background: #ff9b8f;
  border-radius: 999px;
}

.illo-stem {
  position: absolute;
  left: 50%;
  bottom: 138px;
  width: 10px;
  height: 210px;
  background: var(--green-deep);
  border-radius: 999px;
  transform: translateX(-50%);
  z-index: 2;
}

.illo-leaf {
  position: absolute;
  z-index: 2;
  width: 94px;
  height: 150px;
  background: linear-gradient(135deg, var(--green-soft), var(--green-deep));
  border-radius: 999px 999px 8px 999px;
}

.illo-leaf.a {
  left: 112px;
  top: 130px;
  transform: rotate(-42deg);
}

.illo-leaf.b {
  right: 112px;
  top: 152px;
  transform: rotate(42deg) scaleX(-1);
}

.illo-leaf.c {
  left: 165px;
  top: 78px;
  width: 76px;
  height: 122px;
  transform: rotate(8deg);
}

.illo-badge {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 4px;
  min-width: 138px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.illo-badge strong {
  font-size: 1.35rem;
}

.illo-badge span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.illo-badge.one {
  left: 28px;
  top: 34px;
}

.illo-badge.two {
  right: 28px;
  bottom: 34px;
}

.article-content {
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(260px, 340px);
  gap: 44px;
  align-items: start;
}

.article-main {
  display: grid;
  gap: 34px;
}

.article-block {
  padding: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 12px 42px rgba(31, 45, 36, 0.07);
}

.article-block h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  margin-bottom: 16px;
}

.article-block h3 {
  margin: 22px 0 10px;
  font-size: 1.35rem;
}

.article-block p,
.article-block li {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.72;
}

.article-block ul,
.article-block ol {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.article-callout {
  padding: 20px;
  color: var(--ink);
  background: var(--green-pale);
  border: 1px solid rgba(91, 161, 122, 0.28);
  border-radius: 22px;
}

.article-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
}

.sidebar-card {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.sidebar-card h3 {
  font-size: 1.35rem;
}

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

.sidebar-card ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
}

.article-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 8px;
}

.article-nav a {
  padding: 10px 13px;
  color: var(--green-deep);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 850;
}

.reveal {
  opacity: 0;
  transform: translateY(22px) scale(0.98);
  transition:
    opacity 600ms var(--ease),
    transform 600ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes pulseRing {
  50% {
    transform: scale(1.04);
  }
}

@keyframes float {
  50% {
    transform: translateY(-14px) rotate(1deg);
  }
}

@keyframes scan {
  0%,
  100% {
    transform: translateY(-90px);
  }
  50% {
    transform: translateY(430px);
  }
}

@media (max-width: 940px) {
  .desktop-nav {
    display: none;
  }

  .hero,
  .article-hero,
  .article-content,
  .scanner-layout,
  .lab-grid,
  .calculator {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
    gap: 30px;
  }

  .hero-stage {
    min-height: 560px;
  }

  .feature-grid,
  .saas-grid,
  .care-category-grid,
  .article-grid,
  .screen-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .calc-result {
    justify-items: start;
  }

  .article-sidebar {
    position: static;
  }
}

@media (max-width: 660px) {
  .topbar {
    top: 10px;
    width: calc(100% - 20px);
    padding-left: 14px;
  }

  .nav-cta {
    min-width: 88px;
    padding-inline: 14px;
  }

  .section-band {
    padding: 88px 18px;
  }

  .hero {
    padding-top: 104px;
  }

  .hero-actions,
  .waitlist-form {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-stage {
    min-height: 390px;
    margin-inline: -8px;
  }

  .phone {
    width: min(328px, 92vw);
    min-height: 552px;
    border-radius: 34px;
    transform: rotateY(-5deg) rotateX(3deg);
  }

  .screen-stack {
    width: min(238px, 64vw);
    height: 390px;
    transform: rotateY(-4deg) rotateX(3deg);
  }

  .app-shot {
    border-width: 6px;
    border-radius: 30px;
  }

  .side-shot {
    top: 62px;
    width: 64%;
  }

  .side-a {
    left: -64px;
  }

  .side-b {
    right: -64px;
  }

  .floating-note {
    width: 138px;
    padding: 12px;
  }

  .note-a {
    top: 52px;
    left: 4px;
  }

  .note-b {
    right: 2px;
    bottom: 40px;
  }

  .feature-grid,
  .saas-grid,
  .care-category-grid,
  .article-grid,
  .pricing-grid,
  .screen-gallery {
    grid-template-columns: 1fr;
  }

  .featured-article {
    grid-column: span 1;
  }

  .care-metrics {
    grid-template-columns: 1fr;
  }

  .scan-window {
    min-height: 380px;
  }

  .scan-plant {
    width: 220px;
    height: 285px;
  }

  .tab-content {
    padding-top: 42px;
  }

  .billing-toggle {
    width: 100%;
  }

  .billing-toggle button {
    flex: 1;
  }

  .waitlist-inner {
    padding: 30px 18px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .article-hero {
    min-height: auto;
    padding-top: 112px;
    gap: 28px;
  }

  .article-hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.5rem);
  }

  .article-illo {
    min-height: 360px;
  }

  .illo-leaf.a {
    left: 72px;
  }

  .illo-leaf.b {
    right: 72px;
  }

  .illo-leaf.c {
    left: 132px;
  }

  .article-block {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* Plantypo app-aligned polish */
.topbar {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(31, 45, 36, 0.1);
  box-shadow: var(--shadow);
}

.topbar.is-elevated {
  background: rgba(255, 255, 255, 0.92);
}

.desktop-nav {
  color: var(--muted);
}

.desktop-nav a:hover {
  color: var(--ink);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-login {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
}

.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--coral);
}

.brand-mark {
  display: none;
}

.hero {
  color: var(--ink);
  background:
    radial-gradient(ellipse 60% 42% at 0% 0%, rgba(184, 219, 192, 0.52) 0%, transparent 62%),
    radial-gradient(ellipse 48% 38% at 100% 24%, rgba(245, 199, 216, 0.34) 0%, transparent 64%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(244, 201, 93, 0.18) 0%, transparent 60%),
    var(--cream);
}

.garden-canvas {
  opacity: 0.22;
}

h1,
h2,
h3,
.plant-name,
.metric-card strong,
.price-card strong,
.footer span:first-child {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-style: normal;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(4.2rem, 12vw, 8.4rem);
  font-weight: 900;
  line-height: 0.9;
}

h2 {
  max-width: 860px;
  font-size: clamp(2.4rem, 5.8vw, 4.8rem);
  font-weight: 900;
  line-height: 0.94;
  overflow-wrap: anywhere;
}

h3 {
  font-weight: 900;
  line-height: 1.02;
}

.hero .kicker,
.kicker {
  color: var(--green-deep);
}

.hero-tagline {
  color: var(--green-deep);
}

.hero-text {
  color: var(--muted);
}

.button.primary {
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 10px 28px rgba(255, 122, 107, 0.26);
}

.button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.app-shot,
.screen-gallery img,
.module-shot {
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 20px 60px rgba(31, 45, 36, 0.14);
}

.floating-note {
  background: rgba(255, 255, 255, 0.9);
}

.product-band,
.saas-band,
.faq-band {
  background: var(--cream);
}

.feature-card,
.metric-card,
details {
  background: rgba(255, 255, 255, 0.72);
}

.feature-card h3 {
  font-size: clamp(1.45rem, 2vw, 1.9rem);
}

.feature-card p,
.metric-card p,
.price-card p,
details p {
  color: var(--muted);
}

.demo-band,
.lab-band {
  color: var(--ink);
  background:
    radial-gradient(ellipse 75% 48% at 0% 0%, rgba(184, 219, 192, 0.44) 0%, transparent 66%),
    radial-gradient(ellipse 48% 42% at 100% 20%, rgba(168, 213, 232, 0.32) 0%, transparent 62%),
    var(--cream);
}

.demo-band .section-heading h2,
.lab-band .section-heading h2 {
  color: var(--ink);
}

.scanner-panel,
.diagnosis-panel,
.tab-shell,
.timeline-card {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}

.app-result-window {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 212, 188, 0.32), transparent 45%),
    var(--green-pale);
  border-color: var(--line);
}

.scan-lock {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px rgba(31, 45, 36, 0.12);
}

.chip,
.tab,
.billing-toggle button {
  color: var(--muted);
  background: var(--white);
  border-color: var(--line);
}

.chip.active,
.tab.active,
.billing-toggle button.active {
  color: var(--white);
  background: var(--green);
}

.panel-topline,
.diagnosis-panel p,
.tab-content p,
.care-metrics span {
  color: var(--muted);
}

.diagnosis-panel h3 {
  margin-top: 26px;
}

.care-metrics {
  margin: 22px 0 16px;
}

.care-metrics div {
  background: var(--cream);
  border-color: var(--line);
}

.care-metrics strong {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.15;
}

.result-json {
  display: none;
}

.result-flow {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
}

.flow-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 3px 12px;
  align-items: center;
  padding: 13px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.flow-step span {
  grid-row: span 2;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--green-deep);
  background: var(--green-pale);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
}

.flow-step strong,
.flow-step p {
  min-width: 0;
}

.flow-step strong {
  font-size: 0.95rem;
  line-height: 1.1;
}

.flow-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.25;
}

.flow-step.is-active {
  border-color: rgba(91, 161, 122, 0.45);
  background: var(--green-pale);
}

.flow-step.is-done span {
  color: var(--white);
  background: var(--green);
}

.tab-content {
  padding-top: 46px;
}

.pricing-band {
  background: var(--bone);
}

.calculator {
  color: var(--ink);
  background: var(--white);
}

.calc-control label,
.calc-result span {
  color: var(--muted);
}

.calc-result strong {
  color: var(--green-deep);
}

.billing-toggle {
  background: var(--white);
  border: 1px solid var(--line);
}

.price-card {
  background: var(--white);
}

.price-card.featured {
  color: var(--white);
  background: var(--green-deep);
}

.waitlist-inner {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
}

.waitlist-form input {
  color: var(--ink);
  background: var(--cream);
  border-color: var(--line);
}

.waitlist-form input::placeholder {
  color: var(--muted-light);
}

.footer {
  color: var(--ink);
  background: var(--white);
  border-top: 1px solid var(--line);
}

@media (max-width: 660px) {
  h1 {
    font-size: clamp(3.4rem, 18vw, 5.4rem);
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
  }

  .nav-login {
    display: none;
  }

  .scanner-layout {
    gap: 14px;
  }

  .app-result-window {
    padding: 12px;
  }

  .app-result-window img {
    width: min(270px, 100%);
    border-width: 6px;
    border-radius: 28px;
  }

  .scan-lock {
    top: 14px;
    right: 14px;
    width: 92px;
    padding: 9px;
  }

  .scan-lock span:first-child {
    font-size: 1.22rem;
  }

  .scan-lock span:last-child {
    font-size: 0.62rem;
  }

  .care-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .care-metrics div {
    min-height: 76px;
    padding: 10px;
  }

  .care-metrics span {
    font-size: 0.66rem;
  }

  .care-metrics strong {
    font-size: 0.9rem;
  }

  .flow-step {
    grid-template-columns: 36px 1fr;
    padding: 11px;
  }
}
