:root {
  --lp-color-bg: #ffffff;
  --lp-color-surface: #ffffff;
  --lp-color-surface-soft: #f8fafb;
  --lp-color-ink: #0f172a;
  --lp-color-ink-soft: #334155;
  --lp-color-muted: #475569;
  --lp-color-border: #e2e8f0;
  --lp-color-emerald: #16a34a;
  --lp-color-emerald-dark: #15803d;
  --lp-color-emerald-soft: #dcfce7;
  --lp-color-hero-a: #5ec29e;
  --lp-color-hero-b: #43a882;
  --lp-color-hero-c: #2d7a5d;
  --lp-shell: 72rem;
  --lp-shell-compact: 64rem;
  --lp-shell-narrow: 48rem;
  --lp-radius-card: 1.5rem;
  --lp-radius-frame: 2rem;
  --lp-shadow-soft: 0 20px 60px rgba(15, 23, 42, 0.06);
  --lp-shadow-card:
    0 20px 25px -5px rgba(15, 23, 42, 0.08),
    0 8px 10px -6px rgba(15, 23, 42, 0.08);
  --lp-transition: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--lp-color-bg);
  color: var(--lp-color-ink);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.lp-page {
  overflow: clip;
}

.lp-shell {
  width: min(calc(100% - 3rem), var(--lp-shell));
  margin-inline: auto;
}

.lp-shell--compact {
  width: min(calc(100% - 3rem), var(--lp-shell-compact));
}

.lp-shell--narrow {
  width: min(calc(100% - 3rem), var(--lp-shell-narrow));
}

.lp-section {
  padding-block: 5rem;
}

.lp-section--soft {
  background: #f6fff9;
  border-block: 1px solid var(--lp-color-border);
}

.lp-eyebrow {
  display: inline-block;
  margin-bottom: 0.875rem;
  color: var(--lp-color-emerald-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lp-title {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--lp-color-ink);
}

.lp-title em,
.lp-text-accent {
  color: var(--lp-color-hero-b);
  font-style: normal;
}

.lp-title--hero {
  font-size: clamp(3rem, 7vw, 4.5rem);
  line-height: 1.02;
}

.lp-title--section {
  font-size: clamp(2.25rem, 4.5vw, 3rem);
  line-height: 1.05;
}

.lp-copy {
  margin: 0;
  color: var(--lp-color-muted);
  line-height: 1.625;
}

.lp-copy--large {
  font-size: 1.125rem;
}

.lp-note {
  margin: 1.25rem 0 0;
  color: var(--lp-color-muted);
  font-size: 0.75rem;
}

.lp-inline-link {
  color: var(--lp-color-emerald);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.lp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background-color 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease;
}

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

.lp-button__icon {
  width: 1.25rem;
  height: 1.25rem;
}

.lp-button--primary {
  padding: 1rem 2rem;
  background: linear-gradient(
    135deg,
    var(--lp-color-hero-a) 0%,
    var(--lp-color-hero-b) 50%,
    var(--lp-color-hero-c) 100%
  );
  color: #ffffff !important;
  box-shadow: 0 8px 24px rgba(67, 168, 130, 0.3);
}

.lp-button--primary:hover {
  box-shadow: 0 12px 32px rgba(67, 168, 130, 0.45);
}

.lp-button--outline,
.lp-button--ghost {
  padding: 0.875rem 1.875rem;
  border: 2px solid var(--lp-color-ink);
  color: var(--lp-color-ink);
}

.lp-button--ghost:hover {
  background: var(--lp-color-ink);
  color: #ffffff;
}

.lp-button--light {
  padding: 1rem 2rem;
  background: #ffffff;
  color: var(--lp-color-ink);
}

.lp-button--light:hover {
  background: rgba(255, 255, 255, 0.92);
}

.lp-button--block {
  width: 100%;
}

.lp-glass-card {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--lp-shadow-card);
}

