

/* ============================
        STICKY NAV
    ============================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 53, 32, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(125, 243, 200, 0.1);
  transition: all 0.3s ease;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  min-width: 0;
}

.nav-logo img {
  flex-shrink: 0;
  height: 50px;
  width: 100px;
  object-fit: cover;
  object-position: 50% center;
}

.nav-logo span {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-mobile-cta {
  display: none;
  background: var(--mint);
  color: var(--emerald);
  padding: 9px 18px;
  border-radius: 50px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--mint);
}

.nav-cta {
  background: var(--mint) !important;
  color: var(--emerald) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: 0.3px;
  transition: all 0.3s !important;
}

.nav-cta:hover {
  background: var(--white) !important;
  transform: translateY(-1px);
}

/* ============================
        URGENCY TICKER
    ============================ */
.ticker {
  margin-top: 75px;
  background: var(--emerald);
  border-bottom: 1px solid rgba(125, 243, 200, 0.15);
  overflow: hidden;
  padding: 10px 0;
}

.ticker-track {
  display: flex;
  gap: 60px;
  animation: ticker-scroll 60s linear infinite;
  width: max-content;
  padding-right: 60px;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  color: var(--mint);
  letter-spacing: 0.3px;
}

.ticker-item .dot {
  width: 6px;
  height: 6px;
  background: var(--mint);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 30px));
  }
}

/* ============================
        HERO - SPLIT LAYOUT W/ FORM
    ============================ */
.ty-hero {
  background: url('../images/regrf.jpg') center center / cover no-repeat;
}
.hero-wrap {
  position: relative;
  background: url('../images/regrf.jpg') center/cover no-repeat;
}

.hero-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 53, 32, 0.88) 0%, rgba(15, 76, 46, 0.78) 40%, rgba(10, 53, 32, 0.72) 100%);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 40px;
  align-items: start;
  padding: 32px 24px;
  max-width: 1280px;
  margin: 0 auto;
  z-index: 1;
}

.hero-content {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(125, 243, 200, 0.12);
  border: 1px solid rgba(125, 243, 200, 0.3);
  color: var(--mint);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.hero-badge .live-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

.hero-kicker {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--mint);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.95;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 6px 13px;
  border-radius: 50px;
  white-space: nowrap;
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 20px;
}

.hero h1 .highlight {
  color: var(--mint);
  position: relative;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 12px;
  background: var(--mint);
  opacity: 0.2;
  z-index: -1;
  border-radius: 2px;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 32px;
}

.metric {
  background: rgba(255, 255, 255, 0.06);
  padding: 12px 12px;
  text-align: center;
}

.metric .val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--mint);
  letter-spacing: -1px;
}

.metric .lbl {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}


/* ---- HERO FORM CARD ---- */
.hero-form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 30px 26px;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  position: relative;
}

.hero-form-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  padding: 1px;
  background: linear-gradient(135deg, var(--mint), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.form-header {
  text-align: center;
  margin-bottom: 16px;
}

.form-header h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.form-header p {
  font-size: 13px;
  color: var(--gray-400);
}

.form-spots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--gold-soft);
  border: 1px solid rgba(240, 197, 91, 0.3);
  border-radius: 50px;
  padding: 6px 14px;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #92400e;
}

.form-disclaimer {
  text-align: center;
  font-size: 11px;
  color: var(--gray-400);
  margin-top: 30px;
  line-height: 1.5;
}

/* ---- HERO CALENDAR (GHL EMBED) ---- */
.calendar-wrap {
  position: relative;
  margin: 0 -26px -30px -26px;
  min-height: 511px;
  max-height: 1000px;
}

.calendar-wrap iframe {
  display: block;
  width: 100%;
  height: 750px;
  border: none;
  border-radius: 0 0 20px 20px;
}

/* ============================
        LOGO BAR
    ============================ */
.logo-bar {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 24px 0;
  overflow: hidden;
  position: relative;
}

.logo-bar::before,
.logo-bar::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}

