/* ══════════════════════════════════════════════════════════════════
   Smart Plant Botanical Garden — Premium Landing Page CSS
   2026 Botanical Design System · Deep Green + Sage + Gold Theme
   Dark + Light Theme · THERABApps
══════════════════════════════════════════════════════════════════ */

/* ─── DARK THEME TOKENS (default) ──────────────────────────────── */
:root {
  /* Backgrounds */
  --bg-primary:        #030e06;
  --bg-secondary:      #061409;
  --bg-card:           rgba(34,85,34,0.07);
  --bg-card-solid:     #0a1f0d;
  --bg-glass:          rgba(3,14,6,0.90);
  --bg-icon:           rgba(52,121,52,0.14);
  --bg-icon-neutral:   rgba(255,255,255,0.05);
  --bg-input:          rgba(255,255,255,0.04);

  /* Borders */
  --border:            rgba(74,140,74,0.18);
  --border-glow:       rgba(74,140,74,0.55);
  --border-subtle:     rgba(255,255,255,0.07);

  /* Text */
  --text-primary:      #f0faf0;
  --text-secondary:    #9dbf9d;
  --text-muted:        #5a8a5a;
  --text-on-accent:    #ffffff;

  /* Brand Accents */
  --accent-forest:     #2d6a2d;
  --accent-emerald:    #3a9a3a;
  --accent-sage:       #7aad6e;
  --accent-gold:       #c9a84c;
  --accent-gold-light: #f0cb6e;
  --accent-cream:      #f5f0e8;

  /* Gradients */
  --grad-primary:   linear-gradient(135deg, #2d6a2d 0%, #3a9a3a 50%, #5cb85c 100%);
  --grad-gold:      linear-gradient(135deg, #c9a84c 0%, #f0cb6e 100%);
  --grad-hero:      linear-gradient(135deg, #030e06 0%, #061409 60%, #030e06 100%);
  --grad-download:  linear-gradient(135deg, #030e06 0%, #061409 50%, #030e06 100%);
  --grad-stats:     linear-gradient(135deg, #040f07, #071a09);

  /* Shadows */
  --shadow-glow:   0 0 60px rgba(58,154,58,0.22);
  --shadow-card:   0 8px 32px rgba(0,0,0,0.55);
  --shadow-float:  0 8px 24px rgba(0,0,0,0.45);
  --shadow-nav:    0 4px 24px rgba(0,0,0,0.45);
  --shadow-phone:  0 40px 80px rgba(58,154,58,0.28);
  --shadow-download: 0 12px 48px rgba(58,154,58,0.30);

  /* Radii */
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --radius-full: 9999px;

  /* Transitions */
  --transition:        all 0.3s cubic-bezier(0.4,0,0.2,1);
  --transition-bounce: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

/* ─── LIGHT THEME TOKENS ────────────────────────────────────────── */
[data-theme="light"] {
  --bg-primary:        #f5f9f0;
  --bg-secondary:      #e8f5e8;
  --bg-card:           rgba(52,121,52,0.06);
  --bg-card-solid:     #ffffff;
  --bg-glass:          rgba(245,249,240,0.96);
  --bg-icon:           rgba(52,121,52,0.10);
  --bg-icon-neutral:   rgba(0,0,0,0.04);
  --bg-input:          rgba(0,0,0,0.04);
  --border:            rgba(52,121,52,0.22);
  --border-glow:       rgba(52,121,52,0.50);
  --border-subtle:     rgba(0,0,0,0.08);
  --text-primary:      #0d2e0d;
  --text-secondary:    #2d5a2d;
  --text-muted:        #5a7a5a;
  --text-on-accent:    #ffffff;
  --accent-forest:     #1e5c1e;
  --accent-emerald:    #2d7a2d;
  --accent-sage:       #5a8a50;
  --accent-gold:       #a07830;
  --accent-gold-light: #c9a84c;
  --accent-cream:      #6b5020;
  --grad-primary:   linear-gradient(135deg, #1e5c1e 0%, #2d7a2d 50%, #4a9a4a 100%);
  --grad-gold:      linear-gradient(135deg, #a07830 0%, #c9a84c 100%);
  --grad-download:  linear-gradient(135deg, #d0e8d0 0%, #c0dfc0 50%, #d0e8d0 100%);
  --grad-stats:     linear-gradient(135deg, #c8e8c8, #d8eed8);
  --shadow-glow:   0 0 60px rgba(52,121,52,0.18);
  --shadow-card:   0 4px 20px rgba(0,0,0,0.10);
  --shadow-float:  0 4px 16px rgba(0,0,0,0.10);
  --shadow-nav:    0 2px 16px rgba(0,0,0,0.12);
  --shadow-phone:  0 30px 60px rgba(52,121,52,0.22);
  --shadow-download: 0 8px 32px rgba(52,121,52,0.22);
}

/* ─── RESET & BASE ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', 'Plus Jakarta Sans', 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ─── SCROLL PROGRESS ───────────────────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: var(--grad-primary); z-index: 9999; transition: width 0.1s linear;
}

/* ─── GRADIENT TEXT ──────────────────────────────────────────────── */
.gradient-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════════════════════════════════
   PRELOADER
══════════════════════════════════════════════════════════════════ */
#preloader {
  position: fixed; inset: 0; background: var(--bg-primary);
  display: flex; align-items: center; justify-content: center;
  z-index: 10000; transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-icon {
  font-size: 3.2rem; margin-bottom: 1.2rem;
  animation: leafSway 1s ease-in-out infinite alternate;
}
@keyframes leafSway {
  from { transform: rotate(-8deg) scale(1); }
  to   { transform: rotate(8deg) scale(1.1); }
}
.preloader-bar {
  width: 200px; height: 4px; background: var(--border-subtle);
  border-radius: var(--radius-full); overflow: hidden; margin: 0 auto 0.75rem;
}
.preloader-fill {
  height: 100%; background: var(--grad-primary); border-radius: var(--radius-full);
  animation: preloaderFill 1.8s ease-in-out forwards;
}
.preloader-text { color: var(--text-secondary); font-size: 0.85rem; letter-spacing: 0.05em; }
@keyframes preloaderFill {
  0% { width: 0%; } 60% { width: 80%; } 100% { width: 100%; }
}

/* ══════════════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--bg-glass); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle); transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-nav); border-bottom-color: var(--border); }
.nav-container {
  max-width: 1300px; margin: 0 auto; padding: 0 24px;
  height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.nav-logo-icon { font-size: 1.4rem; }
.logo-accent { color: var(--accent-emerald); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 6px 13px; border-radius: var(--radius-full);
  font-size: 0.855rem; font-weight: 500; color: var(--text-secondary); transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--text-primary); background: var(--bg-card); }
.nav-link.active { color: var(--accent-emerald); }
.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.theme-toggle {
  width: 40px; height: 40px; border-radius: var(--radius-full);
  background: var(--bg-icon-neutral); border: 1px solid var(--border-subtle);
  color: var(--text-secondary); display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: var(--transition);
}
.theme-toggle:hover { background: var(--bg-icon); color: var(--accent-emerald); border-color: var(--border); }
.btn-nav-download {
  display: flex; align-items: center; gap: 8px; padding: 8px 20px;
  border-radius: var(--radius-full); background: var(--grad-primary); color: var(--text-on-accent);
  font-size: 0.875rem; font-weight: 600; transition: var(--transition-bounce);
  box-shadow: 0 4px 16px rgba(58,154,58,0.30);
}
.btn-nav-download:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 8px 24px rgba(58,154,58,0.40); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-primary); border-radius: 2px; transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; padding-top: 64px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-blob {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.14;
}
.blob-1 {
  width: 650px; height: 650px;
  background: radial-gradient(circle, #3a9a3a, transparent);
  top: -200px; right: -120px; animation: blobFloat 9s ease-in-out infinite;
}
.blob-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, #c9a84c, transparent);
  bottom: -100px; left: -100px; animation: blobFloat 11s ease-in-out infinite reverse;
}
.blob-3 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, #7aad6e, transparent);
  top: 45%; left: 32%; animation: blobFloat 13s ease-in-out infinite 2s;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%  { transform: translate(28px,-18px) scale(1.05); }
  66%  { transform: translate(-18px,28px) scale(0.95); }
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(58,154,58,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58,154,58,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
}
/* Leaf Silhouettes */
.leaf-silhouettes { position: absolute; inset: 0; overflow: hidden; }
.leaf-sil {
  position: absolute; opacity: 0.07;
  animation: leafDrift 16s ease-in-out infinite;
}
.ls1 { font-size: 2.2rem; top: 12%; left: 4%;   animation-delay: 0s; }
.ls2 { font-size: 3rem;   top: 65%; left: 2%;   animation-delay: 2s; }
.ls3 { font-size: 1.8rem; top: 28%; right: 4%;  animation-delay: 4s; }
.ls4 { font-size: 2.4rem; bottom: 22%; right: 6%; animation-delay: 1s; }
.ls5 { font-size: 2rem;   top: 52%; left: 14%;  animation-delay: 3s; }
.ls6 { font-size: 2.5rem; top: 78%; right: 18%; animation-delay: 5s; }
.ls7 { font-size: 2rem;   top: 40%; right: 28%; animation-delay: 1.5s; }
@keyframes leafDrift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%  { transform: translateY(-18px) rotate(6deg); }
  66%  { transform: translateY(10px) rotate(-4deg); }
}
/* Botanical Particles */
.botanical-particles { position: absolute; inset: 0; pointer-events: none; }
.bot-particle {
  position: absolute; font-size: 0.75rem; opacity: 0;
  animation: particleRise linear infinite;
}
@keyframes particleRise {
  0%   { opacity: 0; transform: translateY(0) scale(0) rotate(0deg); }
  10%  { opacity: 0.5; transform: translateY(-20px) scale(1) rotate(30deg); }
  90%  { opacity: 0.2; }
  100% { opacity: 0; transform: translateY(-130px) scale(0.3) rotate(180deg); }
}

/* ─── Hero Container & Content ─────────────────────────────────── */
.hero-container {
  max-width: 1200px; margin: 0 auto; padding: 80px 24px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; position: relative; z-index: 1;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.70rem; font-weight: 700; letter-spacing: 0.14em;
  color: var(--accent-emerald); margin-bottom: 20px;
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent-emerald);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%  { transform: scale(1.5); opacity: 0.5; }
}
.hero-heading {
  font-size: clamp(2.4rem, 5vw, 4.4rem); font-weight: 900; line-height: 1.1; margin-bottom: 20px;
}
.hero-line-1, .hero-line-2 { display: block; color: var(--text-primary); }
.hero-desc {
  color: var(--text-secondary); font-size: 1rem; line-height: 1.75;
  margin-bottom: 28px; max-width: 520px;
}
.hero-stats { display: flex; align-items: center; gap: 20px; margin-bottom: 28px; flex-wrap: wrap; }
.stat-chip { text-align: center; }
.stat-val { display: block; font-size: 1.4rem; font-weight: 800; color: var(--accent-emerald); }
.stat-lbl { display: block; font-size: 0.72rem; color: var(--text-muted); }
.stat-divider { width: 1px; height: 36px; background: var(--border-subtle); }
.hero-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-trust { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--text-muted); }
.trust-item i { color: var(--accent-emerald); }
.trust-sep { color: var(--border-subtle); }

/* ─── Buttons ───────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px;
  border-radius: var(--radius-full); background: var(--grad-primary); color: var(--text-on-accent);
  font-weight: 700; font-size: 0.95rem; transition: var(--transition-bounce);
  box-shadow: 0 6px 24px rgba(58,154,58,0.38);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 12px 32px rgba(58,154,58,0.48); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px; padding: 13px 24px;
  border-radius: var(--radius-full); border: 1.5px solid var(--border);
  color: var(--text-secondary); font-weight: 600; font-size: 0.9rem;
  background: var(--bg-card); transition: var(--transition);
}
.btn-secondary:hover { border-color: var(--accent-emerald); color: var(--accent-emerald); transform: translateY(-2px); }

/* ─── Phone Mockup ──────────────────────────────────────────────── */
.hero-visual { position: relative; display: flex; justify-content: center; }
.phone-mockup-wrapper { position: relative; width: 300px; }
.phone-glow {
  position: absolute; inset: -40px;
  background: radial-gradient(ellipse at center, rgba(58,154,58,0.22), transparent 70%);
  border-radius: 50%; animation: glowPulse 3s ease-in-out infinite; pointer-events: none;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%  { opacity: 1; transform: scale(1.06); }
}
.phone-mockup {
  width: 280px; background: var(--bg-card-solid); border-radius: 44px; padding: 14px;
  border: 2px solid var(--border); box-shadow: var(--shadow-phone); position: relative; z-index: 1; margin: 0 auto;
}
.phone-notch { width: 80px; height: 22px; background: var(--bg-primary); border-radius: 0 0 14px 14px; margin: 0 auto 10px; }
.phone-screen { border-radius: 28px; overflow: hidden; background: #041508; }
.app-screen { padding: 14px 12px; font-size: 0.7rem; }

/* App Header */
.app-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.app-header-left { display: flex; align-items: center; gap: 8px; }
.app-logo-mini { font-size: 1.1rem; }
.app-title-mini { font-size: 0.70rem; font-weight: 700; color: var(--accent-emerald); }
.app-subtitle-mini { font-size: 0.58rem; color: var(--text-muted); }
.app-header-right { display: flex; gap: 6px; }
.app-icon-btn {
  width: 26px; height: 26px; border-radius: var(--radius-sm);
  background: var(--bg-icon); display: flex; align-items: center; justify-content: center; font-size: 0.65rem;
}

/* Plant of the Day card in app */
.app-potd-card {
  background: var(--bg-icon); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 10px; margin-bottom: 10px;
}
.potd-label { font-size: 0.6rem; color: var(--accent-gold); font-weight: 700; margin-bottom: 3px; }
.potd-name  { font-size: 0.72rem; font-weight: 800; color: var(--text-primary); margin-bottom: 4px; }
.potd-tags  { display: flex; gap: 4px; flex-wrap: wrap; }
.potd-tags span {
  padding: 2px 7px; background: rgba(58,154,58,0.15); border: 1px solid var(--border);
  border-radius: var(--radius-full); font-size: 0.55rem; color: var(--accent-sage);
}

/* Categories row */
.app-section-label {
  font-size: 0.60rem; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px;
}
.app-cats-row { display: flex; gap: 5px; margin-bottom: 10px; }
.app-cat {
  flex: 1; background: var(--bg-icon); border-radius: var(--radius-sm);
  padding: 6px 3px; text-align: center; font-size: 0.85rem;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.app-cat span { font-size: 0.52rem; color: var(--text-secondary); }

/* Recent list */
.app-recent-list { display: flex; flex-direction: column; gap: 4px; margin-bottom: 10px; }
.app-recent-item { display: flex; align-items: center; gap: 7px; background: var(--bg-icon-neutral); border-radius: var(--radius-sm); padding: 5px 7px; }
.recent-icon { font-size: 0.9rem; }
.recent-info { flex: 1; }
.recent-name { font-size: 0.60rem; font-weight: 600; color: var(--text-primary); }
.recent-cat  { font-size: 0.52rem; color: var(--text-muted); }
.recent-heart { font-size: 0.75rem; }

/* Care chips */
.app-care-row { display: flex; gap: 4px; margin-bottom: 10px; }
.app-care-chip {
  flex: 1; background: var(--bg-icon); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 5px 4px; text-align: center;
  font-size: 0.7rem; display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.app-care-chip span { font-size: 0.52rem; color: var(--text-secondary); }

/* Bottom nav */
.app-bottom-nav { display: flex; border-top: 1px solid var(--border-subtle); padding-top: 8px; gap: 4px; }
.app-nav-item { flex: 1; text-align: center; font-size: 0.85rem; display: flex; flex-direction: column; align-items: center; gap: 2px; opacity: 0.4; }
.app-nav-item.active { opacity: 1; }
.app-nav-item span { font-size: 0.50rem; color: var(--accent-emerald); }

/* ─── Floating Cards ────────────────────────────────────────────── */
.float-card {
  position: absolute; background: var(--bg-glass); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 10px 14px; display: flex; align-items: center; gap: 10px;
  backdrop-filter: blur(12px); box-shadow: var(--shadow-float); min-width: 148px; z-index: 2;
}
.fc-1 { top: 0px;     left: -90px;  animation: floatCard 4s ease-in-out infinite; }
.fc-2 { top: 80px;    right: -80px; animation: floatCard 5s ease-in-out infinite 0.5s; }
.fc-3 { top: 200px;   left: -80px;  animation: floatCard 4.5s ease-in-out infinite 1s; }
.fc-4 { bottom: 80px; right: -75px; animation: floatCard 5.5s ease-in-out infinite 1.5s; }
.fc-5 { bottom: 10px; left: -70px;  animation: floatCard 4s ease-in-out infinite 0.8s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%  { transform: translateY(-9px); }
}
.fc-icon { font-size: 1.4rem; }
.fc-title { font-size: 0.72rem; font-weight: 700; color: var(--text-primary); }
.fc-sub   { font-size: 0.62rem; color: var(--text-muted); }

/* ─── Scroll Down ───────────────────────────────────────────────── */
.scroll-down {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: 0.75rem; z-index: 1;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-icon {
  width: 28px; height: 44px; border: 2px solid var(--border);
  border-radius: var(--radius-full); display: flex; justify-content: center; padding-top: 6px;
}
.scroll-wheel {
  width: 4px; height: 8px; background: var(--accent-emerald);
  border-radius: var(--radius-full); animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%  { transform: translateX(-50%) translateY(8px); }
}
@keyframes scrollWheel {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}

/* ══════════════════════════════════════════════════════════════════
   SECTION SHARED STYLES
══════════════════════════════════════════════════════════════════ */
.section { padding: 100px 0; position: relative; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block; padding: 6px 16px; border-radius: var(--radius-full);
  background: var(--bg-icon); border: 1px solid var(--border);
  color: var(--accent-emerald); font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800;
  line-height: 1.2; margin-bottom: 16px; color: var(--text-primary);
}
.section-subtitle { font-size: 1rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* ══════════════════════════════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════════════════════════════ */
.about-section { background: var(--bg-secondary); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-para { color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; }
.about-highlights { margin: 24px 0 32px; }
.highlight-item {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 0; color: var(--text-secondary); font-size: 0.9rem;
}
.highlight-item i { color: var(--accent-emerald); font-size: 1rem; }
.about-cards-col { display: flex; flex-direction: column; gap: 20px; }
.value-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 24px; display: flex; gap: 16px;
  align-items: flex-start; transition: var(--transition);
}
.value-card:hover { border-color: var(--border); transform: translateX(4px); box-shadow: var(--shadow-card); }
.vc-icon { font-size: 1.8rem; flex-shrink: 0; }
.vc-title { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.vc-desc  { font-size: 0.84rem; color: var(--text-secondary); line-height: 1.6; }

/* ══════════════════════════════════════════════════════════════════
   DATABASE / STATS SECTION
══════════════════════════════════════════════════════════════════ */
.database-section { background: var(--grad-stats); padding: 80px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat-card-big {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 36px 24px; text-align: center;
  transition: var(--transition-bounce); cursor: pointer;
}
.stat-card-big:hover, .stat-card-big:focus {
  border-color: var(--border-glow); transform: translateY(-6px);
  box-shadow: var(--shadow-glow); outline: none;
}
.stat-card-big:focus-visible { outline: 2px solid var(--accent-emerald); outline-offset: 4px; }
.stat-icon-big { font-size: 2.2rem; margin-bottom: 14px; }
.stat-num-big  { font-size: 1.9rem; font-weight: 900; color: var(--accent-emerald); }
.stat-lbl-big  { font-size: 0.84rem; color: var(--text-secondary); margin-top: 8px; }

/* ══════════════════════════════════════════════════════════════════
   PLANT EXPLORER SECTION — BENTO GRID
══════════════════════════════════════════════════════════════════ */
.explorer-section { background: var(--bg-primary); }
.plant-bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 20px;
  margin-bottom: 40px;
}
.plant-card {
  background: var(--bg-card); border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 24px; transition: var(--transition-bounce);
  cursor: pointer; position: relative; overflow: hidden;
}
.plant-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(58,154,58,0.05), transparent);
  opacity: 0; transition: var(--transition);
}
.plant-card:hover::before { opacity: 1; }
.plant-card:hover, .plant-card:focus {
  border-color: var(--border); transform: translateY(-7px); box-shadow: var(--shadow-card); outline: none;
}
.plant-card:focus-visible { outline: 2px solid var(--accent-emerald); outline-offset: 4px; }
.pc-featured { background: var(--bg-icon); border-color: var(--border); grid-column: span 2; }
.pc-wide     { grid-column: span 2; }
.plant-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.plant-emoji { font-size: 2.4rem; }
.fav-btn {
  width: 36px; height: 36px; border-radius: 50%; background: var(--bg-icon-neutral);
  border: 1px solid var(--border-subtle); color: var(--text-muted); font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center; transition: var(--transition-bounce);
}
.fav-btn:hover { background: rgba(201,168,76,0.15); border-color: var(--accent-gold); color: var(--accent-gold); transform: scale(1.15); }
.fav-btn .fas.fa-heart { color: var(--accent-gold); }
.plant-category-tag {
  display: inline-block; padding: 4px 10px; border-radius: var(--radius-full);
  background: var(--bg-icon); border: 1px solid var(--border);
  font-size: 0.68rem; color: var(--accent-emerald); font-weight: 600; margin-bottom: 8px;
}
.plant-cat-featured { background: rgba(201,168,76,0.10); border-color: rgba(201,168,76,0.25); color: var(--accent-gold); }
.plant-common-name  { font-size: 1.05rem; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.plant-scientific-name { font-size: 0.78rem; color: var(--text-muted); font-style: italic; margin-bottom: 12px; }
.plant-care-badges { display: flex; flex-wrap: wrap; gap: 6px; }
.care-badge {
  padding: 4px 9px; border-radius: var(--radius-full); font-size: 0.68rem; font-weight: 600;
  border: 1px solid transparent;
}
.care-easy     { background: rgba(58,154,58,0.12); color: var(--accent-emerald); border-color: rgba(58,154,58,0.20); }
.care-moderate { background: rgba(201,168,76,0.12); color: var(--accent-gold);    border-color: rgba(201,168,76,0.20); }
.care-low      { background: rgba(122,173,110,0.12); color: var(--accent-sage);   border-color: rgba(122,173,110,0.20); }
.care-water    { background: rgba(59,130,246,0.10); color: #60a5fa; border-color: rgba(59,130,246,0.18); }
.explorer-cta { text-align: center; }

/* ══════════════════════════════════════════════════════════════════
   CATEGORIES SECTION
══════════════════════════════════════════════════════════════════ */
.categories-section { background: var(--bg-secondary); }
.categories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 22px; }
.cat-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 28px 22px; transition: var(--transition-bounce); cursor: pointer;
}
.cat-card:hover, .cat-card:focus {
  border-color: var(--border); transform: translateY(-6px); box-shadow: var(--shadow-card); outline: none;
}
.cat-card:focus-visible { outline: 2px solid var(--accent-emerald); outline-offset: 4px; }
.cat-card-disclaimer { border-color: rgba(201,168,76,0.15); }
.cat-icon  { font-size: 2.2rem; margin-bottom: 12px; }
.cat-name  { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.cat-desc  { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 12px; }
.cat-examples {
  font-size: 0.72rem; color: var(--text-muted); font-style: italic;
  padding-top: 10px; border-top: 1px solid var(--border-subtle);
}

/* ══════════════════════════════════════════════════════════════════
   PLANT PROFILE SECTION
══════════════════════════════════════════════════════════════════ */
.profile-section { background: var(--bg-primary); }
.profile-showcase { display: grid; grid-template-columns: 1.5fr 1fr; gap: 32px; align-items: start; }
.profile-card-main {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl); padding: 36px; transition: var(--transition);
}
.profile-card-main:hover { border-color: var(--border); box-shadow: var(--shadow-card); }
.profile-header { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 20px; }
.profile-emoji-large { font-size: 3.5rem; flex-shrink: 0; }
.profile-header-info { flex: 1; }
.profile-category-tag {
  display: inline-block; padding: 4px 12px; border-radius: var(--radius-full);
  background: var(--bg-icon); border: 1px solid var(--border);
  font-size: 0.70rem; font-weight: 700; color: var(--accent-emerald); margin-bottom: 8px;
}
.profile-common-name  { font-size: 1.4rem; font-weight: 800; color: var(--text-primary); margin-bottom: 4px; }
.profile-common-alias { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 2px; }
.profile-family       { font-size: 0.8rem; color: var(--accent-sage); font-weight: 600; }
.profile-fav-btn {
  width: 44px; height: 44px; border-radius: 50%; background: rgba(201,168,76,0.12);
  border: 1.5px solid var(--accent-gold); color: var(--accent-gold); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center; transition: var(--transition-bounce); flex-shrink: 0;
}
.profile-fav-btn:hover { transform: scale(1.15); background: rgba(201,168,76,0.22); }
.profile-overview { margin-bottom: 24px; }
.profile-overview-text { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.75; }
.care-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 24px; }
.care-item {
  background: var(--bg-icon-neutral); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); padding: 14px 12px; display: flex; gap: 10px; align-items: flex-start;
  transition: var(--transition);
}
.care-item:hover { border-color: var(--border); background: var(--bg-icon); }
.care-icon-wrap { font-size: 1.3rem; flex-shrink: 0; }
.care-label { font-size: 0.62rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.care-value { font-size: 0.76rem; font-weight: 600; color: var(--text-primary); }
.profile-facts { background: var(--bg-icon); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 18px; }
.facts-label {
  display: flex; align-items: center; gap: 8px; font-size: 0.8rem; font-weight: 700;
  color: var(--accent-gold); margin-bottom: 12px;
}
.facts-list { display: flex; flex-direction: column; gap: 8px; padding-left: 4px; }
.facts-list li { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; padding-left: 16px; position: relative; }
.facts-list li::before { content: '\f06c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: -2px; font-size: 0.65rem; color: var(--accent-emerald); }

/* ─── Profile Side Panel ────────────────────────────────────────── */
.profile-side-panel { display: flex; flex-direction: column; gap: 20px; }
.side-info-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 24px;
}
.side-info-title { font-size: 0.8rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.side-info-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border-subtle); }
.side-info-row:last-child { border-bottom: none; }
.sir-label { font-size: 0.75rem; color: var(--text-muted); flex-shrink: 0; }
.sir-val   { font-size: 0.78rem; color: var(--text-primary); font-weight: 600; text-align: right; }

/* Care Visual */
.side-care-visual {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 24px;
}
.scv-title { font-size: 0.8rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.scv-circle-row { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-bottom: 16px; }
.scv-circle { position: relative; width: 70px; height: 70px; }
.scv-circle svg { width: 100%; height: 100%; }
.scv-val {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-size: 0.9rem; font-weight: 800; color: var(--accent-gold);
}
.scv-label { font-size: 0.78rem; font-weight: 600; color: var(--text-secondary); }
.scv-bars { display: flex; flex-direction: column; gap: 10px; margin-bottom: 12px; }
.scv-bar-row { display: flex; align-items: center; gap: 8px; }
.scv-bar-label { font-size: 0.72rem; color: var(--text-muted); width: 52px; flex-shrink: 0; }
.scv-bar-track { flex: 1; height: 5px; background: var(--border-subtle); border-radius: var(--radius-full); overflow: hidden; }
.scv-bar-fill  { height: 100%; border-radius: var(--radius-full); background: linear-gradient(90deg,#3b82f6,#60a5fa); transition: width 1s ease; }
.scv-fill-green { background: var(--grad-primary); }
.scv-fill-sage  { background: linear-gradient(90deg, var(--accent-sage), #9dcf90); }
.scv-bar-val { font-size: 0.68rem; color: var(--text-secondary); width: 62px; text-align: right; flex-shrink: 0; }
.scv-disclaimer { font-size: 0.62rem; color: var(--text-muted); font-style: italic; line-height: 1.5; }

/* ══════════════════════════════════════════════════════════════════
   BOTANICAL INFO SECTION
══════════════════════════════════════════════════════════════════ */
.botinfo-section { background: var(--bg-secondary); }
.botinfo-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap: 22px; }
.botinfo-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 28px 22px; transition: var(--transition-bounce); cursor: pointer;
}
.botinfo-card:hover, .botinfo-card:focus {
  border-color: var(--border); transform: translateY(-6px); box-shadow: var(--shadow-card); outline: none;
}
.botinfo-card:focus-visible { outline: 2px solid var(--accent-emerald); outline-offset: 4px; }
.botinfo-icon { font-size: 2rem; margin-bottom: 12px; }
.botinfo-card h3 { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.botinfo-card p  { font-size: 0.83rem; color: var(--text-secondary); line-height: 1.6; }

/* ══════════════════════════════════════════════════════════════════
   CARE SECTION
══════════════════════════════════════════════════════════════════ */
.care-section { background: var(--bg-primary); }
.care-dashboard-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(270px,1fr)); gap: 22px; margin-bottom: 60px; }
.care-dash-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 28px; transition: var(--transition-bounce); cursor: pointer;
}
.care-dash-card:hover, .care-dash-card:focus {
  border-color: var(--border); transform: translateY(-6px); box-shadow: var(--shadow-card); outline: none;
}
.care-dash-card:focus-visible { outline: 2px solid var(--accent-emerald); outline-offset: 4px; }
.care-dash-icon  { font-size: 2rem; margin-bottom: 12px; }
.care-dash-title { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.care-dash-desc  { font-size: 0.83rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px; }
.care-levels { display: flex; gap: 8px; flex-wrap: wrap; }
.care-lvl {
  padding: 4px 12px; border-radius: var(--radius-full);
  background: var(--bg-icon-neutral); border: 1px solid var(--border-subtle);
  font-size: 0.70rem; color: var(--text-muted); font-weight: 500; transition: var(--transition);
}
.active-lvl { background: var(--bg-icon); border-color: var(--border); color: var(--accent-emerald); font-weight: 700; }

/* Care Circular Visual */
.care-circular-visual {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl); padding: 40px; max-width: 600px; margin: 0 auto; text-align: center;
}
.ccv-title { font-size: 0.8rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 28px; }
.ccv-layout { display: flex; flex-direction: column; align-items: center; gap: 20px; margin-bottom: 16px; }
.ccv-top, .ccv-bottom { display: flex; justify-content: center; }
.ccv-middle { display: flex; align-items: center; gap: 40px; }
.ccv-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.ccv-ring-wrap { position: relative; width: 80px; height: 80px; }
.ccv-ring-wrap svg { width: 100%; height: 100%; }
.ccv-val {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-size: 0.9rem; font-weight: 800; color: var(--accent-gold);
}
.care-ring-animate { animation: ringReveal 1.5s ease forwards; }
@keyframes ringReveal { from { stroke-dashoffset: 150.8; } }
.ccv-label { font-size: 0.8rem; color: var(--text-secondary); font-weight: 600; }
.ccv-center-icon { font-size: 2.5rem; }
.ccv-pill { font-size: 0.78rem; color: var(--text-secondary); font-weight: 600; }
.ccv-pill-val { font-size: 0.82rem; color: var(--text-primary); font-weight: 700; }
.ccv-care-badge {
  padding: 8px 20px; border-radius: var(--radius-full);
  background: var(--bg-icon); border: 1px solid var(--border);
  font-size: 0.84rem; color: var(--accent-emerald); font-weight: 700;
}
.ccv-disclaimer { font-size: 0.65rem; color: var(--text-muted); font-style: italic; }

/* ══════════════════════════════════════════════════════════════════
   BENEFITS SECTION
══════════════════════════════════════════════════════════════════ */
.benefits-section { background: var(--bg-secondary); }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(240px,1fr)); gap: 22px; }
.benefit-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 28px 22px; text-align: center; transition: var(--transition-bounce); cursor: pointer;
}
.benefit-card:hover, .benefit-card:focus {
  border-color: var(--border); transform: translateY(-6px); box-shadow: var(--shadow-card); outline: none;
}
.benefit-card:focus-visible { outline: 2px solid var(--accent-emerald); outline-offset: 4px; }
.benefit-icon { font-size: 2.2rem; margin-bottom: 12px; }
.benefit-card h3 { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.benefit-card p  { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; }

/* ══════════════════════════════════════════════════════════════════
   BOTANICAL FAMILY SECTION
══════════════════════════════════════════════════════════════════ */
.family-section { background: var(--bg-primary); }
.family-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }

/* Family Tree */
.family-tree-visual {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl); padding: 36px; text-align: center;
}
.fam-tree-label { font-size: 0.72rem; font-weight: 700; color: var(--accent-gold); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.fam-root-node {
  display: inline-flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 14px 24px; background: var(--bg-icon); border: 1px solid var(--border-glow);
  border-radius: var(--radius-md); box-shadow: 0 0 24px rgba(58,154,58,0.14); margin-bottom: 14px;
}
.fam-node-icon { font-size: 1.8rem; }
.fam-node-name { font-size: 0.88rem; font-weight: 700; color: var(--text-primary); }
.fam-node-sub  { font-size: 0.70rem; color: var(--text-muted); }
.fam-arrow-down { font-size: 1.4rem; color: var(--accent-emerald); opacity: 0.5; margin: 6px 0; }
.fam-mid-node {
  display: inline-block; padding: 8px 20px;
  background: var(--bg-icon-neutral); border: 1px dashed var(--border);
  border-radius: var(--radius-md); margin-bottom: 14px;
}
.fam-mid-label { font-size: 0.78rem; color: var(--text-secondary); font-weight: 600; }
.fam-genus-row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 14px; }
.fam-genus-node {
  padding: 8px 14px; background: var(--bg-icon); border: 1px solid var(--border);
  border-radius: var(--radius-md); font-size: 0.78rem; color: var(--text-primary);
  font-weight: 600; display: flex; align-items: center; gap: 6px; transition: var(--transition);
}
.fam-genus-node:hover { border-color: var(--accent-emerald); color: var(--accent-emerald); }
.fam-species-row { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.fam-species-chip {
  padding: 4px 12px; background: var(--bg-icon-neutral); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full); font-size: 0.70rem; color: var(--text-muted); font-style: italic;
}

/* Family info cards */
.family-cards-col { display: flex; flex-direction: column; gap: 18px; }
.family-info-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 22px; transition: var(--transition); cursor: pointer;
}
.family-info-card:hover, .family-info-card:focus {
  border-color: var(--border); transform: translateX(5px); box-shadow: var(--shadow-card); outline: none;
}
.family-info-card:focus-visible { outline: 2px solid var(--accent-emerald); outline-offset: 4px; }
.fic-header { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; }
.fic-icon   { font-size: 1.8rem; }
.fic-name   { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 2px; }
.fic-tag    { font-size: 0.70rem; color: var(--accent-sage); font-weight: 600; }
.fic-desc   { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 10px; }
.fic-plants { font-size: 0.70rem; color: var(--text-muted); font-style: italic; padding-top: 8px; border-top: 1px solid var(--border-subtle); }

/* ══════════════════════════════════════════════════════════════════
   SEARCH SECTION
══════════════════════════════════════════════════════════════════ */
.search-section { background: var(--bg-secondary); }
.search-showcase { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 24px; }
.search-bar-ui {
  background: var(--bg-card); border: 1.5px solid var(--border);
  border-radius: var(--radius-xl); padding: 24px 28px;
}
.search-input-wrap {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; background: var(--bg-input); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); margin-bottom: 16px;
}
.search-input-wrap i { color: var(--text-muted); }
.search-placeholder { font-size: 0.9rem; color: var(--text-muted); }
.search-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.search-chip {
  padding: 6px 14px; border-radius: var(--radius-full); background: var(--bg-icon);
  border: 1px solid var(--border); font-size: 0.78rem; color: var(--accent-emerald);
  font-weight: 500; cursor: pointer; transition: var(--transition);
}
.search-chip:hover { background: var(--bg-icon); border-color: var(--accent-emerald); transform: translateY(-2px); }
.search-results-preview { display: flex; flex-direction: column; gap: 10px; }
.search-result-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 16px 20px;
  display: flex; align-items: center; gap: 16px; transition: var(--transition); cursor: pointer;
}
.search-result-card:hover, .search-result-card:focus {
  border-color: var(--border); background: var(--bg-icon-neutral); outline: none;
}
.search-result-card:focus-visible { outline: 2px solid var(--accent-emerald); outline-offset: 2px; }
.src-emoji  { font-size: 1.8rem; }
.src-info   { flex: 1; }
.src-name   { font-size: 0.95rem; font-weight: 700; color: var(--text-primary); margin-bottom: 2px; }
.src-sci    { font-size: 0.75rem; color: var(--text-muted); font-style: italic; margin-bottom: 4px; }
.src-meta   { font-size: 0.70rem; color: var(--text-muted); }
.src-meta span { color: var(--accent-sage); }
.src-fav {
  width: 36px; height: 36px; border-radius: 50%; background: var(--bg-icon-neutral);
  border: 1px solid var(--border-subtle); color: var(--text-muted); font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center; transition: var(--transition-bounce);
}
.src-fav:hover { background: rgba(201,168,76,0.12); border-color: var(--accent-gold); color: var(--accent-gold); transform: scale(1.1); }
.search-popular { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); padding: 20px 24px; }
.sp-label { font-size: 0.75rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 12px; }
.sp-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.sp-chip {
  padding: 7px 14px; border-radius: var(--radius-full); background: var(--bg-icon-neutral);
  border: 1px solid var(--border-subtle); font-size: 0.78rem; color: var(--text-secondary);
  cursor: pointer; transition: var(--transition);
}
.sp-chip:hover { border-color: var(--border); color: var(--accent-emerald); background: var(--bg-icon); transform: translateY(-2px); }

/* ══════════════════════════════════════════════════════════════════
   PLANT OF THE DAY / DISCOVERY SECTION
══════════════════════════════════════════════════════════════════ */
.discovery-section { background: var(--bg-primary); }
.potd-showcase { display: grid; grid-template-columns: 1.5fr 1fr; gap: 32px; align-items: start; }
.potd-main-card {
  background: var(--bg-card); border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl); padding: 40px; text-align: center;
  box-shadow: 0 0 40px rgba(58,154,58,0.10);
}
.potd-badge-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.potd-day-badge {
  padding: 6px 14px; border-radius: var(--radius-full); background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25); font-size: 0.78rem; color: var(--accent-gold); font-weight: 700;
}
.potd-date-badge {
  padding: 4px 12px; border-radius: var(--radius-full); background: var(--bg-icon);
  border: 1px solid var(--border); font-size: 0.72rem; color: var(--text-muted);
}
.potd-plant-emoji { font-size: 4rem; margin-bottom: 14px; animation: potdFloat 3s ease-in-out infinite; }
@keyframes potdFloat {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%  { transform: translateY(-10px) rotate(3deg); }
}
.potd-plant-name { font-size: 1.4rem; font-weight: 800; color: var(--text-primary); margin-bottom: 4px; }
.potd-category {
  display: inline-block; padding: 4px 14px; border-radius: var(--radius-full);
  background: var(--bg-icon); border: 1px solid var(--border); color: var(--accent-emerald);
  font-size: 0.75rem; font-weight: 600; margin-bottom: 14px;
}
.potd-plant-desc { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 18px; }
.potd-care-row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.potd-care-item {
  display: flex; align-items: center; gap: 6px; padding: 6px 14px;
  background: var(--bg-icon-neutral); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full); font-size: 0.78rem; color: var(--text-secondary);
}
.potd-cta { width: 100%; justify-content: center; }

