/* ═══════════════════════════════════════════════════════════════
   FyTevO Global Design System v2.0
   App + Web unified — identical experience on all devices
   Colors: #0B0B0B bg | #2ECC71 green | #FF7A00 orange
   #171717 surface | #1a2a1f forest-card | #112318 forest-deep
   Breakpoints: 480 / 768 / 900 / 1200
═══════════════════════════════════════════════════════════════ */
:root{
  --black:#0B0B0B;
  --surface:#171717;
  --surface2:#1f1f1f;
  --forest:#112318;
  --forest2:#1a2a1f;
  --green:#2ECC71;
  --green-dark:#27AE60;
  --green-glow:rgba(46,204,113,.15);
  --orange:#FF7A00;
  --orange-dim:rgba(255,122,0,.12);
  --stone:#BDBDBD;
  --white:#f5f0e8;
  --white-dim:rgba(245,240,232,.60);
  --white-faint:rgba(245,240,232,.30);
  --border:rgba(255,255,255,.08);
  --border-green:rgba(46,204,113,.25);
  --radius:10px;
  --radius-lg:16px;
  --radius-xl:22px;
  --nav-h:62px;
  --action-h:34px;
  --mobile-nav-h:62px;
  --font-body:'Inter',sans-serif;
  --font-display:'Playfair Display',serif;
  --shadow-card:0 4px 24px rgba(0,0,0,.4);
  --shadow-glow:0 0 24px rgba(46,204,113,.15);
}

/* ── RESET ─────────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  background:var(--black);color:var(--white);
  font-family:var(--font-body);font-size:15px;line-height:1.65;
  -webkit-font-smoothing:antialiased;overflow-x:hidden;
  /* Space for mobile bottom nav */
  padding-bottom:0;
}
body.has-mobile-nav{ padding-bottom:var(--mobile-nav-h); }
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button,input,textarea,select{font-family:inherit}

/* ── ACTION BAR ─────────────────────────────────────────── */
#fytev-action-bar{
  background:rgba(10,10,10,.97);
  border-bottom:1px solid rgba(46,204,113,.12);
  padding:0 20px;height:var(--action-h);
  display:flex;align-items:center;justify-content:space-between;gap:6px;
  font-size:11.5px;font-family:var(--font-body);
  position:sticky;top:0;z-index:1001;overflow:hidden;
}
#fytevNav{position:sticky;top:var(--action-h);z-index:1000;}