.logo-bar::before {
  left: 0;
  background: linear-gradient(90deg, var(--gray-50), transparent);
}

.logo-bar::after {
  right: 0;
  background: linear-gradient(-90deg, var(--gray-50), transparent);
}

.logo-bar-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
  position: relative;
  z-index: 3;
}

.logo-bar-track {
  display: flex;
  align-items: center;
  gap: 60px;
}

.logo-bar-track img {
  height: 44px;
  width: auto;
  opacity: 1;
  filter: none;
  transition: opacity 0.3s, filter 0.3s;
  flex-shrink: 0;
}

.logo-bar-track img:hover {
  opacity: 0.85;
}

/* ============================
        SECTION UTILITIES
    ============================ */
.sec {
  padding: 72px 20px;
}

.sec-sm {
  padding: 48px 20px;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
}

.sec-head {
  text-align: center;
  margin-bottom: 48px;
}

.sec-head .eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--emerald);
  background: var(--mint-glow);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.sec-head h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -1.5px;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.sec-head p {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 620px;
  margin: 0 auto;
}

/* ============================
        CRISIS / PROBLEM SECTION
    ============================ */
.crisis-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.crisis-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.crisis-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  opacity: 0;
  transition: opacity 0.3s;
}

.crisis-card:hover {
  border-color: var(--red);
  box-shadow: 0 8px 30px rgba(239, 68, 68, 0.08);
  transform: translateY(-3px);
}

.crisis-card:hover::before {
  opacity: 1;
}

.crisis-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  background: var(--red-soft);
}

.crisis-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.crisis-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ============================
        SOLUTION - SIDE BY SIDE
    ============================ */
.solution-sec {
  background: var(--emerald);
  position: relative;
  overflow: hidden;
}

.solution-sec::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(125, 243, 200, 0.06);
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.solution-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  line-height: 1.15;
}

.solution-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 32px;
}

.solution-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.solution-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.solution-features .check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--mint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald);
  font-size: 13px;
  font-weight: 700;
  margin-top: 1px;
}

/* ---- Comparison Table (in solution) ---- */
.comparison-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-wrap {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  min-width: 420px;
}

.comp-header {
  display: grid;
  grid-template-columns: 140px 1fr 1fr 1fr;
  background: rgba(0, 0, 0, 0.15);
}

.comp-header div {
  padding: 14px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.comp-header div:first-child {
  text-align: left;
}

.comp-header .get-h {
  color: var(--mint);
}

.comp-row {
  display: grid;
  grid-template-columns: 140px 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comp-row:last-child {
  border-bottom: none;
}

.comp-row div {
  padding: 13px 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comp-row div:first-child {
  text-align: left;
  justify-content: flex-start;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.comp-row .bad {
  color: rgba(239, 68, 68, 0.85);
}

.comp-row .avg {
  color: rgba(250, 204, 21, 0.85);
}

.comp-row .great {
  color: var(--mint);
  font-weight: 700;
  background: rgba(125, 243, 200, 0.06);
}

/* ============================
        TRACTION / PROOF
    ============================ */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.proof-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.proof-card:hover {
  border-color: var(--emerald);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.proof-card .tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--mint-glow);
  color: var(--emerald);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.proof-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
  line-height: 1.3;
}

.proof-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 16px;
}

.proof-card ul {
  list-style: none;
  margin-bottom: 16px;
}

.proof-card ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--gray-800);
  line-height: 1.6;
}

.proof-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
  border: 2px solid var(--emerald);
}

.proof-highlight {
  font-family: 'JetBrains Mono', monospace;
  font-size: 32px;
  font-weight: 700;
  color: var(--emerald);
  margin-bottom: 4px;
}

.proof-card .proof-label {
  font-size: 13px;
  color: var(--gray-400);
  font-weight: 500;
}

.grant-partners {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  padding: 12px 16px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  flex-wrap: nowrap;
  border: 1px solid var(--gray-100);
  border-top: 2px solid var(--gray-100);
  overflow: hidden;
}