/* Side cards */
.potd-side-cards { display: flex; flex-direction: column; gap: 14px; }
.potd-mini-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 18px 20px; display: flex; gap: 14px;
  align-items: center; transition: var(--transition); cursor: pointer;
}
.potd-mini-card:hover, .potd-mini-card:focus {
  border-color: var(--border); transform: translateX(4px); outline: none;
}
.potd-mini-card:focus-visible { outline: 2px solid var(--accent-emerald); outline-offset: 2px; }
.potd-coming-soon { opacity: 0.5; }
.pmc-emoji { font-size: 1.6rem; }
.pmc-name  { font-size: 0.88rem; font-weight: 700; color: var(--text-primary); }
.pmc-sub   { font-size: 0.72rem; color: var(--text-muted); }

/* ══════════════════════════════════════════════════════════════════
   FAVORITES SECTION
══════════════════════════════════════════════════════════════════ */
.favorites-section { background: var(--bg-secondary); }
.favorites-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: start; }

.my-plants-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl); padding: 32px;
}
.myp-header {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px;
}
.myp-title { font-size: 1rem; font-weight: 700; color: var(--text-primary); }
.myp-count {
  padding: 4px 12px; border-radius: var(--radius-full); background: var(--bg-icon);
  border: 1px solid var(--border); font-size: 0.75rem; color: var(--accent-emerald); font-weight: 600;
}
.myp-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.myp-item {
  display: flex; align-items: center; gap: 14px; padding: 12px 14px;
  background: var(--bg-icon-neutral); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); transition: var(--transition); cursor: pointer;
}
.myp-item:hover, .myp-item:focus {
  border-color: var(--border); background: var(--bg-icon); outline: none;
}
.myp-item:focus-visible { outline: 2px solid var(--accent-emerald); outline-offset: 2px; }
.myp-emoji { font-size: 1.5rem; }
.myp-info { flex: 1; }
.myp-name { font-size: 0.88rem; font-weight: 600; color: var(--text-primary); }
.myp-cat  { font-size: 0.72rem; color: var(--text-muted); }
.myp-heart { font-size: 1rem; }
.myp-recent-label {
  font-size: 0.72rem; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 10px;
}
.myp-recent-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.myp-chip {
  padding: 5px 12px; border-radius: var(--radius-full); background: var(--bg-icon);
  border: 1px solid var(--border); font-size: 0.76rem; color: var(--accent-sage); font-weight: 500;
}

