/* ── Landing page ────────────────────────────────────────────────────────── */

body { background: var(--surface); font-size: 15px; }

/* ── Shared section layout ───────────────────────────────────────────────── */

section        { padding: 80px 5%; }
.container     { max-width: 1100px; margin: 0 auto; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--accent-soft);
  padding: 4px 10px;
  border-radius: 99px;
  margin-bottom: 16px;
}

.section-header        { margin-bottom: 56px; }
.section-header h2     { font-size: clamp(26px, 3.5vw, 38px); font-weight: 700; line-height: 1.2; letter-spacing: -.02em; }
.section-header p      { font-size: 16px; color: var(--text-muted); margin-top: 12px; max-width: 560px; }

h1 { font-size: clamp(36px, 5vw, 58px); font-weight: 800; line-height: 1.1; letter-spacing: -.03em; }
h2 { font-size: clamp(26px, 3.5vw, 38px); font-weight: 700; line-height: 1.2; letter-spacing: -.02em; }
h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }

/* ── Hero ────────────────────────────────────────────────────────────────── */

.hero {
  padding: 100px 5% 80px;
  background: linear-gradient(160deg, #f0f7f1 0%, var(--bg) 60%);
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--brand);
  background: #ddeede;
  padding: 5px 12px;
  border-radius: 99px;
  margin-bottom: 20px;
}

.hero-eyebrow span {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}

.hero h1      { margin-bottom: 20px; }
.hero-sub     { font-size: 17px; color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; max-width: 480px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(23,32,24,.10);
  overflow: hidden;
}

