/* ============================================================
   Farmooly Marketing Site — Shared Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@400;500;600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #fdfaf5;
  --bg-card:   #f4efe4;
  --bg-card2:  #ede4d4;
  --bg-hi:     #ffffff;
  --green:     #3d6b2a;
  --green-l:   #4a8030;
  --green-d:   #2d5220;
  --maroon:    #5D0C1E;
  --maroon-l:  #7a1128;
  --text:      #1a1208;
  --muted:     #6b5a3e;
  --border:    #ddd3be;
  --r-sm:      8px;
  --r-md:      14px;
  --r-lg:      22px;
  --shadow:    0 4px 24px rgba(60,35,5,.10);
  --shadow-lg: 0 12px 48px rgba(60,35,5,.14);
  --trans:     .2s ease;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-head: 'Lora', Georgia, 'Times New Roman', serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Container ─────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all var(--trans);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: #fff;
}
.btn-primary:hover { background: var(--green-l); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--green); color: var(--green); transform: translateY(-1px); }
.btn-maroon {
  background: #5D0C1E;
  color: #fff;
}
.btn-maroon:hover { background: #7a1128; transform: translateY(-1px); }
.btn-white {
  background: #fff;
  color: var(--green);
  border: 2px solid #fff;
  font-weight: 700;
}
.btn-white:hover { background: rgba(255,255,255,0.88); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(0,0,0,0.18); }
.btn-lg { padding: 17px 36px; font-size: 17px; border-radius: var(--r-lg); }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* ── Nav ─────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242,232,212,.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 16px;
}
.nav-logo img {
  height: 44px;
  width: auto;
  background: rgb(242,232,212);
  border-radius: 4px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin-left: auto;
}
.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--r-sm);
  transition: color var(--trans);
  display: block;
}
.nav-links a:hover,
.nav-links a.active { color: var(--green); }
.nav-cta { margin-left: 16px; flex-shrink: 0; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  font-size: 22px;
  line-height: 1;
  align-items: center;
  justify-content: center;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  padding: 80px 0 84px;
  text-align: center;
}
.hero-logo {
  width: 600px;
  max-width: 88vw;
  margin: 0 auto 32px;
  display: block;
}
.hero-photo .hero-logo {
  filter: drop-shadow(0 2px 16px rgba(0,0,0,0.35));
}
.hero-eyebrow {
  display: inline-block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 16px;
  color: var(--text);
}
.hero h1 .accent { color: var(--green); }
.hero-sub {
  font-size: clamp(17px, 2.2vw, 21px);
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 44px;
  font-style: italic;
  font-family: var(--font-head);
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-actions .btn-lg {
  flex: 1;
  max-width: 280px;
  justify-content: center;
}
.hero-secondary-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.hero-pill {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  border: 2px solid rgba(255,255,255,0.85);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.22);
  transition: background var(--trans), border-color var(--trans), box-shadow var(--trans), transform var(--trans);
}
.hero-pill:hover {
  background: rgba(255,255,255,0.32);
  border-color: #fff;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.28);
  transform: translateY(-1px);
}

/* ── Page Hero (inner pages) ────────────────────────────── */
.page-hero {
  padding: 80px 0 64px;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 20px;
  line-height: 1.1;
  color: var(--text);
}
.page-hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

/* ── Section ─────────────────────────────────────────────── */
.section {
  padding: 84px 0;
}
.section-alt { background: var(--bg-card); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  letter-spacing: -.015em;
  margin-bottom: 12px;
  line-height: 1.15;
  color: var(--text);
}
.section-lead {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-lead { margin-left: auto; margin-right: auto; }

/* ── How It Works ────────────────────────────────────────── */
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.how-col h3 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 32px;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.step {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--green-d);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  margin-top: 1px;
}
.step-body h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.step-body p  { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ── Features Grid ───────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(258px, 1fr));
  gap: 18px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
}
.feature-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature-icon {
  font-size: 30px;
  margin-bottom: 16px;
  display: block;
  line-height: 1;
}
.feature-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 8px; color: var(--text); }
.feature-card p  { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── Audience Cards ──────────────────────────────────────── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.audience-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px 28px 32px;
  text-align: center;
  transition: all var(--trans);
  text-decoration: none;
  display: block;
}
.audience-card:hover {
  border-color: var(--green);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.audience-icon { font-size: 44px; margin-bottom: 18px; display: block; line-height: 1; }
.audience-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 12px; color: var(--text); }
.audience-card p  { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 24px; }
.audience-link    { color: var(--green); font-size: 14px; font-weight: 700; }
.audience-link::after { content: " →"; }