.ab-left{display:flex;align-items:center;gap:14px;flex:1;overflow:hidden}
.ab-right{display:flex;align-items:center;gap:8px;flex-shrink:0}
.ab-pill{
  display:inline-flex;align-items:center;gap:5px;
  color:rgba(255,255,255,.7);white-space:nowrap;cursor:default;
  padding:2px 0;position:relative;transition:color .15s;
}
.ab-pill:hover{color:#fff}
.ab-pill .ab-icon{font-size:12px;line-height:1}
.ab-pill .ab-val{font-weight:600;letter-spacing:.3px}
.ab-pill .ab-lbl{font-weight:400;opacity:.65;font-size:10.5px}
.ab-tooltip{
  display:none;position:absolute;top:calc(100% + 8px);left:50%;
  transform:translateX(-50%);background:#1c1c1c;
  border:1px solid rgba(46,204,113,.3);border-radius:10px;
  padding:10px 14px;font-size:12px;color:#fff;white-space:nowrap;
  min-width:180px;z-index:9999;box-shadow:0 8px 24px rgba(0,0,0,.6);pointer-events:none;
}
.ab-pill:hover .ab-tooltip{display:block}
.ab-div{width:1px;height:16px;background:rgba(255,255,255,.09);flex-shrink:0}
.ab-reminder{
  display:inline-flex;align-items:center;gap:4px;
  background:rgba(46,204,113,.1);border:1px solid rgba(46,204,113,.22);
  border-radius:20px;padding:2px 9px 2px 7px;font-size:11px;font-weight:600;
  color:var(--green);cursor:pointer;text-decoration:none;position:relative;
  transition:background .15s;white-space:nowrap;
}
.ab-reminder:hover{background:rgba(46,204,113,.2)}
.ab-reminder.water{color:#3498db;border-color:rgba(52,152,219,.28);background:rgba(52,152,219,.09)}
.ab-reminder.harvest{color:#f39c12;border-color:rgba(243,156,18,.28);background:rgba(243,156,18,.09)}
.ab-reminder.bid{color:#ff7a00;border-color:rgba(255,122,0,.28);background:rgba(255,122,0,.09)}
.ab-reminder.admin{color:#9b59b6;border-color:rgba(155,89,182,.28);background:rgba(155,89,182,.09)}
.ab-zone{display:inline-flex;align-items:center;gap:4px;background:rgba(46,204,113,.09);border:1px solid rgba(46,204,113,.18);border-radius:12px;padding:1px 8px;color:var(--green);font-weight:700}
.ab-loading{opacity:.4;animation:ab-pulse 1.4s ease-in-out infinite}
@keyframes ab-pulse{0%,100%{opacity:.4}50%{opacity:.8}}
.ab-moon{color:#e8d5a3}

/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE INSIGHT STRIP  —  matches Android app homeInsightCard (≤768px)
   Desktop: #mob-env-card { display:none } — zero desktop impact
   ═══════════════════════════════════════════════════════════════════════════ */
#mob-env-card {
  display: none; /* desktop hidden */
}

@media (max-width: 768px) {

  /* Hide old thin action bar */
  #fytev-action-bar { display: none !important; }

  /* ── Insight strip — positioning overridden by main mobile block below ── */
  #mob-env-card { display: block; }
  /* fytev-main offset handled by main mobile block */

  /* ── Pill row ─────────────────────────────────────────────── */
  .mis-row {
    display: flex;
    align-items: center;
    gap: 4px;
    width: 100%;
  }

  /* ── Individual pill ──────────────────────────────────────── */
  .mis-pill {
    flex: 1;
    min-width: 0;
    height: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 4px 3px;
    border-radius: 12px;
    background: #171717;
    border: 1px solid #242424;
    position: relative;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.15s;
  }
  .mis-pill:active,
  .mis-pill.mis-active {
    background: #1e2e1e;
    border-color: rgba(46,204,113,0.3);
  }

  /* Location pill gets slightly more space */
  .mis-pill--wide {
    flex: 1.4;
  }

  /* ── Icon letter ──────────────────────────────────────────── */
  .mis-icon {
    font-size: 13px;
    font-weight: 900;
    color: rgba(255,255,255,0.55);
    flex-shrink: 0;
    font-family: 'Inter', sans-serif;
  }

  /* ── Inline value ─────────────────────────────────────────── */
  .mis-val {
    font-size: 11px;
    font-weight: 900;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 52px;
    font-family: 'Inter', sans-serif;
  }

  /* ── Separator dot between pills ─────────────────────────── */
  .mis-sep {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #2a2a2a;
    flex-shrink: 0;
  }

  /* ── Popup tooltip on tap ─────────────────────────────────── */
  .mis-popup {
    display: none;
    position: absolute;
    top: 36px;
    left: 0;
    min-width: 150px;
    max-width: 200px;
    background: #171717;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 8px 10px;
    z-index: 100;
    flex-direction: column;
    gap: 2px;
    pointer-events: none;
  }
  .mis-pill.mis-active .mis-popup {
    display: flex;
  }
  .mis-popup-label {
    font-size: 9px;
    font-weight: 800;
    color: #bdbdbd;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-family: 'Inter', sans-serif;
  }
  .mis-popup-val {
    font-size: 11px;
    font-weight: 900;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* ── Status bar below pills — hidden by default, shown by JS ─ */
  .mis-status {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 5px 2px 6px;
  }
  #mis-status-text {
    flex: 1;
    font-size: 10px;
    font-weight: 700;
    color: #bdbdbd;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'Inter', sans-serif;
  }
  .mis-refresh {
    min-width: 60px;
    height: 28px;
    border-radius: 8px;
    background: #2ecc71;
    border: none;
    color: #061108;
    font-size: 11px;
    font-weight: 900;
    cursor: pointer;
    padding: 0 10px;
    flex-shrink: 0;
    font-family: 'Inter', sans-serif;
    -webkit-tap-highlight-color: transparent;
  }
  .mis-refresh:active { opacity: 0.75; }
  .mis-refresh.mis-refreshing { opacity: 0.55; pointer-events: none; }

  /* ── Zone value highlight ─────────────────────────────────── */
  #mis-zone-val { color: #2ecc71; }

  /* ── Loading shimmer ──────────────────────────────────────── */
  .mis-val.mis-loading {
    color: rgba(255,255,255,0.2);
    animation: mis-pulse 1.4s ease-in-out infinite;
  }
  @keyframes mis-pulse {
    0%, 100% { opacity: 0.25; }
    50%       { opacity: 0.7; }
  }

}
/* end @media mobile insight strip */

.fytev-action-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,10,.95);
  border-bottom: 1px solid rgba(46,204,113,.1);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px; height: 32px;
  font-size: 11px; color: rgba(255,255,255,.55);
  backdrop-filter: blur(12px);
}
.ab-left  { display: flex; align-items: center; gap: 0; overflow: hidden; }
.ab-right { display: flex; align-items: center; gap: 8px; }
.ab-pill  { display: flex; align-items: center; gap: 4px; padding: 0 10px; white-space: nowrap; }
.ab-val   { color: rgba(255,255,255,.8); font-weight: 600; }
.ab-icon  { font-size: 12px; }
.ab-sep   { opacity: .4; }
.ab-divider { width: 1px; height: 14px; background: rgba(255,255,255,.1); margin: 0 2px; }
.ab-reminder {
  display: flex; align-items: center; gap: 3px;
  padding: 2px 8px; border-radius: 10px; font-size: 10px; font-weight: 700;
  text-decoration: none; transition: opacity .2s;
}
.ab-reminder--water   { background: rgba(52,152,219,.2); color: #5dade2; }
.ab-reminder--harvest { background: rgba(241,196,15,.15); color: #f4d03f; }
.ab-reminder--bid     { background: rgba(231,76,60,.15);  color: #e74c3c; }
.ab-reminder--admin   { background: rgba(155,89,182,.15); color: #9b59b6; }

/* ── MAIN NAV ───────────────────────────────────────────────────────────── */
.fytev-nav {
  position: fixed; top: 32px; left: 0; right: 0; z-index: 999;
  background: rgba(10,10,10,.96);
  border-bottom: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(16px);
  transition: top .3s, box-shadow .3s, transform .3s;
}
.fytev-nav.nav-scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.5); }
.fytev-nav.nav-hidden { transform: translateY(-100%); }
.nav-container {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center;
  padding: 0 24px; height: 64px; gap: 8px;
}

/* Logo */
.nav-logo { display: flex; align-items: center; text-decoration: none; margin-right: 16px; flex-shrink: 0; }
.nav-logo-img { height: 44px; width: auto; }

/* Pillar links */
.nav-pillars {
  display: flex; list-style: none; margin: 0; padding: 0;
  gap: 2px; flex: 1;
}
.nav-pillar {
  display: flex; flex-direction: column; align-items: center;
  padding: 8px 14px; border-radius: 10px; text-decoration: none;
  color: rgba(255,255,255,.6); transition: all .2s;
  font-size: 11px; gap: 2px;
}
.nav-pillar:hover { background: rgba(46,204,113,.08); color: #fff; }
.nav-pillar.active { background: rgba(46,204,113,.12); color: #2ECC71; }
.np-icon  { font-size: 18px; line-height: 1; }
.np-label { font-weight: 600; letter-spacing: .3px; }

/* Center scan button */
.nav-scan-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 20px; border-radius: 50px;
  background: linear-gradient(135deg, #FF7A00, #e06600);
  color: #fff; font-weight: 700; font-size: 14px;
  text-decoration: none; flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(255,122,0,.35);
  transition: all .2s; margin: 0 8px;
}
.nav-scan-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(255,122,0,.45); }
.nav-scan-icon { width: 22px; height: 22px; border-radius: 50%; }

/* Right actions */
.nav-actions { display: flex; align-items: center; gap: 8px; margin-left: 8px; }
.nav-coins {
  display: flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 600; color: #ffaa00;
  text-decoration: none; padding: 6px 12px;
  background: rgba(255,170,0,.1); border-radius: 20px;
}
.nav-notif {
  position: relative; display: flex; align-items: center;
  padding: 8px 10px; color: rgba(255,255,255,.6);
  text-decoration: none; font-size: 16px;
  border-radius: 8px; transition: background .2s;
}
.nav-notif:hover { background: rgba(255,255,255,.07); }
.nav-notif-badge {
  position: absolute; top: 2px; right: 2px;
  background: #e74c3c; color: #fff; border-radius: 50%;
  width: 16px; height: 16px; font-size: 9px;
  display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.nav-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  overflow: hidden; text-decoration: none;
  border: 2px solid rgba(46,204,113,.3); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(46,204,113,.1);
}
.nav-avatar img { width: 100%; height: 100%; object-fit: cover; }
.nav-avatar-initial { font-size: 14px; font-weight: 700; color: #2ECC71; }
.nav-btn-ghost {
  padding: 7px 16px; border-radius: 8px; font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,.7); text-decoration: none;
  border: 1px solid rgba(255,255,255,.15); transition: all .2s;
}
.nav-btn-ghost:hover { border-color: #2ECC71; color: #2ECC71; }
.nav-btn-primary {
  padding: 8px 18px; border-radius: 8px; font-size: 13px; font-weight: 700;
  background: #2ECC71; color: #0a0a0a; text-decoration: none; transition: all .2s;
}
.nav-btn-primary:hover { background: #27AE60; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: rgba(255,255,255,.7); border-radius: 2px; transition: all .2s;
}

/* ── MOBILE DRAWER ──────────────────────────────────────────────────────── */
.nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 1098;
  background: rgba(0,0,0,.6); backdrop-filter: blur(4px);
}
.nav-overlay.open { display: block; }
.nav-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 1099;
  width: 300px; background: #111; border-left: 1px solid rgba(255,255,255,.08);
  transform: translateX(100%); transition: transform .3s ease;
  overflow-y: auto; display: flex; flex-direction: column;
}
.nav-drawer.open { transform: translateX(0); }
body.drawer-open { overflow: hidden; }
.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,.07);
}
.drawer-close {
  background: none; border: none; color: rgba(255,255,255,.5);
  font-size: 18px; cursor: pointer; padding: 4px;
}
.drawer-user {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; background: rgba(46,204,113,.05);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.du-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  overflow: hidden; background: rgba(46,204,113,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; color: #2ECC71; flex-shrink: 0;
}
.du-avatar img { width: 100%; height: 100%; object-fit: cover; }
.du-name  { font-size: 14px; font-weight: 600; }
.du-tier  { font-size: 11px; color: #2ECC71; margin-top: 2px; }
.drawer-nav   { padding: 8px 0; flex: 1; }
.drawer-section-label {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.3); padding: 12px 20px 4px;
}
.drawer-link {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 20px; color: rgba(255,255,255,.7);
  text-decoration: none; font-size: 14px; transition: all .2s;
}
.drawer-link:hover, .drawer-link.active { background: rgba(46,204,113,.07); color: #fff; }
.drawer-link.active { border-left: 3px solid #2ECC71; padding-left: 17px; }
.drawer-link--logout { color: rgba(231,76,60,.7); }
.drawer-link--logout:hover { background: rgba(231,76,60,.07); color: #e74c3c; }
.drawer-divider { height: 1px; background: rgba(255,255,255,.06); margin: 8px 0; }
.drawer-cta {
  display: block; margin: 12px 20px;
  padding: 12px; border-radius: 10px;
  background: #2ECC71; color: #0a0a0a;
  font-weight: 700; font-size: 14px; text-align: center;
  text-decoration: none;
}

/* ── BOTTOM TAB BAR ─────────────────────────────────────────────────────── */
.bottom-tab-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 990;
  background: rgba(10,10,10,.97); border-top: 1px solid rgba(255,255,255,.08);
  padding: env(safe-area-inset-bottom, 0) 0 0;
  backdrop-filter: blur(16px);
}
.btb-tab {
  display: flex; flex-direction: column; align-items: center;
  flex: 1; padding: 8px 4px 10px;
  color: rgba(255,255,255,.45); text-decoration: none; font-size: 10px; gap: 3px;
  transition: color .2s;
}
.btb-tab:hover, .btb-tab.active { color: #2ECC71; }
.btb-icon    { font-size: 20px; line-height: 1; }
.btb-shutter { width: 22px; height: 22px; border-radius: 50%; }

/* ── MAIN CONTENT OFFSET ────────────────────────────────────────────────── */
.fytev-main {
  margin-top: 96px; /* action bar 32px + nav 64px */
  min-height: 60vh;
}

/* ── HOMEPAGE — HERO ────────────────────────────────────────────────────── */
.hp-hero {
  position: relative; min-height: 90vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
  padding: 80px 24px;
}
.hp-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(46,204,113,.12) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 20%, rgba(255,122,0,.08) 0%, transparent 50%),
              #0a0a0a;
}
.hp-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, #0a0a0a 100%);
}
.hp-hero-content { position: relative; z-index: 2; max-width: 760px; }
.hp-hero-eyebrow {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: #2ECC71; opacity: .8; margin-bottom: 24px;
}
.hp-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 7vw, 86px);
  font-weight: 600; line-height: 1.1; margin-bottom: 24px;
  color: #fff;
}
.hp-hero-accent { color: #2ECC71; }
.hp-hero-sub {
  font-size: clamp(16px, 2vw, 20px); color: rgba(255,255,255,.65);
  line-height: 1.7; margin-bottom: 40px; max-width: 580px; margin-left: auto; margin-right: auto;
}
.hp-hero-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px;
}
.hp-hero-note { font-size: 12px; color: rgba(255,255,255,.35); margin-top: 4px; }
.hp-hero-stats {
  position: relative; z-index: 2;
  display: flex; justify-content: center; gap: 24px; flex-wrap: wrap;
  margin-top: 48px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.hp-stat-pill {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.hp-stat-num { font-family: 'Playfair Display', serif; font-size: 36px; color: #2ECC71; font-weight: 600; }
.hp-stat-lbl { font-size: 12px; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: 2px; }

/* ── CTA BUTTONS ────────────────────────────────────────────────────────── */
.hp-cta-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: 50px;
  background: linear-gradient(135deg, #FF7A00, #e06600);
  color: #fff; font-weight: 700; font-size: 16px;
  text-decoration: none; transition: all .2s;
  box-shadow: 0 6px 30px rgba(255,122,0,.3);
}
.hp-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(255,122,0,.4); }
.hp-cta-icon { width: 22px; height: 22px; border-radius: 50%; }
.hp-cta-secondary {
  display: inline-flex; align-items: center;
  padding: 14px 28px; border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.8); font-weight: 600; font-size: 15px;
  text-decoration: none; transition: all .2s;
}
.hp-cta-secondary:hover { border-color: #2ECC71; color: #2ECC71; }

/* ── SECTION HEADERS ────────────────────────────────────────────────────── */
.hp-section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.hp-section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 46px); margin-bottom: 14px; color: #fff;
}
.hp-section-header p { font-size: 18px; color: rgba(255,255,255,.55); line-height: 1.6; }
.hp-section-eyebrow {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: #2ECC71; opacity: .8; margin-bottom: 12px; display: block;
}

/* ── SIX PILLARS ────────────────────────────────────────────────────────── */
.hp-pillars {
  padding: 100px 24px; background: #0d0d0d;
}
.hp-pillars-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 1200px; margin: 0 auto;
}
.hp-pillar-card {
  background: #141414; border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px; padding: 36px 28px;
  text-decoration: none; color: inherit;
  transition: all .3s; display: block;
}
.hp-pillar-card:hover {
  border-color: rgba(46,204,113,.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
  background: #181818;
}
.hpc-icon-wrap {
  width: 60px; height: 60px; border-radius: 16px;
  background: rgba(46,204,113,.08); border: 1px solid rgba(46,204,113,.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.hpc-icon { font-size: 28px; }
.hp-pillar-card h3 {
  font-size: 20px; font-weight: 700; margin-bottom: 12px; color: #fff;
}
.hp-pillar-card p {
  font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 20px;
}
.hpc-cta { font-size: 13px; color: #2ECC71; font-weight: 600; }
.hp-pillar-card[data-pillar="2"] .hpc-icon-wrap { background: rgba(255,122,0,.08); border-color: rgba(255,122,0,.15); }
.hp-pillar-card[data-pillar="4"] .hpc-icon-wrap { background: rgba(52,152,219,.08); border-color: rgba(52,152,219,.15); }

/* ── SCAN DEMO ──────────────────────────────────────────────────────────── */
.hp-scan-demo {
  padding: 100px 24px; max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.hp-demo-features { list-style: none; padding: 0; margin: 0 0 36px; display: flex; flex-direction: column; gap: 12px; }
.hp-demo-features li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: rgba(255,255,255,.7); }
.hdf-check { color: #2ECC71; font-weight: 700; font-size: 16px; flex-shrink: 0; }
.hp-demo-right { display: flex; justify-content: center; }
.hp-phone-mockup {
  width: 280px; height: 500px; background: #111;
  border-radius: 40px; border: 2px solid rgba(255,255,255,.12);
  overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.6);
  display: flex; align-items: center; justify-content: flex-start;
  flex-direction: column; padding: 30px 20px 20px;
}
.hp-phone-screen { width: 100%; display: flex; flex-direction: column; gap: 16px; }
.hp-scan-viewfinder {
  position: relative; aspect-ratio: 1; background: rgba(46,204,113,.04);
  border: 1px solid rgba(46,204,113,.15); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.vf-corner {
  position: absolute; width: 24px; height: 24px;
  border-color: #2ECC71; border-style: solid;
}
.vf-tl { top: 8px; left: 8px; border-width: 3px 0 0 3px; border-radius: 4px 0 0 0; }
.vf-tr { top: 8px; right: 8px; border-width: 3px 3px 0 0; border-radius: 0 4px 0 0; }
.vf-bl { bottom: 8px; left: 8px; border-width: 0 0 3px 3px; border-radius: 0 0 0 4px; }
.vf-br { bottom: 8px; right: 8px; border-width: 0 3px 3px 0; border-radius: 0 0 4px 0; }
.vf-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2ECC71; box-shadow: 0 0 12px rgba(46,204,113,.8);
}
.vf-label {
  position: absolute; bottom: 12px; font-size: 10px;
  color: rgba(255,255,255,.4); letter-spacing: 1px;
}
.hp-scan-steps {
  display: flex; gap: 6px;
}
.ss-step {
  flex: 1; text-align: center; font-size: 9px;
  padding: 6px 4px; border-radius: 6px;
  background: rgba(255,255,255,.05); color: rgba(255,255,255,.4);
  border: 1px solid rgba(255,255,255,.08);
}
.ss-step.active { background: rgba(46,204,113,.12); color: #2ECC71; border-color: rgba(46,204,113,.3); }

/* ── DESIGN SECTION ─────────────────────────────────────────────────────── */
.hp-design {
  padding: 100px 24px; background: #0d0d0d;
}
.hp-design-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.hp-design-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3.5vw, 44px); margin-bottom: 20px; }
.hp-design-text p { font-size: 16px; color: rgba(255,255,255,.6); line-height: 1.8; margin-bottom: 32px; }
.hp-design-before-after {
  display: flex; align-items: center; gap: 16px;
}
.hp-ba-before, .hp-ba-after {
  flex: 1; position: relative; border-radius: 16px; overflow: hidden;
  aspect-ratio: 4/3;
}
.hp-ba-img {
  width: 100%; height: 100%; background: #1a1a1a;
  display: flex; align-items: center; justify-content: center;
  font-size: 40px; color: rgba(255,255,255,.1);
}
.hp-ba-before-img { background: #151515; }
.hp-ba-after-img  {
  background: linear-gradient(135deg, rgba(46,204,113,.15), rgba(255,122,0,.1));
  border: 1px solid rgba(46,204,113,.2);
}
.hp-ba-label {
  position: absolute; bottom: 10px; left: 10px;
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; background: rgba(0,0,0,.7);
  color: rgba(255,255,255,.6); padding: 4px 10px; border-radius: 20px;
}
.hp-ba-arrow { font-size: 24px; color: #2ECC71; font-weight: 700; flex-shrink: 0; }

/* ── GROW SECTION ───────────────────────────────────────────────────────── */
.hp-grow { padding: 100px 24px; }
.hp-grow-features {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; max-width: 1200px; margin: 0 auto;
}
.hp-grow-card {
  background: #111; border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px; padding: 28px 24px; text-align: center;
}
.hgc-icon { font-size: 36px; display: block; margin-bottom: 16px; }
.hp-grow-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: #fff; }
.hp-grow-card p  { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.7; }

/* ── FEATURED PLANTS ────────────────────────────────────────────────────── */
.hp-featured-plants { padding: 100px 24px; background: #0d0d0d; }
.hp-plants-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 16px; max-width: 1200px; margin: 0 auto;
}
.hp-plant-card {
  background: #141414; border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px; overflow: hidden; text-decoration: none; color: inherit;
  transition: all .2s;
}
.hp-plant-card:hover { border-color: rgba(46,204,113,.3); transform: translateY(-3px); }
.hppc-img {
  aspect-ratio: 1; background-size: cover; background-position: center;
  background-color: #1a1a1a;
}
.hppc-img--placeholder {
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; color: rgba(255,255,255,.1);
}
.hppc-info { padding: 12px; }
.hppc-info h4 { font-size: 12px; font-weight: 600; color: #fff; margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hppc-sci { font-size: 10px; color: rgba(46,204,113,.7); font-style: italic; margin-bottom: 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hppc-badge { font-size: 9px; padding: 2px 7px; border-radius: 8px; font-weight: 700; }
.hppc-badge--toxic  { background: rgba(231,76,60,.15); color: #e74c3c; }
.hppc-badge--edible { background: rgba(46,204,113,.12); color: #2ECC71; }

/* ── COMMUNITY ──────────────────────────────────────────────────────────── */
.hp-community { padding: 100px 24px; }
.hp-community-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; max-width: 1200px; margin: 0 auto 56px;
}
.hp-community-feature {
  background: #111; border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px; padding: 32px;
}
.hcf-icon { font-size: 36px; display: block; margin-bottom: 16px; }
.hp-community-feature h4 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.hp-community-feature p { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 16px; }
.hcf-link { font-size: 13px; color: #2ECC71; font-weight: 600; text-decoration: none; }
.hp-community-feed {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; max-width: 1200px; margin: 0 auto;
}
.hp-feed-card {
  background: #111; border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px; padding: 16px;
  display: flex; gap: 12px;
}
.hfc-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(46,204,113,.1); flex-shrink: 0;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.hfc-avatar img { width: 100%; height: 100%; object-fit: cover; }
.hfc-avatar-initial { font-size: 14px; font-weight: 700; color: #2ECC71; }
.hfc-user { font-size: 12px; font-weight: 600; margin-bottom: 4px; color: #fff; }
.hfc-text { font-size: 12px; color: rgba(255,255,255,.5); line-height: 1.6; }

/* ── MEMBERSHIP TIERS ───────────────────────────────────────────────────── */
.hp-tiers { padding: 100px 24px; background: #0d0d0d; }
.hp-tiers-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; max-width: 1200px; margin: 0 auto;
}
.hp-tier-card {
  position: relative; background: #141414;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px; padding: 32px 24px;
  transition: all .3s;
}
.hp-tier-card--featured {
  border-color: rgba(46,204,113,.35);
  background: linear-gradient(180deg, rgba(46,204,113,.06) 0%, #141414 40%);
  transform: scale(1.03);
}
.htc-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: #2ECC71; color: #0a0a0a;
  font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 14px; border-radius: 20px;
}
.htc-header { text-align: center; margin-bottom: 24px; }
.htc-icon { font-size: 36px; display: block; margin-bottom: 12px; }
.htc-header h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.htc-price { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 600; color: #2ECC71; }
.htc-price span { font-size: 14px; color: rgba(255,255,255,.4); font-family: 'Inter', sans-serif; }
.htc-features {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.htc-features li { font-size: 13px; color: rgba(255,255,255,.65); display: flex; align-items: flex-start; gap: 6px; }
.htc-cta {
  display: block; text-align: center;
  padding: 12px; border-radius: 12px; font-weight: 700; font-size: 14px;
  background: rgba(255,255,255,.07); color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.1); text-decoration: none; transition: all .2s;
}
.htc-cta:hover { background: rgba(255,255,255,.12); color: #fff; }
.htc-cta--free     { background: rgba(46,204,113,.1); color: #2ECC71; border-color: rgba(46,204,113,.3); }
.htc-cta--featured { background: #2ECC71; color: #0a0a0a; border-color: transparent; }
.htc-cta--featured:hover { background: #27AE60; }

/* ── FINAL CTA ──────────────────────────────────────────────────────────── */
.hp-final-cta {
  padding: 120px 24px; text-align: center;
  background: radial-gradient(ellipse at center, rgba(46,204,113,.08) 0%, transparent 70%), #0a0a0a;
}
.hp-final-inner { max-width: 680px; margin: 0 auto; }
.hp-final-icon { width: 80px; height: 80px; border-radius: 50%; margin-bottom: 32px; }
.hp-final-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 48px); margin-bottom: 16px; color: #fff;
}
.hp-final-cta p { font-size: 18px; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 40px; }
.hp-final-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ─────────────────────────────────────────────────────────────── */
.fytev-footer {
  background: #080808; border-top: 1px solid rgba(255,255,255,.07);
}
.footer-container {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px; padding: 80px 24px 60px;
}
.footer-logo { height: 44px; width: auto; margin-bottom: 20px; display: block; }
.footer-tagline { font-size: 15px; color: rgba(255,255,255,.7); font-style: italic; margin-bottom: 12px; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.8; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.fs-link {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 14px; transition: all .2s;
}
.fs-link:hover { background: rgba(46,204,113,.1); border-color: rgba(46,204,113,.3); }
.footer-col-title {
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-bottom: 20px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px; color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s;
}
.footer-col ul li a:hover { color: #2ECC71; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 20px 24px;
}
.footer-bottom-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: rgba(255,255,255,.3);
}
.footer-legal a, .footer-trust { color: rgba(255,255,255,.3); text-decoration: none; }
.footer-legal a:hover { color: rgba(255,255,255,.6); }

/* ── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hp-pillars-grid     { grid-template-columns: repeat(2, 1fr); }
  .hp-scan-demo        { grid-template-columns: 1fr; }
  .hp-demo-right       { order: -1; }
  .hp-design-inner     { grid-template-columns: 1fr; }
  .hp-grow-features    { grid-template-columns: repeat(2, 1fr); }
  .hp-plants-grid      { grid-template-columns: repeat(3, 1fr); }
  .hp-tiers-grid       { grid-template-columns: repeat(2, 1fr); }
  .footer-container    { grid-template-columns: 1fr 1fr; }
  .footer-brand        { grid-column: 1 / -1; }
  .hp-community-grid   { grid-template-columns: 1fr; }
  .hp-community-feed   { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  /* ── DESKTOP SECTION GRID RESETS (safe — desktop sections hidden by main mobile block) ── */
  .hp-pillars-grid     { grid-template-columns: 1fr; }
  .hp-tiers-grid       { grid-template-columns: 1fr; }
  .hp-tier-card--featured { transform: none; }
  .hp-plants-grid      { grid-template-columns: repeat(2, 1fr); }
  .hp-grow-features    { grid-template-columns: 1fr; }
  .hp-community-feed   { grid-template-columns: 1fr; }
  .footer-container    { grid-template-columns: 1fr; padding: 48px 20px 40px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ═══════════════════════════════════════════════════════════════
   HERO OVERRIDE — Option B Cinematic Full-Bleed
   June 25, 2026
   ═══════════════════════════════════════════════════════════════ */
.hp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

/* Real background image */
.hp-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://media.base44.com/images/public/69f66b7aa5a80ec739a91da5/594bb2d3a_generated_image.png');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
  z-index: 0;
}
.hp-hero:hover .hp-hero-bg {
  transform: scale(1.0);
}

/* Dark cinematic overlay — heavy on top, fades to black on bottom */
.hp-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,.55) 0%,
      rgba(0,0,0,.25) 40%,
      rgba(0,0,0,.6)  75%,
      rgba(10,10,10,1) 100%
    );
  z-index: 1;
}

/* Content sits above both layers */
.hp-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hp-hero-eyebrow {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #2ECC71;
  opacity: .9;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hp-hero-eyebrow::before,
.hp-hero-eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(46,204,113,.5);
}

.hp-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 28px;
  text-shadow: 0 4px 40px rgba(0,0,0,.6);
}
.hp-hero-accent {
  color: #2ECC71;
  display: inline;
}

.hp-hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 560px;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}

/* CTA group — orange primary dead center, ghost secondary */
.hp-hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  width: 100%;
}
.hp-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 42px;
  border-radius: 60px;
  background: linear-gradient(135deg, #FF7A00, #d96300);
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  text-decoration: none;
  transition: all .25s;
  box-shadow: 0 8px 40px rgba(255,122,0,.45);
  letter-spacing: .3px;
}
.hp-cta-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 50px rgba(255,122,0,.55);
}
.hp-cta-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  filter: brightness(1.1);
}
.hp-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 28px;
  border-radius: 60px;
  border: 1.5px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.8);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all .2s;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,.05);
}
.hp-cta-secondary:hover {
  border-color: #2ECC71;
  color: #2ECC71;
  background: rgba(46,204,113,.07);
}

.hp-hero-note {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  letter-spacing: .5px;
}

/* Stats strip — pinned bottom of hero, full width */
.hp-hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-top: 72px;
  padding: 28px 40px;
  background: rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  width: 100%;
  max-width: 640px;
}
.hp-stat-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex: 1;
  position: relative;
}
.hp-stat-pill + .hp-stat-pill::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,.12);
}
.hp-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 600;
  color: #2ECC71;
  line-height: 1;
  text-shadow: 0 0 30px rgba(46,204,113,.4);
}
.hp-stat-lbl {
  font-size: 11px;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Scroll indicator */
.hp-hero::after {
  content: '';
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(46,204,113,.6), transparent);
  z-index: 2;
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%   { opacity: 0; transform: translateX(-50%) scaleY(0); transform-origin: top; }
  50%  { opacity: 1; }
  100% { opacity: 0; transform: translateX(-50%) scaleY(1); transform-origin: top; }
}

