/* ============ FOUNDER'S GRO BRAND ============ */
:root {
  --green: #5AB200;
  --green-lt: #81D300;
  --blue: #005EFF;
  --blue-lt: #00AFFF;
  --navy: #000C19;
  --orange: #FF9F00;
  --ink: #0B1624;
  --gray: #55616F;
  --bg: #FFFFFF;
  --bg-soft: #F4F8FC;
  --radius: 14px;
  --shadow: 0 10px 34px rgba(0, 12, 25, .10);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ============ HEADER ============ */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #E6EDF4;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.nav .logo img { height: 44px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  color: var(--ink); font-weight: 600; font-size: .92rem;
  padding-bottom: 4px; border-bottom: 2px solid transparent; transition: .2s;
}
.nav-links a:hover, .nav-links a.active { border-bottom-color: var(--green); }
.nav-cta {
  background: linear-gradient(90deg, var(--blue), var(--blue-lt));
  color: #fff !important; padding: 10px 22px; border-radius: 999px;
  border-bottom: none !important; box-shadow: 0 4px 14px rgba(0,94,255,.35);
}
.nav-cta:hover { transform: translateY(-1px); }
.menu-btn { display: none; background: none; border: 0; font-size: 1.7rem; color: var(--ink); cursor: pointer; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-block; font-weight: 700; font-size: 1rem;
  padding: 15px 34px; border-radius: 999px; transition: .2s;
}
.btn-blue {
  background: linear-gradient(90deg, var(--blue), var(--blue-lt)); color: #fff;
  box-shadow: 0 6px 20px rgba(0,94,255,.35);
}
.btn-green {
  background: linear-gradient(90deg, var(--green), var(--green-lt)); color: #fff;
  box-shadow: 0 6px 20px rgba(90,178,0,.35);
}
.btn-outline { border: 2px solid #fff; color: #fff; }
.btn:hover { transform: translateY(-2px); }
.link-arrow { font-weight: 700; color: var(--blue); }
.link-arrow.green { color: var(--green); }

/* ============ HERO ============ */
.hero {
  background: radial-gradient(1100px 520px at 78% -10%, rgba(0,175,255,.28), transparent 60%),
              radial-gradient(800px 480px at 12% 110%, rgba(90,178,0,.22), transparent 55%),
              var(--navy);
  color: #fff; text-align: center; padding: 110px 0 120px;
  position: relative; overflow: hidden;
}
.hero .kicker {
  display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.6vw, 4.1rem); font-weight: 800; line-height: 1.08;
  letter-spacing: -.01em; margin-bottom: 22px;
}
.hero h1 .grad {
  background: linear-gradient(90deg, var(--blue-lt), var(--green-lt));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead {
  font-size: 1.2rem; color: #C7D3DF; max-width: 640px; margin: 0 auto 40px;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* page hero (interior pages) */
.page-hero { padding: 84px 0 90px; }
.page-hero p.lead { max-width: 720px; }

/* ============ STATS BAR ============ */
.stats { background: var(--bg); padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
.stat .num {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -.02em;
  background: linear-gradient(90deg, var(--blue), var(--green));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat .lbl { color: var(--gray); font-size: .95rem; margin-top: 6px; }

/* ============ SECTIONS ============ */
section { padding: 84px 0; }
.section-soft { background: var(--bg-soft); }
.section-navy { background: var(--navy); color: #fff; }
.eyebrow {
  font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow.blue { color: var(--blue); } .eyebrow.green { color: var(--green); } .eyebrow.orange { color: var(--orange); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 800; line-height: 1.15; letter-spacing: -.01em; margin-bottom: 18px; }
.section-sub { color: var(--gray); font-size: 1.08rem; max-width: 680px; margin-bottom: 44px; }
.section-navy .section-sub { color: #B9C6D3; }

/* split rows */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }

/* ============ CARDS ============ */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.card {
  background: #fff; border-radius: var(--radius); padding: 34px 30px;
  box-shadow: var(--shadow); border-top: 4px solid var(--blue);
  transition: transform .2s;
}
.card:hover { transform: translateY(-4px); }
.card.green { border-top-color: var(--green); }
.card.orange { border-top-color: var(--orange); }
.card h3 { font-size: 1.18rem; font-weight: 700; margin-bottom: 10px; }
.card p { color: var(--gray); font-size: .96rem; }
.card ul { margin: 12px 0 0 18px; color: var(--gray); font-size: .96rem; }
.card ul li { margin-bottom: 8px; }
.card .icon {
  width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 1.3rem; margin-bottom: 18px; color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-lt));
}
.card.green .icon { background: linear-gradient(135deg, var(--green), var(--green-lt)); }
.card.orange .icon { background: linear-gradient(135deg, var(--orange), #FFC24D); }

/* numbered steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }
.step { background: #fff; border-radius: var(--radius); padding: 34px 30px; box-shadow: var(--shadow); }
.step .n {
  width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: #fff; margin-bottom: 16px;
  background: linear-gradient(135deg, var(--green), var(--green-lt));
}
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { color: var(--gray); font-size: .95rem; }

/* checklist */
.checklist { list-style: none; }
.checklist li {
  padding-left: 34px; position: relative; margin-bottom: 14px; color: var(--gray); font-size: 1rem;
}
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 22px; height: 22px; border-radius: 50%; font-size: .78rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-lt));
}
.checklist li strong { color: var(--ink); }

/* audience split (home) */
.audience { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.audience .pane {
  border-radius: var(--radius); padding: 46px 40px; color: #fff; position: relative; overflow: hidden;
}
.pane-blue { background: linear-gradient(135deg, var(--blue), var(--blue-lt)); }
.pane-green { background: linear-gradient(135deg, var(--green), var(--green-lt)); }
.audience .pane h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 12px; }
.audience .pane p { opacity: .92; margin-bottom: 26px; }
.audience .pane .btn { background: #fff; }
.pane-blue .btn { color: var(--blue); }
.pane-green .btn { color: var(--green); }

/* partner strip */
.partners { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 26px; }
.partner {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); padding: 28px;
}
.partner h4 { color: #fff; font-size: 1.05rem; margin-bottom: 8px; }
.partner p { color: #B9C6D3; font-size: .92rem; }
.partner a { color: var(--blue-lt); font-weight: 700; font-size: .9rem; }

/* CTA band */
.cta-band {
  background: linear-gradient(100deg, var(--navy) 40%, #01203f);
  color: #fff; text-align: center; padding: 90px 0;
}
.cta-band h2 { margin-bottom: 14px; }
.cta-band p { color: #B9C6D3; margin-bottom: 34px; }

/* ============ FORMS ============ */
.form-wrap { max-width: 640px; margin: 0 auto; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 44px; }
.form-row { margin-bottom: 20px; }
label { display: block; font-weight: 700; font-size: .88rem; margin-bottom: 8px; }
input, select, textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid #D8E2EC; border-radius: 10px;
  font-family: inherit; font-size: .98rem; background: #FBFDFF;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--blue); }
textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: .85rem; color: var(--gray); margin-top: 14px; }

/* ============ FOOTER ============ */
footer { background: var(--navy); color: #8FA1B3; padding: 56px 0 34px; }
.footer-grid { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 34px; margin-bottom: 40px; }
.footer-brand .wordmark { font-weight: 800; font-size: 1.25rem; color: #fff; letter-spacing: .02em; line-height: 1.1; }
.footer-brand .wordmark span { color: var(--green-lt); }
.footer-brand p { font-size: .88rem; max-width: 300px; margin-top: 10px; }
.footer-col h5 { color: #fff; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col a { display: block; color: #8FA1B3; font-size: .92rem; margin-bottom: 9px; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .82rem; }
.footer-bottom a { color: #8FA1B3; margin-left: 18px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 860px) {
  .nav-links {
    display: none; position: absolute; top: 76px; left: 0; right: 0;
    background: #fff; flex-direction: column; padding: 20px 24px; gap: 16px;
    border-bottom: 1px solid #E6EDF4; box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .menu-btn { display: block; }
  .split, .audience, .steps, .stats-grid { grid-template-columns: 1fr; }
  .hero { padding: 80px 0 88px; }
  section { padding: 64px 0; }
}

/* ============ LEGAL / PROSE PAGES ============ */
.prose { max-width: 780px; margin: 0 auto; }
.prose h1 { font-size: 2.2rem; font-weight: 800; margin: 60px 0 10px; }
.prose .date { color: var(--gray); font-size: .9rem; margin-bottom: 34px; }
.prose h2 { font-size: 1.25rem; margin: 34px 0 10px; }
.prose p, .prose li { color: var(--gray); font-size: .98rem; margin-bottom: 12px; }
.prose ul { margin: 0 0 14px 22px; }
.prose section { padding: 0; }
.prose-wrap { padding: 20px 0 90px; }