/* ── Mission ─────────────────────────────────────────────── */
.mission-block {
  background: var(--green-d);
  border: 1px solid var(--green);
  border-radius: var(--r-lg);
  padding: 60px 52px;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.mission-block .mission-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #a8d48a;
  margin-bottom: 20px;
}
.mission-block p {
  font-size: 18px;
  line-height: 1.8;
  color: #f0ead8;
}
.mission-block strong { color: #a8d48a; font-weight: 800; }

/* ── Subscribe ───────────────────────────────────────────── */
.subscribe-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.subscribe-form input {
  flex: 1;
  min-width: 200px;
  padding: 13px 18px;
  background: var(--bg-hi);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  color: var(--text);
  font-size: 15px;
  outline: none;
  transition: border-color var(--trans);
  font-family: inherit;
}
.subscribe-form input::placeholder { color: var(--muted); }
.subscribe-form input:focus { border-color: var(--green); }

/* ── Contact ─────────────────────────────────────────────── */
.contact-list {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}
.contact-item .ci-icon { font-size: 20px; }
.contact-item a { color: var(--green); font-weight: 600; }
.contact-item a:hover { text-decoration: underline; }

/* ── Benefits ────────────────────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.benefit {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: border-color var(--trans), box-shadow var(--trans), transform var(--trans);
}
.benefit:hover { border-color: var(--green); box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.benefit-icon { font-size: 26px; flex-shrink: 0; margin-top: 1px; line-height: 1; }
.benefit h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.benefit p  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── Pricing Card ────────────────────────────────────────── */
.pricing-card {
  background: var(--bg-hi);
  border: 2px solid var(--green);
  border-radius: var(--r-lg);
  padding: 44px 40px;
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 0 40px rgba(61,107,42,.12);
}
.pricing-badge {
  display: inline-block;
  background: var(--green-d);
  color: #a8d48a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.pricing-card h3 { font-family: var(--font-head); font-size: 24px; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.price {
  font-size: 52px;
  font-weight: 900;
  color: var(--green);
  line-height: 1.1;
  margin: 16px 0 4px;
}
.price sup { font-size: 26px; vertical-align: super; }
.price sub { font-size: 18px; color: var(--muted); font-weight: 500; }
.price-note { font-size: 13px; color: var(--muted); margin-bottom: 28px; }
.pricing-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}
.pricing-card ul li {
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}
.pricing-card ul li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
  flex-shrink: 0;
}

/* ── Strip CTA ───────────────────────────────────────────── */
.strip {
  background: var(--green-d);
  border: 1px solid var(--green);
  border-radius: var(--r-lg);
  padding: 56px 48px;
  text-align: center;
}
.strip h2 { font-family: var(--font-head); font-size: clamp(22px, 3vw, 32px); font-weight: 700; margin-bottom: 12px; color: #f0ead8; }
.strip p  {
  font-size: 16px;
  color: #a8a090;
  margin: 0 auto 32px;
  max-width: 480px;
  line-height: 1.65;
}
.strip-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.strip .btn-outline {
  border-color: rgba(240,234,216,.4);
  color: #f0ead8;
}
.strip .btn-outline:hover { border-color: #f0ead8; color: #f0ead8; }

/* ── Farmy Tags / Pills ──────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.tag-green {
  background: rgba(61,107,42,.08);
  border-color: rgba(61,107,42,.22);
  color: var(--green-d);
}
.tag-maroon {
  background: rgba(93,12,30,.07);
  border-color: rgba(93,12,30,.2);
  color: var(--maroon);
}

/* ── App Download Page ───────────────────────────────────── */
.app-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}
.app-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 52px 44px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.app-card-logo {
  width: 200px;
  max-width: 80%;
  margin: 0 auto 22px;
}
.app-card h1 { font-size: 28px; font-weight: 900; margin-bottom: 8px; color: var(--text); }
.app-card .app-tagline {
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 36px;
  line-height: 1.5;
}
.store-btns { display: grid; gap: 12px; margin-bottom: 36px; }
.store-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 20px;
  height: 60px;
  border-radius: var(--r-md);
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  transition: all var(--trans);
  border: 1.5px solid var(--border);
  color: var(--text);
  background: var(--bg-card);
  box-sizing: border-box;
}
.store-btn:hover {
  border-color: var(--green);
  background: var(--bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.store-btn-icon { font-size: 22px; line-height: 1; }
.store-btn-label { text-align: left; line-height: 1.3; }
.store-btn-sub { display: block; font-size: 11px; font-weight: 500; color: var(--muted); }
.qr-wrap { padding-top: 28px; border-top: 1px solid var(--border); }
.qr-wrap p { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.qr-wrap img {
  width: 160px;
  height: 160px;
  border-radius: 10px;
  margin: 0 auto;
  border: 3px solid var(--border);
}

/* ── Social Links ────────────────────────────────────────── */
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  transition: all var(--trans);
  color: var(--muted);
  background: var(--bg-hi);
}
.social-links a svg { width: 16px; height: 16px; fill: currentColor; display: block; }
.social-links a:hover { color: var(--green); border-color: var(--green); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(61,107,42,.15); }
.social-links.large { justify-content: center; gap: 14px; margin-top: 28px; }
.social-links.large a { width: 48px; height: 48px; border-radius: var(--r-md); }
.social-links.large a svg { width: 22px; height: 22px; }

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 52px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand { max-width: 280px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--text);
}
.footer-logo img {
  width: 100px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.footer-tagline { font-size: 13px; color: var(--muted); line-height: 1.7; }
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: var(--text);
  opacity: .65;
  transition: opacity var(--trans);
}
.footer-col ul a:hover { opacity: 1; color: var(--green); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 13px; color: var(--muted); }

/* ── Photo Heroes ────────────────────────────────────────── */
.hero-photo,
.page-hero-photo {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-photo::before,
.page-hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(15,35,8,0.72) 0%, rgba(30,60,15,0.58) 100%);
  z-index: 0;
}
.hero-photo > .container,
.page-hero-photo > .container { position: relative; z-index: 1; }