.favorites-info-col { display: flex; flex-direction: column; gap: 18px; }
.fav-info-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 22px; display: flex; gap: 16px;
  align-items: flex-start; transition: var(--transition); cursor: pointer;
}
.fav-info-card:hover, .fav-info-card:focus {
  border-color: var(--border); transform: translateX(4px); box-shadow: var(--shadow-card); outline: none;
}
.fav-info-card:focus-visible { outline: 2px solid var(--accent-emerald); outline-offset: 4px; }
.fic2-icon { font-size: 1.8rem; flex-shrink: 0; }
.fic2-title { font-size: 0.95rem; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.fic2-desc  { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; }

/* ══════════════════════════════════════════════════════════════════
   OFFLINE SECTION
══════════════════════════════════════════════════════════════════ */
.offline-section { background: var(--bg-primary); padding: 60px 0; }
.offline-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 52px 40px; text-align: center; max-width: 760px; margin: 0 auto;
}
.offline-icon  { font-size: 3.2rem; margin-bottom: 16px; }
.offline-title { font-size: 1.8rem; font-weight: 800; color: var(--text-primary); margin-bottom: 14px; }
.offline-desc  { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.75; max-width: 540px; margin: 0 auto 28px; }
.offline-flow  {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  flex-wrap: wrap; margin-bottom: 28px;
}
.of-step {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 14px 20px; background: var(--bg-icon); border: 1px solid var(--border);
  border-radius: var(--radius-md); min-width: 100px;
  font-size: 0.82rem; color: var(--text-secondary); font-weight: 600;
  transition: var(--transition);
}
.of-step:hover { border-color: var(--accent-emerald); color: var(--accent-emerald); }
.of-step-icon { font-size: 1.5rem; }
.of-arrow { font-size: 1.2rem; color: var(--text-muted); }
.offline-features { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.of-item {
  display: flex; align-items: center; gap: 8px; padding: 8px 18px;
  background: var(--bg-icon); border: 1px solid var(--border);
  border-radius: var(--radius-full); font-size: 0.82rem; color: var(--text-secondary);
}
.of-item i { color: var(--accent-emerald); }

/* ══════════════════════════════════════════════════════════════════
   READING SECTION
══════════════════════════════════════════════════════════════════ */
.reading-section { background: var(--bg-secondary); }
.reading-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 22px; }
.reading-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 28px 22px; transition: var(--transition-bounce); cursor: pointer;
}
.reading-card:hover, .reading-card:focus {
  border-color: var(--border); transform: translateY(-6px); box-shadow: var(--shadow-card); outline: none;
}
.reading-card:focus-visible { outline: 2px solid var(--accent-emerald); outline-offset: 4px; }
.rc-icon  { font-size: 2rem; margin-bottom: 12px; }
.rc-title { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.rc-desc  { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; }

/* ══════════════════════════════════════════════════════════════════
   AUDIENCE / PERFECT FOR SECTION
══════════════════════════════════════════════════════════════════ */
.audience-section { background: var(--bg-primary); }
.audience-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 22px; }
.audience-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 28px 22px; transition: var(--transition-bounce); cursor: pointer;
}
.audience-card:hover, .audience-card:focus {
  border-color: var(--border); transform: translateY(-6px); box-shadow: var(--shadow-card); outline: none;
}
.audience-card:focus-visible { outline: 2px solid var(--accent-emerald); outline-offset: 4px; }
.audience-icon { font-size: 2.4rem; margin-bottom: 14px; }
.audience-card h3 { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.audience-card p  { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; }

/* ══════════════════════════════════════════════════════════════════
   JOURNEY SECTION
══════════════════════════════════════════════════════════════════ */
.journey-section { background: var(--bg-secondary); }
.journey-steps {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; position: relative;
}
.journey-step {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 32px 24px; text-align: center;
  transition: var(--transition-bounce); position: relative; cursor: pointer;
}
.journey-step:hover, .journey-step:focus {
  border-color: var(--border); transform: translateY(-6px); box-shadow: var(--shadow-card); outline: none;
}
.journey-step:focus-visible { outline: 2px solid var(--accent-emerald); outline-offset: 4px; }
.step-number {
  font-size: 3rem; font-weight: 900; color: var(--border-subtle); line-height: 1; margin-bottom: 8px;
}
.step-icon  { font-size: 2rem; margin-bottom: 12px; }
.step-title { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.step-desc  { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; }
.step-connector {
  position: absolute; right: -13px; top: 50%; transform: translateY(-50%);
  width: 26px; height: 2px; background: var(--border); z-index: 1;
}
.journey-step:last-child .step-connector { display: none; }

/* ══════════════════════════════════════════════════════════════════
   DASHBOARD SECTION
══════════════════════════════════════════════════════════════════ */
.dashboard-section { background: var(--bg-primary); }
.dashboard-showcase { max-width: 900px; margin: 0 auto; }
.dash-card-large {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 36px; box-shadow: var(--shadow-card);
}
.dash-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--border-subtle);
}
.dash-good-morning { font-size: 1.2rem; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.dash-sub { font-size: 0.82rem; color: var(--text-muted); }
.dash-header-icons { display: flex; gap: 10px; }
.dash-icon-btn {
  width: 40px; height: 40px; border-radius: var(--radius-md);
  background: var(--bg-icon); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer; transition: var(--transition);
}
.dash-icon-btn:hover { border-color: var(--accent-emerald); transform: scale(1.08); }

.dash-content-grid {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 18px;
}
.dash-widget {
  background: var(--bg-icon-neutral); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 18px; transition: var(--transition);
}
.dash-widget:hover { border-color: var(--border); background: var(--bg-icon); }
.dash-widget-label {
  font-size: 0.72rem; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 10px;
}
/* Plant of the Day widget */
.dash-potd { grid-column: span 2; background: var(--bg-icon); border-color: var(--border); }
.dash-potd-name { font-size: 1.3rem; font-weight: 800; color: var(--text-primary); }
.dash-potd-sci  { font-size: 0.75rem; color: var(--text-muted); font-style: italic; margin-bottom: 8px; }
.dash-potd-tag  {
  display: inline-block; padding: 3px 10px; border-radius: var(--radius-full);
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.25);
  font-size: 0.68rem; color: var(--accent-gold); font-weight: 600;
}
/* Categories widget */
.dash-cats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.dash-cat-btn {
  background: var(--bg-icon-neutral); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm); padding: 8px 6px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  font-size: 1rem; cursor: pointer; transition: var(--transition);
}
.dash-cat-btn span { font-size: 0.60rem; color: var(--text-secondary); }
.dash-cat-btn:hover { border-color: var(--accent-emerald); transform: scale(1.04); }
/* Favorites widget */
.dash-fav-count { font-size: 1.6rem; font-weight: 900; color: var(--accent-emerald); margin-bottom: 8px; }
.dash-fav-emoji-row { font-size: 1rem; letter-spacing: 2px; }
/* Recently Viewed widget */
.dash-recent-chips { display: flex; flex-direction: column; gap: 6px; }
.dash-recent-chips span {
  padding: 5px 10px; background: var(--bg-icon-neutral); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm); font-size: 0.76rem; color: var(--text-secondary);
}