.grant-partners>span {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-400);
  white-space: nowrap;
  flex-shrink: 0;
  padding-right: 8px;
  border-right: 1px solid var(--gray-200);
}

.grant-partners img {
  height: auto;
  max-height: 44px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.grant-partners img:hover {
  opacity: 0.9;
}

.grant-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.grant-logo-subtitle {
  font-size: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gray-500);
  text-align: center;
  line-height: 1.3;
}

.proof-partners {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: auto;
  padding-top: 24px;
  padding: 14px 20px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-top: 2px solid var(--gray-100);
  border-radius: var(--radius-sm);
  flex-wrap: wrap;
}

.proof-partners span {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-400);
  white-space: nowrap;
  flex-shrink: 0;
  padding-right: 8px;
  border-right: 1px solid var(--gray-200);
}

.proof-partners img {
  height: 30px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.proof-partners img:hover {
  opacity: 1;
}

/* ============================
        MARKET OPPORTUNITY BAND
    ============================ */
.market-band {
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--emerald-deep) 100%);
  color: var(--white);
  text-align: center;
}

.market-band h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -1.5px;
  margin-bottom: 12px;
}

.market-band h2 .mint {
  color: var(--mint);
}

.market-band p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 40px;
}

.market-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 980px;
  margin: 0 auto 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
}

.market-stat {
  padding: 32px 20px;
  background: rgba(255, 255, 255, 0.03);
}

.market-stat .num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: var(--mint);
  letter-spacing: -1px;
}

.market-stat .desc {
  font-size: 13px;
  color: var(--gray-400);
  margin-top: 6px;
}

/* ============================
        WHY INVEST - BENTO GRID
    ============================ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bento-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mint), var(--emerald));
  opacity: 0;
  transition: opacity 0.3s;
}

.bento-card:hover {
  border-color: var(--emerald);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.bento-card:hover::before {
  opacity: 1;
}

.bento-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  background: var(--mint-glow);
}

.bento-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.bento-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ============================
        FOR FARMERS SECTION
    ============================ */
.farmer-sec {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.farmer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.farmer-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  line-height: 1.15;
}

.farmer-content p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 28px;
}

.farmer-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.farmer-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-800);
  font-weight: 500;
}

.farmer-benefits .ico {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--mint);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.farmer-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.farmer-stat {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
}

.farmer-stat .big {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--emerald);
}

.farmer-stat .sm {
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 500;
  margin-top: 4px;
}

/* ============================
        FINAL CTA
    ============================ */
.final-cta {
  background: var(--emerald);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 72px 20px;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(125, 243, 200, 0.08), transparent 70%);
}

.final-cta h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -2px;
  margin-bottom: 16px;
  position: relative;
}

.final-cta p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin: 0 auto 36px;
  position: relative;
}

.btn-final {
  display: inline-block;
  background: var(--white);
  color: var(--emerald);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-final:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* ============================
        FOOTER
    ============================ */
.footer {
  background: var(--emerald-deep);
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  padding: 24px 20px;
  font-size: 13px;
}

/* ============================
        AMERICAN FARMERS FIRST BANNER
    ============================ */
.usa-banner {
  background: linear-gradient(135deg, #1a2744 0%, #1e3a5f 50%, #1a2744 100%);
  padding: 48px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.usa-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #b22234 0%, #b22234 40%, #fff 40%, #fff 46%, #3c3b6e 46%, #3c3b6e 54%, #fff 54%, #fff 60%, #b22234 60%, #b22234 100%);
}

.usa-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #b22234 0%, #b22234 40%, #fff 40%, #fff 46%, #3c3b6e 46%, #3c3b6e 54%, #fff 54%, #fff 60%, #b22234 60%, #b22234 100%);
}

.usa-flag-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
}

.usa-flag {
  font-size: 32px;
  line-height: 1;
}

.usa-badge {
  display: inline-block;
  background: rgba(178, 34, 52, 0.15);
  border: 1px solid rgba(178, 34, 52, 0.4);
  color: #f0c55b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 4px;
}