.hero-photo .hero-eyebrow,
.page-hero-photo .hero-eyebrow {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.28);
  color: #c8e8a0;
}
.hero-photo h1 .accent { color: #c8e8a0; }
.hero-photo h1, .hero-photo .hero-sub { color: #fff; }
.hero-photo .hero-sub { color: rgba(255,255,255,0.82); }
.page-hero-photo h1 { color: #fff; }
.page-hero-photo p { color: rgba(255,255,255,0.85); }
.hero-photo .btn-outline,
.page-hero-photo .btn-outline {
  border-color: rgba(255,255,255,0.48);
  color: #fff;
}
.hero-photo .btn-outline:hover,
.page-hero-photo .btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.10);
  color: #fff;
  transform: translateY(-1px);
}

/* ── Photo Gallery Strip ─────────────────────────────────── */
.photo-strip { padding: 0; overflow: hidden; }
.photo-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 320px;
  gap: 3px;
}
.photo-strip-item {
  overflow: hidden;
  position: relative;
}
.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
  display: block;
}
.photo-strip-item:hover img { transform: scale(1.06); }
.photo-strip-item .photo-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.52));
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 20px 10px 8px;
  opacity: 0;
  transition: opacity .3s;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.photo-strip-item:hover .photo-cap { opacity: 1; }