/* ══════════════════════════════════════════════════════════════════
   COMPARISON SECTION
══════════════════════════════════════════════════════════════════ */
.comparison-section { background: var(--bg-secondary); }
.comparison-table-wrap { max-width: 700px; margin: 0 auto; }
.comp-table {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 16px;
}
.comp-header {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  background: var(--bg-icon); border-bottom: 1px solid var(--border-subtle);
}
.comp-row {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  border-bottom: 1px solid var(--border-subtle);
}
.comp-row:last-child { border-bottom: none; }
.comp-cell {
  padding: 14px 20px; font-size: 0.84rem; color: var(--text-secondary);
  display: flex; align-items: center;
}
.comp-label-cell { font-weight: 700; color: var(--text-muted); font-size: 0.78rem; }
.comp-plant-cell { flex-direction: column; gap: 4px; font-weight: 700; color: var(--text-primary); }
.comp-plant-icon { font-size: 1.6rem; }
.comp-plant-name { font-size: 0.88rem; font-weight: 700; color: var(--text-primary); }
.comp-badge {
  padding: 3px 10px; border-radius: var(--radius-full); font-size: 0.70rem; font-weight: 600;
}
.comp-badge-green { background: rgba(58,154,58,0.12); color: var(--accent-emerald); border: 1px solid rgba(58,154,58,0.20); }
.comp-badge-sage  { background: rgba(122,173,110,0.12); color: var(--accent-sage); border: 1px solid rgba(122,173,110,0.20); }
.comp-badge-easy  { background: rgba(201,168,76,0.12); color: var(--accent-gold); border: 1px solid rgba(201,168,76,0.20); }
.comparison-note {
  font-size: 0.72rem; color: var(--text-muted); font-style: italic;
  text-align: center; margin-bottom: 20px;
}
.comp-cta-row { text-align: center; }