/* Mobile hero */
@media (max-width: 768px) {
  .hp-hero {
    min-height: 100svh;
    padding: 100px 20px 60px;
    justify-content: flex-end;
  }
  .hp-hero-bg { background-position: 60% 30%; }
  .hp-hero-title { font-size: clamp(38px, 10vw, 60px); }
  .hp-hero-stats {
    flex-direction: row;
    padding: 20px 24px;
    gap: 0;
    border-radius: 16px;
  }
  .hp-stat-num { font-size: 28px; }
  .hp-hero-actions { flex-direction: column; }
  .hp-cta-primary { width: 100%; justify-content: center; font-size: 16px; padding: 16px 32px; }
  .hp-cta-secondary { width: 100%; justify-content: center; }
}

/* Hero title size tighten — June 25 */
.hp-hero-title {
  font-size: clamp(36px, 5.5vw, 72px);
  letter-spacing: -1px;
}
/* Sub — single line on desktop */
.hp-hero-sub br { display: none; }
.hp-hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  max-width: 520px;
}
/* Actions — row on desktop */
.hp-hero-actions {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 600px) {
  .hp-hero-title { font-size: clamp(32px, 9vw, 52px); }
  .hp-hero-actions { flex-direction: column; align-items: stretch; }
}

/* ═══════════════════════════════════════════════════════════════
   PILLARS SECTION OVERRIDE — June 25, 2026
   ═══════════════════════════════════════════════════════════════ */

.hp-pillars {
  padding: 100px 24px 120px;
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
}

/* Subtle grid texture behind */
.hp-pillars::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46,204,113,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,204,113,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hp-pillars .hp-section-header {
  position: relative; z-index: 1;
}
.hp-pillars .hp-section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 46px);
  color: #fff;
  margin-bottom: 12px;
}
.hp-pillars .hp-section-header p {
  font-size: 17px;
  color: rgba(255,255,255,.45);
}

/* Grid — 3 columns desktop */
.hp-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Base card */
.hp-pillar-card {
  background: #111213;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 22px;
  padding: 36px 30px 32px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}

/* Glow line on top edge — per pillar color */
.hp-pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: var(--pillar-color, rgba(46,204,113,.4));
  opacity: 0;
  transition: opacity .3s;
  border-radius: 0 0 4px 4px;
}

.hp-pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
  border-color: var(--pillar-color, rgba(46,204,113,.35));
}
.hp-pillar-card:hover::before {
  opacity: 1;
}

/* Per-pillar accent colors */
.hp-pillar-card[data-pillar="1"] { --pillar-color: rgba(46,204,113,.5);  --pillar-rgb: 46,204,113; }
.hp-pillar-card[data-pillar="2"] { --pillar-color: rgba(255,122,0,.5);   --pillar-rgb: 255,122,0; }
.hp-pillar-card[data-pillar="3"] { --pillar-color: rgba(39,174,96,.5);   --pillar-rgb: 39,174,96; }
.hp-pillar-card[data-pillar="4"] { --pillar-color: rgba(52,152,219,.5);  --pillar-rgb: 52,152,219; }
.hp-pillar-card[data-pillar="5"] { --pillar-color: rgba(243,156,18,.5);  --pillar-rgb: 243,156,18; }
.hp-pillar-card[data-pillar="6"] { --pillar-color: rgba(155,89,182,.5);  --pillar-rgb: 155,89,182; }

/* Pillar number — top right corner */
.hp-pillar-card::after {
  content: '0' attr(data-pillar);
  position: absolute;
  top: 20px; right: 22px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  color: rgba(var(--pillar-rgb), .25);
  font-family: 'Inter', sans-serif;
}

/* Icon wrap */
.hpc-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(var(--pillar-rgb, 46,204,113), .08);
  border: 1px solid rgba(var(--pillar-rgb, 46,204,113), .18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: background .3s, box-shadow .3s;
}
.hp-pillar-card:hover .hpc-icon-wrap {
  background: rgba(var(--pillar-rgb, 46,204,113), .14);
  box-shadow: 0 0 20px rgba(var(--pillar-rgb, 46,204,113), .15);
}
.hpc-icon { font-size: 26px; line-height: 1; }

/* Title */
.hp-pillar-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}

/* Description */
.hp-pillar-card p {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  margin-bottom: 24px;
  flex: 1;
}

/* CTA arrow link */
.hpc-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(var(--pillar-rgb, 46,204,113), 1);
  letter-spacing: .3px;
  transition: gap .2s;
}
.hp-pillar-card:hover .hpc-cta {
  gap: 10px;
}

/* Responsive overrides */
@media (max-width: 1024px) {
  .hp-pillars-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .hp-pillars-grid { grid-template-columns: 1fr; gap: 14px; }
  .hp-pillar-card  { padding: 28px 22px 24px; }
}

/* ═══════════════════════════════════════════════════════════════
   SECTIONS 3–9 FULL OVERRIDE — June 25, 2026
   ═══════════════════════════════════════════════════════════════ */

/* ── SECTION SHARED ─────────────────────────────────────────── */
.hp-section-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 64px;
}
.hp-section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 46px);
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.15;
}
.hp-section-header p {
  font-size: 17px;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
}
.hp-section-eyebrow {
  display: block;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #2ECC71;
  opacity: .85;
  margin-bottom: 14px;
}