.lp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.lp-nav.is-scrolled {
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 1px 12px rgba(15, 23, 42, 0.06);
}

.lp-nav__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.3rem;
}

.lp-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.lp-brand__logo {
  width: 60px;
  height: 60px;
  border-radius: 0.75rem;
}

.lp-brand__name {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.lp-nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
  margin-right: 1.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.lp-nav__menu-link,
.lp-footer__list a {
  transition: color var(--lp-transition);
}

.lp-nav__menu-link:hover,
.lp-footer__list a:hover {
  color: var(--lp-color-emerald);
}

.lp-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lp-nav__cta {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.lp-nav__toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(226, 232, 240, 0.6);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.5);
}

.lp-nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--lp-color-ink);
  border-radius: 999px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  transform-origin: center;
}

.lp-nav__toggle span + span {
  margin-top: 4px;
}

.lp-nav.is-open #hamburger-top {
  transform: rotate(45deg) translate(4px, 4px);
}

.lp-nav.is-open #hamburger-mid {
  opacity: 0;
}

.lp-nav.is-open #hamburger-bot {
  transform: rotate(-45deg) translate(4px, -4px);
}

.lp-mobile-nav {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lp-mobile-nav__inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 0.5rem;
  padding-bottom: 1.5rem;
}

.lp-mobile-nav__link {
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--lp-color-ink);
  font-size: 1rem;
  font-weight: 600;
  transition:
    background-color var(--lp-transition),
    color var(--lp-transition);
}

.lp-mobile-nav__link:hover {
  background: rgba(220, 252, 231, 0.5);
}

.lp-mobile-nav__cta {
  justify-content: center;
  margin-top: 0.75rem;
  padding: 0.875rem 1.25rem;
  font-size: 0.875rem;
}

.lp-hero {
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
}

.lp-hero__grid,
.lp-feature__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 4rem;
}

.lp-hero__copy {
  max-width: 36rem;
  margin-top: 1.5rem;
}

.lp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

.lp-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hero-showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 500px;
  height: 500px;
}

.showcase-orbit {
  position: absolute;
  border: 1px solid transparent;
  border-radius: 50%;
  animation: orbitSpin linear infinite;
}

.showcase-orbit-1 {
  width: 320px;
  height: 320px;
  border-color: rgba(22, 163, 74, 0.12);
  animation-duration: 30s;
}

.showcase-orbit-2 {
  width: 420px;
  height: 420px;
  border-color: rgba(22, 163, 74, 0.07);
  border-style: dashed;
  animation-duration: 45s;
  animation-direction: reverse;
}

.showcase-orbit-3 {
  width: 500px;
  height: 500px;
  border-color: rgba(22, 163, 74, 0.04);
  animation-duration: 60s;
}

.showcase-glow {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(22, 163, 74, 0.12) 0%,
    rgba(22, 163, 74, 0.04) 50%,
    transparent 70%
  );
  filter: blur(20px);
  animation: glowPulse 4s ease-in-out infinite;
}

.showcase-plant-frame {
  position: relative;
  z-index: 3;
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 50%;
  background: linear-gradient(145deg, #f0fdf4, #dcfce7, #bbf7d0);
  box-shadow:
    0 0 0 6px rgba(255, 255, 255, 0.8),
    0 0 0 8px rgba(22, 163, 74, 0.15),
    0 20px 60px rgba(22, 163, 74, 0.15),
    0 8px 24px rgba(15, 23, 42, 0.06);
  animation: plantFloat 6s ease-in-out infinite;
}

.showcase-plant-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-plant-frame:hover .showcase-plant-img {
  transform: scale(1.18);
}

.showcase-scan-sweep {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(22, 163, 74, 0.08) 45%,
    rgba(22, 163, 74, 0.2) 50%,
    rgba(22, 163, 74, 0.08) 55%,
    transparent 100%
  );
  animation: scanSweep 3.5s ease-in-out infinite;
}