/* ══════════════════════════════════════════════════════════════════
   BOTANICAL FACTS SECTION
══════════════════════════════════════════════════════════════════ */
.facts-section { background: var(--bg-primary); }
.facts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 22px; margin-bottom: 40px; }
.fact-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 28px 24px; transition: var(--transition-bounce); cursor: pointer;
  position: relative; overflow: hidden;
}
.fact-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-primary); opacity: 0; transition: var(--transition);
}
.fact-card:hover::after, .fact-card:focus::after { opacity: 1; }
.fact-card:hover, .fact-card:focus {
  border-color: var(--border); transform: translateY(-6px); box-shadow: var(--shadow-card); outline: none;
}
.fact-card:focus-visible { outline: 2px solid var(--accent-emerald); outline-offset: 4px; }
.fact-icon { font-size: 2rem; margin-bottom: 10px; }
.fact-tag  {
  display: inline-block; padding: 3px 10px; border-radius: var(--radius-full);
  background: var(--bg-icon); border: 1px solid var(--border);
  font-size: 0.68rem; color: var(--accent-emerald); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px;
}
.fact-text { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.7; }
.facts-cta { text-align: center; }

/* ══════════════════════════════════════════════════════════════════
   UPDATES SECTION
══════════════════════════════════════════════════════════════════ */
.updates-section { background: var(--bg-secondary); padding: 60px 0; }
.updates-card {
  background: var(--bg-card); border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl); padding: 52px 40px; text-align: center;
  max-width: 760px; margin: 0 auto; box-shadow: 0 0 40px rgba(58,154,58,0.08);
}
.updates-icon  { font-size: 3.2rem; margin-bottom: 16px; animation: growSpin 4s ease-in-out infinite; }
@keyframes growSpin {
  0%, 100% { transform: rotate(-5deg) scale(1); }
  50%  { transform: rotate(5deg) scale(1.12); }
}
.updates-title { font-size: 1.8rem; font-weight: 800; color: var(--text-primary); margin-bottom: 14px; }
.updates-desc  { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.75; max-width: 560px; margin: 0 auto 28px; }
.updates-visual {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  flex-wrap: wrap; margin-bottom: 24px;
}
.uv-step {
  padding: 10px 18px; border-radius: var(--radius-full); font-size: 0.82rem; font-weight: 600;
  border: 1px solid var(--border); color: var(--text-secondary); transition: var(--transition);
}
.uv-step-1 { background: rgba(58,154,58,0.10); border-color: rgba(58,154,58,0.25); color: var(--accent-emerald); }
.uv-step-2 { background: rgba(201,168,76,0.10); border-color: rgba(201,168,76,0.25); color: var(--accent-gold); }
.uv-step-3 { background: rgba(122,173,110,0.10); border-color: rgba(122,173,110,0.25); color: var(--accent-sage); }
.uv-arrow { font-size: 1.2rem; color: var(--text-muted); }
.updates-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 22px;
  border-radius: var(--radius-full); background: var(--bg-icon); border: 1px solid var(--border);
  font-size: 0.84rem; color: var(--accent-emerald); font-weight: 700;
}
.updates-badge i { animation: spin 3s linear infinite; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ══════════════════════════════════════════════════════════════════
   FEATURES / WHY CHOOSE SECTION — BENTO GRID
══════════════════════════════════════════════════════════════════ */
.features-section { background: var(--bg-primary); }
.features-bento-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 22px;
}
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 28px 22px;
  transition: var(--transition-bounce); cursor: pointer;
}
.feature-card:hover, .feature-card:focus {
  border-color: var(--border); transform: translateY(-6px); box-shadow: var(--shadow-card); outline: none;
}
.feature-card:focus-visible { outline: 2px solid var(--accent-emerald); outline-offset: 4px; }
/* Span 2 columns for "large" feature cards */
.feat-large { grid-column: span 2; }
.feat-icon-wrap {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: var(--bg-icon); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 16px;
}
.feat-title { font-size: 0.95rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.feat-desc  { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; }

/* ══════════════════════════════════════════════════════════════════
   SCREENSHOT BENTO GALLERY
══════════════════════════════════════════════════════════════════ */
.screenshots-section { background: var(--bg-secondary); }
.screenshot-bento {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-auto-rows: 160px;
  gap: 16px;
}
.ss-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  cursor: pointer; transition: var(--transition-bounce); overflow: hidden; position: relative;
}
.ss-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(58,154,58,0.06), transparent);
  opacity: 0; transition: var(--transition);
}
.ss-card:hover::before { opacity: 1; }
.ss-card:hover, .ss-card:focus {
  border-color: var(--border); transform: scale(1.03); box-shadow: var(--shadow-card); outline: none;
}
.ss-card:focus-visible { outline: 2px solid var(--accent-emerald); outline-offset: 4px; }
.ss-large { grid-column: span 2; }
.ss-tall  { grid-row: span 2; }
.ss-emoji-screen { font-size: 2.5rem; z-index: 1; }
.ss-label {
  font-size: 0.78rem; font-weight: 600; color: var(--text-secondary);
  z-index: 1; text-align: center; padding: 0 12px;
}