/* ── SECTION 3 — SCAN DEMO ──────────────────────────────────── */
.hp-scan-demo {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hp-demo-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 42px);
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}
.hp-demo-left > p {
  font-size: 15px;
  color: rgba(255,255,255,.55);
  line-height: 1.8;
  margin-bottom: 32px;
}
.hp-demo-features {
  list-style: none;
  padding: 0; margin: 0 0 36px;
  display: flex; flex-direction: column; gap: 12px;
}
.hp-demo-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,.7);
}
.hdf-check {
  color: #2ECC71; font-weight: 800;
  font-size: 14px; flex-shrink: 0; margin-top: 1px;
}
.hp-demo-right {
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Phone mockup */
.hp-phone-mockup {
  width: 260px;
  background: #0e0e0e;
  border-radius: 44px;
  border: 1.5px solid rgba(255,255,255,.12);
  padding: 24px 18px 28px;
  box-shadow:
    0 0 0 8px rgba(255,255,255,.03),
    0 40px 80px rgba(0,0,0,.7),
    inset 0 1px 0 rgba(255,255,255,.06);
  position: relative;
}
.hp-phone-mockup::before {
  content: '';
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 56px; height: 5px;
  background: rgba(255,255,255,.15);
  border-radius: 10px;
}
.hp-phone-screen {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 10px;
}
/* Viewfinder */
.hp-scan-viewfinder {
  position: relative;
  aspect-ratio: 1;
  background: rgba(0,0,0,.4);
  border: 1px solid rgba(46,204,113,.12);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hp-scan-viewfinder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center,
    rgba(46,204,113,.06) 0%, transparent 70%);
}
.vf-corner {
  position: absolute;
  width: 22px; height: 22px;
  border-color: #2ECC71; border-style: solid;
  border-radius: 3px;
}
.vf-tl { top: 10px; left: 10px;  border-width: 2.5px 0 0 2.5px; }
.vf-tr { top: 10px; right: 10px; border-width: 2.5px 2.5px 0 0; }
.vf-bl { bottom: 10px; left: 10px;  border-width: 0 0 2.5px 2.5px; }
.vf-br { bottom: 10px; right: 10px; border-width: 0 2.5px 2.5px 0; }
.vf-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #2ECC71;
  box-shadow: 0 0 16px rgba(46,204,113,.9), 0 0 40px rgba(46,204,113,.4);
  animation: vf-pulse 2s ease-in-out infinite;
}
@keyframes vf-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: .7; }
}
.vf-label {
  position: absolute;
  bottom: 10px;
  font-size: 9px;
  color: rgba(255,255,255,.35);
  letter-spacing: 1px;
  text-transform: uppercase;
}
/* Step indicators */
.hp-scan-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}
.ss-step {
  text-align: center;
  font-size: 8.5px;
  font-weight: 600;
  padding: 6px 2px;
  border-radius: 8px;
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.3);
  border: 1px solid rgba(255,255,255,.06);
  line-height: 1.3;
}
.ss-step.active {
  background: rgba(46,204,113,.12);
  color: #2ECC71;
  border-color: rgba(46,204,113,.3);
}
/* Result preview strip */
.hp-scan-result-preview {
  background: rgba(46,204,113,.06);
  border: 1px solid rgba(46,204,113,.15);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.srp-icon { font-size: 22px; flex-shrink: 0; }
.srp-name { font-size: 12px; font-weight: 700; color: #fff; }
.srp-sci  { font-size: 10px; color: rgba(46,204,113,.7); font-style: italic; }
.srp-conf {
  margin-left: auto;
  font-size: 11px;
  font-weight: 800;
  color: #2ECC71;
  background: rgba(46,204,113,.12);
  padding: 3px 8px;
  border-radius: 20px;
}

@media (max-width: 900px) {
  .hp-scan-demo {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hp-demo-features li { justify-content: center; }
  .hp-demo-right { order: -1; }
}

/* ── SECTION 4 — DESIGN ─────────────────────────────────────── */
.hp-design {
  padding: 100px 24px;
  background: #0d0d0d;
  position: relative;
  overflow: hidden;
}
.hp-design::before {
  content: '';
  position: absolute;
  right: -200px; top: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,122,0,.06) 0%, transparent 70%);
  pointer-events: none;
}
.hp-design-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative; z-index: 1;
}
.hp-design-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 42px);
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}
.hp-design-text > p {
  font-size: 15px;
  color: rgba(255,255,255,.55);
  line-height: 1.8;
  margin-bottom: 32px;
}
.hp-design-visual { display: flex; flex-direction: column; gap: 12px; }
.hp-design-before-after {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}
.hp-ba-before, .hp-ba-after {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid rgba(255,255,255,.08);
}
.hp-ba-before-img {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1a1512, #0e0c0a);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; color: rgba(255,255,255,.05);
}
.hp-ba-after-img {
  width: 100%; height: 100%;
  background: linear-gradient(135deg,
    rgba(46,204,113,.12) 0%,
    rgba(39,174,96,.06) 40%,
    rgba(255,122,0,.06) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; color: rgba(46,204,113,.2);
}
.hp-ba-label {
  position: absolute; bottom: 10px; left: 10px;
  font-size: 9px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  background: rgba(0,0,0,.75);
  color: rgba(255,255,255,.6);
  padding: 4px 10px; border-radius: 20px;
  backdrop-filter: blur(4px);
}
.hp-ba-after .hp-ba-label {
  color: #2ECC71;
  background: rgba(46,204,113,.15);
  border: 1px solid rgba(46,204,113,.25);
}
.hp-ba-arrow {
  font-size: 20px; color: rgba(255,122,0,.7);
  font-weight: 700; flex-shrink: 0;
}
.hp-design-tags {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: 4px;
}
.hp-design-tag {
  font-size: 11px; padding: 5px 12px;
  border-radius: 20px; font-weight: 600;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.5);
}