.showcase-node {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.3);
  box-shadow:
    0 4px 16px rgba(15, 23, 42, 0.06),
    0 1px 3px rgba(15, 23, 42, 0.04);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  cursor: default;
  transition: all var(--lp-transition);
}

.showcase-node:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 8px 28px rgba(15, 23, 42, 0.08),
    0 2px 6px rgba(15, 23, 42, 0.05);
  border-color: rgba(22, 163, 74, 0.25);
}

.showcase-node-id {
  top: 6%;
  right: 6%;
  animation:
    nodeSlideIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both,
    nodeFloat 5s ease-in-out 1.4s infinite;
}

.showcase-node-health {
  bottom: 22%;
  left: -2%;
  animation:
    nodeSlideIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both,
    nodeFloat 5s ease-in-out 2.8s infinite;
}

.showcase-node-speed {
  top: 22%;
  left: 0;
  animation:
    nodeSlideIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1s both,
    nodeFloat 5s ease-in-out 2s infinite;
}

.showcase-node-mist {
  top: 42%;
  right: -4%;
  transform: translateY(-50%);
  animation:
    nodeSlideIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.4s both,
    nodeFloat 5s ease-in-out 4.2s infinite;
}

.showcase-node-conf {
  right: 4%;
  bottom: 14%;
  animation:
    nodeSlideIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.2s both,
    nodeFloat 5s ease-in-out 3.5s infinite;
}

.showcase-node-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  flex-shrink: 0;
}

.showcase-node-icon-green {
  background: #dcfce7;
  color: #16a34a;
}

.showcase-node-icon-emerald {
  background: #d1fae5;
  color: #059669;
}

.showcase-node-icon-blue {
  background: #dbeafe;
  color: #2563eb;
}

.showcase-node-icon-amber {
  background: #fef3c7;
  color: #d97706;
}

.showcase-node-icon-cyan {
  background: #cffafe;
  color: #0891b2;
}

.showcase-node-content {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.showcase-node-label {
  color: #94a3b8;
  font-size: 0.688rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.showcase-node-value {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--lp-color-ink);
  font-size: 0.813rem;
  font-weight: 700;
  line-height: 1.3;
}

.showcase-health-bar {
  display: inline-block;
  width: 48px;
  height: 5px;
  overflow: hidden;
  border-radius: 3px;
  background: #e2e8f0;
  vertical-align: middle;
}

.showcase-health-fill {
  display: block;
  width: 98%;
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, #16a34a, #22c55e);
  animation: healthGrow 1.5s cubic-bezier(0.16, 1, 0.3, 1) 1.2s both;
}

.showcase-connectors {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: fadeIn 1s ease 1.4s forwards;
  pointer-events: none;
}

.lp-stats {
  padding-block: 2.5rem;
  background: #f6fff9;
  border-block: 1px solid var(--lp-color-border);
}

.lp-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.lp-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lp-stat__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  border-radius: 0.75rem;
  background: var(--lp-color-emerald-soft);
  color: var(--lp-color-emerald);
}

.lp-stat__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.lp-stat__value {
  margin: 0;
  color: var(--lp-color-ink);
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 800;
  line-height: 1;
}

.lp-stat__suffix {
  color: var(--lp-color-hero-b);
  font-size: 1.125rem;
  font-weight: 700;
}

.lp-stat__label {
  margin: 0.25rem 0 0;
  color: var(--lp-color-muted);
  font-size: 0.875rem;
}

.lp-feature__content {
  width: min(100%, 34rem);
}

.lp-feature__content .lp-copy--large {
  margin-top: 1.25rem;
}

.lp-feature__content .lp-button {
  margin-top: 2rem;
}

.lp-feature__grid--media-left .lp-feature__media {
  order: -1;
}

.lp-media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--lp-radius-frame);
  aspect-ratio: 1 / 1;
}

.lp-media-frame--airy {
  padding: 2rem;
}

