:root {
  --cream: #faf8f2;
  --paper: #fffdf8;
  --white: #ffffff;
  --green: #22a45d;
  --green-dark: #137443;
  --green-deep: #0e4f31;
  --green-soft: #e3f4ea;
  --coral: #ff7a59;
  --coral-soft: #ffede7;
  --amber: #ffb340;
  --ink: #20262e;
  --muted: #687078;
  --line: #ebe6dc;
  --shadow: 0 24px 64px rgba(38, 65, 50, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Nunito', 'Avenir Next Rounded', 'Avenir Next', ui-rounded,
    system-ui, sans-serif;
  font-weight: 600;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  margin: 18px auto 0;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 8px 32px rgba(43, 63, 51, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-deep);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand img {
  width: 36px;
  height: 36px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.75fr);
  align-items: center;
  gap: clamp(36px, 7vw, 100px);
  width: min(1140px, calc(100% - 48px));
  min-height: clamp(560px, calc(100svh - 90px), 760px);
  margin: 0 auto;
  padding: clamp(48px, 7vh, 76px) 0 clamp(68px, 8vh, 100px);
}

.hero::before {
  position: absolute;
  top: 80px;
  left: -240px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: var(--coral-soft);
  content: '';
  filter: blur(30px);
  opacity: 0.75;
  z-index: -1;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.3rem, 7vw, 6.65rem);
  font-weight: 950;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

h1 span {
  display: block;
  color: var(--green);
}

.hero-lead {
  max-width: 570px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 16px;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  background: var(--green);
  box-shadow: 0 12px 28px rgba(34, 164, 93, 0.28);
  color: white;
}

.read-time {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 18px 0 50px;
}

.phone-frame {
  width: min(250px, 72vw);
  aspect-ratio: 9 / 16;
  padding: 8px;
  overflow: hidden;
  border: 7px solid #20262e;
  border-radius: 48px;
  background: #20262e;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.phone-frame img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 34px;
  object-fit: cover;
  object-position: top;
}

.orbit {
  position: absolute;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(32, 38, 46, 0.12);
  font-size: 1.7rem;
  transform: rotate(-8deg);
}

.orbit-one {
  top: 76px;
  right: 0;
  background: var(--coral-soft);
}

.orbit-two {
  bottom: 108px;
  left: -6px;
  background: #fff4e0;
  transform: rotate(9deg);
}

.tip-card {
  position: absolute;
  right: -32px;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 280px;
  padding: 14px 16px;
  border: 1px solid rgba(34, 164, 93, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 32px rgba(32, 38, 46, 0.13);
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.tip-card strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
}

.tip-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 900;
}

.quick-start {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 100px;
  padding: clamp(38px, 6vw, 72px);
  border-radius: 36px;
  background: var(--green-deep);
  color: white;
}

.quick-start .eyebrow {
  color: #a8edc6;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  column-gap: 70px;
  align-items: end;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.section-heading > p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}

.step-grid li {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
}

.step-number {
  display: inline-block;
  margin-bottom: 30px;
  color: #a8edc6;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.step-grid h3 {
  margin-bottom: 8px;
  font-size: 1.24rem;
}

.step-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.94rem;
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 64px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    width: min(440px, 100%);
    margin: 0 auto;
  }

  .phone-frame {
    width: min(270px, 72vw);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

@media (max-width: 520px) {
  .site-nav {
    width: calc(100% - 24px);
    margin-top: 10px;
  }

  .brand span {
    font-size: 0.9rem;
  }

  .nav-link {
    padding-inline: 13px;
    font-size: 0.82rem;
  }

  .hero {
    width: calc(100% - 30px);
    padding-top: 52px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .tip-card {
    right: -4px;
  }

  .orbit-one {
    right: -2px;
  }

  .quick-start {
    border-radius: 28px;
  }
}

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

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

.nav-text-link {
  padding: 8px 12px;
  color: var(--green-dark);
  font-size: 0.88rem;
  font-weight: 900;
  text-decoration: none;
}

.print-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
}

.button,
.nav-text-link,
.print-button,
.brand,
.table-of-contents a,
.store-row a,
footer a {
  transition: transform 180ms ease, color 180ms ease, background 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.print-button:hover,
.store-row a:hover {
  transform: translateY(-2px);
}

.nav-text-link:hover,
.table-of-contents a:hover,
footer > a:last-child:hover {
  color: var(--green);
}

.button:focus-visible,
.print-button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

.guide-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 860px);
  gap: clamp(36px, 6vw, 84px);
  align-items: start;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.table-of-contents {
  position: sticky;
  top: 92px;
  padding: 26px 0;
}

.table-of-contents > p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.table-of-contents ol {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.table-of-contents a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 8px 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.table-of-contents a span {
  color: var(--green);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.toc-note {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  padding: 16px;
  border: 1px solid #e4dfd5;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.toc-note > span {
  font-size: 1rem;
}

.toc-note p {
  margin: 0;
}

.toc-note strong {
  display: block;
  color: var(--ink);
}

.guide-content {
  min-width: 0;
}

.guide-section {
  padding: 90px 0;
  scroll-margin-top: 90px;
}

.guide-section + .guide-section:not(.liv-section, .garden-section) {
  border-top: 1px solid var(--line);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-label span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 10px;
  background: var(--green-soft);
  font-size: 0.66rem;
}

.guide-section > h2,
.liv-heading h2,
.garden-copy h2,
.final-cta h2 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.section-intro {
  max-width: 730px;
  margin-bottom: 48px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.screen-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 20px 54px rgba(32, 38, 46, 0.12);
}

.screen-card img {
  display: block;
  width: 100%;
  height: auto;
}

.anatomy-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
  gap: 48px;
  align-items: start;
}

.simple-screen-card {
  max-height: 700px;
  border-radius: 36px;
}

.anatomy-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.anatomy-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.anatomy-list li:first-child {
  padding-top: 4px;
}

.anatomy-list li > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 12px;
  background: var(--coral-soft);
  color: #c64d31;
  font-size: 0.76rem;
  font-weight: 900;
}

.anatomy-list h3,
.method-card h3,
.smart-feature h3,
.plan-card h3,
.step-goal-showcase h3,
.habits-copy h3,
.liv-capabilities h3 {
  margin-bottom: 6px;
  font-size: 1.3rem;
  font-weight: 950;
  letter-spacing: -0.025em;
}

.anatomy-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.method-card {
  display: flex;
  flex-direction: column;
  min-height: 265px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
}

.method-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 34px;
  place-items: center;
  border-radius: 15px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 1.25rem;
  font-weight: 900;
}