.usa-banner h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.usa-banner h2 .usa-red {
  color: #e8444d;
}

.usa-banner h2 .usa-blue {
  color: #7db8f0;
}

.usa-banner p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.usa-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.usa-stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
}

.usa-stat .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 28px;
  font-weight: 700;
  color: #f0c55b;
  margin-bottom: 4px;
}

.usa-stat .desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* American-made shield badge (reusable) */
.usa-shield {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #1e3a5f;
  background: linear-gradient(135deg, #f7f8f9 0%, #eef0f2 100%);
  border: 1px solid #dde1e6;
  padding: 5px 12px;
  border-radius: 6px;
  letter-spacing: 0.3px;
}

/* ============================
        FIELD TRIALS
    ============================ */
.trials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.trial-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 32px 28px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.trial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.1);
}

.trial-crop {
  display: inline-block;
  background: rgba(178, 34, 52, 0.15);
  border: 1px solid rgba(178, 34, 52, 0.4);
  color: #f0c55b;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 6px;
  margin-bottom: 14px;
}

.trial-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 10px;
}

.trial-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.trial-results {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.trial-stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 14px 12px;
  text-align: center;
}

.trial-stat .val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 22px;
  font-weight: 700;
  color: #f0c55b;
}

.trial-stat .lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

#trials {
  background: linear-gradient(135deg, #1a2744 0%, #1e3a5f 50%, #1a2744 100%);
  position: relative;
}

#trials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #b22234 0%, #b22234 40%, #fff 40%, #fff 46%, #3c3b6e 46%, #3c3b6e 54%, #fff 54%, #fff 60%, #b22234 60%, #b22234 100%);
  z-index: 1;
}

#trials::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #b22234 0%, #b22234 40%, #fff 40%, #fff 46%, #3c3b6e 46%, #3c3b6e 54%, #fff 54%, #fff 60%, #b22234 60%, #b22234 100%);
}

#trials .eyebrow {
  background: rgba(178, 34, 52, 0.15);
  border: 1px solid rgba(178, 34, 52, 0.4);
  color: #f0c55b;
}

#trials .sec-head h2 {
  color: #ffffff;
}

#trials .sec-head p {
  color: rgba(255, 255, 255, 0.75);
}

/* ============================
        FINANCIAL PROJECTIONS
    ============================ */
.fin-section {
  background: linear-gradient(180deg, var(--emerald-deep) 0%, #0d3f27 100%);
  color: var(--white);
}

.fin-section .eyebrow {
  background: rgba(125, 243, 200, 0.1);
  color: var(--mint);
}

.fin-section .sec-head h2 {
  color: var(--white);
}

.fin-section .sec-head p {
  color: rgba(255, 255, 255, 0.6);
}

.fin-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.fin-year {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 28px 16px;
  text-align: center;
  transition: transform 0.3s, background 0.3s;
}

.fin-year:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
}

.fin-year .year {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: var(--mint);
  margin-bottom: 16px;
  font-weight: 600;
}

.fin-year .rev {
  font-family: 'JetBrains Mono', monospace;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.net-pos {
  color: #22c55e !important;
  font-size: 22px;
}

.net-neg {
  color: #f87171 !important;
  font-size: 22px;
}

.fin-year .rev-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fin-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.fin-highlight {
  background: rgba(125, 243, 200, 0.08);
  border: 1px solid rgba(125, 243, 200, 0.15);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
}

.fin-highlight .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 32px;
  font-weight: 700;
  color: var(--mint);
  margin-bottom: 8px;
}

.fin-highlight .desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================
        LEADERSHIP TEAM
    ============================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.1);
}

.team-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 3px solid #f0c55b;
  box-shadow: 0 0 0 4px rgba(240, 197, 91, 0.2);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #f0c55b;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 4px;
}