/* ── About Page ──────────────────────────────────────────── */
.about-founder {
  max-width: 780px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 48px 52px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.about-founder-photo {
  width: 100%;
  max-width: 540px;
  border-radius: var(--r-lg);
  object-fit: cover;
  box-shadow: var(--shadow);
}
.about-founder-text {
  width: 100%;
}
.about-founder p {
  font-size: 17px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-founder p:last-child { margin-bottom: 0; }
.about-tagline {
  font-size: 19px !important;
  color: var(--green) !important;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: 8px;
}

/* ── Regen Ag Page ───────────────────────────────────────── */
.regen-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.regen-pillar {
  background: var(--bg-hi);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 26px;
  border-top: 4px solid var(--green);
  transition: box-shadow var(--trans), transform var(--trans);
}
.regen-pillar:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.regen-pillar-icon { font-size: 32px; margin-bottom: 14px; display: block; }
.regen-pillar h3 { font-size: 17px; font-weight: 800; margin-bottom: 10px; color: var(--text); }
.regen-pillar p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.regen-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #2d5220, #3d6b2a);
  color: #a8d48a;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Platform Flow (B2B) ─────────────────────────────────── */
.platform-flow {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  margin: 48px 0 0;
  overflow-x: auto;
}
.platform-node {
  background: var(--bg-hi);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 20px;
  text-align: center;
  flex: 1;
  min-width: 130px;
  max-width: 190px;
  transition: border-color var(--trans), box-shadow var(--trans);
}
a.platform-node {
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
a.platform-node:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.10);
  border-color: var(--green);
}
a.platform-node h4, a.platform-node p { color: inherit; }
.platform-node.highlighted {
  border-color: var(--green);
  background: linear-gradient(135deg, rgba(61,107,42,0.07), rgba(61,107,42,0.02));
  box-shadow: 0 0 0 3px rgba(61,107,42,0.12);
}
.platform-node-icon { font-size: 28px; margin-bottom: 12px; display: block; }
.platform-node h4 { font-size: 13px; font-weight: 800; margin-bottom: 6px; color: var(--text); }
.platform-node p { font-size: 11.5px; color: var(--muted); line-height: 1.45; }
.platform-connector {
  display: flex;
  align-items: center;
  padding: 0 10px;
  color: var(--green);
  font-size: 22px;
  flex-shrink: 0;
  opacity: 0.7;
}

/* ── Feature Showcase (2-col) ────────────────────────────── */
.feature-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.feature-showcase:last-child { border-bottom: none; }
.feature-showcase.reverse .feature-showcase-visual { order: -1; }
.feature-showcase-body h3 {
  font-family: var(--font-head);
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -.015em;
  color: var(--text);
}
.feature-showcase-body p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.feature-showcase-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-showcase-body ul li {
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.feature-showcase-body ul li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Dashboard Mock UI ───────────────────────────────────── */
.dash-mock {
  background: #16213e;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.28), 0 0 0 1px rgba(255,255,255,0.06);
  font-size: 12px;
  line-height: 1.4;
}
.dash-titlebar {
  background: #1e2d47;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.dash-dot-r { background: #ff5f57; }
.dash-dot-y { background: #febc2e; }
.dash-dot-g { background: #28c840; }
.dash-title { margin-left: 8px; color: rgba(255,255,255,0.4); font-size: 11px; }
.dash-body {
  display: grid;
  grid-template-columns: 148px 1fr;
  min-height: 300px;
}
.dash-sidebar {
  background: #1a2744;
  padding: 16px 0;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.dash-nav-item {
  padding: 9px 14px;
  color: rgba(255,255,255,0.45);
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: default;
}
.dash-nav-item.active {
  color: #e8f4d8;
  background: rgba(74,128,48,0.18);
  border-left: 2px solid #4a8030;
}
.dash-main { padding: 18px; }
.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.dash-stat {
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 12px;
}
.dash-stat-val { font-size: 18px; font-weight: 800; color: #fff; }
.dash-stat-lbl { font-size: 10px; color: rgba(255,255,255,0.38); margin-top: 3px; }
.dash-section-title { font-size: 10px; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,0.3); margin-bottom: 8px; }
.dash-order-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 10px;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  margin-bottom: 5px;
}
.dash-order-name { color: rgba(255,255,255,0.85); font-size: 11px; font-weight: 500; }
.dash-order-amt { color: #7ab55a; font-size: 11px; font-weight: 700; }
.dash-order-badge {
  font-size: 9px;
  padding: 2px 7px;
  border-radius: 100px;
  background: rgba(74,128,48,0.22);
  color: #a8d48a;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.dash-order-badge.pending { background: rgba(255,193,7,0.18); color: #ffd54f; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .audience-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; max-width: none; }
}

@media (max-width: 768px) {
  .how-grid { grid-template-columns: 1fr; gap: 36px; }
  .mission-block { padding: 40px 28px; }
  .hero { padding: 60px 0 56px; }
  .section { padding: 60px 0; }
  .strip { padding: 40px 24px; }
  .pricing-card { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-logo { width: 320px; }
  .photo-strip-grid { grid-template-columns: repeat(2, 1fr); height: 240px; }
  .feature-showcase { grid-template-columns: 1fr; gap: 32px; }
  .feature-showcase.reverse .feature-showcase-visual { order: 0; }
  .about-founder { padding: 32px 24px; }
  .platform-flow { flex-wrap: wrap; gap: 8px; }
  .platform-connector { display: none; }
  .platform-node { min-width: 130px; flex: 0 0 calc(50% - 8px); max-width: none; }
  .dash-body { grid-template-columns: 1fr; }
  .dash-sidebar { display: none; }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg-hi);
    border-bottom: 1px solid var(--border);
    padding: 12px 16px;
    gap: 2px;
    box-shadow: 0 8px 24px rgba(80,40,10,.1);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 12px; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner { position: relative; justify-content: flex-start; }
  /* Center logo in mobile nav */
  .nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-right: 0;
  }
  .features-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn-lg { max-width: 360px; width: 100%; flex: none; }
  .app-card { padding: 36px 24px; }
  .hero-logo { width: 260px; }
  .photo-strip-grid { grid-template-columns: repeat(2, 1fr); height: 300px; }
}