.method-card:nth-child(2) .method-icon {
  background: var(--coral-soft);
}

.method-card:nth-child(3) .method-icon {
  background: #fff4e0;
}

.method-card:nth-child(4) .method-icon {
  background: #f1ecfc;
}

.method-card p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

.method-card > span {
  margin-top: auto;
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.liv-log-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, 0.8fr) minmax(280px, 1.35fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 16px;
  padding: 25px 26px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--green-deep);
  box-shadow: 0 18px 42px rgba(14, 79, 49, 0.18);
  color: white;
}

.liv-log-card::after {
  position: absolute;
  right: -40px;
  bottom: -70px;
  width: 160px;
  height: 160px;
  border: 30px solid rgba(255, 179, 64, 0.11);
  border-radius: 50%;
  content: '';
  pointer-events: none;
}

.liv-log-identity {
  display: flex;
  align-items: center;
  gap: 14px;
}

.liv-log-identity img {
  flex: 0 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.liv-log-card .mini-kicker {
  margin-bottom: 4px;
  color: #a8edc6;
  font-size: 0.62rem;
}

.liv-log-card h3 {
  margin: 0;
  font-size: 1.28rem;
  font-weight: 950;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.liv-log-copy > p {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.84rem;
  line-height: 1.55;
}

.liv-log-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.liv-log-examples span {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.68rem;
  font-weight: 800;
}

.liv-log-card > a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  justify-self: end;
  padding: 10px 13px;
  border-radius: 12px;
  background: white;
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.liv-log-card > a:hover {
  transform: translateY(-2px);
}

.feature-showcase {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 46px;
  align-items: center;
  margin-top: 48px;
  padding: 48px;
  overflow: hidden;
  border-radius: 32px;
  background: var(--green-soft);
}

.mini-kicker {
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-showcase h3,
.habits-copy h3,
.step-goal-showcase h3 {
  margin-bottom: 14px;
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  line-height: 1.08;
}

.feature-showcase p,
.habits-copy > p,
.step-goal-showcase p {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 27px;
  color: var(--ink);
  font-size: 0.9rem;
}

.check-list li::before {
  position: absolute;
  top: 0.05em;
  left: 0;
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: white;
  content: '✓';
  font-size: 0.68rem;
  font-weight: 900;
}

.compact-screen-card {
  max-height: 520px;
  border-radius: 34px;
  transform: rotate(2deg) translateY(36px);
}

.accuracy-note {
  display: flex;
  gap: 16px;
  margin-top: 22px;
  padding: 22px 24px;
  border: 1px solid #ecdcb5;
  border-radius: 20px;
  background: #fff8e9;
}

.accuracy-note > span {
  font-size: 1.3rem;
}

.accuracy-note strong {
  display: block;
  margin-bottom: 5px;
}

.accuracy-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.smart-feature-list {
  display: grid;
  gap: 20px;
}

.smart-feature {
  display: grid;
  grid-template-columns: 1fr 238px;
  gap: 36px;
  align-items: center;
  min-height: 410px;
  padding: 34px 44px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--white);
}

.smart-feature:nth-child(even) {
  background: var(--coral-soft);
}

.smart-feature:nth-child(3) {
  background: #fff6e5;
}

.smart-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 42px;
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.smart-meta span:last-child {
  font-size: 1.7rem;
}

.smart-feature h3 {
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
}

.smart-feature p {
  margin-bottom: 22px;
  color: var(--muted);
}

.path-pill {
  display: inline-block;
  padding: 9px 12px;
  border-radius: 10px;
  background: rgba(34, 164, 93, 0.09);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 850;
}

.feature-screen {
  max-height: 430px;
  border-radius: 30px;
  transform: translateY(42px) rotate(1deg);
}

.smart-feature:nth-child(even) .feature-screen {
  transform: translateY(42px) rotate(-1deg);
}

.habits-panel {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 20px;
  padding: 46px;
  overflow: hidden;
  border-radius: 30px;
  background: var(--green-deep);
  color: white;
}

.habits-screen {
  max-height: 510px;
  border-radius: 32px;
  transform: translateY(45px) rotate(-2deg);
}

.habits-copy .mini-kicker {
  color: #9ce5bb;
}

.habits-copy h3 {
  color: white;
}

.habits-copy > p {
  color: rgba(255, 255, 255, 0.74);
}

.habits-copy > p strong {
  color: white;
}

.reminder-chips,
.garden-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.reminder-chips span,
.garden-points span {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 0.74rem;
  font-weight: 800;
}

.fine-print {
  margin-top: 22px;
  margin-bottom: 0 !important;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.76rem;
}

.liv-section,
.garden-section {
  position: relative;
  left: 50%;
  width: min(1100px, calc(100vw - 48px));
  margin: 30px 0;
  padding: clamp(46px, 6vw, 76px);
  border-radius: 36px;
  transform: translateX(-50%);
}

.liv-section {
  background: var(--green-deep);
  color: white;
}

.liv-heading {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: start;
}

.light-label {
  color: #a8edc6;
}

.light-label span {
  background: rgba(255, 255, 255, 0.1);
}

.liv-heading .section-intro {
  color: rgba(255, 255, 255, 0.7);
}

.liv-portrait {
  width: 100px;
  height: 100px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.liv-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(250px, 0.8fr);
  gap: 20px;
}

.chat-demo,
.liv-capabilities {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.07);
}

.chat-demo {
  padding: 24px;
}

.chat-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.chat-head img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.chat-head span {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.chat-head small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.69rem;
}

.chat-head i {
  margin-left: auto;
  color: #a8edc6;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 900;
}

.chat-head i::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 6px;
  border-radius: 50%;
  background: #48d88a;
  content: '';
}