.lp-media-frame__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.lp-media-frame__image--cover {
  object-fit: cover;
}

.lp-media-frame__image--contain {
  object-fit: contain;
}

.lp-diagnosis-card {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 2;
  width: min(16rem, calc(100% - 4rem));
  padding: 1rem;
  border-radius: 1rem;
}

.lp-diagnosis-card__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 0.5rem;
  color: #dc2626;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lp-diagnosis-card__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #ef4444;
}

.lp-diagnosis-card__title {
  margin: 0;
  color: var(--lp-color-ink);
  font-weight: 800;
  line-height: 1.25;
}

.lp-progress {
  height: 0.25rem;
  margin-top: 0.75rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.1);
}

.lp-progress__fill {
  display: block;
  width: 75%;
  height: 100%;
  background: var(--lp-color-emerald);
}

.lp-diagnosis-card__note {
  margin: 0.5rem 0 0;
  color: var(--lp-color-emerald-dark);
  font-size: 0.75rem;
  font-weight: 600;
}

.lp-plant-id-card {
  position: relative;
  z-index: 2;
  width: min(16rem, 100%);
  padding: 1rem;
  border-radius: 1rem;
}

.lp-plant-id-card__label {
  margin: 0 0 0.25rem;
  color: var(--lp-color-muted);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.lp-plant-id-card__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 800;
}

.lp-plant-id-card__subtitle {
  margin: 0.125rem 0 0;
  color: var(--lp-color-muted);
  font-size: 0.875rem;
}

.lp-plant-id-card__meta {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 0.75rem;
  color: var(--lp-color-ink);
  font-size: 0.75rem;
  font-weight: 600;
}

.lp-plant-id-card__status {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--lp-color-emerald);
}

.lp-clarity-card {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  z-index: 2;
  padding: 1rem;
  border-radius: 1rem;
}

.lp-clarity-card__title {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
}

.lp-clarity-card__copy {
  margin: 0.5rem 0 0;
  color: #ffffff;
  font-size: 0.8rem;
}