/* ══════════════════════════════════════════════════════════════════
   DOWNLOAD / FINAL CTA SECTION
══════════════════════════════════════════════════════════════════ */
.download-section {
  position: relative; overflow: hidden;
  background: var(--grad-download); padding: 120px 0;
}
.download-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.dl-blob { position: absolute; border-radius: 50%; filter: blur(90px); }
.dl-b1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(58,154,58,0.16), transparent);
  top: -150px; right: -100px;
}
.dl-b2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.12), transparent);
  bottom: -100px; left: -80px;
}
.dl-b3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(122,173,110,0.10), transparent);
  top: 40%; left: 40%;
}
.dl-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(58,154,58,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58,154,58,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
}
/* Floating Download Leaves */
.dl-leaves { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.dl-leaf { position: absolute; font-size: 1.6rem; opacity: 0.12; animation: dlLeafFloat 12s ease-in-out infinite; }
.dl1 { top: 15%; left: 8%;  animation-delay: 0s; }
.dl2 { top: 70%; left: 5%;  animation-delay: 2s; }
.dl3 { top: 30%; right: 8%; animation-delay: 4s; }
.dl4 { bottom: 20%; right: 12%; animation-delay: 1s; }
.dl5 { top: 55%; left: 30%; animation-delay: 3s; }
@keyframes dlLeafFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%  { transform: translateY(-20px) rotate(10deg); }
}

.download-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; position: relative; z-index: 1;
}
.dl-eyebrow {
  display: inline-block; padding: 6px 14px; border-radius: var(--radius-full);
  background: var(--bg-icon); border: 1px solid var(--border);
  color: var(--accent-emerald); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px;
}
.download-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900;
  line-height: 1.2; color: var(--text-primary); margin-bottom: 20px;
}
.download-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 32px; }
.download-cta  { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.btn-download-big {
  display: inline-flex; align-items: center; gap: 12px; padding: 16px 28px;
  border-radius: var(--radius-lg); background: var(--grad-primary); color: var(--text-on-accent);
  font-weight: 700; transition: var(--transition-bounce); box-shadow: var(--shadow-download);
}
.btn-download-big:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 20px 60px rgba(58,154,58,0.42); }
.btn-dl-icon { font-size: 1.8rem; }
.btn-dl-sub  { display: block; font-size: 0.65rem; letter-spacing: 0.08em; opacity: 0.85; }
.btn-dl-main { display: block; font-size: 1.1rem; font-weight: 800; }
.btn-secondary-dl {
  display: inline-flex; align-items: center; gap: 10px; padding: 15px 24px;
  border-radius: var(--radius-lg); border: 1.5px solid var(--border);
  color: var(--text-secondary); font-weight: 600; font-size: 0.9rem;
  background: var(--bg-card); transition: var(--transition);
}
.btn-secondary-dl:hover { border-color: var(--accent-emerald); color: var(--accent-emerald); transform: translateY(-2px); }
.download-tagline { font-size: 0.85rem; color: var(--text-muted); }