.bubble {
  max-width: 82%;
  margin-bottom: 12px;
  padding: 12px 15px;
  border-radius: 17px;
  font-size: 0.84rem;
  line-height: 1.5;
}

.user-bubble {
  margin-left: auto;
  border-bottom-right-radius: 5px;
  background: var(--green);
}

.liv-bubble {
  border-bottom-left-radius: 5px;
  background: rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.84);
}

.short-bubble {
  width: fit-content;
}

.action-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 12px;
  border-radius: 17px;
  background: white;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

.action-chip strong {
  display: block;
  color: var(--ink);
}

.action-chip button {
  margin-left: auto;
  padding: 6px 9px;
  border: 0;
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--green-dark);
  font: inherit;
  font-weight: 900;
  opacity: 1;
}

.liv-capabilities {
  padding: 28px;
}

.liv-capabilities h3 {
  margin-bottom: 20px;
}

.liv-capabilities ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.liv-capabilities li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
}

.liv-capabilities li:last-child {
  border-bottom: 0;
}

.liv-capabilities li > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.liv-safety {
  display: flex;
  gap: 13px;
  margin-top: 20px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 179, 64, 0.08);
}

.liv-safety p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.liv-safety strong {
  color: white;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.plan-card {
  padding: 30px;
  border-radius: 26px;
  background: var(--green-soft);
}

.coral-plan-card {
  background: var(--coral-soft);
}

.plan-icon {
  display: block;
  margin-bottom: 30px;
  font-size: 2rem;
}

.plan-card h3 {
  font-size: 1.55rem;
}

.plan-card .check-list {
  margin-top: 20px;
}

.coral-plan-card .check-list li::before {
  background: var(--coral);
}

.step-goal-showcase {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 42px;
  align-items: center;
  margin-top: 18px;
  padding: 42px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
}

.step-screen {
  max-height: 430px;
  transform: translateY(45px) rotate(1.5deg);
}

.garden-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 64px;
  align-items: center;
  overflow: hidden;
  background: #173e35;
  color: white;
}