.hero-card-header {
  background: var(--brand-dark);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-card-dots            { display: flex; gap: 5px; }
.hero-card-dots span       { width: 10px; height: 10px; border-radius: 50%; }
.hero-card-dots span:nth-child(1) { background: #ff5f57; }
.hero-card-dots span:nth-child(2) { background: #febc2e; }
.hero-card-dots span:nth-child(3) { background: #28c840; }

.hero-card-title  { font-size: 12px; font-weight: 600; color: rgba(255,255,255,.5); margin-left: 4px; }
.hero-card-body   { padding: 20px; }

.timeline-preview         { list-style: none; }
.timeline-preview li      { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.timeline-preview li:last-child { border-bottom: none; }

.tl-date       { font-size: 11.5px; color: var(--text-xmuted); width: 56px; flex-shrink: 0; padding-top: 1px; }
.tl-badge      { font-size: 11px; font-weight: 600; padding: 2px 7px; border-radius: 4px; white-space: nowrap; height: fit-content; margin-top: 1px; }
.tl-planted    { background: #dcfce7; color: #166534; }
.tl-watered    { background: #dbeafe; color: #1e40af; }
.tl-harvest    { background: #fef9c3; color: #854d0e; }
.tl-note       { background: #f3f4f6; color: #374151; }
.tl-pest       { background: #fee2e2; color: #991b1b; }
.tl-text       { color: var(--text-muted); }
.tl-text strong { color: var(--text); font-weight: 600; }

/* ── Stats bar ───────────────────────────────────────────────────────────── */

.stats-bar {
  padding: 40px 5%;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-item       { text-align: center; }
.stat-num        { font-size: 32px; font-weight: 800; color: var(--brand); letter-spacing: -.02em; }
.stat-label      { font-size: 13px; color: var(--text-muted); margin-top: 2px; }

/* ── Features ────────────────────────────────────────────────────────────── */

.features-section { background: var(--bg); }

.features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.feature-card {
  grid-column: span 2;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.feature-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.07);
  transform: translateY(-2px);
}

.fc-wide { grid-column: span 3; }

.fc-full {
  grid-column: span 6;
  display: flex;
  align-items: center;
  gap: 28px;
  background: linear-gradient(135deg, #f5f3ff 0%, #faf5ff 100%);
  border-color: #ddd6fe;
}

.fc-full h3 { font-size: 16px; }
.fc-full p  { max-width: 780px; }

.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.fc-full .feature-icon { margin-bottom: 0; width: 52px; height: 52px; }

.feature-icon svg  { width: 24px; height: 24px; }
.feature-card h3   { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.feature-card p    { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ── How it works ────────────────────────────────────────────────────────── */

.how-inner { max-width: 1100px; margin: 0 auto; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.step-num {
  width: 36px; height: 36px;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
}

.step h3 { margin-bottom: 8px; }
.step p  { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ── Use cases ───────────────────────────────────────────────────────────── */

.use-cases-section { background: var(--bg); }

.use-cases-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.use-case-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 32px;
  display: flex;
  gap: 20px;
}

.use-case-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--accent-soft);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}

.use-case-card h3 { margin-bottom: 6px; }
.use-case-card p  { font-size: 14px; color: var(--text-muted); }

/* ── AI section ──────────────────────────────────────────────────────────── */

.ai-section          { background: var(--brand-dark); color: #fff; }

.ai-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ai-inner h2         { color: #fff; }
.ai-inner > div > p  { color: rgba(255,255,255,.65); font-size: 15px; line-height: 1.7; margin-top: 14px; }

.ai-features         { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }

.ai-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.75);
}

.ai-features li::before {
  content: "";
  width: 16px; height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2.5' stroke='%234F8A5B'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M4.5 12.75l6 6 9-13.5'/%3E%3C/svg%3E") no-repeat center/contain;
  flex-shrink: 0;
  margin-top: 2px;
}

.ai-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 24px;
}

.ai-card-label   { font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }

.ai-message {
  background: rgba(255,255,255,.05);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  margin-bottom: 12px;
}

.ai-response {
  background: rgba(79,138,91,.15);
  border: 1px solid rgba(79,138,91,.3);
  border-radius: 8px;
  padding: 14px;
  font-size: 13px;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
}

.ai-response strong { color: #a8d5b0; }

/* ── Pricing ─────────────────────────────────────────────────────────────── */

.pricing-grid {
  max-width: 900px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pricing-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  background: var(--surface);
}

.pricing-card.featured {
  border-color: var(--brand);
  border-width: 2px;
  position: relative;
}

.pricing-featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 99px;
  white-space: nowrap;
}

.pricing-tier  { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.pricing-price { font-size: 38px; font-weight: 800; letter-spacing: -.03em; color: var(--text); line-height: 1; }
.pricing-price span { font-size: 15px; font-weight: 400; color: var(--text-muted); }
.pricing-desc  { font-size: 13px; color: var(--text-muted); margin: 10px 0 20px; line-height: 1.5; }

.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-muted);
}

.pricing-features li::before {
  content: "";
  width: 15px; height: 15px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2.5' stroke='%234F8A5B'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M4.5 12.75l6 6 9-13.5'/%3E%3C/svg%3E") no-repeat center/contain;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-cta {
  display: block;
  width: 100%;
  height: 42px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  line-height: 42px;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  font-family: var(--font);
}

.pricing-cta-primary       { background: var(--brand); color: #fff; }
.pricing-cta-primary:hover { background: var(--brand-light); }
.pricing-cta-ghost         { background: transparent; border: 1.5px solid var(--border); color: var(--text); }
.pricing-cta-ghost:hover   { border-color: var(--brand); color: var(--brand); }

/* ── CTA section ─────────────────────────────────────────────────────────── */

.cta-section   { background: var(--bg); text-align: center; }
.cta-inner     { max-width: 600px; margin: 0 auto; }
.cta-inner h2  { margin-bottom: 14px; }
.cta-inner p   { font-size: 16px; color: var(--text-muted); margin-bottom: 32px; }

.cta-form { display: flex; gap: 10px; max-width: 440px; margin: 0 auto; }

.cta-form input {
  flex: 1;
  height: 46px;
  padding: 0 14px;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font-size: 14px;
  font-family: var(--font);
  outline: none;
  transition: border-color var(--transition);
}

.cta-form input:focus { border-color: var(--brand); }
.cta-note             { font-size: 12.5px; color: var(--text-xmuted); margin-top: 12px; }

/* ── Landing footer ──────────────────────────────────────────────────────── */

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 900px) {
  .hero-inner, .ai-inner { grid-template-columns: 1fr; }
  .hero-card             { display: none; }
  .features-grid          { grid-template-columns: repeat(2, 1fr); }
  .features-grid .feature-card,
  .features-grid .fc-wide,
  .features-grid .fc-full { grid-column: span 1; }
  .steps                  { grid-template-columns: 1fr 1fr; }
  .pricing-grid          { grid-template-columns: 1fr; max-width: 440px; }
  .use-cases-grid        { grid-template-columns: 1fr; }
  .stats-inner           { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .features-grid          { grid-template-columns: 1fr; }
  .features-grid .feature-card,
  .features-grid .fc-wide,
  .features-grid .fc-full { grid-column: span 1; }
  .fc-full                { flex-direction: column; align-items: flex-start; }
  .steps                  { grid-template-columns: 1fr; }
  .cta-form                { flex-direction: column; }
}

/* ── Garden Designer feature section ─────────────────────────────────────── */

.designer-feature-section {
  padding: 100px 24px;
  background: #f8faf5;
}
.designer-feature-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.designer-feature-text h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin: 12px 0 16px;
}
.designer-feature-text > p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.designer-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.designer-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.5;
}
.designer-feature-list li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--brand);
}

/* Mockup */
.designer-mockup {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.13);
  border: 1.5px solid var(--border);
  background: #fff;
  font-family: inherit;
}
.dm-topbar {
  background: var(--brand-dark);
  color: #fff;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dm-title { font-size: 13px; font-weight: 600; }
.dm-btn {
  font-size: 11px; font-weight: 600;
  background: var(--brand); color: #fff;
  padding: 4px 10px; border-radius: 6px;
}
.dm-body {
  display: flex;
}
.dm-sidebar {
  width: 160px;
  flex-shrink: 0;
  border-right: 1px solid var(--border);
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dm-sidebar-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--text-muted);
  padding: 2px 4px;
}
.dm-bed-item {
  border-radius: 7px;
  padding: 7px 9px;
  border: 1.5px solid transparent;
}
.dm-bed-name { font-size: 11px; font-weight: 600; }
.dm-bed-sub  { font-size: 10px; color: var(--text-muted); margin-top: 1px; }
.dm-status-overdue  { background:#fee2e2; border-color:#f87171; }
.dm-status-ok       { background:#dcfce7; border-color:#4ade80; }
.dm-status-due-soon { background:#fef3c7; border-color:#fbbf24; }
.dm-status-empty    { background:#f1f5f9; border-color:#cbd5e1; }

.dm-grid-wrap { flex: 1; padding: 10px; display: flex; flex-direction: column; gap: 8px; background: #f5f7f0; }
.dm-grid {
  position: relative;
  height: 165px;
  background: #f5f7f0;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.dm-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(0,0,0,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,.06) 1px, transparent 1px);
  background-size: 20px 20px;
}
.dm-placed-bed {
  position: absolute;
  border-radius: 5px;
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .05em;
  text-align: center;
  padding: 2px;
  color: rgba(0,0,0,.6);
}
.dm-bed-overdue  { background:#fee2e2; border-color:#f87171; }
.dm-bed-ok       { background:#dcfce7; border-color:#4ade80; }
.dm-bed-due-soon { background:#fef3c7; border-color:#fbbf24; }

.dm-legend {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.dm-leg-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: var(--text-muted);
}
.dm-leg-dot {
  width: 9px; height: 9px;
  border-radius: 2px;
  border: 1.5px solid;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .designer-feature-inner { grid-template-columns: 1fr; }
  .designer-mockup { max-width: 520px; }
}

/* ── Walk Session feature section ───────────────────────────────────────────── */

.walk-feature-section {
  padding: 100px 24px;
  background: #fff;
}
.walk-feature-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.walk-feature-text h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin: 12px 0 16px;
}
.walk-feature-text > p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* Phone mockup */
.walk-feature-mockup { position: relative; }
.wf-phone {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,.12);
  font-family: inherit;
  max-width: 340px;
  margin: 0 auto;
}
.wf-phone-bar {
  background: var(--brand, #2f5d42);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
}
.wf-phone-title { font-size: 14px; font-weight: 600; }
.wf-stop-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #e74c3c;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
}
.wf-transcript {
  background: #f8faf5;
  border-bottom: 1px solid var(--border, #e5e7eb);
  padding: 10px 16px;
  font-size: 13px;
  color: #888;
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 8px;
}
.wf-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e74c3c;
  flex-shrink: 0;
  animation: wf-pulse 1.2s infinite;
}
@keyframes wf-pulse { 0%,100%{opacity:1} 50%{opacity:.3} }
.wf-cards { padding: 10px 12px; display: flex; flex-direction: column; gap: 7px; }
.wf-card {
  background: #fff;
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}
.wf-card-planted { border-color: #86efac; background: #f0fdf4; }
.wf-card-text { font-size: 12.5px; color: #1a1a1a; line-height: 1.45; flex: 1; }
.wf-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 2px 8px;
  white-space: nowrap;
  color: #64748b;
  flex-shrink: 0;
  margin-top: 1px;
}
.wf-badge-planted { background: #dcfce7; border-color: #86efac; color: #15803d; }
.wf-actions { padding: 10px 12px 14px; }
.wf-save-btn {
  background: var(--brand, #2f5d42);
  color: #fff;
  border-radius: 10px;
  padding: 11px;
  text-align: center;
  font-size: 13.5px;
  font-weight: 600;
}
.wf-ai-pill {
  position: absolute;
  bottom: -16px;
  right: 10px;
  background: #1e1e2e;
  color: #e0e0ff;
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  white-space: nowrap;
}
.wf-ai-pill svg { color: #a78bfa; }

@media (max-width: 900px) {
  .walk-feature-inner { grid-template-columns: 1fr; }
  .walk-feature-mockup { max-width: 380px; margin: 0 auto; padding-bottom: 32px; }
}

/* ── Dashboard feature section ───────────────────────────────────────────── */

.dashboard-feature-section {
  padding: 100px 24px;
  background: var(--surface);
}
.dashboard-feature-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.dashboard-feature-text h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin: 12px 0 16px;
}
.dashboard-feature-text > p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.dashboard-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dashboard-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.5;
}
.dashboard-feature-list li svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--brand);
}

/* Dashboard mockup */
.dash-mockup {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.13);
  border: 1.5px solid var(--border);
  background: #f5f7f0;
  font-family: inherit;
}
.dash-mock-topbar {
  background: var(--brand-dark);
  color: #fff;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dash-mock-title { font-size: 13px; font-weight: 600; }
.dash-mock-actions { display: flex; gap: 6px; }
.dash-mock-btn {
  font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 6px;
}
.dash-mock-btn-primary { background: var(--brand); color: #fff; }
.dash-mock-btn-ghost   { background: rgba(255,255,255,.12); color: rgba(255,255,255,.8); }
.dash-mock-body {
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 7px;
}
.dash-mock-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  padding: 10px 11px;
  min-height: 62px;
}
.dash-mock-card-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.dash-mock-card-val {
  font-size: 18px;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -.02em;
  line-height: 1;
}
.dash-mock-card-sub {
  font-size: 9.5px;
  color: var(--text-muted);
  margin-top: 3px;
}
.dash-mock-card-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 28px;
  margin-top: 5px;
}
.dash-mock-card-bars span {
  flex: 1;
  background: var(--accent-soft);
  border-radius: 2px;
}
.dash-mock-card-bars span.hi { background: var(--brand); }
.dash-mock-edit-bar {
  background: rgba(74,142,91,.1);
  border: 1.5px dashed var(--brand);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 9px;
  font-weight: 600;
  color: var(--brand);
  min-height: 62px;
  cursor: pointer;
}
.dash-mock-drag-handle {
  position: absolute;
  top: 5px; right: 7px;
  font-size: 10px;
  color: var(--brand);
  opacity: .5;
}
.dash-mock-card.edit-ring {
  border-color: var(--brand);
  border-style: dashed;
  position: relative;
}
.dash-mock-size-pill {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 9px;
  font-weight: 600;
  background: rgba(74,142,91,.12);
  color: var(--brand);
  padding: 1px 6px;
  border-radius: 99px;
  margin-top: 5px;
}

@media (max-width: 900px) {
  .dashboard-feature-inner { grid-template-columns: 1fr; }
  .dash-mockup { max-width: 520px; }
}

/* ── AI Planner section ──────────────────────────────────────────────────── */

.planner-section {
  padding: 100px 24px;
  background: #f8faf5;
}
.planner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.planner-text h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin: 12px 0 16px;
}
.planner-text > p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.planner-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.planner-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.5;
}
.planner-list li svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--brand);
}

/* Planner mockup */
.planner-mockup {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.12);
  border: 1.5px solid var(--border);
  background: #fff;
  font-family: inherit;
}
.pm-topbar {
  background: var(--brand-dark);
  color: #fff;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pm-title { font-size: 13px; font-weight: 600; }
.pm-badge {
  font-size: 10px; font-weight: 700;
  background: rgba(74,142,91,.35);
  color: #a8d5b0;
  padding: 3px 8px;
  border-radius: 5px;
  letter-spacing: .04em;
}
.pm-form {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.pm-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.pm-input {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 7px 10px;
  font-size: 11.5px;
  color: var(--text);
  line-height: 1.4;
}
.pm-row { display: flex; gap: 7px; }
.pm-select {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 6px 9px;
  font-size: 11px;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pm-select-val { color: var(--brand); font-weight: 600; }
.pm-submit {
  background: var(--brand);
  color: #fff;
  border-radius: 7px;
  padding: 7px 14px;
  font-size: 11.5px;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.pm-results {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pm-results-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.pm-crop-row {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 11px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pm-crop-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pm-crop-name {
  font-size: 12px;
  font-weight: 700;
  flex: 1;
  color: var(--text);
}
.pm-crop-detail {
  font-size: 10.5px;
  color: var(--text-muted);
  line-height: 1.4;
}
.pm-crop-when {
  font-size: 10px;
  font-weight: 600;
  color: var(--brand);
  white-space: nowrap;
}
.pm-followup {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 8px 11px;
  font-size: 11px;
  color: #166534;
  display: flex;
  gap: 7px;
  align-items: flex-start;
}

@media (max-width: 900px) {
  .planner-inner { grid-template-columns: 1fr; }
  .planner-mockup { max-width: 520px; }
}

/* ── Sprout AI assistant section ─────────────────────────────────────────── */

.sprout-section {
  padding: 100px 24px;
  background: #111c14;
  color: #fff;
}
.sprout-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.sprout-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #a8d5b0;
  background: rgba(168,213,176,.12);
  border: 1px solid rgba(168,213,176,.2);
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 20px;
}
.sprout-eyebrow-dot {
  width: 6px; height: 6px;
  background: #4F8A5B;
  border-radius: 50%;
  display: inline-block;
}
.sprout-text h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 18px;
}
.sprout-text > p {
  font-size: 16px;
  color: rgba(255,255,255,.6);
  line-height: 1.75;
  margin-bottom: 32px;
}
.sprout-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.sprout-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: rgba(255,255,255,.8);
  line-height: 1.5;
}
.sprout-list li svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  color: #4F8A5B;
}

/* Chat mockup */
.sprout-mockup {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.08);
  background: #1a2e1e;
  font-family: inherit;
  display: flex;
  flex-direction: column;
}
.sm-header {
  background: #0f1f12;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  flex-shrink: 0;
}
.sm-dots { display: flex; gap: 5px; }
.sm-dots span { width: 10px; height: 10px; border-radius: 50%; }
.sm-dots span:nth-child(1) { background: #ff5f57; }
.sm-dots span:nth-child(2) { background: #febc2e; }
.sm-dots span:nth-child(3) { background: #28c840; }
.sm-header-title {
  flex: 1;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  margin-left: -40px;
}
.sm-ai-badge {
  font-size: 10px; font-weight: 700;
  background: rgba(79,138,91,.35);
  color: #a8d5b0;
  padding: 3px 9px;
  border-radius: 5px;
  letter-spacing: .04em;
}
.sm-ctx-strip {
  background: rgba(79,138,91,.1);
  border-bottom: 1px solid rgba(79,138,91,.15);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: rgba(255,255,255,.4);
  flex-shrink: 0;
}
.sm-ctx-strip svg { width: 12px; height: 12px; color: #4F8A5B; flex-shrink: 0; }
.sm-ctx-chip {
  font-size: 10.5px;
  font-weight: 600;
  color: #a8d5b0;
  background: rgba(168,213,176,.1);
  border: 1px solid rgba(168,213,176,.18);
  padding: 1px 8px;
  border-radius: 99px;
}
.sm-messages {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sm-msg-user {
  align-self: flex-end;
  max-width: 72%;
  background: #2F5D3A;
  color: rgba(255,255,255,.92);
  border-radius: 14px 14px 3px 14px;
  padding: 9px 13px;
  font-size: 13px;
  line-height: 1.5;
}
.sm-msg-bot {
  align-self: flex-start;
  max-width: 86%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  color: rgba(255,255,255,.82);
  border-radius: 14px 14px 14px 3px;
  padding: 11px 14px;
  font-size: 13px;
  line-height: 1.6;
}
.sm-msg-bot-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #4F8A5B;
  margin-bottom: 7px;
}
.sm-watering-items {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 8px;
}
.sm-watering-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  padding: 5px 8px;
  border-radius: 6px;
  background: rgba(255,255,255,.05);
}
.sm-watering-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.sm-watering-dot.urgent { background: #f87171; }
.sm-watering-dot.ok     { background: #4ade80; }
.sm-watering-dot.skip   { background: #94a3b8; }
.sm-watering-badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 4px;
  flex-shrink: 0;
}
.sm-watering-badge.water-now { background: rgba(239,68,68,.2); color: #fca5a5; }
.sm-watering-badge.water-eve { background: rgba(79,138,91,.2); color: #86efac; }
.sm-watering-badge.can-wait  { background: rgba(148,163,184,.15); color: rgba(255,255,255,.4); }

/* Draft confirm card */
.sm-draft-card {
  align-self: flex-start;
  max-width: 88%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(168,213,176,.22);
  border-radius: 14px 14px 14px 3px;
  overflow: hidden;
  font-size: 12.5px;
}
.sm-draft-header {
  background: rgba(79,138,91,.18);
  border-bottom: 1px solid rgba(168,213,176,.15);
  padding: 8px 13px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  color: #a8d5b0;
}
.sm-draft-header svg { width: 13px; height: 13px; }
.sm-draft-body {
  padding: 11px 13px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.sm-draft-row {
  display: flex;
  gap: 6px;
  align-items: baseline;
  font-size: 12px;
}
.sm-draft-key {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  width: 56px;
  flex-shrink: 0;
}
.sm-draft-val { color: rgba(255,255,255,.85); }
.sm-draft-actions {
  padding: 9px 13px;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex;
  gap: 7px;
}
.sm-draft-btn-confirm {
  background: #2F5D3A;
  color: #fff;
  border-radius: 6px;
  padding: 5px 14px;
  font-size: 11.5px;
  font-weight: 700;
  flex: 1;
  text-align: center;
}
.sm-draft-btn-edit {
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.55);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 11.5px;
  font-weight: 600;
  text-align: center;
}

/* Typing indicator */
.sm-typing {
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 14px 14px 14px 3px;
  padding: 10px 14px;
}
.sm-typing span {
  width: 6px; height: 6px;
  background: rgba(255,255,255,.3);
  border-radius: 50%;
  animation: sm-bounce 1.2s infinite ease-in-out;
}
.sm-typing span:nth-child(2) { animation-delay: .15s; }
.sm-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes sm-bounce {
  0%, 60%, 100% { transform: translateY(0); }
  30%            { transform: translateY(-5px); background: rgba(168,213,176,.7); }
}

/* Input bar */
.sm-input-bar {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 10px 12px;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}
.sm-input-field {
  flex: 1;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 7px 11px;
  font-size: 12px;
  color: rgba(255,255,255,.4);
}
.sm-input-send {
  width: 32px; height: 32px;
  background: #2F5D3A;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sm-input-send svg { width: 14px; height: 14px; color: #fff; }

/* Three capability pills below the mockup */
.sprout-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.sprout-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 99px;
  padding: 5px 12px;
}
.sprout-pill svg { width: 13px; height: 13px; color: #4F8A5B; flex-shrink: 0; }

@media (max-width: 900px) {
  .sprout-inner { grid-template-columns: 1fr; }
  .sprout-mockup { max-width: 520px; }
}