.team-role {
  font-size: 13px;
  color: #f0c55b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.team-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

#team {
  background: linear-gradient(135deg, #1a2744 0%, #1e3a5f 50%, #1a2744 100%);
  position: relative;
}

#team::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #b22234 0%, #b22234 40%, #fff 40%, #fff 46%, #3c3b6e 46%, #3c3b6e 54%, #fff 54%, #fff 60%, #b22234 60%, #b22234 100%);
  z-index: 1;
}

#team::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #b22234 0%, #b22234 40%, #fff 40%, #fff 46%, #3c3b6e 46%, #3c3b6e 54%, #fff 54%, #fff 60%, #b22234 60%, #b22234 100%);
}

#team .eyebrow {
  background: rgba(178, 34, 52, 0.15);
  border: 1px solid rgba(178, 34, 52, 0.4);
  color: #f0c55b;
}

#team .sec-head h2 {
  color: #ffffff;
}

#team .sec-head p {
  color: rgba(255, 255, 255, 0.75);
}

/* ============================
        IP / PATENT MOAT
    ============================ */
.ip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ip-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.ip-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.ip-icon {
  font-size: 36px;
  margin-bottom: 14px;
}

.ip-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.ip-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ============================
        FAQ ACCORDION
    ============================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-100);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--gray-900);
  transition: color 0.3s;
}

.faq-q:hover {
  color: var(--emerald);
}

.faq-q::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--gray-400);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-q::after {
  content: '\2212';
  color: var(--emerald);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 22px;
}

.faq-a p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ============================
        RESPONSIVE
    ============================ */