.lp-species-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.lp-species-grid__item {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 1rem;
  aspect-ratio: 1 / 1;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.lp-species-grid__item--mint {
  background: rgba(168, 237, 207, 0.5);
}

.lp-species-grid__item--mist {
  background: rgba(223, 247, 236, 0.5);
}

.lp-species-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lp-reminders-showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.lp-reminders-showcase__leaf {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  border-radius: 50% !important;
  object-fit: cover;
  opacity: 0.7;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.lp-reminder-card {
  position: absolute;
}

.lp-reminder-card--watering {
  top: 0;
  left: 5%;
  animation:
    reminderSlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both,
    reminderFloat 5s ease-in-out 0.8s infinite;
}

.lp-reminder-card--pruning {
  top: 0;
  right: 5%;
  animation:
    reminderSlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both,
    reminderFloat 5s ease-in-out 1.6s infinite;
}

.lp-reminder-card--fertilizing {
  top: 33%;
  left: 0;
  animation:
    reminderSlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both,
    reminderFloat 5s ease-in-out 2.4s infinite;
}

.lp-reminder-card--misting {
  top: 33%;
  right: 0;
  animation:
    reminderSlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both,
    reminderFloat 5s ease-in-out 3.2s infinite;
}

.lp-reminder-card--rotating {
  top: 66%;
  left: 5%;
  animation:
    reminderSlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 1s both,
    reminderFloat 5s ease-in-out 4s infinite;
}

.lp-reminder-card--treatment {
  top: 66%;
  right: 5%;
  animation:
    reminderSlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 1.2s both,
    reminderFloat 5s ease-in-out 4.8s infinite;
}

.lp-reminder-card__surface {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.lp-reminder-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  font-size: 18px;
}

.lp-reminder-card__icon--blue {
  background: #dbeafe;
  color: #2563eb;
}

.lp-reminder-card__icon--amber {
  background: #fef3c7;
  color: #d97706;
}

.lp-reminder-card__icon--green {
  background: #dcfce7;
  color: #16a34a;
}

.lp-reminder-card__icon--cyan {
  background: #cffafe;
  color: #0891b2;
}

.lp-reminder-card__icon--violet {
  background: #f3e8ff;
  color: #a855f7;
}

.lp-reminder-card__icon--red {
  background: #fee2e2;
  color: #dc2626;
}

.lp-reminder-card__title {
  margin: 0;
  color: var(--lp-color-ink);
  font-size: 0.938rem;
  font-weight: 700;
}

.lp-reminder-card__meta {
  margin: 0;
  color: var(--lp-color-muted);
  font-size: 0.75rem;
}

.lp-section-heading {
  margin: 0 auto 3.5rem;
}

.lp-section-heading--center {
  max-width: 36rem;
  text-align: center;
}

.lp-section-heading .lp-copy {
  margin-top: 0.75rem;
}

.lp-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  width: min(100%, 64rem);
  margin-inline: auto;
}

.lp-pricing-card {
  position: relative;
  padding: 2rem;
  border: 1px solid var(--lp-color-border);
  border-radius: 1.5rem;
  background: var(--lp-color-surface);
}

.lp-pricing-card--featured {
  color: #ffffff;
  border: none;
  background: linear-gradient(
    135deg,
    var(--lp-color-hero-a) 0%,
    var(--lp-color-hero-b) 50%,
    var(--lp-color-hero-c) 100%
  );
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
  transform: translateY(-1rem);
}

.lp-pricing-card__badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.375rem 1rem;
  border-radius: 999px;
  background: var(--lp-color-ink);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.lp-plan-toggle {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
  padding: 0.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.lp-plan-toggle__button {
  flex: 1;
  padding: 0.375rem 0.875rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 700;
  transition:
    background-color var(--lp-transition),
    color var(--lp-transition);
}

.lp-plan-toggle__button.is-active {
  background: #ffffff;
  color: var(--lp-color-ink);
}

.lp-pricing-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
}

.lp-pricing-card__price {
  margin: 0;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.lp-pricing-card__price span {
  font-size: 1.125rem;
  opacity: 0.8;
}

.lp-pricing-card__subtext {
  margin: 0.5rem 0 1.5rem;
  font-size: 0.75rem;
  opacity: 0.8;
}

.lp-pricing-card__subtext--muted {
  color: var(--lp-color-muted);
  opacity: 1;
}

.lp-pricing-card__list {
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
  color: var(--lp-color-muted);
  font-size: 0.875rem;
}

.lp-pricing-card__list--bright {
  color: rgba(255, 255, 255, 0.95);
}

.lp-pricing-card__list li + li {
  margin-top: 0.75rem;
}

.lp-pricing__note {
  width: min(100%, 34rem);
  margin: 2.5rem auto 0;
  color: var(--lp-color-muted);
  font-size: 0.75rem;
  font-style: italic;
  text-align: center;
}

.lp-blog__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.lp-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.lp-blog-card {
  overflow: hidden;
  border: 1px solid var(--lp-color-border);
  border-radius: 1.5rem;
  background: var(--lp-color-surface);
  transition:
    box-shadow var(--lp-transition),
    transform var(--lp-transition);
}

.lp-blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--lp-shadow-card);
}

.lp-blog-card__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  font-size: 3.75rem;
}

.lp-blog-card__visual--fern {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}