.garden-copy > p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

.garden-note {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.83rem !important;
}

.garden-screen {
  max-height: 560px;
  border-radius: 36px;
  transform: translateY(62px) rotate(2deg);
}

.routine-list {
  margin: 40px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.routine-list li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 26px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.routine-list li > span {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.routine-list h3 {
  margin-bottom: 4px;
  font-size: 1.15rem;
}

.routine-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.path-table {
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
}

.path-row {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

.path-row:last-child {
  border-bottom: 0;
}

.path-row strong {
  font-size: 0.88rem;
}

.path-row span {
  color: var(--green-dark);
  font-size: 0.84rem;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 32px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.faq-list summary {
  position: relative;
  padding: 20px 52px 20px 22px;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 18px;
  right: 20px;
  color: var(--green);
  content: '+';
  font-size: 1.35rem;
}

.faq-list details[open] summary::after {
  content: '−';
}

.faq-list p {
  max-width: 680px;
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.final-cta {
  width: min(1180px, calc(100% - 32px));
  margin: 70px auto 24px;
  padding: clamp(54px, 9vw, 100px) 24px;
  border-radius: 38px;
  background: var(--coral-soft);
  text-align: center;
}

.final-cta > img {
  width: 74px;
  height: 74px;
  margin: 0 auto 24px;
}

.final-cta .eyebrow {
  color: #c64d31;
}

.final-cta h2 {
  margin-inline: auto;
}

.final-cta > p:not(.eyebrow) {
  max-width: 600px;
  margin: 0 auto 30px;
  color: var(--muted);
}

.store-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.store-row a {
  display: inline-block;
}

.store-row img {
  display: block;
  width: auto;
  height: 50px;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  width: min(1140px, calc(100% - 48px));
  margin: 0 auto;
  padding: 32px 0 46px;
  color: var(--muted);
  font-size: 0.78rem;
}

footer .brand {
  justify-self: start;
}

footer .brand img {
  width: 30px;
  height: 30px;
}

footer p {
  margin: 0;
  text-align: center;
}

footer > a:last-child {
  justify-self: end;
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 980px) {
  .guide-layout {
    grid-template-columns: 1fr;
  }

  .table-of-contents {
    position: static;
    padding: 0;
    /* Same fix as .guide-content: without this the nowrap chip row's
       min-content widens the 1fr track past the viewport instead of
       scrolling inside the ol. */
    min-width: 0;
  }

  .table-of-contents > p,
  .toc-note {
    display: none;
  }

  .table-of-contents ol {
    display: flex;
    gap: 8px;
    padding-bottom: 8px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .table-of-contents a {
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    white-space: nowrap;
  }

  .table-of-contents a span {
    display: none;
  }

  .liv-section,
  .garden-section {
    left: 0;
    width: 100%;
    transform: none;
  }
}

@media (max-width: 760px) {
  .nav-text-link {
    display: none;
  }

  .guide-layout {
    width: min(100% - 30px, 680px);
  }

  .guide-section {
    padding: 70px 0;
  }

  .anatomy-grid,
  .feature-showcase,
  .smart-feature,
  .habits-panel,
  .liv-grid,
  .plan-grid,
  .step-goal-showcase,
  .garden-section {
    grid-template-columns: 1fr;
  }

  .liv-log-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }

  .liv-log-card > a {
    justify-self: start;
  }

  .simple-screen-card,
  .compact-screen-card,
  .feature-screen,
  .habits-screen,
  .step-screen,
  .garden-screen {
    width: min(290px, 85%);
    max-height: 520px;
    margin-inline: auto;
  }

  .compact-screen-card,
  .feature-screen,
  .habits-screen,
  .step-screen,
  .garden-screen {
    transform: translateY(32px) rotate(1deg);
  }

  .feature-showcase,
  .smart-feature,
  .habits-panel,
  .step-goal-showcase {
    padding: 34px 26px;
  }

  .smart-feature {
    gap: 14px;
  }

  .liv-section,
  .garden-section {
    padding: 42px 26px;
    border-radius: 28px;
  }

  .liv-heading {
    display: grid;
    grid-template-columns: 1fr 64px;
  }

  .liv-heading .section-intro {
    grid-column: 1 / -1;
  }

  .liv-portrait {
    width: 64px;
    height: 64px;
  }

  .garden-copy {
    order: 1;
  }

  .garden-screen {
    order: 2;
  }

  footer {
    grid-template-columns: 1fr auto;
  }

  footer p {
    display: none;
  }
}

@media (max-width: 520px) {
  .print-button {
    width: 40px;
    padding: 0;
    justify-content: center;
    font-size: 0;
  }

  .print-button span {
    font-size: 1rem;
  }

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

  .method-card {
    min-height: 0;
  }

  .path-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .routine-list li {
    grid-template-columns: 62px 1fr;
    gap: 14px;
  }

  .bubble {
    max-width: 92%;
  }

  .action-chip {
    align-items: start;
  }

  .action-chip button {
    display: none;
  }
}

@media print {
  @page {
    margin: 15mm;
    size: A4;
  }

  :root {
    --cream: #ffffff;
  }

  body {
    background: white;
    color: #111;
    font-size: 10pt;
  }

  .site-nav,
  .table-of-contents,
  .hero-visual,
  .screen-card,
  .chat-demo,
  .store-row,
  footer,
  .orbit,
  .tip-card {
    display: none !important;
  }

  .hero {
    display: block;
    min-height: 0;
    width: 100%;
    padding: 15mm 0 12mm;
  }

  .hero::before {
    display: none;
  }

  .hero h1 {
    font-size: 42pt;
  }

  .hero-actions {
    display: none;
  }

  .quick-start,
  .guide-layout,
  .final-cta {
    width: 100%;
    margin: 0;
  }

  .quick-start {
    padding: 10mm;
    background: #0e4f31 !important;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .guide-layout {
    display: block;
  }

  .guide-section {
    padding: 12mm 0;
  }

  .guide-section > h2,
  .liv-heading h2,
  .garden-copy h2 {
    font-size: 25pt;
  }

  .method-card,
  .plan-card,
  .accuracy-note,
  .liv-log-card,
  .faq-list details,
  .path-table,
  .smart-feature,
  .habits-panel,
  .liv-section,
  .garden-section,
  .routine-list li {
    break-inside: avoid;
  }

  .liv-section,
  .garden-section {
    left: 0;
    width: 100%;
    margin: 8mm 0;
    padding: 10mm;
    transform: none;
    background: #0e4f31 !important;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .smart-feature,
  .habits-panel,
  .garden-section,
  .step-goal-showcase {
    grid-template-columns: 1fr;
  }

  .final-cta {
    padding: 12mm;
    break-before: page;
  }
}