@media (max-width: 1150px) {
  .nav-mobile-cta {
    display: inline-block;
  }
  .nav-links {
    display: none;
  }
}
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 32px 20px;
    gap: 32px;
    min-height: auto;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-form-card {
    max-width: 520px;
    margin: 0 auto;
  }

  .solution-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .farmer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .crisis-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }

  .fin-timeline {
    grid-template-columns: repeat(3, 1fr);
  }

  .fin-highlights {
    grid-template-columns: repeat(3, 1fr);
  }

  .trials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ip-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-mobile-cta {
    display: inline-block;
  }

  .nav-logo span {
    font-size: 14px;
    display: none;
  }

  .sec {
    padding: 52px 16px;
  }

  .sec-sm {
    padding: 36px 16px;
  }

  .sec-head {
    margin-bottom: 32px;
  }

  .sec-head h2 {
    font-size: 26px;
    letter-spacing: -1px;
  }

  .sec-head p {
    font-size: 15px;
  }

  .hero {
    padding: 28px 16px;
    gap: 28px;
  }

  .hero h1 {
    font-size: 32px;
    letter-spacing: -1px;
    line-height: 1.12;
  }

  .hero-sub {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 6px 12px;
    margin-bottom: 10px;
  }

  .hero-kicker {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .hero-tags {
    margin-bottom: 18px;
  }

  .hero-tags span {
    font-size: 11px;
    padding: 5px 11px;
  }

  .hero-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-form-card {
    padding: 28px 20px;
    max-width: 100%;
  }

  .form-header h3 {
    font-size: 20px;
  }

  .form-header {
    margin-bottom: 16px;
  }

  .calendar-wrap {
    margin: 0 -20px -28px -20px;
    min-height: 550px;
  }

  .calendar-wrap iframe {
    height: 700px;
    border-radius: 0 0 14px 14px;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-card {
    padding: 28px 20px;
  }

  .proof-card h3 {
    font-size: 19px;
  }

  .proof-highlight {
    font-size: 26px;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-card {
    padding: 24px 20px;
  }

  .comp-header,
  .comp-row {
    grid-template-columns: 95px 1fr 1fr 1fr;
  }

  .comp-header div,
  .comp-row div {
    font-size: 11px;
    padding: 10px 6px;
  }

  .comparison-wrap {
    border-radius: 12px;
  }

  .solution-content h2 {
    font-size: 26px;
  }

  .solution-content p {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .solution-features li {
    font-size: 14px;
  }

  .market-band h2 {
    font-size: 26px;
  }

  .market-band p {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .market-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .market-stat {
    padding: 20px 12px;
  }

  .market-stat .num {
    font-size: 26px;
  }

  .market-stat .desc {
    font-size: 11px;
  }

  .farmer-content h2 {
    font-size: 26px;
  }

  .farmer-content p {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .farmer-benefits {
    gap: 10px;
    margin-bottom: 24px;
  }

  .farmer-benefits li {
    font-size: 14px;
  }

  .farmer-stats-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .farmer-stat {
    padding: 16px 10px;
  }

  .farmer-stat .big {
    font-size: 22px;
  }

  .farmer-stat .sm {
    font-size: 11px;
  }

  .final-cta h2 {
    font-size: 28px;
    letter-spacing: -1px;
  }

  .final-cta p {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .btn-final {
    font-size: 14px;
    padding: 14px 30px;
  }

  .crisis-card {
    padding: 22px 18px;
  }

  .crisis-card h3 {
    font-size: 16px;
  }

  .crisis-card p {
    font-size: 13px;
  }

  .ticker {
    padding: 8px 0;
  }

  .ticker-item {
    font-size: 12px;
  }

  .logo-bar-track img {
    height: 32px;
  }

  .logo-bar-track {
    gap: 36px;
  }

  .usa-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .usa-stat .num {
    font-size: 22px;
  }

  .usa-banner h2 {
    font-size: 26px;
  }

  .usa-banner p {
    font-size: 14px;
  }

  .fin-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .fin-highlights {
    grid-template-columns: 1fr;
  }

  .fin-year .rev {
    font-size: 22px;
  }

  .fin-highlight .num {
    font-size: 26px;
  }

  .trials-grid {
    grid-template-columns: 1fr;
  }

  .trial-card {
    padding: 24px 20px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-card {
    padding: 24px 20px;
  }

  .ip-grid {
    grid-template-columns: 1fr;
  }

  .faq-q {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .ticker {
    margin-top: 71px;
  }
  .nav-inner {
    padding: 10px 12px;
  }

  .nav-logo span {
    font-size: 12px;
  }

  .nav-mobile-cta {
    font-size: 11px;
    padding: 7px 14px;
  }

  .hero {
    padding: 20px 14px;
    gap: 24px;
  }

  .hero h1 {
    font-size: 26px;
    margin-bottom: 14px;
  }

  .hero-sub {
    font-size: 14px;
  }

  .crisis-grid {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .metric {
    padding: 14px 8px;
  }

  .metric .val {
    font-size: 22px;
  }

  .metric .lbl {
    font-size: 10px;
  }

  .comp-header,
  .comp-row {
    grid-template-columns: 76px 1fr 1fr 1fr;
  }

  .comp-header div,
  .comp-row div {
    font-size: 10px;
    padding: 8px 4px;
  }

  .market-stats {
    grid-template-columns: 1fr;
  }

  .farmer-stats-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .sec {
    padding: 40px 14px;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .usa-stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .usa-stat {
    padding: 16px 10px;
  }

  .usa-stat .num {
    font-size: 20px;
  }

  .fin-timeline {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .fin-year {
    padding: 20px 12px;
  }

  .fin-year .rev {
    font-size: 20px;
  }

  .trial-results {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .trial-stat .val {
    font-size: 18px;
  }

  .faq-q {
    font-size: 14px;
    padding: 18px 0;
  }

  .faq-a p {
    font-size: 14px;
  }
}

/* ============================
        ANIMATIONS
    ============================ */
.fade-up {
  opacity: 0.01;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

section#form-section {
  display: flex;
  align-items: flex-start;
  max-width: 1600px;
  gap: 4%;
  padding: 100px 40px;
  justify-content: space-between;
}

.hero-form-card {
  width: 45%;
}

.hero-content {
  width: 55%;
}

@media screen and (max-width:767px) {
  section#form-section {
    flex-direction: column;
    gap: 20px;
    padding: 50px 20px;
  }

  .hero-content {
    width: 100%;
  }

  .hero-form-card {
    width: 100%;
  }

}