.lp-blog-card__visual--leaf {
  background: linear-gradient(135deg, #dcfce7, #f0fdf4);
}

.lp-blog-card__visual--pot {
  background: linear-gradient(135deg, #dcfce7, #16a34a);
}

.lp-blog-card__body {
  padding: 1.5rem;
}

.lp-blog-card__eyebrow {
  margin: 0 0 0.5rem;
  color: var(--lp-color-muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lp-blog-card__title {
  margin: 0;
  color: var(--lp-color-ink);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.25;
  transition: color var(--lp-transition);
}

.lp-blog-card:hover .lp-blog-card__title {
  color: var(--lp-color-emerald-dark);
}

.lp-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lp-faq__item {
  border: 1px solid var(--lp-color-border);
  border-radius: 1rem;
  background: var(--lp-color-surface);
  padding: 1.5rem;
}

.lp-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1.125rem;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

.lp-faq__question::-webkit-details-marker {
  display: none;
}

.lp-faq__icon {
  color: var(--lp-color-emerald);
  font-size: 2rem;
  line-height: 1;
  transition: transform var(--lp-transition);
}

.lp-faq__item[open] .lp-faq__icon {
  transform: rotate(45deg);
}

.lp-faq__answer {
  margin: 1rem 0 0;
  color: var(--lp-color-muted);
  line-height: 1.625;
}

.lp-footer {
  padding-block: 4rem 0;
  background: var(--lp-color-ink);
  color: rgba(255, 255, 255, 0.7);
}

.lp-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.5rem;
  font-size: 0.875rem;
}

.lp-footer__brand-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.lp-footer__logo {
  width: 2rem;
  height: 2rem;
  border-radius: 0.75rem;
}

.lp-footer__name,
.lp-footer__heading {
  color: #ffffff;
  font-weight: 800;
}

.lp-footer__heading {
  margin: 0 0 1rem;
}

.lp-footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-footer__list li + li {
  margin-top: 0.5rem;
}

.lp-footer__legal {
  margin-top: 3rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
}

@keyframes orbitSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes glowPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.15);
    opacity: 0.7;
  }
}

@keyframes scanSweep {
  0% {
    transform: translateY(-100%);
  }

  50% {
    transform: translateY(100%);
  }

  100% {
    transform: translateY(-100%);
  }
}

@keyframes plantFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes nodeSlideIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.92);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes nodeFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes healthGrow {
  from {
    width: 0;
  }
}

@keyframes reminderSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.92);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes reminderFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 64rem) {
  .lp-stats__grid,
  .lp-pricing__grid,
  .lp-blog__grid,
  .lp-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 56rem) {
  .lp-hero__grid,
  .lp-feature__grid,
  .lp-blog__header {
    grid-template-columns: 1fr;
  }

  .lp-hero__grid,
  .lp-feature__grid {
    gap: 3rem;
  }

  .lp-feature__grid--media-left .lp-feature__media {
    order: 0;
  }

  .lp-feature__content {
    width: 100%;
  }

  .lp-pricing__grid,
  .lp-blog__grid,
  .lp-footer__grid {
    grid-template-columns: 1fr;
  }

  .lp-pricing-card--featured {
    transform: none;
  }
}

