:root {
  --bg: #f4efe7;
  --bg-soft: #fbf8f3;
  --surface: rgba(255, 251, 245, 0.8);
  --surface-strong: #fffaf3;
  --ink: #213326;
  --muted: #597060;
  --line: rgba(33, 51, 38, 0.1);
  --green: #5f8f55;
  --green-deep: #355d35;
  --green-soft: #dfeeda;
  --accent: #f2c98a;
  --shadow: 0 24px 60px rgba(43, 66, 49, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(182, 217, 166, 0.55), transparent 28%),
    radial-gradient(circle at top right, rgba(242, 201, 138, 0.35), transparent 22%),
    linear-gradient(180deg, #f8f5ee 0%, var(--bg) 100%);
  color: var(--ink);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}

body::before {
  top: 8%;
  right: -80px;
  background: rgba(194, 230, 184, 0.55);
}

body::after {
  bottom: 12%;
  left: -100px;
  background: rgba(255, 220, 176, 0.42);
}

button,
a,
input,
summary {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 80px;
}

.hero {
  padding-top: 8px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 243, 0.66);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(48, 68, 48, 0.08);
}

.brand-mark {
  display: flex;
  gap: 4px;
  align-items: flex-end;
}

.brand-mark span {
  width: 12px;
  border-radius: 999px 999px 0 999px;
  background: linear-gradient(180deg, #7dad6a, #477246);
  transform-origin: bottom;
}

.brand-mark span:nth-child(1) {
  height: 14px;
}

.brand-mark span:nth-child(2) {
  height: 18px;
}

.brand-mark span:nth-child(3) {
  height: 22px;
}

.brand-text {
  margin-right: auto;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.top-link {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
  padding: 52px 0 18px;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(223, 238, 218, 0.9);
  color: var(--green-deep);
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-copy h1,
.section-heading h2,
.text-panel h2,
.cta-panel h2,
.modal-copy h2 {
  margin: 18px 0 14px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  font-size: clamp(2.7rem, 6vw, 5rem);
  max-width: 11ch;
}

.lead,
.text-panel p,
.audience-card p,
.benefit-item p,
.proof-card p,
.feature-card p,
.cta-panel p,
.faq-item p,
.modal-copy p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible,
.close-button:hover,
.close-button:focus-visible,
summary:hover,
summary:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(180deg, #6ea463 0%, #4c7d49 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(76, 125, 73, 0.26);
}

.button-secondary {
  border-color: rgba(53, 93, 53, 0.14);
  color: var(--green-deep);
  background: rgba(255, 250, 243, 0.82);
}

.button.large {
  min-width: 220px;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.proof-strip li {
  padding: 10px 14px;
  border: 1px solid rgba(53, 93, 53, 0.09);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.82);
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-card {
  position: relative;
  width: min(100%, 430px);
  padding: 18px;
  border-radius: 38px;
  background: linear-gradient(180deg, #30513a 0%, #1f3326 100%);
  box-shadow: var(--shadow);
}

.phone-notch {
  width: 108px;
  height: 24px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.screen-header,
.screen-cards,
.mini-card {
  display: flex;
}

.screen-header {
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(248, 244, 235, 0.95);
}

.screen-header strong,
.screen-header small {
  display: block;
}

.screen-header small {
  color: var(--muted);
  margin-top: 2px;
}

.avatar-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #9dd88d, #477246);
}

.plant-stage {
  position: relative;
  height: 280px;
  margin: 18px 0;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.52), transparent 20%),
    linear-gradient(180deg, #e3f3da 0%, #c6e0bb 52%, #e2d6bc 52%, #e2d6bc 100%);
}

.shelf {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 78px;
  height: 12px;
  background: rgba(97, 69, 46, 0.45);
}

.pot {
  position: absolute;
  bottom: 90px;
  width: 82px;
  height: 72px;
  border-radius: 18px 18px 26px 26px;
  background: linear-gradient(180deg, #e3a86c, #c47f49);
}

.pot::before {
  content: "";
  position: absolute;
  top: -14px;
  left: -6px;
  right: -6px;
  height: 20px;
  border-radius: 16px;
  background: linear-gradient(180deg, #b56b3d, #9d5932);
}

.pot-a {
  left: 34px;
}

.pot-b {
  left: 164px;
}

.pot-c {
  right: 34px;
}

.leaves,
.leaves::before,
.leaves::after,
.leaves.rare::before,
.leaves.rare::after {
  position: absolute;
  content: "";
  display: block;
  background: linear-gradient(180deg, #74b76a, #39703d);
  border-radius: 999px 999px 0 999px;
}

.leaves {
  width: 22px;
  height: 72px;
  left: 30px;
  top: -76px;
  transform: rotate(-4deg);
}

.leaves::before {
  width: 28px;
  height: 58px;
  left: -24px;
  top: 10px;
  transform: rotate(-38deg);
}

.leaves::after {
  width: 28px;
  height: 58px;
  right: -24px;
  top: 6px;
  transform: rotate(38deg) scaleX(-1);
}

.leaves.rare {
  background: linear-gradient(180deg, #8dca7b, #5a905d);
}

.leaves.rare::before,
.leaves.rare::after {
  background: linear-gradient(180deg, #d8f2d0, #80bc73);
}

.screen-cards {
  gap: 12px;
}

.mini-card {
  flex: 1;
  flex-direction: column;
  gap: 6px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(248, 244, 235, 0.95);
}

.mini-card span {
  color: var(--muted);
  font-size: 0.88rem;
}

.mini-card.accent {
  background: rgba(241, 224, 191, 0.95);
}

.floating-badge {
  position: absolute;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.95);
  border: 1px solid rgba(53, 93, 53, 0.1);
  box-shadow: 0 12px 30px rgba(46, 60, 46, 0.12);
  font-weight: 600;
}

.badge-one {
  top: 90px;
  left: 0;
}

.badge-two {
  right: 6px;
  bottom: 110px;
}

.section {
  padding: 36px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-heading.narrow {
  max-width: 700px;
}

.audience-card,
.text-panel,
.feature-card,
.proof-card,
.cta-panel,
.faq-item {
  border: 1px solid var(--line);
  background: rgba(255, 250, 243, 0.78);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(55, 72, 55, 0.06);
}

.audience-card {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.split-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.text-panel {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.soft {
  background: rgba(255, 247, 239, 0.9);
}

.accent-panel {
  background: linear-gradient(180deg, rgba(223, 238, 218, 0.96), rgba(245, 237, 223, 0.96));
}

.cards-grid,
.proof-grid,
.benefit-list {
  display: grid;
  gap: 18px;
}

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

.feature-card,
.proof-card {
  padding: 26px;
  border-radius: var(--radius-lg);
}

.feature-card h3,
.proof-card strong {
  display: block;
  margin: 16px 0 10px;
  font-size: 1.16rem;
}

.icon-bloom {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.65), transparent 24%),
    linear-gradient(180deg, #8bbe80, #5a8c58);
  position: relative;
}

.icon-bloom::before,
.icon-bloom::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 999px 999px 0 999px;
}

.icon-bloom::before {
  width: 16px;
  height: 26px;
  left: 14px;
  top: 13px;
  transform: rotate(-28deg);
}

.icon-bloom::after {
  width: 16px;
  height: 26px;
  right: 14px;
  top: 13px;
  transform: rotate(28deg) scaleX(-1);
}

.icon-bloom.twin {
  background: linear-gradient(180deg, #98c98f, #6ea463);
}

.icon-bloom.rare {
  background: linear-gradient(180deg, #f0d296, #d9b06a);
}

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

.benefit-item {
  padding: 8px 0;
}

.benefit-item strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.08rem;
}

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

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(230, 241, 224, 0.95), rgba(255, 247, 233, 0.96));
}

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

.faq-item {
  padding: 0 22px;
  border-radius: var(--radius-md);
}

summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  padding: 20px 0;
}

summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0 0 20px;
}

.waitlist-modal {
  width: min(560px, calc(100% - 24px));
  padding: 0;
  border: none;
  border-radius: 28px;
  background: transparent;
}

.waitlist-modal::backdrop {
  background: rgba(20, 31, 23, 0.42);
  backdrop-filter: blur(4px);
}

.modal-card {
  padding: 18px;
  border-radius: 28px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.modal-close-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 8px;
}

.close-button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(89, 112, 96, 0.1);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.5rem;
}

.modal-copy {
  padding: 0 6px 10px;
}

.waitlist-form {
  display: grid;
  gap: 16px;
  padding: 6px;
}

.waitlist-form label {
  display: grid;
  gap: 8px;
}

.waitlist-form span {
  font-weight: 600;
}

.waitlist-form input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(53, 93, 53, 0.16);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
}

.waitlist-form input:focus {
  outline: 2px solid rgba(95, 143, 85, 0.22);
  border-color: var(--green);
}

.submit-button {
  width: 100%;
}

.landai-waitlist-success,
.landai-waitlist-error {
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 0.96rem;
}

.landai-waitlist-success {
  background: rgba(223, 238, 218, 0.9);
  color: var(--green-deep);
}

.landai-waitlist-error {
  background: rgba(255, 233, 228, 0.9);
  color: #8a4036;
}

@media (max-width: 980px) {
  .hero-grid,
  .split-section,
  .cards-grid,
  .benefit-list,
  .proof-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .cta-panel {
    display: grid;
  }

  .hero-copy h1 {
    max-width: 13ch;
  }

  .hero-visual {
    min-height: 460px;
  }

  .badge-one {
    left: 10px;
  }

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

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 20px, 100%);
    padding-bottom: 56px;
  }

  .topbar {
    padding: 12px 14px;
    border-radius: 24px;
  }

  .top-link {
    display: none;
  }

  .hero-grid {
    gap: 22px;
    padding-top: 34px;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
    max-width: 10ch;
  }

  .lead,
  .text-panel p,
  .audience-card p,
  .benefit-item p,
  .proof-card p,
  .feature-card p,
  .cta-panel p,
  .faq-item p,
  .modal-copy p {
    font-size: 0.98rem;
  }

  .phone-card {
    border-radius: 30px;
    padding: 14px;
  }

  .plant-stage {
    height: 236px;
  }

  .pot {
    width: 68px;
    height: 58px;
  }

  .pot-a {
    left: 18px;
  }

  .pot-b {
    left: calc(50% - 34px);
    transform: translateX(-50%);
  }

  .pot-c {
    right: 18px;
  }

  .leaves {
    left: 23px;
    height: 62px;
    top: -64px;
  }

  .floating-badge {
    font-size: 0.88rem;
    padding: 10px 14px;
  }

  .section {
    padding: 28px 0;
  }

  .audience-card,
  .text-panel,
  .feature-card,
  .proof-card,
  .cta-panel,
  .faq-item,
  .modal-card {
    border-radius: 22px;
  }

  .cta-panel,
  .feature-card,
  .proof-card,
  .audience-card,
  .text-panel {
    padding: 22px;
  }

  .button,
  .waitlist-form input {
    min-height: 52px;
  }
}