/* Download Phone */
.download-visual { display: flex; justify-content: center; }
.dl-phone-wrap { position: relative; width: 240px; }
.dl-phone-glow {
  position: absolute; inset: -30px;
  background: radial-gradient(ellipse, rgba(58,154,58,0.22), transparent 70%);
  animation: glowPulse 3s ease-in-out infinite;
}
.dl-phone {
  width: 220px; background: var(--bg-card-solid); border-radius: 40px; padding: 12px;
  border: 2px solid var(--border); box-shadow: var(--shadow-phone); position: relative; z-index: 1; margin: 0 auto;
}
.dl-notch { width: 60px; height: 16px; background: var(--bg-primary); border-radius: 0 0 10px 10px; margin: 0 auto 8px; }
.dl-screen { border-radius: 24px; overflow: hidden; background: #041508; padding: 16px; }
.dl-app { display: flex; flex-direction: column; gap: 12px; }
.dl-app-header {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.68rem; font-weight: 700; color: var(--accent-emerald);
}
.dl-app-hero { text-align: center; padding: 12px 0; }
.dl-plant-emojis { font-size: 1.2rem; letter-spacing: 2px; margin-bottom: 8px; }
.dl-tagline-mini { font-size: 0.65rem; color: var(--text-muted); font-weight: 600; }
.dl-app-stats { display: flex; gap: 8px; justify-content: center; }
.dl-stat { text-align: center; }
.dl-sval { display: block; font-size: 0.7rem; font-weight: 800; color: var(--accent-emerald); }
.dl-slbl { display: block; font-size: 0.55rem; color: var(--text-muted); }
.dl-cta-mini {
  text-align: center; background: var(--grad-primary); color: var(--text-on-accent);
  padding: 8px; border-radius: var(--radius-full); font-size: 0.68rem; font-weight: 700;
}

/* ══════════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg-secondary); border-top: 1px solid var(--border-subtle);
  padding: 64px 0 32px; position: relative;
}
.footer-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--bg-icon), transparent);
  pointer-events: none;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px; position: relative;
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1rem; font-weight: 700; margin-bottom: 12px;
}
.footer-logo-icon { font-size: 1.4rem; }
.footer-tagline { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.footer-gplay {
  display: inline-flex; align-items: center; gap: 10px; padding: 10px 18px;
  border-radius: var(--radius-md); background: var(--bg-icon); border: 1px solid var(--border);
  transition: var(--transition); margin-bottom: 16px;
}
.footer-gplay:hover { border-color: var(--accent-emerald); background: var(--bg-card); transform: translateY(-2px); }
.footer-gplay i { font-size: 1.3rem; color: var(--accent-emerald); }
.fp-sub  { display: block; font-size: 0.58rem; color: var(--text-muted); letter-spacing: 0.06em; }
.fp-main { display: block; font-size: 0.82rem; font-weight: 700; color: var(--text-primary); }
.footer-by { font-size: 0.8rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.footer-by strong { color: var(--accent-emerald); }
.footer-col-title {
  font-size: 0.80rem; font-weight: 700; color: var(--text-primary);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.82rem; color: var(--text-muted); transition: var(--transition); display: inline-block; }
.footer-links a:hover { color: var(--accent-emerald); transform: translateX(4px); }
.footer-bottom {
  border-top: 1px solid var(--border-subtle); padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; position: relative;
}
.footer-copy { font-size: 0.8rem; color: var(--text-muted); }
.footer-note { font-size: 0.72rem; color: var(--text-muted); max-width: 520px; text-align: right; line-height: 1.5; }

/* ══════════════════════════════════════════════════════════════════
   LIGHT THEME — COMPONENT OVERRIDES
══════════════════════════════════════════════════════════════════ */
[data-theme="light"] .phone-screen     { background: #e6f4e6; }
[data-theme="light"] .dl-screen        { background: #e6f4e6; }
[data-theme="light"] .phone-notch      { background: var(--bg-secondary); }
[data-theme="light"] .dl-notch         { background: var(--bg-secondary); }

[data-theme="light"] .hero-grid {
  background-image:
    linear-gradient(rgba(30,92,30,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,92,30,0.05) 1px, transparent 1px);
}
[data-theme="light"] .stat-lbl         { color: var(--text-muted); }
[data-theme="light"] .step-number      { color: rgba(0,0,0,0.10); }
[data-theme="light"] .fam-species-chip { color: var(--text-secondary); }
[data-theme="light"] .fam-node-sub     { color: var(--text-muted); }

/* Comparison table rows alternate */
[data-theme="light"] .comp-header { background: rgba(30,92,30,0.06); }
[data-theme="light"] .comp-row:nth-child(even) { background: rgba(30,92,30,0.03); }

/* Facts top-border accent */
[data-theme="light"] .fact-card::after { background: var(--grad-primary); }

/* Download section light adjustments */
[data-theme="light"] .download-title   { color: var(--text-primary); }
[data-theme="light"] .download-desc    { color: var(--text-secondary); }
[data-theme="light"] .download-tagline { color: var(--text-muted); }
[data-theme="light"] .dl-tagline-mini  { color: var(--text-muted); }
[data-theme="light"] .dl-slbl          { color: var(--text-muted); }
[data-theme="light"] .dl-phone-glow    { background: radial-gradient(ellipse, rgba(30,92,30,0.18), transparent 70%); }

/* Footer light */
[data-theme="light"] .footer-tagline  { color: var(--text-muted); }
[data-theme="light"] .footer-copy     { color: var(--text-muted); }
[data-theme="light"] .footer-note     { color: var(--text-muted); }
[data-theme="light"] .footer-links a  { color: var(--text-muted); }
[data-theme="light"] .fp-sub          { color: var(--text-muted); }
[data-theme="light"] .footer-by       { color: var(--text-muted); }

/* App mockup in light mode */
[data-theme="light"] .app-title-mini   { color: var(--accent-emerald); }
[data-theme="light"] .app-subtitle-mini{ color: var(--text-muted); }
[data-theme="light"] .app-nav-item span{ color: var(--accent-emerald); }
[data-theme="light"] .app-icon-btn     { background: var(--bg-icon); }
[data-theme="light"] .app-cat span     { color: var(--text-secondary); }
[data-theme="light"] .recent-name      { color: var(--text-primary); }
[data-theme="light"] .recent-cat       { color: var(--text-muted); }
[data-theme="light"] .app-section-label{ color: var(--text-muted); }
[data-theme="light"] .potd-name        { color: var(--text-primary); }
[data-theme="light"] .care-water       { color: #1d4ed8; }

/* Offline section light */
[data-theme="light"] .of-step          { color: var(--text-secondary); }
[data-theme="light"] .of-item          { color: var(--text-secondary); }

/* SVG gradient rings — keep gold color in light mode */
[data-theme="light"] .scv-val  { color: var(--accent-gold); }
[data-theme="light"] .ccv-val  { color: var(--accent-gold); }

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

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET & MOBILE
══════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-container   { grid-template-columns: 1fr; gap: 60px; text-align: center; padding-top: 100px; }
  .hero-cta, .hero-trust, .hero-stats { justify-content: center; }
  .hero-desc        { margin-left: auto; margin-right: auto; }
  .hero-visual      { justify-content: center; }
  .fc-1, .fc-3, .fc-5 { left: -40px; }
  .fc-2, .fc-4     { right: -40px; }
  .about-grid       { grid-template-columns: 1fr; gap: 40px; }
  .profile-showcase { grid-template-columns: 1fr; }
  .family-layout    { grid-template-columns: 1fr; gap: 32px; }
  .features-bento-grid { grid-template-columns: repeat(2,1fr); }
  .feat-large       { grid-column: span 2; }
  .stats-grid       { grid-template-columns: repeat(2,1fr); }
  .journey-steps    { grid-template-columns: 1fr 1fr; }
  .step-connector   { display: none; }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 36px; }
  .dash-content-grid { grid-template-columns: 1fr 1fr; }
  .dash-potd        { grid-column: span 2; }
  .screenshot-bento { grid-template-columns: repeat(3,1fr); }
  .ss-large         { grid-column: span 2; }
}

@media (max-width: 900px) {
  .potd-showcase     { grid-template-columns: 1fr; }
  .favorites-layout  { grid-template-columns: 1fr; }
  .download-layout   { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .download-cta      { justify-content: center; }
  .download-visual   { display: none; }
  .care-grid         { grid-template-columns: 1fr 1fr; }
  .features-bento-grid { grid-template-columns: repeat(2,1fr); }
  .feat-large        { grid-column: span 2; }
  .nav-links         { display: none; }
  .hamburger         { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 64px; left: 0; right: 0;
    background: var(--bg-glass); backdrop-filter: blur(20px);
    padding: 16px; border-bottom: 1px solid var(--border-subtle);
    gap: 4px; z-index: 999;
  }
  .nav-link { padding: 10px 16px; border-radius: var(--radius-md); }
}

@media (max-width: 640px) {
  .section           { padding: 72px 0; }
  .section-header    { margin-bottom: 40px; }
  .hero-container    { padding: 80px 24px 60px; }
  .hero-heading      { font-size: 2.2rem; }
  .categories-grid   { grid-template-columns: 1fr; }
  .botinfo-grid      { grid-template-columns: 1fr; }
  .benefits-grid     { grid-template-columns: 1fr 1fr; }
  .audience-grid     { grid-template-columns: 1fr 1fr; }
  .reading-grid      { grid-template-columns: 1fr 1fr; }
  .journey-steps     { grid-template-columns: 1fr; }
  .features-bento-grid { grid-template-columns: 1fr; }
  .feat-large        { grid-column: span 1; }
  .stats-grid        { grid-template-columns: 1fr 1fr; }
  .screenshot-bento  { grid-template-columns: 1fr 1fr; }
  .ss-large, .ss-tall { grid-column: span 1; grid-row: span 1; }
  .footer-grid       { grid-template-columns: 1fr; }
  .footer-note       { text-align: left; }
  .phone-mockup-wrapper { width: 260px; }
  .phone-mockup      { width: 240px; }
  .fc-1,.fc-2,.fc-3,.fc-4,.fc-5 { display: none; }
  .offline-card      { padding: 36px 20px; }
  .updates-card      { padding: 36px 20px; }
  .care-grid         { grid-template-columns: 1fr 1fr; }
  .comp-header, .comp-row { grid-template-columns: 1.2fr 1fr 1fr; }
  .comp-cell         { padding: 10px 12px; font-size: 0.75rem; }
  .dash-content-grid { grid-template-columns: 1fr 1fr; }
  .facts-grid        { grid-template-columns: 1fr; }
  .ccv-middle        { gap: 16px; }
}

@media (max-width: 400px) {
  .benefits-grid     { grid-template-columns: 1fr; }
  .audience-grid     { grid-template-columns: 1fr; }
  .reading-grid      { grid-template-columns: 1fr; }
  .screenshot-bento  { grid-template-columns: 1fr; }
  .care-grid         { grid-template-columns: 1fr; }
  .stats-grid        { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════════
   ICON SYSTEM — Font Awesome replacements for emoji
   All emoji replaced with FA icons for cross-platform reliability
══════════════════════════════════════════════════════════════════ */

/* Preloader icon */
.preloader-icon { font-size: 3.2rem; margin-bottom: 1.2rem; color: var(--accent-emerald); animation: leafSway 1s ease-in-out infinite alternate; }
.preloader-icon i { font-size: 2.8rem; }

/* Navbar logo icon */
.nav-logo-icon { font-size: 1.2rem; color: var(--accent-emerald); display: flex; align-items: center; }
.nav-logo-icon i { font-size: 1.2rem; }

/* Hero leaf silhouettes — now FA icons */
.leaf-sil { position: absolute; opacity: 0.07; font-size: 1.8rem; animation: leafDrift 16s ease-in-out infinite; color: var(--accent-emerald); }
.ls1 { font-size: 2.2rem; top: 12%; left: 4%;   animation-delay: 0s; }
.ls2 { font-size: 2rem;   top: 65%; left: 2%;   animation-delay: 2s; }
.ls3 { font-size: 1.8rem; top: 28%; right: 4%;  animation-delay: 4s; }
.ls4 { font-size: 2.4rem; bottom: 22%; right: 6%; animation-delay: 1s; }
.ls5 { font-size: 2rem;   top: 52%; left: 14%;  animation-delay: 3s; }
.ls6 { font-size: 2.5rem; top: 78%; right: 18%; animation-delay: 5s; }
.ls7 { font-size: 2rem;   top: 40%; right: 28%; animation-delay: 1.5s; }

/* Phone mockup — FA icons as app UI */
.app-logo-mini i { font-size: 1rem; color: var(--accent-emerald); }
.app-icon-btn i  { font-size: 0.7rem; color: var(--text-secondary); }
.app-cat i       { font-size: 1rem; color: var(--accent-emerald); }
.recent-icon i   { font-size: 0.85rem; color: var(--accent-emerald); }
.recent-heart i  { font-size: 0.75rem; color: var(--accent-gold); }
.recent-heart-empty i { color: var(--text-muted); }
.app-care-chip i { font-size: 0.7rem; color: var(--accent-emerald); }
.app-nav-item i  { font-size: 0.85rem; }
.app-nav-item.active i { color: var(--accent-emerald); }
.potd-label i    { font-size: 0.55rem; color: var(--accent-gold); }

/* Floating cards — icon sizing */
.fc-icon { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fc-icon i { font-size: 1.1rem; }

/* About value cards */
.vc-icon { font-size: 1.6rem; flex-shrink: 0; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--bg-icon); border-radius: var(--radius-md); border: 1px solid var(--border); }
.vc-icon i { font-size: 1.2rem; }

/* Stats section */
.stat-icon-big i { font-size: 2rem; color: var(--accent-emerald); }
.stat-icon-big   { font-size: 0; } /* hide fallback text, show icon */

/* Plant cards — icon-based plant representation */
.plant-icon-wrap {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: var(--bg-icon); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.plant-fa-icon   { font-size: 1.4rem; color: var(--accent-emerald); }
.plant-icon-pink  .plant-fa-icon { color: #f472b6; }
.plant-icon-gold  .plant-fa-icon { color: var(--accent-gold); }
.plant-icon-yellow .plant-fa-icon { color: #fbbf24; }
.plant-icon-featured .plant-fa-icon { color: var(--accent-gold); }
.plant-icon-featured { background: rgba(201,168,76,0.12); border-color: rgba(201,168,76,0.25); }

/* Fav button active state */
.fav-active i { color: var(--accent-gold); }
.fav-active   { background: rgba(201,168,76,0.15) !important; border-color: var(--accent-gold) !important; }

/* Categories icons */
.cat-icon { font-size: 0; margin-bottom: 12px; }
.cat-icon i { font-size: 2rem; color: var(--accent-emerald); display: block; }
.cat-card:nth-child(4) .cat-icon i  { color: #f472b6; }
.cat-card:nth-child(5) .cat-icon i  { color: #f59e0b; }
.cat-card:nth-child(6) .cat-icon i  { color: #f59e0b; }
.cat-card:nth-child(7) .cat-icon i  { color: var(--accent-sage); }
.cat-card:nth-child(8) .cat-icon i  { color: var(--accent-forest); }
.cat-card:nth-child(9) .cat-icon i  { color: var(--accent-gold); }

/* Profile large icon */
.profile-emoji-large { font-size: 0; width: 72px; height: 72px; border-radius: var(--radius-lg); background: var(--bg-icon); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.profile-main-icon { font-size: 2.2rem; color: var(--accent-emerald); }

/* Care grid icons */
.care-icon-wrap { font-size: 0; }
.care-fa { font-size: 1.2rem; }
.care-item:nth-child(1) .care-fa { color: #f59e0b; }
.care-item:nth-child(2) .care-fa { color: #60a5fa; }
.care-item:nth-child(3) .care-fa { color: var(--accent-emerald); }
.care-item:nth-child(4) .care-fa { color: var(--accent-sage); }
.care-item:nth-child(5) .care-fa { color: #f472b6; }
.care-item:nth-child(6) .care-fa { color: #fb923c; }

/* Care dashboard icons */
.care-dash-icon { font-size: 0; margin-bottom: 12px; }
.care-dash-icon i { font-size: 1.8rem; color: var(--accent-emerald); display: block; }
.care-dash-card:nth-child(1) .care-dash-icon i { color: #60a5fa; }
.care-dash-card:nth-child(2) .care-dash-icon i { color: #f59e0b; }
.care-dash-card:nth-child(3) .care-dash-icon i { color: var(--accent-emerald); }
.care-dash-card:nth-child(4) .care-dash-icon i { color: var(--accent-sage); }
.care-dash-card:nth-child(5) .care-dash-icon i { color: #fb923c; }
.care-dash-card:nth-child(6) .care-dash-icon i { color: var(--accent-gold); }

/* Circular care visual */
.ccv-center-icon { font-size: 0; }
.ccv-leaf-icon { font-size: 2.2rem; color: var(--accent-emerald); }
.ccv-pill i { font-size: 0.75rem; margin-right: 4px; }

/* Botinfo icons */
.botinfo-icon { font-size: 0; margin-bottom: 12px; }
.botinfo-icon i { font-size: 1.8rem; color: var(--accent-emerald); display: block; }
.botinfo-card:nth-child(2) .botinfo-icon i { color: var(--accent-sage); }
.botinfo-card:nth-child(3) .botinfo-icon i { color: #60a5fa; }
.botinfo-card:nth-child(4) .botinfo-icon i { color: #f472b6; }
.botinfo-card:nth-child(5) .botinfo-icon i { color: var(--accent-gold); }
.botinfo-card:nth-child(6) .botinfo-icon i { color: #fbbf24; }

/* Benefits icons */
.benefit-icon { font-size: 0; margin-bottom: 12px; }
.benefit-icon i { font-size: 2rem; color: var(--accent-emerald); display: block; margin: 0 auto; }
.benefit-card:nth-child(1) .benefit-icon i { color: #f59e0b; }
.benefit-card:nth-child(2) .benefit-icon i { color: #f472b6; }
.benefit-card:nth-child(3) .benefit-icon i { color: var(--accent-gold); }
.benefit-card:nth-child(4) .benefit-icon i { color: #60a5fa; }
.benefit-card:nth-child(5) .benefit-icon i { color: var(--accent-sage); }
.benefit-card:nth-child(6) .benefit-icon i { color: #a78bfa; }
.benefit-card:nth-child(7) .benefit-icon i { color: var(--accent-gold); }

/* Family tree icons */
.fam-node-icon { font-size: 0; margin-bottom: 6px; }
.fam-node-icon i { font-size: 1.6rem; color: var(--accent-emerald); }
.fam-arrow-down i { font-size: 0.9rem; color: var(--accent-emerald); opacity: 0.6; }
.fam-genus-node i { font-size: 0.85rem; color: var(--accent-emerald); }
.fic-icon { font-size: 0; }
.fic-icon i { font-size: 1.6rem; color: var(--accent-emerald); }
.family-info-card:nth-child(2) .fic-icon i { color: #f472b6; }
.family-info-card:nth-child(3) .fic-icon i { color: var(--accent-sage); }

/* Search result icons */
.src-icon-wrap { width: 44px; height: 44px; border-radius: var(--radius-md); background: var(--bg-icon); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.src-fa-icon { font-size: 1.2rem; }
.src-green { color: var(--accent-emerald); }
.src-pink  { color: #f472b6; }
.src-sage  { color: var(--accent-sage); }

/* Search popular chip icons */
.sp-chip i { font-size: 0.72rem; margin-right: 4px; }

/* POTD section */
.potd-icon-wrap { font-size: 0; width: 80px; height: 80px; border-radius: var(--radius-xl); background: var(--bg-icon); border: 1px solid var(--border-glow); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; animation: potdFloat 3s ease-in-out infinite; }
.potd-fa-icon { font-size: 2.4rem; color: #f472b6; }
.potd-care-item i { font-size: 0.78rem; margin-right: 4px; }
.potd-care-item:nth-child(1) i { color: #f59e0b; }
.potd-care-item:nth-child(2) i { color: #60a5fa; }
.potd-care-item:nth-child(3) i { color: var(--accent-emerald); }
.pmc-icon-wrap { width: 44px; height: 44px; border-radius: var(--radius-md); background: var(--bg-icon); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pmc-fa { font-size: 1.2rem; color: var(--accent-emerald); }
.potd-mini-card:nth-child(1) .pmc-fa { color: #f59e0b; }
.potd-mini-card:nth-child(4) .pmc-fa { color: var(--text-muted); }

/* Favorites section icons */
.myp-icon-wrap { width: 36px; height: 36px; border-radius: var(--radius-sm); background: var(--bg-icon); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.myp-fa      { font-size: 1rem; }
.myp-fa-green{ color: var(--accent-emerald); }
.myp-fa-gold { color: var(--accent-gold); }
.myp-fa-pink { color: #f472b6; }
.myp-fa-sage { color: var(--accent-sage); }
.myp-heart i { font-size: 0.8rem; color: var(--accent-gold); }
.myp-title i { font-size: 0.9rem; margin-right: 6px; color: var(--accent-emerald); }
.fic2-icon { font-size: 0; width: 44px; height: 44px; border-radius: var(--radius-md); background: var(--bg-icon); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fic2-icon i { font-size: 1.2rem; }

/* Offline section */
.offline-icon { font-size: 0; margin-bottom: 16px; }
.offline-icon i { font-size: 2.8rem; color: var(--accent-emerald); display: block; text-align: center; }
.of-step-icon { font-size: 0; }
.of-step-icon i { font-size: 1.4rem; color: var(--accent-emerald); display: block; text-align: center; margin-bottom: 4px; }
.of-arrow i { font-size: 1rem; color: var(--text-muted); }

/* Reading cards */
.rc-icon { font-size: 0; margin-bottom: 12px; }
.rc-icon i { font-size: 1.8rem; color: var(--accent-emerald); display: block; }
.reading-card:nth-child(2) .rc-icon i { color: var(--accent-sage); }
.reading-card:nth-child(3) .rc-icon i { color: var(--accent-gold); }
.reading-card:nth-child(4) .rc-icon i { color: #60a5fa; }
.reading-card:nth-child(5) .rc-icon i { color: var(--text-muted); }
.reading-card:nth-child(6) .rc-icon i { color: var(--accent-emerald); }

/* Audience cards */
.audience-icon { font-size: 0; margin-bottom: 14px; }
.audience-icon i { font-size: 2.2rem; color: var(--accent-emerald); display: block; text-align: center; }
.audience-card:nth-child(3) .audience-icon i { color: var(--accent-gold); }
.audience-card:nth-child(4) .audience-icon i { color: var(--accent-sage); }
.audience-card:nth-child(5) .audience-icon i { color: #60a5fa; }
.audience-card:nth-child(7) .audience-icon i { color: var(--accent-forest); }
.audience-card:nth-child(8) .audience-icon i { color: #60a5fa; }

/* Journey steps */
.step-icon { font-size: 0; margin-bottom: 12px; }
.step-icon i { font-size: 1.8rem; color: var(--accent-emerald); display: block; text-align: center; }
.journey-step:nth-child(2) .step-icon i { color: var(--accent-gold); }
.journey-step:nth-child(3) .step-icon i { color: var(--accent-sage); }
.journey-step:nth-child(4) .step-icon i { color: #f59e0b; }

/* Dashboard */
.dash-good-morning i { font-size: 1rem; color: var(--accent-emerald); margin-right: 4px; }
.dash-icon-btn i     { font-size: 1rem; color: var(--text-secondary); }
.dash-cat-btn i      { font-size: 1rem; color: var(--accent-emerald); }
.dash-widget-label i { font-size: 0.68rem; margin-right: 4px; }
.dash-fav-icon-row   { display: flex; gap: 8px; justify-content: center; margin-top: 6px; }
.dash-fav-icon-row i { font-size: 1.1rem; color: var(--accent-emerald); }
.dash-fav-icon-row i:nth-child(1) { color: var(--accent-emerald); }
.dash-fav-icon-row i:nth-child(2) { color: var(--accent-emerald); }
.dash-fav-icon-row i:nth-child(3) { color: #f472b6; }
.dash-fav-icon-row i:nth-child(4) { color: var(--accent-sage); }

/* Comparison table */
.comp-plant-icon { font-size: 0; margin-bottom: 6px; }
.comp-plant-icon i { font-size: 1.6rem; display: block; }
.comp-icon-gold { color: var(--accent-gold); }
.comp-icon-sage { color: var(--accent-sage); }
.comp-row-icon  { font-size: 0.8rem; margin-right: 4px; }
.comp-row:nth-child(2) .comp-row-icon { color: #60a5fa; }
.comp-row:nth-child(3) .comp-row-icon { color: #f59e0b; }

/* Fact cards */
.fact-icon { font-size: 0; margin-bottom: 10px; }
.fact-icon i { font-size: 1.8rem; color: var(--accent-emerald); display: block; }
.fact-card:nth-child(1) .fact-icon i { color: var(--accent-emerald); }
.fact-card:nth-child(2) .fact-icon i { color: var(--accent-sage); }
.fact-card:nth-child(3) .fact-icon i { color: #60a5fa; }
.fact-card:nth-child(4) .fact-icon i { color: #60a5fa; }
.fact-card:nth-child(5) .fact-icon i { color: #f472b6; }
.fact-card:nth-child(6) .fact-icon i { color: var(--accent-forest); }

/* Updates section */
.updates-icon { font-size: 0; margin-bottom: 16px; }
.updates-fa-icon { font-size: 3rem; color: var(--accent-emerald); display: block; text-align: center; animation: growSpin 4s ease-in-out infinite; }
.uv-step i { font-size: 0.85rem; margin-right: 4px; }
.uv-arrow i { font-size: 0.9rem; }

/* Features bento icons */
.feat-icon-wrap { width: 52px; height: 52px; border-radius: var(--radius-md); background: var(--bg-icon); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 0; }
.feat-fa  { font-size: 1.4rem; }
.feat-green  { color: var(--accent-emerald); }
.feat-teal   { color: #2dd4bf; }
.feat-gold   { color: var(--accent-gold); }
.feat-blue   { color: #60a5fa; }
.feat-red    { color: #f87171; }
.feat-sage   { color: var(--accent-sage); }

/* Screenshot gallery icons */
.ss-emoji-screen { display: none; } /* hide old class if any remnants */
.ss-icon-wrap { width: 64px; height: 64px; border-radius: var(--radius-lg); background: var(--bg-icon); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; z-index: 1; }
.ss-fa     { font-size: 1.8rem; }
.ss-green  { color: var(--accent-emerald); }
.ss-teal   { color: #2dd4bf; }
.ss-gold   { color: var(--accent-gold); }
.ss-pink   { color: #f472b6; }
.ss-blue   { color: #60a5fa; }
.ss-red    { color: #f87171; }
.ss-sage   { color: var(--accent-sage); }
.ss-yellow { color: #fbbf24; }
.ss-emerald{ color: var(--accent-emerald); }

/* Download section */
.dl-leaves .dl-leaf { color: var(--accent-emerald); opacity: 0.15; font-size: 0; }
.dl-leaves .dl-leaf i { font-size: 1.4rem; color: var(--accent-emerald); }
.dl-plant-icons { display: flex; gap: 10px; justify-content: center; font-size: 1.2rem; color: var(--accent-emerald); margin-bottom: 8px; }
.dl-plant-icons i:nth-child(1) { color: var(--accent-emerald); }
.dl-plant-icons i:nth-child(2) { color: #f472b6; }
.dl-plant-icons i:nth-child(3) { color: var(--accent-sage); }
.dl-plant-icons i:nth-child(4) { color: var(--accent-forest); }
.dl-plant-icons i:nth-child(5) { color: var(--accent-emerald); }
.dl-plant-icons i:nth-child(6) { color: #f59e0b; }
.dl-app-header i { font-size: 0.9rem; color: var(--accent-emerald); }

/* Footer logo */
.footer-logo-icon { font-size: 0; }
.footer-logo-icon i { font-size: 1.3rem; color: var(--accent-emerald); }

/* Download tagline icon */
.download-tagline i { color: var(--accent-emerald); margin-right: 4px; }

/* scv bar labels FA icons */
.scv-bar-label i { font-size: 0.72rem; margin-right: 3px; }
.scv-bar-row:nth-child(1) .scv-bar-label i { color: #60a5fa; }
.scv-bar-row:nth-child(2) .scv-bar-label i { color: var(--accent-emerald); }
.scv-bar-row:nth-child(3) .scv-bar-label i { color: var(--accent-sage); }

/* CCv ring labels */
.ccv-label i  { font-size: 0.78rem; margin-right: 4px; color: #f59e0b; }
.ccv-care-badge i { font-size: 0.8rem; margin-right: 6px; color: var(--accent-emerald); }

/* Particles — JS now injects FA icons via innerHTML */
.bot-particle { position: absolute; opacity: 0; animation: particleRise linear infinite; color: var(--accent-emerald); }