@media (max-width: 48rem) {
  .lp-section {
    padding-block: 4rem;
  }

  .lp-hero {
    padding-top: 2.5rem;
  }

  .lp-hero__actions {
    justify-content: center;
  }

  .lp-nav__links,
  .lp-nav__cta {
    display: none;
  }

  .lp-nav__toggle {
    display: inline-flex;
  }

  .lp-brand__logo {
    width: 45px;
    height: 45px;
  }

  .lp-brand__name {
    font-size: 1.4rem;
  }

  .lp-mobile-nav__inner {
    align-items: center;
  }

  .lp-mobile-nav__link {
    width: 100%;
    text-align: center;
  }

  .lp-plant-id-card {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    left: auto;
    top: auto;
    width: min(12.8rem, 80%);
  }

  .hero-showcase {
    --lp-hero-mobile-size: min(340px, calc(100vw - 3rem));
    width: var(--lp-hero-mobile-size);
    height: var(--lp-hero-mobile-size);
  }

  .showcase-plant-frame {
    width: calc(var(--lp-hero-mobile-size) * 0.4412);
    height: calc(var(--lp-hero-mobile-size) * 0.4412);
  }

  .showcase-orbit-1 {
    width: calc(var(--lp-hero-mobile-size) * 0.6471);
    height: calc(var(--lp-hero-mobile-size) * 0.6471);
  }

  .showcase-orbit-2 {
    width: calc(var(--lp-hero-mobile-size) * 0.8529);
    height: calc(var(--lp-hero-mobile-size) * 0.8529);
  }

  .showcase-orbit-3 {
    width: var(--lp-hero-mobile-size);
    height: var(--lp-hero-mobile-size);
  }

  .showcase-node {
    gap: 8px;
    padding: 8px 12px;
    border-radius: 10px;
  }

  .showcase-node-icon {
    width: 26px;
    height: 26px;
    border-radius: 7px;
  }

  .showcase-node-icon svg {
    width: 13px;
    height: 13px;
  }

  .showcase-node-label {
    font-size: 0.625rem;
  }

  .showcase-node-value {
    font-size: 0.75rem;
  }

  .showcase-connectors {
    display: none;
  }

  .showcase-node-id {
    right: 2%;
  }

  .showcase-node-health,
  .showcase-node-speed {
    left: 2%;
  }

  .showcase-node-mist,
  .showcase-node-conf {
    right: 2%;
  }

  .lp-diagnosis-card,
  .lp-clarity-card {
    left: 1rem;
    right: 1rem;
    width: auto;
  }

  .lp-diagnosis-card {
    top: 1rem;
    right: auto;
    width: calc((100% - 2rem) * 0.6);
  }

  .lp-clarity-card {
    bottom: 1rem;
  }

  .lp-reminders-showcase {
    min-height: 380px;
  }

  .lp-reminders-showcase__leaf {
    width: 320px;
    height: 320px;
  }

  .lp-reminder-card__surface {
    gap: 0.625rem;
    padding: 0.75rem 1rem;
  }

  .lp-reminder-card__icon {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  .lp-reminder-card__title {
    font-size: 0.85rem;
  }

  .lp-reminder-card__meta {
    font-size: 0.7rem;
  }
}

/* ─── Mobile Typography & Layout ─── */
@media (max-width: 48rem) {
  .lp-copy--large {
    font-size: 1rem;
  }

  .lp-pricing-card__title {
    font-size: 1.25rem;
  }

  .lp-pricing-card__price {
    font-size: 2.25rem;
  }

  .lp-pricing-card__price span {
    font-size: 1rem;
  }

  .lp-blog-card__visual {
    font-size: 2.5rem;
  }

  .lp-blog-card__title {
    font-size: 1.125rem;
  }

  .lp-blog-card__body {
    padding: 1.25rem;
  }

  .lp-faq__question {
    font-size: 1rem;
  }

  .lp-faq__icon {
    font-size: 1.5rem;
  }

  .lp-faq__item {
    padding: 1.25rem;
  }

  .lp-stat__suffix {
    font-size: 0.875rem;
  }

  .lp-stat__label {
    font-size: 0.75rem;
  }

  .lp-section-heading {
    margin-bottom: 2.5rem;
  }

  .lp-footer__grid {
    gap: 2rem;
  }
}

/* ─── Small Phone (≤480px) ─── */
@media (max-width: 30rem) {
  .lp-stats__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .lp-section {
    padding-block: 3rem;
  }

  .lp-hero {
    padding-top: 2rem;
    padding-bottom: 2.5rem;
  }

  .lp-hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .lp-hero__actions .lp-button {
    width: 100%;
  }

  .lp-pricing-card {
    padding: 1.5rem;
  }
}

/* ─── Very Small Phone (≤352px / iPhone SE) ─── */
@media (max-width: 22rem) {
  .showcase-node-mist,
  .showcase-node-conf {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .lp-button:hover,
  .showcase-node:hover,
  .lp-blog-card:hover {
    transform: none;
  }
}