@media (max-width: 900px) {
  .hp-design-inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ── SECTION 5 — GROW ───────────────────────────────────────── */
.hp-grow {
  padding: 100px 24px;
  background: #0a0a0a;
}
.hp-grow-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.hp-grow-card {
  background: #111213;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px;
  padding: 32px 24px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.hp-grow-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #2ECC71, #27AE60);
  transform: scaleX(0);
  transition: transform .3s;
  transform-origin: left;
}
.hp-grow-card:hover { transform: translateY(-4px); border-color: rgba(46,204,113,.2); }
.hp-grow-card:hover::after { transform: scaleX(1); }
.hgc-icon { font-size: 36px; display: block; margin-bottom: 18px; }
.hp-grow-card h4 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.hp-grow-card p  { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.75; }

@media (max-width: 900px) {
  .hp-grow-features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .hp-grow-features { grid-template-columns: 1fr; }
}

/* ── SECTION 6 — FEATURED PLANTS ───────────────────────────── */
.hp-featured-plants {
  padding: 100px 24px;
  background: #0d0d0d;
}
.hp-plants-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.hp-plant-card {
  background: #121314;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all .25s;
  display: block;
}
.hp-plant-card:hover {
  border-color: rgba(46,204,113,.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
}
.hppc-img {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  background-color: #1a1a18;
}
.hppc-img--placeholder {
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: rgba(255,255,255,.08);
}
.hppc-info { padding: 12px 10px; }
.hppc-info h4 {
  font-size: 12px; font-weight: 700; color: #fff;
  margin-bottom: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hppc-sci {
  font-size: 10px; color: rgba(46,204,113,.65);
  font-style: italic; margin-bottom: 6px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hppc-badge {
  font-size: 9px; padding: 2px 7px;
  border-radius: 8px; font-weight: 700;
  display: inline-block;
}
.hppc-badge--toxic  { background: rgba(231,76,60,.15);  color: #e74c3c; }
.hppc-badge--edible { background: rgba(46,204,113,.12); color: #2ECC71; }

@media (max-width: 1024px) { .hp-plants-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 640px)  { .hp-plants-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── SECTION 7 — COMMUNITY ──────────────────────────────────── */
.hp-community {
  padding: 100px 24px;
  background: #0a0a0a;
}
.hp-community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 56px;
}
.hp-community-feature {
  background: #111213;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px;
  padding: 32px;
  transition: all .3s;
}
.hp-community-feature:hover {
  border-color: rgba(155,89,182,.3);
  transform: translateY(-4px);
}
.hcf-icon { font-size: 36px; display: block; margin-bottom: 16px; }
.hp-community-feature h4 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.hp-community-feature p  { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.75; margin-bottom: 18px; }
.hcf-link { font-size: 13px; color: #2ECC71; font-weight: 700; text-decoration: none; }
.hcf-link:hover { text-decoration: underline; }
.hp-community-feed {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1200px;
  margin: 0 auto;
}
.hp-feed-card {
  background: #111213;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  gap: 10px;
  transition: border-color .2s;
}
.hp-feed-card:hover { border-color: rgba(255,255,255,.12); }
.hfc-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(46,204,113,.1);
  flex-shrink: 0;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hfc-avatar img { width: 100%; height: 100%; object-fit: cover; }
.hfc-avatar-initial { font-size: 14px; font-weight: 700; color: #2ECC71; }
.hfc-user { font-size: 12px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.hfc-text { font-size: 12px; color: rgba(255,255,255,.45); line-height: 1.6; }

@media (max-width: 900px) {
  .hp-community-grid { grid-template-columns: 1fr; }
  .hp-community-feed { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .hp-community-feed { grid-template-columns: 1fr; }
}

/* ── SECTION 8 — MEMBERSHIP TIERS ──────────────────────────── */
.hp-tiers {
  padding: 100px 24px;
  background: #0d0d0d;
}
.hp-tiers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.hp-tier-card {
  position: relative;
  background: #111213;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  padding: 36px 24px 30px;
  transition: all .3s;
  display: flex;
  flex-direction: column;
}
.hp-tier-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
}
.hp-tier-card--featured {
  border-color: rgba(46,204,113,.35);
  background: linear-gradient(180deg, rgba(46,204,113,.07) 0%, #111213 35%);
  box-shadow: 0 0 0 1px rgba(46,204,113,.15);
}
.htc-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2ECC71, #27AE60);
  color: #0a0a0a;
  font-size: 10px; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 16px; border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(46,204,113,.3);
}
.htc-header { text-align: center; margin-bottom: 28px; }
.htc-icon { font-size: 34px; display: block; margin-bottom: 12px; }
.htc-header h3 { font-size: 19px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.htc-price {
  font-family: 'Playfair Display', serif;
  font-size: 42px; font-weight: 600;
  color: #2ECC71; line-height: 1;
}
.htc-price span { font-size: 14px; color: rgba(255,255,255,.35); font-family: 'Inter', sans-serif; }
.htc-features {
  list-style: none; padding: 0;
  margin: 0 0 28px; flex: 1;
  display: flex; flex-direction: column; gap: 10px;
}
.htc-features li {
  font-size: 13px; color: rgba(255,255,255,.6);
  display: flex; align-items: flex-start; gap: 7px; line-height: 1.4;
}
.htc-cta {
  display: block; text-align: center;
  padding: 13px; border-radius: 12px;
  font-weight: 700; font-size: 14px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.65);
  border: 1px solid rgba(255,255,255,.1);
  text-decoration: none;
  transition: all .2s;
  margin-top: auto;
}
.htc-cta:hover { background: rgba(255,255,255,.1); color: #fff; }
.htc-cta--free     { background: rgba(46,204,113,.08); color: #2ECC71; border-color: rgba(46,204,113,.2); }
.htc-cta--free:hover { background: rgba(46,204,113,.14); }
.htc-cta--featured { background: #2ECC71; color: #0a0a0a; border-color: transparent; }
.htc-cta--featured:hover { background: #27AE60; }

@media (max-width: 1024px) { .hp-tiers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .hp-tiers-grid { grid-template-columns: 1fr; } }

/* ── SECTION 9 — FINAL CTA ──────────────────────────────────── */
.hp-final-cta {
  padding: 140px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
}
.hp-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(46,204,113,.1) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 0%, rgba(255,122,0,.05) 0%, transparent 50%);
  pointer-events: none;
}
.hp-final-inner {
  position: relative; z-index: 1;
  max-width: 700px; margin: 0 auto;
}
.hp-final-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 0 auto 36px;
  display: block;
  box-shadow: 0 0 60px rgba(46,204,113,.25);
}
.hp-final-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 54px);
  color: #fff; margin-bottom: 18px;
  line-height: 1.1;
}
.hp-final-cta h2 span { color: #2ECC71; }
.hp-final-cta p {
  font-size: 18px;
  color: rgba(255,255,255,.5);
  line-height: 1.75; margin-bottom: 48px;
}
.hp-final-actions {
  display: flex; gap: 16px;
  justify-content: center; flex-wrap: wrap;
}
.hp-final-note {
  margin-top: 24px;
  font-size: 12px;
  color: rgba(255,255,255,.25);
  letter-spacing: .5px;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.fytev-footer {
  background: #060606;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-container {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 80px 24px 60px;
}
.footer-logo { height: 42px; width: auto; margin-bottom: 18px; display: block; }
.footer-tagline {
  font-size: 14px; color: rgba(255,255,255,.6);
  font-style: italic; margin-bottom: 10px;
}
.footer-desc {
  font-size: 13px; color: rgba(255,255,255,.35);
  line-height: 1.8; margin-bottom: 24px;
}
.footer-social { display: flex; gap: 10px; }
.fs-link {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 14px; transition: all .2s; color: rgba(255,255,255,.5);
}
.fs-link:hover { background: rgba(46,204,113,.1); border-color: rgba(46,204,113,.3); color: #2ECC71; }
.footer-col-title {
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13px; color: rgba(255,255,255,.45);
  text-decoration: none; transition: color .2s;
}
.footer-col ul li a:hover { color: #2ECC71; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 18px 24px;
}
.footer-bottom-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-size: 11px; color: rgba(255,255,255,.25);
}
.footer-legal a { color: rgba(255,255,255,.25); text-decoration: none; }
.footer-legal a:hover { color: rgba(255,255,255,.5); }
.footer-trust { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.footer-trust-badge {
  font-size: 10px; padding: 3px 9px;
  border-radius: 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  color: rgba(255,255,255,.3);
}

@media (max-width: 1024px) {
  .footer-container { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .footer-container { grid-template-columns: 1fr; padding: 48px 20px 40px; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════════════════
   SCAN + GROW + REGISTER / LOGIN PAGE OVERRIDES
   June 26, 2026
   ═══════════════════════════════════════════════════════════════ */

/* ── SCAN PAGE ──────────────────────────────────────────────── */
.cam-shell {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 10;
  display: flex;
  flex-direction: column;
}
.cam-viewfinder {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: #050505;
}
/* Target frame corners */
.cam-target {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.cam-target-b1, .cam-target-b2 {
  position: absolute;
  border: 2px solid rgba(46,204,113,.7);
  border-radius: 4px;
}
.cam-target-b1 {
  width: min(70vw, 340px);
  height: min(70vw, 340px);
}
.cam-target-b2 {
  width: min(68vw, 336px);
  height: min(68vw, 336px);
  border-color: rgba(46,204,113,.3);
}
/* Pulsing focus dot */
.cam-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #2ECC71;
  box-shadow: 0 0 20px rgba(46,204,113,1), 0 0 60px rgba(46,204,113,.5);
  animation: cam-dot-pulse 2s ease-in-out infinite;
  position: absolute;
  z-index: 2;
}
@keyframes cam-dot-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.6); opacity: .6; }
}
/* Prompt bar */
.cam-prompt-bar {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50px;
  padding: 10px 24px;
  text-align: center;
  white-space: nowrap;
}
.cam-prompt-label {
  font-size: 13px; font-weight: 700;
  color: #fff; margin-bottom: 2px;
}
.cam-prompt-sub {
  font-size: 11px; color: rgba(255,255,255,.45);
}
/* Flash overlay */
.cam-flash {
  position: absolute; inset: 0;
  background: #fff;
  opacity: 0; pointer-events: none;
  transition: opacity .08s;
}
/* Top bar */
.cam-top-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 16px 20px;
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(to bottom, rgba(0,0,0,.65), transparent);
  z-index: 3;
}
.cam-ctrl-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .2s;
  backdrop-filter: blur(8px);
}
.cam-ctrl-btn:hover { background: rgba(255,255,255,.2); }
.cam-ctrl-btn.active { background: rgba(255,200,0,.25); border-color: rgba(255,200,0,.4); }
.cam-shot-count {
  margin-left: auto;
  font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,.65);
  background: rgba(0,0,0,.4);
  padding: 5px 12px; border-radius: 20px;
  border: 1px solid rgba(255,255,255,.1);
}
/* Scan limit bar */
.scan-limit-bar {
  position: absolute;
  top: 70px; left: 50%;
  transform: translateX(-50%);
  background: rgba(255,122,0,.15);
  border: 1px solid rgba(255,122,0,.3);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 11px; color: rgba(255,255,255,.7);
  backdrop-filter: blur(8px);
  z-index: 3;
  white-space: nowrap;
}
/* Bottom bar */
.cam-bottom-bar {
  background: rgba(0,0,0,.9);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 16px 20px 28px;
  backdrop-filter: blur(20px);
}
.cam-thumb-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.cam-thumb-ph, .cam-thumb {
  aspect-ratio: 1;
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  border: 1.5px dashed rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: rgba(255,255,255,.2);
  overflow: hidden; position: relative;
}
.cam-thumb img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 10px;
}
.cam-thumb.done { border-style: solid; border-color: rgba(46,204,113,.5); }
.cam-thumb.done::after {
  content: '✓';
  position: absolute; bottom: 4px; right: 6px;
  font-size: 10px; font-weight: 800; color: #2ECC71;
}
.cam-main-row {
  display: flex; align-items: center; justify-content: center; gap: 20px;
}
.cam-gallery-btn {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; cursor: pointer; transition: all .2s;
}
.cam-gallery-btn:hover { background: rgba(255,255,255,.14); }
.cam-shutter-wrap { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.cam-shutter {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, #FF7A00, #d96300);
  border: 3px solid rgba(255,255,255,.2);
  box-shadow: 0 0 0 6px rgba(255,122,0,.15), 0 8px 24px rgba(255,122,0,.4);
  cursor: pointer; transition: all .15s;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
}
.cam-shutter:disabled {
  background: rgba(255,255,255,.08);
  box-shadow: none; cursor: not-allowed; opacity: .4;
}
.cam-shutter:not(:disabled):active { transform: scale(.93); }
.cam-shutter-img { width: 36px; height: 36px; border-radius: 50%; }
.cam-shutter-lbl { font-size: 10px; color: rgba(255,255,255,.35); letter-spacing: .5px; }

/* Upload fallback state */
.scan-upload-state {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  min-height: calc(100vh - 90px);
  padding: 40px 24px; text-align: center;
  gap: 16px;
}
.scan-upload-state img { width: 80px; height: 80px; border-radius: 50%; margin-bottom: 8px; }
.scan-upload-state h2 { font-size: 22px; font-weight: 700; color: #fff; }
.scan-upload-state p  { font-size: 14px; color: rgba(255,255,255,.45); max-width: 320px; }
.scan-upload-state .btn-choose {
  background: linear-gradient(135deg, #FF7A00, #d96300);
  color: #fff; font-weight: 700; font-size: 16px;
  padding: 14px 40px; border-radius: 50px;
  border: none; cursor: pointer; margin-top: 8px;
  box-shadow: 0 8px 28px rgba(255,122,0,.35);
  transition: all .2s;
}
.scan-upload-state .btn-choose:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,122,0,.45); }

/* ── GROW PAGE ──────────────────────────────────────────────── */
.grow-wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: 40px 24px 100px;
}
/* Page header */
.grow-page-header {
  display: flex; align-items: flex-start;
  justify-content: space-between; flex-wrap: wrap;
  gap: 16px; margin-bottom: 40px;
}
.grow-page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 38px);
  color: #fff; margin: 0;
}
.grow-page-header p {
  font-size: 14px; color: rgba(255,255,255,.4);
  margin: 6px 0 0;
}
/* Stats strip */
.grow-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}
.gs {
  background: #111213;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
}
.gs:hover { border-color: rgba(255,255,255,.15); transform: translateY(-2px); }
.gs.alert { border-color: rgba(231,76,60,.3); background: rgba(231,76,60,.06); }
.gs-n {
  font-family: 'Playfair Display', serif;
  font-size: 34px; font-weight: 600; line-height: 1;
  margin-bottom: 5px;
}
.gs-l { font-size: 11px; color: rgba(255,255,255,.35); letter-spacing: 1px; text-transform: uppercase; }
/* Tabs */
.grow-tabs {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.grow-tab {
  padding: 10px 18px; border-radius: 50px;
  font-size: 13px; font-weight: 600;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.5);
  cursor: pointer; transition: all .2s;
}
.grow-tab:hover { background: rgba(255,255,255,.09); color: rgba(255,255,255,.8); }
.grow-tab.active {
  background: rgba(46,204,113,.12);
  border-color: rgba(46,204,113,.3);
  color: #2ECC71;
}
/* Care cards */
.care-card {
  background: #111213;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px;
  padding: 20px;
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 16px; align-items: center;
  margin-bottom: 12px;
  transition: all .2s;
}
.care-card:hover { border-color: rgba(255,255,255,.12); }
.care-img {
  width: 64px; height: 64px;
  border-radius: 12px; overflow: hidden;
  background: rgba(46,204,113,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; flex-shrink: 0;
}
.care-img img { width: 100%; height: 100%; object-fit: cover; }
/* Empty state */
.grow-empty {
  text-align: center;
  padding: 80px 24px;
  color: rgba(255,255,255,.25);
  font-size: 15px;
}
.grow-empty-icon { font-size: 52px; margin-bottom: 16px; display: block; opacity: .3; }
/* Locked (not signed in) */
.grow-locked {
  text-align: center;
  padding: 100px 24px;
  display: flex; flex-direction: column;
  align-items: center; gap: 16px;
}
.grow-locked-icon { font-size: 64px; margin-bottom: 8px; opacity: .3; }
.grow-locked h3 { font-size: 22px; font-weight: 700; color: #fff; }
.grow-locked p  { font-size: 15px; color: rgba(255,255,255,.4); max-width: 360px; }

@media (max-width: 700px) {
  .grow-stats { grid-template-columns: repeat(3, 1fr); }
  .grow-tab   { font-size: 12px; padding: 8px 14px; }
  .care-card  { grid-template-columns: 52px 1fr; }
}

/* ── REGISTER / AUTH PAGES ──────────────────────────────────── */
.page-hero {
  text-align: center;
  padding: 80px 24px 48px;
  max-width: 680px;
  margin: 0 auto;
}
.section-label {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #2ECC71;
  margin-bottom: 18px;
  display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 16px;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}
.page-wrap {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 24px 80px;
}
.form-wrap {
  background: #111213;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  padding: 40px 36px;
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 8px;
}
.form-input {
  width: 100%; box-sizing: border-box;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 15px; color: #fff;
  outline: none; transition: border-color .2s;
  font-family: 'Inter', sans-serif;
}
.form-input::placeholder { color: rgba(255,255,255,.2); }
.form-input:focus {
  border-color: rgba(46,204,113,.45);
  background: rgba(46,204,113,.04);
}
.btn-primary {
  display: block; width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #2ECC71, #27AE60);
  color: #0a0a0a; font-weight: 800; font-size: 15px;
  border-radius: 14px; border: none; cursor: pointer;
  transition: all .2s;
  box-shadow: 0 6px 24px rgba(46,204,113,.25);
  font-family: 'Inter', sans-serif;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(46,204,113,.35);
}
.alert { border-radius: 12px; padding: 12px 16px; margin-bottom: 16px; font-size: 14px; }
.alert-error {
  background: rgba(231,76,60,.1);
  border: 1px solid rgba(231,76,60,.25);
  color: #e74c3c;
}
.alert-success {
  background: rgba(46,204,113,.1);
  border: 1px solid rgba(46,204,113,.25);
  color: #2ECC71;
}
.form-footer {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,.35);
}
.form-footer a { color: #2ECC71; text-decoration: none; }
.form-footer a:hover { text-decoration: underline; }
.form-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 20px 0;
  color: rgba(255,255,255,.2); font-size: 12px;
}
.form-divider::before, .form-divider::after {
  content: ''; flex: 1;
  height: 1px; background: rgba(255,255,255,.08);
}
/* Trust badges under form */
.form-trust {
  display: flex; align-items: center;
  justify-content: center; gap: 16px;
  margin-top: 24px; flex-wrap: wrap;
}
.form-trust-item {
  font-size: 11px; color: rgba(255,255,255,.2);
  display: flex; align-items: center; gap: 5px;
}

@media (max-width: 540px) {
  .form-wrap { padding: 28px 20px; }
  .page-hero { padding: 60px 20px 32px; }
}

/* ═══════════════════════════════════════════════════════════════
   LOGIN · DISCOVER · COMMUNITY · PRICING · LANDSCAPE · MARKETPLACE
   FyTevO Plant Intelligence Branding Applied Throughout
   June 26, 2026
   ═══════════════════════════════════════════════════════════════ */

/* ── LOGIN / AUTH CARD ─────────────────────────────────────── */
.auth-wrap {
  min-height: calc(100vh - 90px);
  display: flex; align-items: center; justify-content: center;
  padding: 40px 24px;
}
.auth-card {
  width: 100%; max-width: 440px;
  background: #111213;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 26px;
  padding: 44px 40px 36px;
  position: relative;
}
.auth-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 160px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(46,204,113,.5), transparent);
}
.auth-logo {
  display: block; margin: 0 auto 28px;
  width: 60px; height: 60px; border-radius: 50%;
}
.auth-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 600;
  color: #fff; text-align: center; margin-bottom: 6px;
}
.auth-sub {
  text-align: center; font-size: 13px;
  color: rgba(255,255,255,.35); margin-bottom: 28px;
}
.auth-label {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-bottom: 8px; margin-top: 18px;
}
.auth-input {
  width: 100%; box-sizing: border-box;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 12px; padding: 13px 16px;
  font-size: 15px; color: #fff; outline: none;
  transition: border-color .2s; font-family: 'Inter', sans-serif;
}
.auth-input::placeholder { color: rgba(255,255,255,.18); }
.auth-input:focus { border-color: rgba(46,204,113,.45); background: rgba(46,204,113,.03); }
.auth-err {
  background: rgba(231,76,60,.1);
  border: 1px solid rgba(231,76,60,.25);
  color: #e74c3c; font-size: 13px;
  border-radius: 10px; padding: 10px 14px; margin-bottom: 14px;
}
.auth-btn {
  display: block; width: 100%; margin-top: 22px;
  padding: 15px; border: none; cursor: pointer;
  background: linear-gradient(135deg, #2ECC71, #27AE60);
  color: #0a0a0a; font-weight: 800; font-size: 15px;
  border-radius: 14px; font-family: 'Inter', sans-serif;
  box-shadow: 0 6px 24px rgba(46,204,113,.25);
  transition: all .2s;
}
.auth-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(46,204,113,.35); }
.auth-footer {
  text-align: center; margin-top: 20px;
  font-size: 13px; color: rgba(255,255,255,.3);
}
.auth-footer a { color: #2ECC71; text-decoration: none; }
.auth-footer a:hover { text-decoration: underline; }
.auth-divider {
  display: flex; align-items: center; gap: 10px;
  margin: 18px 0; color: rgba(255,255,255,.15); font-size: 11px;
}
.auth-divider::before, .auth-divider::after {
  content:''; flex:1; height:1px; background: rgba(255,255,255,.07);
}

/* ── DISCOVER / PLANT ENCYCLOPEDIA ─────────────────────────── */
.page-wrap { max-width: 960px; margin: 0 auto; padding: 0 24px 80px; }
.discover-search-bar {
  display: flex; gap: 10px; align-items: center;
  background: #111213;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 50px;
  padding: 8px 8px 8px 20px;
  margin-bottom: 28px;
}
.discover-search-bar input {
  flex: 1; background: none; border: none; outline: none;
  font-size: 15px; color: #fff; font-family: 'Inter', sans-serif;
}
.discover-search-bar input::placeholder { color: rgba(255,255,255,.25); }
.discover-search-bar button {
  background: linear-gradient(135deg, #FF7A00, #d96300);
  color: #fff; border: none; cursor: pointer;
  padding: 10px 22px; border-radius: 40px;
  font-weight: 700; font-size: 14px; white-space: nowrap;
  transition: opacity .2s;
}
.discover-search-bar button:hover { opacity: .88; }
.filter-row {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px;
}
.tag {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; font-weight: 600;
  padding: 6px 14px; border-radius: 20px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  color: rgba(255,255,255,.55);
  text-decoration: none; cursor: pointer; transition: all .2s;
}
.tag:hover, .tag-active {
  background: rgba(46,204,113,.12);
  border-color: rgba(46,204,113,.3);
  color: #2ECC71;
}
.tag-orange {
  background: rgba(255,122,0,.1);
  border-color: rgba(255,122,0,.25);
  color: #FF7A00;
}
.plant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 18px;
}
.plant-card {
  background: #111213;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px; overflow: hidden;
  text-decoration: none; color: inherit;
  transition: all .25s; display: block;
}
.plant-card:hover {
  border-color: rgba(46,204,113,.28);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
}
.plant-card-img {
  aspect-ratio: 4/3;
  background: #1a1a18;
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; color: rgba(255,255,255,.06);
}
.plant-card-body { padding: 14px 12px; }
.plant-card-name { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.plant-card-sci  { font-size: 11px; color: rgba(46,204,113,.6); font-style: italic; margin-bottom: 8px; }
/* Plant detail page */
.plant-detail-header {
  display: grid; grid-template-columns: 300px 1fr;
  gap: 40px; margin-bottom: 40px; align-items: start;
}
.plant-detail-img {
  border-radius: 20px; overflow: hidden;
  aspect-ratio: 3/4;
  background: #1a1a18; background-size: cover; background-position: center;
}
.plant-detail-img img { width:100%; height:100%; object-fit:cover; }
.plant-detail-title { font-family:'Playfair Display',serif; font-size:36px; color:#fff; margin-bottom:6px; }
.plant-detail-sci   { font-size:16px; color:rgba(46,204,113,.7); font-style:italic; margin-bottom:16px; }
/* Intelligence attribution badge */
.ai-attribution {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(46,204,113,.07);
  border: 1px solid rgba(46,204,113,.2);
  border-radius: 30px; padding: 6px 14px;
  font-size: 11px; font-weight: 700;
  color: rgba(46,204,113,.8); letter-spacing: .5px;
  margin-bottom: 20px;
}
.ai-attribution::before { content: '⬡'; font-size: 13px; }

@media (max-width: 700px) {
  .plant-detail-header { grid-template-columns: 1fr; }
  .plant-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── COMMUNITY ──────────────────────────────────────────────── */
.cmty-shell {
  max-width: 1060px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 320px;
  gap: 28px; padding: 0 24px 80px; align-items: start;
}
.type-bar {
  display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 22px;
}
.type-pill {
  padding: 8px 16px; border-radius: 22px;
  font-size: 12px; font-weight: 700;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.45);
  text-decoration: none; transition: all .2s;
}
.type-pill:hover { background: rgba(255,255,255,.09); color: rgba(255,255,255,.8); }
.type-pill.active {
  background: rgba(46,204,113,.12);
  border-color: rgba(46,204,113,.3); color: #2ECC71;
}
.post-card {
  background: #111213;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px; overflow: hidden;
  margin-bottom: 16px; transition: border-color .2s;
}
.post-card:hover { border-color: rgba(255,255,255,.12); }
.post-card-img img { width:100%; aspect-ratio:16/7; object-fit:cover; display:block; }
.post-body { padding: 18px 20px; }
.post-type-chip {
  font-size: 10px; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; padding: 3px 10px; border-radius: 10px;
  background: rgba(46,204,113,.1); color: #2ECC71; margin-right: 8px;
}
.post-title {
  font-size: 17px; font-weight: 700; color: #fff; margin: 10px 0 7px;
}
.post-text { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.7; margin-bottom: 14px; }
.post-author { display:flex; align-items:center; gap:9px; margin-bottom: 14px; }
.author-av {
  width:30px; height:30px; border-radius:50%;
  background: rgba(46,204,113,.12);
  display:flex; align-items:center; justify-content:center;
  font-size:13px; font-weight:700; color:#2ECC71;
  overflow:hidden; flex-shrink:0;
}
.author-av img { width:100%; height:100%; object-fit:cover; }
.post-actions {
  display:flex; gap:8px; padding: 12px 20px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.pa-btn {
  padding: 7px 14px; border-radius: 20px; font-size: 12px; font-weight: 600;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.45); cursor:pointer; transition: all .2s;
}
.pa-btn:hover { background: rgba(255,255,255,.08); color:#fff; }
.pa-btn.liked { background: rgba(46,204,113,.1); border-color: rgba(46,204,113,.25); color:#2ECC71; }
/* Community sidebar */
.cmty-sidebar { position: sticky; top: 100px; }
.sidebar-card {
  background: #111213;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px; padding: 22px; margin-bottom: 18px;
}
.sidebar-card h4 { font-size: 13px; font-weight: 700; color:#fff; margin-bottom:14px; }

@media (max-width: 860px) {
  .cmty-shell { grid-template-columns: 1fr; }
  .cmty-sidebar { position: static; }
}

/* ── PRICING ────────────────────────────────────────────────── */
.pricing-wrap {
  max-width: 1100px; margin: 0 auto; padding: 0 24px 80px;
}
.pricing-header { text-align:center; padding: 70px 0 50px; }
.pricing-header h1 {
  font-family:'Playfair Display',serif;
  font-size:clamp(28px,4vw,48px); color:#fff; margin-bottom:12px;
}
.pricing-header p { font-size:16px; color:rgba(255,255,255,.4); margin-bottom:28px; }
.pricing-toggle {
  display:flex; align-items:center; justify-content:center; gap:12px;
  font-size:13px; color:rgba(255,255,255,.5); margin-bottom:40px;
}
.toggle-track {
  width:44px; height:24px; border-radius:50px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.1);
  cursor:pointer; position:relative; transition:background .2s;
}
.toggle-track.on { background:rgba(46,204,113,.25); border-color:rgba(46,204,113,.4); }
.toggle-knob {
  width:18px; height:18px; border-radius:50%;
  background:#fff; position:absolute;
  top:2px; left:2px; transition:transform .2s;
}
.toggle-track.on .toggle-knob { transform:translateX(20px); }
.annual-badge {
  font-size:10px; font-weight:800; letter-spacing:1px;
  background:rgba(46,204,113,.12); border:1px solid rgba(46,204,113,.25);
  color:#2ECC71; padding:3px 10px; border-radius:14px;
}
.tier-grid {
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:20px; margin-bottom:60px;
}
.tier-card {
  position:relative; background:#111213;
  border:1px solid rgba(255,255,255,.08);
  border-radius:22px; padding:36px 24px 30px;
  display:flex; flex-direction:column; transition:all .3s;
}
.tier-card:hover { transform:translateY(-4px); box-shadow:0 20px 50px rgba(0,0,0,.4); }
.tier-card.popular {
  border-color:rgba(46,204,113,.35);
  background:linear-gradient(180deg,rgba(46,204,113,.07) 0%,#111213 35%);
}
.tier-card.current-plan { border-color:rgba(255,122,0,.35); }
.popular-badge {
  position:absolute; top:-13px; left:50%;
  transform:translateX(-50%);
  background:linear-gradient(135deg,#2ECC71,#27AE60);
  color:#0a0a0a; font-size:10px; font-weight:800;
  letter-spacing:1px; text-transform:uppercase;
  padding:4px 16px; border-radius:20px;
  white-space:nowrap; box-shadow:0 4px 16px rgba(46,204,113,.3);
}
.tier-icon { font-size:34px; margin-bottom:14px; display:block; }
.tier-name { font-size:17px; font-weight:700; color:#fff; margin-bottom:10px; }
.tier-price { margin-bottom:24px; }
.tier-price-num {
  font-family:'Playfair Display',serif;
  font-size:42px; font-weight:600; color:#2ECC71; line-height:1;
}
.tier-price span,
.tier-price-num + span { font-size:14px; color:rgba(255,255,255,.3); font-family:'Inter',sans-serif; }
.tier-features { list-style:none; padding:0; flex:1; display:flex; flex-direction:column; gap:9px; margin-bottom:24px; }
.tier-features li { font-size:13px; color:rgba(255,255,255,.55); display:flex; gap:7px; align-items:flex-start; line-height:1.4; }
.tier-cta {
  display:block; text-align:center; padding:13px;
  border-radius:12px; font-weight:700; font-size:14px;
  text-decoration:none; transition:all .2s;
  background:rgba(255,255,255,.06);
  color:rgba(255,255,255,.6);
  border:1px solid rgba(255,255,255,.1);
}
.tier-cta:hover { background:rgba(255,255,255,.1); color:#fff; }
.tier-cta.cta-green  { background:rgba(46,204,113,.1); color:#2ECC71; border-color:rgba(46,204,113,.25); }
.tier-cta.cta-green:hover { background:rgba(46,204,113,.18); }
.tier-cta.cta-primary { background:#2ECC71; color:#0a0a0a; border-color:transparent; }
.tier-cta.cta-primary:hover { background:#27AE60; }

/* FAQ under pricing */
.pricing-faq { max-width:680px; margin:0 auto; }
.pricing-faq h2 { font-family:'Playfair Display',serif; font-size:28px; color:#fff; text-align:center; margin-bottom:32px; }
.faq-item {
  border-top:1px solid rgba(255,255,255,.07);
  padding:18px 0;
}
.faq-q { font-size:15px; font-weight:600; color:#fff; cursor:pointer; }
.faq-a { font-size:13px; color:rgba(255,255,255,.45); line-height:1.75; margin-top:10px; }

@media (max-width:1024px) { .tier-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width:540px)  { .tier-grid { grid-template-columns:1fr; } }

/* ── LANDSCAPE DESIGNER ─────────────────────────────────────── */
.ls-wrap {
  max-width:900px; margin:0 auto; padding:40px 24px 80px;
}
.ls-header {
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:14px; margin-bottom:28px;
}
.ls-header h1 {
  font-family:'Playfair Display',serif;
  font-size:clamp(22px,3vw,34px); color:#fff; margin:0;
}
.tier-badge {
  font-size:11px; font-weight:700;
  padding:5px 14px; border-radius:20px;
  background:rgba(255,122,0,.1);
  border:1px solid rgba(255,122,0,.25);
  color:#FF7A00;
}
.scan-gate {
  background:#111213; border:1px solid rgba(255,255,255,.07);
  border-radius:16px; padding:18px 20px;
  display:flex; align-items:center; gap:14px;
  font-size:13px; color:rgba(255,255,255,.5);
}
.scan-gate strong { color:#fff; }
.wizard-steps {
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:8px; margin-bottom:32px;
}
.wizard-step {
  padding:14px 10px; text-align:center;
  border-radius:14px; font-size:12px; font-weight:600;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.07);
  color:rgba(255,255,255,.35); transition:all .2s;
}
.wizard-step.active {
  background:rgba(46,204,113,.1);
  border-color:rgba(46,204,113,.3); color:#2ECC71;
}
.wizard-step.done { background:rgba(255,255,255,.06); color:rgba(255,255,255,.6); }
.wizard-step-num { display:block; font-size:20px; margin-bottom:5px; }
.wizard-panel { display:none; }
.wizard-panel.active { display:block; }
.area-drop {
  border:2px dashed rgba(255,255,255,.12);
  border-radius:16px; padding:48px 24px;
  text-align:center; cursor:pointer;
  transition:all .2s; background:rgba(255,255,255,.02);
}
.area-drop:hover, .area-drop.drag-over {
  border-color:rgba(46,204,113,.45);
  background:rgba(46,204,113,.04);
}
.area-drop-icon { font-size:42px; margin-bottom:14px; opacity:.35; }
.area-drop p { font-size:14px; color:rgba(255,255,255,.35); }
.area-thumbs {
  display:flex; flex-wrap:wrap; gap:10px; margin-top:14px;
}
.area-thumb {
  width:90px; height:90px; border-radius:12px;
  object-fit:cover; border:1px solid rgba(255,255,255,.1);
}
/* FyTevO Plant Intelligence attribution on design pages */
.fpi-badge {
  display:inline-flex; align-items:center; gap:7px;
  background:rgba(46,204,113,.07);
  border:1px solid rgba(46,204,113,.18);
  border-radius:30px; padding:7px 16px;
  font-size:11px; font-weight:700;
  color:rgba(46,204,113,.8); letter-spacing:.5px;
}
.fpi-badge::before { content:'⬡'; font-size:13px; }

/* ── MARKETPLACE ────────────────────────────────────────────── */
.mkt-wrap { max-width:1160px; margin:0 auto; padding:0 24px 80px; }
.mkt-hero {
  display:grid; grid-template-columns:1fr auto;
  gap:20px; align-items:center;
  padding:40px 0 28px;
}
.mkt-hero h1 {
  font-family:'Playfair Display',serif;
  font-size:clamp(24px,3vw,38px); color:#fff; margin:0 0 6px;
}
.mkt-hero p { font-size:14px; color:rgba(255,255,255,.4); }
.mkt-search {
  display:flex; gap:10px; align-items:center;
  background:#111213; border:1px solid rgba(255,255,255,.09);
  border-radius:50px; padding:8px 8px 8px 20px;
  min-width:300px;
}
.mkt-search input {
  flex:1; background:none; border:none; outline:none;
  font-size:14px; color:#fff; font-family:'Inter',sans-serif;
}
.mkt-search input::placeholder { color:rgba(255,255,255,.2); }
.mkt-search button {
  background:linear-gradient(135deg,#FF7A00,#d96300);
  color:#fff; border:none; cursor:pointer;
  padding:9px 20px; border-radius:30px;
  font-weight:700; font-size:13px;
}
.ai-banner {
  background:linear-gradient(135deg,rgba(46,204,113,.09) 0%,rgba(255,122,0,.07) 100%);
  border:1px solid rgba(46,204,113,.2);
  border-radius:16px; padding:18px 24px;
  margin-bottom:28px; cursor:pointer;
  display:flex; align-items:center; gap:14px;
  transition:all .2s;
}
.ai-banner:hover { border-color:rgba(46,204,113,.35); transform:translateY(-1px); }
.ai-banner-icon { font-size:28px; flex-shrink:0; }
.ai-banner h4 { font-size:15px; font-weight:700; color:#fff; margin:0 0 3px; }
.ai-banner p  { font-size:12px; color:rgba(255,255,255,.4); margin:0; }
.ai-banner-label {
  margin-left:auto; flex-shrink:0;
  font-size:10px; font-weight:800; letter-spacing:1px; text-transform:uppercase;
  color:rgba(46,204,113,.8); border:1px solid rgba(46,204,113,.25);
  background:rgba(46,204,113,.06); padding:4px 12px; border-radius:12px;
}
.mkt-filters {
  display:flex; flex-wrap:wrap; gap:8px;
  align-items:center; margin-bottom:24px;
}
.mkt-cat {
  padding:8px 18px; border-radius:22px; font-size:13px; font-weight:600;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  color:rgba(255,255,255,.5); text-decoration:none; transition:all .2s;
}
.mkt-cat:hover { background:rgba(255,255,255,.09); color:#fff; }
.mkt-cat.active {
  background:rgba(46,204,113,.12);
  border-color:rgba(46,204,113,.3); color:#2ECC71;
}
.sort-select {
  margin-left:auto; background:#111213;
  border:1px solid rgba(255,255,255,.09);
  border-radius:10px; padding:8px 14px;
  font-size:13px; color:rgba(255,255,255,.6);
  outline:none; cursor:pointer;
  font-family:'Inter',sans-serif;
}
.mkt-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
  gap:20px;
}
.mkt-card {
  background:#111213; border:1px solid rgba(255,255,255,.07);
  border-radius:18px; overflow:hidden;
  transition:all .25s; position:relative; cursor:pointer;
}
.mkt-card:hover {
  border-color:rgba(46,204,113,.25);
  transform:translateY(-4px);
  box-shadow:0 16px 40px rgba(0,0,0,.4);
}
.mkt-card-img {
  width:100%; aspect-ratio:1;
  object-fit:cover; display:block;
  background:#1a1a18;
}
.mkt-card-img-ph {
  aspect-ratio:1; background:#1a1a18;
  display:flex; align-items:center; justify-content:center;
  font-size:42px; color:rgba(255,255,255,.05);
}
.mkt-badge {
  position:absolute; top:10px; right:10px;
  font-size:9px; font-weight:800; letter-spacing:1px;
  text-transform:uppercase; padding:4px 10px; border-radius:10px;
}
.badge-sale { background:rgba(231,76,60,.2); color:#e74c3c; border:1px solid rgba(231,76,60,.3); }
.badge-ai   { background:rgba(46,204,113,.15); color:#2ECC71; border:1px solid rgba(46,204,113,.25); }
.mkt-card-body { padding:14px 14px 16px; }
.mkt-card-name { font-size:14px; font-weight:700; color:#fff; margin-bottom:4px; }
.mkt-card-price { font-size:16px; font-weight:800; color:#2ECC71; }
.mkt-card-price s { font-size:12px; color:rgba(255,255,255,.25); font-weight:400; margin-left:5px; }
.mkt-card-meta { font-size:11px; color:rgba(255,255,255,.3); margin-top:5px; }
.mkt-card-add {
  display:block; margin:10px 14px 14px;
  padding:10px; border-radius:10px; text-align:center;
  background:rgba(46,204,113,.09); border:1px solid rgba(46,204,113,.2);
  color:#2ECC71; font-size:13px; font-weight:700;
  text-decoration:none; transition:all .2s; cursor:pointer;
}
.mkt-card-add:hover { background:rgba(46,204,113,.18); }
.mkt-empty {
  grid-column:1/-1; text-align:center;
  padding:80px 24px; color:rgba(255,255,255,.25); font-size:15px;
}

@media (max-width:860px) { .mkt-hero { grid-template-columns:1fr; } .mkt-search { min-width:auto; } }
@media (max-width:540px) { .mkt-grid { grid-template-columns:repeat(2,1fr); } }

/* ── FyTevO Plant Intelligence global badge ─────────────────── */
.fpi-powered {
  display:inline-flex; align-items:center; gap:7px;
  font-size:10px; font-weight:700; letter-spacing:1px;
  text-transform:uppercase;
  color:rgba(46,204,113,.7);
}
.fpi-powered::before { content:'⬡'; font-size:12px; }


/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE APP VIEW  —  mirrors Android Expo app (≤768px only)
   Nav: fixed top:0 | Strip: fixed top:64px | Content offset: 120px hardcoded
   ═══════════════════════════════════════════════════════════════════════════ */

/* Desktop: hide all mobile-only elements */
.mob-home { display: none; }

/* ════════════════════════════════════════════════════════════════════
   FYTEVΦ MOBILE v3 — Nav locked, Botanical hero, AI images
   DESKTOP ABOVE THIS LINE IS PERMANENTLY LOCKED — DO NOT TOUCH
   Layout:
     [0–64px]   .fytev-nav  FIXED — will.change:transform prevents scroll
     [64–108px] #mob-env-card strip FIXED
     [108px+]   .mob-home  scrollable, padding-top:108px
   ════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* ── KILL all desktop chrome + sections ── */
  #fytev-action-bar, .nav-hamburger,
  .nav-pillars, .nav-scan-btn,
  .nav-actions .nav-btn-ghost, .nav-actions .nav-btn-primary,
  .nav-coins, .nav-notif, .nav-avatar,
  .fab, .fab-btn, .edit-fab,
  .hp-hero, .hp-pillars, .hp-passport, .hp-features,
  .hp-community, .hp-cta-section, .hp-footer-cta,
  .hp-scan-demo, .hp-design, .hp-grow, .hp-build,
  .hp-market, .hp-tier, .hp-final-cta { display: none !important; }

  /* ══════════════════════════════════════════════════════════════
     NAV — HARD LOCKED to top. will-change:transform creates own
     stacking context so nothing can push it during scroll.
  ══════════════════════════════════════════════════════════════ */
  .fytev-nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1100 !important;
    height: 64px !important;
    background: #0a0a0a !important;
    border-bottom: 1px solid #1c1c1c !important;
    padding: 0 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    will-change: transform;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
  }
  .nav-container {
    height: 64px !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 !important;
    max-width: 100% !important;
  }
  .nav-logo-img { height: 46px !important; width: auto !important; }

  /* ── ID + ME buttons ── */
  .mob-nav-right { display: flex !important; align-items: center; gap: 8px; margin-left: auto; }
  .mob-nav-id, .mob-nav-me {
    position: relative; width: 40px; height: 40px;
    border-radius: 10px; background: #1c1c1c; border: 1px solid #2a2a2a;
    display: flex; align-items: center; justify-content: center; text-decoration: none;
  }
  .mob-nav-id-text, .mob-nav-me-text { font-size: 12px; font-weight: 900; color: #fff; font-family: 'Inter',sans-serif; }
  .mob-nav-badge {
    position: absolute; top: -4px; right: -4px; min-width: 16px; height: 16px;
    border-radius: 8px; background: #FF7A00; color: #fff; font-size: 9px; font-weight: 900;
    display: flex; align-items: center; justify-content: center; padding: 0 3px; font-family: 'Inter',sans-serif;
  }

  /* ══════════════════════════════════════════════════════════════
     INTELLIGENCE STRIP — fixed below nav at top:64px
  ══════════════════════════════════════════════════════════════ */
  #mob-env-card {
    display: block !important; position: fixed !important;
    top: 64px !important; left: 0 !important; right: 0 !important;
    z-index: 1099 !important; background: #0c0c0c !important;
    border-bottom: 1px solid #1e1e1e !important;
    padding: 6px 10px !important; width: 100% !important;
    box-sizing: border-box !important;
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    will-change: transform; transform: translateZ(0);
  }
  .mis-row { display: flex; align-items: center; gap: 4px; width: 100%; }
  .mis-pill {
    flex: 1; min-width: 0; height: 32px; display: flex; flex-direction: row;
    align-items: center; justify-content: center; gap: 3px; padding: 4px 3px;
    border-radius: 10px; background: #171717; border: 1px solid #242424;
    position: relative; cursor: pointer; -webkit-tap-highlight-color: transparent;
  }
  .mis-pill:active, .mis-pill.mis-active { background: #1e2e1e; border-color: rgba(46,204,113,0.3); }
  .mis-pill--wide { flex: 1.4; }
  .mis-icon { font-size: 11px; font-weight: 900; color: rgba(255,255,255,0.4); flex-shrink: 0; font-family: 'Inter',sans-serif; }
  .mis-icon.mis-hidden { display: none !important; }
  .mis-val { font-size: 11px; font-weight: 900; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 60px; font-family: 'Inter',sans-serif; }
  .mis-val.mis-loading { color: rgba(255,255,255,0.2); animation: mis-pulse 1.4s ease-in-out infinite; }
  @keyframes mis-pulse { 0%,100%{opacity:.25} 50%{opacity:.7} }
  .mis-sep { width: 3px; height: 3px; border-radius: 50%; background: #2a2a2a; flex-shrink: 0; }
  .mis-popup {
    display: none; position: absolute; top: 38px; left: 0; min-width: 150px; max-width: 200px;
    background: #171717; border: 1px solid #2a2a2a; border-radius: 12px;
    padding: 8px 10px; z-index: 100; flex-direction: column; gap: 2px; pointer-events: none;
  }
  .mis-pill.mis-active .mis-popup { display: flex; }
  .mis-popup-label { font-size: 9px; font-weight: 800; color: #bdbdbd; text-transform: uppercase; letter-spacing: 0.3px; font-family: 'Inter',sans-serif; }
  .mis-popup-val { font-size: 11px; font-weight: 900; color: #fff; font-family: 'Inter',sans-serif; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .mis-status { display: none; align-items: center; justify-content: space-between; gap: 8px; padding: 4px 2px 2px; }
  .mis-status.mis-status--visible { display: flex; }
  #mis-status-text { flex: 1; font-size: 10px; font-weight: 700; color: #bdbdbd; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-family: 'Inter',sans-serif; }
  .mis-refresh { min-width: 58px; height: 26px; border-radius: 8px; background: #2ecc71; border: none; color: #061108; font-size: 11px; font-weight: 900; cursor: pointer; padding: 0 10px; flex-shrink: 0; font-family: 'Inter',sans-serif; }
  #mis-zone-val { color: #2ecc71; }

  /* ── BODY + FYTEV-MAIN reset ── */
  body { padding-top: 0 !important; margin-top: 0 !important; background: #0a0a0a !important; }
  .fytev-main { margin-top: 0 !important; padding-top: 0 !important; padding-bottom: 70px !important; background: #0a0a0a !important; }

  /* ══════════════════════════════════════════════════════════════
     MOB-HOME — padding-top:108px fills fixed chrome gap seamlessly
  ══════════════════════════════════════════════════════════════ */
  .mob-home {
    display: block !important;
    padding-top: 108px !important;
    margin: 0 !important;
    background: #0a0a0a !important;
    min-height: 100svh;
  }

  /* ══════════════════════════════════════════════════════════════
     SCREEN 1 — BOTANICAL HERO
     Full remaining viewport height. Lush dark botanical BG.
     Headline top. Shutter bottom half — breathes.
  ══════════════════════════════════════════════════════════════ */
  .m-hero {
    position: relative;
    height: calc(100svh - 108px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /* no scroll on hero itself */
  }
  .m-hero-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center center;
  }
  /* Multi-layer overlay: dark top, very dark bottom, seamless into page */
  .m-hero-overlay {
    position: absolute; inset: 0;
    background:
      linear-gradient(to bottom,
        rgba(0,0,0,0.72) 0%,
        rgba(0,0,0,0.35) 28%,
        rgba(0,0,0,0.55) 65%,
        rgba(10,10,10,0.97) 90%,
        #0a0a0a 100%
      );
  }

  /* Botanical decorative leaf overlays (CSS-drawn, no extra images) */
  .m-botanical-layer { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
  .m-bot-leaf {
    position: absolute;
    width: 160px; height: 160px;
    border-radius: 50% 0 50% 0;
    background: rgba(46,204,113,0.06);
    filter: blur(2px);
  }
  .m-bot-leaf--tl { top: -40px; left: -50px; transform: rotate(-30deg); width: 200px; height: 200px; }
  .m-bot-leaf--tr { top: -20px; right: -60px; transform: rotate(45deg); width: 180px; height: 180px; background: rgba(46,204,113,0.04); }
  .m-bot-leaf--br { bottom: 80px; right: -40px; transform: rotate(20deg); width: 140px; height: 140px; background: rgba(255,122,0,0.04); }

  /* Hero content — sits above overlays */
  .m-hero-content {
    position: relative; z-index: 3;
    padding: 24px 20px 0;
    flex-shrink: 0;
  }
  /* Live status badge */
  .m-hero-badge {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(46,204,113,0.12);
    border: 1px solid rgba(46,204,113,0.25);
    border-radius: 20px; padding: 5px 12px 5px 8px;
    margin-bottom: 14px;
  }
  .m-hero-badge-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #2ECC71;
    animation: badge-pulse 2s ease-in-out infinite;
    flex-shrink: 0;
  }
  @keyframes badge-pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(46,204,113,0.5); }
    50%      { box-shadow: 0 0 0 5px rgba(46,204,113,0); }
  }
  .m-hero-badge-text { font-size: 10px; font-weight: 800; color: #2ECC71; letter-spacing: 1px; text-transform: uppercase; font-family: 'Inter',sans-serif; }
  .m-hero-headline {
    font-size: 44px; font-weight: 900; color: #fff;
    line-height: 1.0; letter-spacing: -1.5px;
    margin: 0 0 10px; font-family: 'Inter',sans-serif;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  }
  .m-hero-sub {
    font-size: 12px; font-weight: 600;
    color: rgba(255,255,255,0.45);
    letter-spacing: 1.5px; text-transform: uppercase;
    font-family: 'Inter',sans-serif; margin: 0;
  }

  /* Shutter wrap — fills the bottom portion of hero */
  .m-shutter-wrap {
    position: relative; z-index: 3;
    flex: 1; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-decoration: none; -webkit-tap-highlight-color: transparent;
    padding-bottom: 24px; gap: 0;
  }
  /* Outer ring — botanical green halo */
  .m-shutter-ring {
    width: 210px; height: 210px;
    border-radius: 50%;
    border: 1px solid rgba(46,204,113,0.2);
    display: flex; align-items: center; justify-content: center;
    box-shadow:
      0 0 0 8px rgba(46,204,113,0.05),
      0 0 60px rgba(46,204,113,0.15),
      inset 0 0 40px rgba(0,0,0,0.3);
    animation: ring-breathe 3.5s ease-in-out infinite;
  }
  @keyframes ring-breathe {
    0%,100% { box-shadow: 0 0 0 8px rgba(46,204,113,0.05), 0 0 50px rgba(46,204,113,0.12), inset 0 0 40px rgba(0,0,0,0.3); transform: scale(1); }
    50%      { box-shadow: 0 0 0 14px rgba(46,204,113,0.08), 0 0 80px rgba(46,204,113,0.28), inset 0 0 40px rgba(0,0,0,0.3); transform: scale(1.03); }
  }
  .m-shutter-img {
    width: 140px; height: 140px; object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(46,204,113,0.3));
  }
  .m-shutter-hint {
    display: block; margin-top: 18px;
    font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
    text-transform: uppercase; color: rgba(255,255,255,0.28);
    font-family: 'Inter',sans-serif;
  }

  /* ══════════════════════════════════════════════════════════════
     SHARED SECTION STYLES
  ══════════════════════════════════════════════════════════════ */
  .m-section { padding: 44px 20px 36px; background: #0a0a0a; }
  .m-section--dark { background: #0d0d0d; }
  .m-section--cta  { position: relative; padding: 56px 20px; overflow: hidden; }
  .m-section-head  { margin-bottom: 22px; text-align: center; }
  .m-section-head--left { text-align: left; }
  .m-eyebrow {
    display: inline-block; font-size: 10px; font-weight: 800;
    letter-spacing: 3px; text-transform: uppercase; color: #2ECC71;
    font-family: 'Inter',sans-serif; margin-bottom: 8px;
  }
  .m-section-title { font-size: 26px; font-weight: 900; color: #fff; line-height: 1.1; letter-spacing: -0.5px; margin: 0 0 8px; font-family: 'Inter',sans-serif; }
  .m-section-sub { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.6; margin: 0; font-family: 'Inter',sans-serif; }

  /* ── SCREEN 2 PILLARS ── */
  .m-pillars { display: flex; flex-direction: column; gap: 10px; }
  .m-pillar-card { display: flex; background: #111; border: 1px solid #1e1e1e; border-radius: 16px; overflow: hidden; text-decoration: none; -webkit-tap-highlight-color: transparent; }
  .m-pillar-img { width: 100px; flex-shrink: 0; background-size: cover; background-position: center; min-height: 88px; }
  .m-pillar-body { flex: 1; padding: 12px 14px; display: flex; flex-direction: column; justify-content: center; gap: 2px; }
  .m-pillar-num { font-size: 10px; font-weight: 900; color: #2ECC71; font-family: 'Inter',sans-serif; letter-spacing: 1px; }
  .m-pillar-title { font-size: 14px; font-weight: 900; color: #fff; font-family: 'Inter',sans-serif; margin: 0; }
  .m-pillar-desc { font-size: 11px; color: rgba(255,255,255,0.4); font-family: 'Inter',sans-serif; line-height: 1.4; margin: 0; }
  .m-pillar-cta { font-size: 11px; font-weight: 700; color: #FF7A00; font-family: 'Inter',sans-serif; margin-top: 4px; }

  /* ── SCREEN 3 SCAN DEMO ── */
  .m-feature-img-wrap { position: relative; border-radius: 16px; overflow: hidden; margin-bottom: 20px; }
  .m-feature-img { width: 100%; height: 200px; object-fit: cover; display: block; }
  .m-feature-img-badge {
    position: absolute; bottom: 12px; left: 12px; right: 12px;
    background: rgba(10,10,10,0.88); border: 1px solid #1e1e1e; border-radius: 12px;
    padding: 10px 12px; display: flex; align-items: center; gap: 10px;
    backdrop-filter: blur(8px);
  }
  .m-fib-icon { font-size: 22px; flex-shrink: 0; }
  .m-fib-name { font-size: 14px; font-weight: 900; color: #fff; font-family: 'Inter',sans-serif; }
  .m-fib-conf { font-size: 11px; color: #2ECC71; font-family: 'Inter',sans-serif; font-weight: 700; }
  .m-check-list { margin: 14px 0; display: flex; flex-direction: column; gap: 8px; }
  .m-check-item { font-size: 13px; color: rgba(255,255,255,0.65); font-family: 'Inter',sans-serif; display: flex; align-items: center; gap: 8px; }
  .m-check { color: #2ECC71; font-weight: 900; font-size: 14px; flex-shrink: 0; }

  /* ── SCREEN 4 GROW ── */
  .m-grow-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
  .m-grow-card { background: #111; border: 1px solid #1e1e1e; border-radius: 14px; overflow: hidden; }
  .m-grow-img { height: 86px; background-size: cover; background-position: center; }
  .m-grow-body { padding: 10px 12px 12px; }
  .m-grow-icon { font-size: 16px; display: block; margin-bottom: 3px; }
  .m-grow-title { font-size: 13px; font-weight: 900; color: #fff; font-family: 'Inter',sans-serif; margin: 0 0 2px; }
  .m-grow-desc { font-size: 11px; color: rgba(255,255,255,0.4); font-family: 'Inter',sans-serif; line-height: 1.4; margin: 0; }

  /* ── SCREEN 5 DESIGN ── */
  .m-design-hero { position: relative; border-radius: 16px; overflow: hidden; margin-bottom: 20px; }
  .m-design-img { width: 100%; height: 210px; object-fit: cover; display: block; }
  .m-design-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.55) 100%); }
  .m-design-badge { position: absolute; bottom: 12px; right: 12px; background: #2ECC71; color: #0a0a0a; font-size: 11px; font-weight: 900; border-radius: 8px; padding: 4px 10px; font-family: 'Inter',sans-serif; }
  .m-design-tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 14px 0; }
  .m-dtag { background: #141414; border: 1px solid #222; border-radius: 20px; padding: 6px 12px; font-size: 12px; color: rgba(255,255,255,0.55); font-family: 'Inter',sans-serif; }

  /* ── SCREEN 6 BUILD ── */
  .m-build-img-wrap { border-radius: 16px; overflow: hidden; margin-bottom: 20px; }
  .m-stat-row { display: flex; border: 1px solid #1e1e1e; border-radius: 14px; overflow: hidden; margin-bottom: 20px; background: #111; }
  .m-stat { flex: 1; text-align: center; padding: 16px 8px; border-right: 1px solid #1e1e1e; }
  .m-stat:last-child { border-right: none; }
  .m-stat-num { display: block; font-size: 20px; font-weight: 900; color: #2ECC71; font-family: 'Inter',sans-serif; }
  .m-stat-lbl { display: block; font-size: 9px; color: rgba(255,255,255,0.35); font-family: 'Inter',sans-serif; letter-spacing: 1px; text-transform: uppercase; margin-top: 3px; }

  /* ── SCREEN 7 MARKET ── */
  .m-market-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
  .m-market-card { height: 118px; border-radius: 14px; overflow: hidden; background-size: cover; background-position: center; position: relative; }
  .m-market-label { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 55%); display: flex; align-items: flex-end; padding: 10px; font-size: 12px; font-weight: 700; color: #fff; font-family: 'Inter',sans-serif; }

  /* ── SCREEN 8 COMMUNITY ── */
  .m-community-hero { border-radius: 16px; overflow: hidden; margin-bottom: 20px; }
  .m-comm-stats { display: flex; border: 1px solid #1e1e1e; border-radius: 14px; overflow: hidden; margin-bottom: 20px; }
  .m-comm-stat { flex: 1; text-align: center; padding: 18px 8px; border-right: 1px solid #1e1e1e; background: #111; }
  .m-comm-stat:last-child { border-right: none; }

  /* ── SCREEN 9 FINAL CTA ── */
  .m-cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
  .m-cta-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.78); }
  .m-cta-content { position: relative; z-index: 2; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; }
  .m-cta-shutter { width: 60px; height: 60px; object-fit: contain; }
  .m-cta-title { font-size: 28px; font-weight: 900; color: #fff; font-family: 'Inter',sans-serif; margin: 0; }
  .m-cta-sub { font-size: 13px; color: rgba(255,255,255,0.5); font-family: 'Inter',sans-serif; max-width: 260px; line-height: 1.5; margin: 0; }
  .m-cta-link { font-size: 13px; color: rgba(255,255,255,0.35); font-family: 'Inter',sans-serif; text-decoration: underline; }

  /* ── SHARED BUTTONS ── */
  .m-cta-btn {
    display: block; width: 100%; box-sizing: border-box;
    background: linear-gradient(135deg, #FF7A00, #e06600);
    color: #fff; text-align: center; text-decoration: none;
    font-size: 16px; font-weight: 900; font-family: 'Inter',sans-serif;
    padding: 16px 24px; border-radius: 14px;
    box-shadow: 0 4px 24px rgba(255,122,0,0.28);
    -webkit-tap-highlight-color: transparent; letter-spacing: 0.2px;
  }
  .m-cta-btn--outline { background: transparent; border: 1.5px solid rgba(255,255,255,0.18); color: rgba(255,255,255,0.65); box-shadow: none; }
  .m-cta-btn--big { font-size: 17px; padding: 18px 28px; }

  /* ── BOTTOM TAB BAR ── */
  .bottom-tab-bar { display: flex !important; justify-content: space-around; }
  .btb-tab { flex-direction: column; align-items: center; padding: 8px 2px 12px; gap: 2px; color: rgba(255,255,255,0.35); text-decoration: none; flex: 1; }
  .btb-tab-letter { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 12px; background: #1a1a1a; font-size: 12px; font-weight: 900; color: rgba(255,255,255,0.45); font-family: 'Inter',sans-serif; }
  .btb-active, .btb-tab.active .btb-tab-letter { background: #1e3a26; color: #2ECC71; }
  .btb-tab-lbl { display: block; font-size: 9px; font-weight: 700; color: rgba(255,255,255,0.35); text-align: center; font-family: 'Inter',sans-serif; }
  .btb-tab.active .btb-tab-lbl { color: #2ECC71; }

  body { padding-bottom: env(safe-area-inset-bottom, 0); }

} /* end @media ≤768px */