/* ==========================================================================
   Grow Your Business (R) -- Bizfarm
   v2 rebuild: content/structure per GYB-website-copy-v2.md. Contrast ratios
   below are measured (WCAG relative-luminance formula), not estimated --
   see README.md for the audit, including dark-on-gold text as flagged in
   the build brief.
   ========================================================================== */

@font-face{font-family:'Archivo';font-style:normal;font-weight:700;font-display:swap;src:url('../assets/fonts/archivo-700.woff2') format('woff2');}
@font-face{font-family:'Archivo';font-style:normal;font-weight:800;font-display:swap;src:url('../assets/fonts/archivo-800.woff2') format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url('../assets/fonts/inter-400.woff2') format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url('../assets/fonts/inter-500.woff2') format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:600;font-display:swap;src:url('../assets/fonts/inter-600.woff2') format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:700;font-display:swap;src:url('../assets/fonts/inter-700.woff2') format('woff2');}

:root{
  /* Brand tokens (from the build brief) */
  --forest:#0A3018;
  --green:#008030;
  --gold:#F5C518;
  --amber:#E8A800;
  --brown:#503010;
  --paper:#F8F8F6;
  --white:#FFFFFF;
  --red:#D83030; /* functional only -- form error states, not a brand token */

  /* Derived surfaces */
  --surface:#EFEEE8;
  --divider: rgba(80,48,16,0.28);
  --divider-soft: rgba(80,48,16,0.2);

  /* Text -- ratios measured against the background they're actually used on:
       text-body            8.17:1 on surface #EFEEE8
       text-muted-onlight   5.50:1 on surface #EFEEE8
       label-onlight        6.76:1 on surface, 7.39:1 on paper
       text-ondark         10.42:1 on --forest
       text-muted-ondark    7.73:1 on --forest
       forest text on --gold (CTA block, section--gold)   8.89:1
     All clear AA (4.5:1 body / 3:1 large text). */
  --text-strong: var(--forest);
  --text-body: rgba(10,48,24,0.85);
  --text-muted-onlight: rgba(10,48,24,0.72);
  --label-onlight: #045F27;
  --text-ondark: rgba(248,248,246,0.86);
  --text-muted-ondark: rgba(248,248,246,0.72);
  --link: var(--green);
  --link-hover: #026B29;

  --radius-none: 0;
  --focus-ring: 3px solid var(--green);

  --container: 1280px;
  --container-narrow: 820px;
  --container-narrow-md: 1000px;

  /* Photograph colour treatment (PROMPT-4) -- tune both values here to
     adjust all three photographs (hero, pipeline-review, supplier-floor)
     at once. Desaturation softens the source photos' orange/blue tones;
     the forest tint (applied via .photo-treated::after, multiply blend)
     unifies them with the brand palette. See README.md. */
  --photo-saturate: 0.55;
  --photo-tint-opacity: 0.30;
}

@media (prefers-reduced-motion: no-preference){
  html{ scroll-behavior:smooth; }
}

*, *::before, *::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; }
body{
  margin:0;
  background:var(--paper);
  color:var(--text-strong);
  font-family:'Inter', system-ui, sans-serif;
  line-height:1.5;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
sup{ font-size:0.6em; }

h1, h2, h3{
  font-family:'Archivo', sans-serif;
  font-weight:800;
  letter-spacing:-0.01em;
  margin:0 0 16px;
  color:var(--text-strong);
}
p{ margin:0 0 16px; }
p:last-child{ margin-bottom:0; }

a{ color:var(--link); }
a:hover{ color:var(--link-hover); }

/* Focus states -- visible, in brand green, never removed */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible{
  outline: var(--focus-ring);
  outline-offset: 2px;
}

.visually-hidden{
  position:absolute;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.skip-link{
  position:absolute;
  left:-9999px;
  top:0;
  background:var(--forest);
  color:var(--paper);
  padding:12px 20px;
  z-index:200;
  text-decoration:none;
  font-weight:600;
}
.skip-link:focus{
  left:8px;
  top:8px;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:44px;
  padding:12px 22px;
  border-radius:var(--radius-none);
  border:2px solid transparent;
  font-family:'Inter', sans-serif;
  font-weight:600;
  font-size:15px;
  text-decoration:none;
  cursor:pointer;
  transition:background-color .15s ease, border-color .15s ease, color .15s ease;
}
@media (prefers-reduced-motion: reduce){ .btn{ transition:none; } }

.btn-primary{
  background:var(--gold);
  color:var(--forest);
}
.btn-primary:hover{ background:#D9AC0A; color:var(--forest); }
.btn-primary:disabled{ opacity:0.6; cursor:not-allowed; }

/* For a primary button that sits ON a gold background (the Offer section) --
   .btn-primary's gold-on-gold would be nearly invisible there. ~13:1
   contrast, paper on forest. */
.btn-on-gold{
  background:var(--forest);
  color:var(--paper);
}
.btn-on-gold:hover{ background:#0d3d1f; }

.btn-secondary{
  background:transparent;
  border-color:var(--divider);
  color:var(--forest);
}
.btn-secondary:hover{ border-color:var(--forest); }

.btn-block{ width:100%; }

.link-underline{ text-decoration:underline; text-underline-offset:4px; }

/* ---------- Nav ---------- */
.site-nav{
  background:var(--paper);
  border-bottom:2px solid var(--divider);
  position:sticky;
  top:0;
  z-index:50;
  padding:10px 16px;
  display:flex;
  align-items:center;
  gap:10px;
}
.logo-mark{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:var(--text-strong);
  flex:none;
}
.nav-logo-img{ flex:none; height:32px; width:auto; }
/* Below 900px the bar only ever shows the Bizfarm logo image -- the
   "Grow Your Business" wordmark next to it read as a second logo once the
   bar got tight, so it (and its divider) only come back once the full
   desktop nav does. One brand mark in the mobile bar, not two. */
.logo-divider{ display:none; flex:none; width:1px; height:22px; background:var(--divider); }
.logo-word{
  display:none;
  font-family:'Archivo', sans-serif;
  font-weight:800;
  font-size:16px;
  letter-spacing:-0.01em;
  white-space:nowrap;
}

.desktop-nav-links{
  display:none;
  align-items:center;
  gap:14px;
  margin-left:14px;
  white-space:nowrap;
  flex:1 1 auto;
  flex-wrap:wrap;
}
.desktop-nav-links a{
  font-size:13px;
  text-decoration:none;
  color:var(--text-strong);
  padding:10px 2px;
}

/* Both CTAs (this and .nav-entrepreneurs-cta below) only render in the bar
   at 900px+, alongside the desktop nav links and the full logo. Below
   that they live inside .mobile-nav-ctas in the hamburger menu instead --
   the bar itself is just the logo and the hamburger at those widths. This
   is also what keeps the bar from overflowing at phone widths: earlier,
   "Nominate Up to 5 Suppliers" standing in the bar next to the logo
   wordmark measured ~233px of real overflow at 375px; removing it from
   the bar entirely below 900px removes the problem at its source rather
   than squeezing the button to fit. */
.nav-cta{
  display:none;
  margin-left:auto;
  font-size:14px;
  padding:10px 16px;
  white-space:nowrap;
  flex:none;
}

.nav-entrepreneurs-cta{
  display:none;
  font-size:13px;
  padding:10px 14px;
  white-space:nowrap;
  flex:none;
  margin-left:8px;
}

/* ---------- Hamburger icon: three bars -> X (state driven by aria-expanded,
   so the icon can never visually disagree with what a screen reader hears) ---------- */
.nav-hamburger{
  position:relative;
  margin-left:8px;
  width:44px;
  height:44px;
  padding:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:4px;
  background:transparent;
  border:2px solid var(--divider);
  cursor:pointer;
  flex:none;
}
.nav-hamburger span{
  display:block;
  width:18px;
  height:2px;
  background:var(--forest);
  transition:transform .2s ease, opacity .2s ease;
}
@media (prefers-reduced-motion: reduce){
  .nav-hamburger span{ transition:none; }
}
/* Open: top bar rotates down to centre, middle fades out, bottom rotates
   up to centre -- the classic hamburger-to-X. Keyed off aria-expanded
   (already the toggle's source of truth) rather than a second class, so
   the icon and the a11y state can't drift apart. */
.nav-hamburger[aria-expanded="true"] span:nth-child(1){ transform:translateY(6px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3){ transform:translateY(-6px) rotate(-45deg); }

/* ---------- Mobile drawer + backdrop ----------
   Both are position:fixed siblings of <header>, always present in the DOM
   -- visibility is a transform/opacity toggle (driven by body.nav-open in
   js/main.js), never the `hidden` attribute, because display:none can't
   transition and toggling it was what let the drawer push page content
   down instead of overlaying it. */
.mobile-nav-backdrop{
  position:fixed;
  inset:0;
  z-index:150;
  background:rgba(10,48,24,0.6);
  opacity:0;
  visibility:hidden;
  transition:opacity .25s ease-out, visibility 0s linear .25s;
}
.mobile-nav{
  position:fixed;
  top:0;
  left:0;
  z-index:200;
  width:min(80vw, 320px);
  height:100vh;
  height:100dvh;
  background:var(--forest);
  display:flex;
  flex-direction:column;
  align-items:stretch;
  padding:20px;
  gap:4px;
  overflow-y:auto;
  transform:translateX(-100%);
  transition:transform .25s ease-out;
  box-shadow:2px 0 24px rgba(0,0,0,0.25);
}
@media (prefers-reduced-motion: reduce){
  .mobile-nav-backdrop{ transition:none; }
  .mobile-nav{ transition:none; }
}

body.nav-open .mobile-nav-backdrop{
  opacity:1;
  visibility:visible;
  transition:opacity .25s ease-out;
}
body.nav-open .mobile-nav{
  transform:translateX(0);
}

.mobile-nav-close{
  align-self:flex-end;
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:transparent;
  border:2px solid rgba(248,248,246,0.3);
  color:var(--paper);
  font-size:22px;
  line-height:1;
  cursor:pointer;
  margin-bottom:12px;
}

/* Direct-child combinator so this only styles the 7 plain nav links, not
   the two .btn CTAs nested inside .mobile-nav-ctas below -- they keep
   their own .btn sizing instead of being overridden by this rule's
   font-size/padding (a plain ".mobile-nav a" would otherwise win, since
   it's more specific than ".btn" alone). */
.mobile-nav > a{
  font-size:16px;
  text-decoration:none;
  color:var(--paper);
  padding:12px 4px;
  min-height:44px;
  display:flex;
  align-items:center;
  border-bottom:1px solid rgba(248,248,246,0.12);
}
/* The last link's own border-bottom and .mobile-nav-ctas's border-top
   (below) landed right on top of each other with only the CTA block's
   margin/padding between them -- two hairline dividers where one was
   intended. Drop this one, keep the CTA block's. (:last-of-type, not
   :last-child -- .mobile-nav-ctas itself, a <div>, is the actual last
   child of .mobile-nav; this needs the last <a> specifically.) */
.mobile-nav > a:last-of-type{ border-bottom:none; }

.mobile-nav-ctas{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:16px;
  padding-top:16px;
  border-top:1px solid rgba(248,248,246,0.18);
}
/* The gold button's label ("Nominate Up to 5 Suppliers ->") wrapped to two
   lines with the arrow stranded at the drawer's default .btn padding/
   font-size -- the drawer (max 320px, minus its own 20px side padding) is
   narrower than that button was ever laid out for elsewhere on the page.
   Sized down specifically for this context; both CTA buttons share it so
   they stay visually matched. */
.mobile-nav-ctas .btn{
  font-size:14px;
  padding:12px 14px;
}
/* Drawer-specific secondary-button variant: the site-wide .btn-secondary
   is forest text for light backgrounds (the header bar, the entrepreneur
   form's white card) and is invisible against this drawer's forest
   background -- only its border showed. Paper text + a paper-tinted
   border here instead, same treatment as .hero-secondary-cta (also a
   secondary CTA over a dark/forest background) for consistency. ~13:1
   contrast, comfortably clear of AA. */
.mobile-nav-ctas .btn-secondary{
  color:var(--paper);
  border-color:rgba(248,248,246,0.55);
}
.mobile-nav-ctas .btn-secondary:hover{
  border-color:var(--paper);
  background:rgba(248,248,246,0.08);
}

@media (min-width:900px){
  .desktop-nav-links{ display:flex; }
  .logo-word{ display:block; }
  .logo-divider{ display:block; }
  .nav-entrepreneurs-cta{ display:inline-flex; }
  .nav-cta{ display:inline-flex; }
  .nav-hamburger{ display:none; }
  /* Belt-and-suspenders: translateX(-100%) already hides the drawer, but
     desktop has no way to open it (the toggle is display:none too), so
     fully removing it from layout/hit-testing/the accessibility tree
     avoids it ever being reachable by a stray Tab press. */
  .mobile-nav, .mobile-nav-backdrop{ display:none !important; }
  .site-nav{ padding:14px 32px; }
}

/* ---------- Hero (full-bleed photo, per PROMPT-4) ---------- */
.hero{
  position:relative;
  overflow:hidden;
  min-height:520px;
}
.hero-media{
  position:absolute;
  inset:0;
  z-index:0;
}
/* .photo-treated (below) sets position:relative for its own purposes on the
   other two photographs. Since .hero-media also carries that class (for the
   shared colour treatment), its rule wins on source order and silently
   downgrades this from absolute to relative -- which turns the hero photo
   into a normal in-flow block instead of a full-bleed background, pushing
   .hero-content below it instead of overlaying it. This compound selector
   has higher specificity than .photo-treated alone, so it wins regardless
   of source order. This was the cause of the "hero content invisible /
   split into its own section" regression -- see README.md. */
.hero-media.photo-treated{ position:absolute; }
.hero-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:78% center; /* favours the right side -- subject sits right, headline space left */
  display:block;
}
/* The shared .photo-treated-img filter and .photo-treated::after tint (see
   "Photograph colour treatment" below) flattened the hero into a near-
   solid green band when combined with the scrim -- three darkening/
   desaturating layers stacked on top of each other. The hero gets its own,
   much lighter values here so the photo stays legible as a photo; the
   other two images keep the shared defaults. */
.hero-media .photo-treated-img{ filter: saturate(0.85); }
.hero-media.photo-treated::after{ opacity: 0.12; }

.hero-scrim{
  position:absolute;
  inset:0;
  z-index:1;
  /* Directional: strong where the headline sits (left), falling away
     where the subject is (right), so she stays visible. Only applied
     from 1000px up -- see the max-width:999px override below for why. */
  background:linear-gradient(100deg, rgba(10,48,24,0.94) 0%, rgba(10,48,24,0.80) 45%, rgba(10,48,24,0.35) 100%);
}
/* Below 1000px, hero-content is no longer width-capped at 900px and grows
   with the viewport, so the same text can land much further right as a
   fraction of the image's width than the contrast math below assumes.
   Measured worst case (pure-white pixel under the text, WCAG formula):
   comfortably >5:1 at 1000px+ with the directional gradient; a
   near-solid flat scrim is used below that instead, matching the "legibility
   beats atmosphere on a small screen" rule for mobile/tablet. */
@media (max-width:999px){
  .hero-scrim{ background:linear-gradient(180deg, rgba(10,48,24,.90), rgba(10,48,24,.88)); }
  .hero-media img{ object-position:65% center; }
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:900px;
  margin:0 auto;
  padding:56px 20px 72px;
}
.hero h1{
  font-size:clamp(32px, 7vw, 58px);
  line-height:1.08;
  margin:0 0 20px;
  color:var(--paper);
  max-width:560px; /* see the .hero-scrim comment above -- this width is load-bearing for contrast, not just layout */
}
.hero-lede{
  font-size:19px;
  line-height:1.6;
  color:rgba(248,248,246,.92);
  max-width:500px;
  margin-bottom:32px;
}
.hero-ctas{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:16px;
  margin-bottom:28px;
  max-width:500px; /* matches .hero-lede -- keeps both buttons inside the
    scrim zone already verified for AA contrast (see .hero h1's comment);
    two buttons side by side would otherwise reach further right than the
    headline/sub-copy ever did */
}
/* Secondary CTA over the dark hero photo -- .btn-secondary's default
   (border in --divider, forest text) is designed for light backgrounds
   and would be barely visible here. Same "clearly subordinate to gold"
   intent as the nav's For Entrepreneurs button, just re-tuned for a dark,
   photographic background instead of the light nav bar. */
.hero-secondary-cta{
  border-color:rgba(248,248,246,0.55);
  color:var(--paper);
}
.hero-secondary-cta:hover{
  border-color:var(--paper);
  background:rgba(248,248,246,0.08);
}
.hero-audience{
  font-size:14px;
  font-style:italic;
  color:rgba(248,248,246,.85);
  max-width:500px;
  margin:0;
  max-width:560px;
}

@media (min-width:640px){
  .hero{ min-height:600px; }
  .hero-content{ padding:80px 32px 96px; }
}
@media (min-width:1200px){
  .hero{ min-height:700px; }
  .hero-content{ padding:96px 32px 112px; }
}

/* ---------- Photograph colour treatment (shared by all three photos) ----------
   Uniform desaturation + forest-tint overlay so the source photos' orange/
   blue tones read as one family with the brand palette, without baking the
   effect into the files -- tune via --photo-saturate / --photo-tint-opacity
   in :root above. */
.photo-treated{ position:relative; overflow:hidden; }
.photo-treated-img{ filter: saturate(var(--photo-saturate)); }
.photo-treated::after{
  content:'';
  position:absolute;
  inset:0;
  background:var(--forest);
  opacity:var(--photo-tint-opacity);
  mix-blend-mode:multiply;
  pointer-events:none;
}

/* ---------- Contained section photographs (Section 4 + Section 8) ---------- */
.section-photo{
  margin-top:40px;
}
.section-photo img{
  width:100%;
  height:auto;
  display:block;
}
.section-photo--small{
  max-width:560px;
  margin-top:32px;
}

/* ---------- Credibility strip (Block A -- disabled by default) ---------- */
.cred-strip{
  background:var(--surface);
  border-top:2px solid var(--divider);
  border-bottom:2px solid var(--divider);
  padding:16px 20px;
}
.cred-list{
  list-style:none;
  margin:0;
  padding:0;
  max-width:var(--container);
  margin-left:auto;
  margin-right:auto;
  display:flex;
  flex-wrap:wrap;
  gap:8px 18px;
  font-size:12.5px;
  color:var(--text-muted-onlight);
}
.cred-list li{ white-space:nowrap; }

/* ---------- Section shells ---------- */
.section{
  padding:64px 20px;
}
.section--dark{ background:var(--forest); }
.section--dark h2{ color:var(--paper); }
.section--surface{ background:var(--surface); }
.section--gold{ background:var(--gold); }
.section--gold h2{ color:var(--forest); }

.section-inner{
  max-width:var(--container-narrow);
  margin:0 auto;
}

.section h2{
  font-size:clamp(26px, 5.5vw, 40px);
  line-height:1.18;
}
.section-lede{
  font-size:17px;
  line-height:1.65;
  color:var(--text-body);
  margin-bottom:0;
}
.section-lede + .section-lede{ margin-top:16px; }
.section--dark .section-lede{ color:var(--text-ondark); }
.section-lede--ongold{ color:rgba(10,48,24,0.85); }

.eyebrow{
  font-size:12.5px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--label-onlight);
  font-weight:600;
  margin-bottom:16px;
}
.eyebrow--ondark{ color:var(--gold); }
.eyebrow--ongold{ color:var(--forest); }

@media (min-width:640px){
  .section{ padding:80px 32px; }
}
@media (min-width:1200px){
  .section{ padding:96px 32px; }
}

/* ---------- The problem: five-question group ---------- */
.problem-leadin{
  font-size:19px;
  font-weight:600;
  color:var(--paper);
  margin:24px 0 8px;
}
.question-group{
  list-style:none;
  margin:0 0 40px;
  padding:0;
}
.question-group li{
  font-family:'Archivo', sans-serif;
  font-weight:800;
  font-size:clamp(22px, 5vw, 32px);
  line-height:1.3;
  color:var(--paper);
  padding:18px 0;
  border-top:1px solid rgba(248,248,246,0.18);
}
.question-group li:last-child{
  border-bottom:1px solid rgba(248,248,246,0.18);
}
.problem-closing{
  font-size:17px;
  line-height:1.65;
  color:var(--text-ondark);
  max-width:680px;
  margin:0;
}

/* ---------- Flow diagrams (typographic placeholders -- no imagery) ---------- */
.flow-diagram{
  display:flex;
  flex-direction:column;
  align-items:stretch;
  gap:10px;
  margin:32px 0 8px;
}
.flow-stage{
  border:2px solid var(--divider);
  background:var(--paper);
  padding:16px 18px;
  text-align:center;
}
.flow-stage span{
  font-family:'Archivo', sans-serif;
  font-weight:800;
  font-size:15px;
  letter-spacing:0.02em;
  text-transform:uppercase;
  color:var(--forest);
}
.flow-stage--emphasis{
  background:var(--forest);
  border-color:var(--forest);
}
.flow-stage--emphasis span{ color:var(--gold); }
.flow-arrow{
  align-self:center;
  font-size:20px;
  color:var(--green);
  transform:rotate(90deg);
  line-height:1;
}

.flow-diagram--ongold .flow-stage{ background:var(--forest); border-color:var(--forest); }
.flow-diagram--ongold .flow-stage span{ color:var(--gold); }
.flow-diagram--ongold .flow-arrow{ color:var(--forest); }

.flow-diagram--7 .flow-stage{ padding:12px 14px; }
.flow-diagram--7 .flow-stage span{ font-size:13px; }
/* Two explicit rows (see index.html) so an arrow can never dangle at a row
   end -- each .flow-row is its own flex list, stages/arrows only ever
   adjacent to real neighbours. Compound selector (.flow-diagram.flow-
   diagram--7) beats the plain .flow-diagram row-flip below regardless of
   source order, so this stays a column of two rows rather than becoming a
   single flat row itself. */
.flow-diagram.flow-diagram--7{ flex-direction:column; }
.flow-diagram--7 .flow-row{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.flow-diagram--7 .flow-arrow--row-break{ align-self:center; }

/* section--dark hosts flow-diagram--3 (section 3 is light; section 7/purpose is dark) */
.section--dark .flow-stage{ background:#123825; border-color:rgba(248,248,246,0.25); }
.section--dark .flow-stage span{ color:var(--paper); }
.section--dark .flow-arrow{ color:var(--gold); }

@media (min-width:768px){
  .flow-diagram{ flex-direction:row; align-items:center; justify-content:center; flex-wrap:wrap; row-gap:16px; }
  .flow-stage{ flex:1 1 0; }
  .flow-arrow{ transform:rotate(0deg); flex:none; }
  /* Seven stages don't fit one row at any reasonable width -- they're
     split into two explicit rows (4 + 3) in the markup instead of relying
     on flex-wrap. flex:1 1 0 above would still make each stage grow to
     fill leftover space; fixed-basis keeps both rows' stages the same
     size and lets the shorter row sit centered rather than stretched. */
  .flow-diagram--7 .flow-row{ flex-direction:row; justify-content:center; gap:10px; }
  .flow-diagram--7 .flow-row .flow-stage{ flex:0 1 150px; }
  /* The row-break connector is only for the single-column mobile stack;
     once the two rows sit side by side there's nothing for it to point
     between. */
  .flow-diagram--7 .flow-arrow--row-break{ display:none; }
}

/* ---------- What GYB builds: numbered systems ---------- */
.systems-list{
  list-style:none;
  margin:0;
  padding:0;
}
.systems-list li{
  display:grid;
  grid-template-columns:60px 1fr;
  gap:16px;
  padding:24px 0;
  border-top:2px solid var(--divider);
  align-items:start;
}
.systems-list li:last-child{ border-bottom:2px solid var(--divider); }
.sys-num{
  font-family:'Archivo', sans-serif;
  font-weight:800;
  font-size:36px;
  line-height:1;
  color:var(--gold);
  -webkit-text-stroke:1.2px var(--forest);
}
.systems-list h3{ font-size:18px; margin:0 0 8px; }
.systems-list p{ font-size:15px; line-height:1.6; color:var(--text-body); margin:0; }

@media (min-width:640px){
  .systems-list li{ grid-template-columns:100px 1fr; gap:24px; }
  .sys-num{ font-size:52px; -webkit-text-stroke:1.5px var(--forest); }
}

/* ---------- The offer ---------- */
.offer-subhead{
  font-family:'Archivo', sans-serif;
  font-weight:800;
  font-size:20px;
  color:var(--forest);
  margin:0 0 12px;
}
.offer-cta{ margin-top:32px; }

/* ---------- The outcome ---------- */
.outcome-list{
  list-style:none;
  margin:0;
  padding:0;
}
.outcome-list li{
  font-family:'Archivo', sans-serif;
  font-weight:700;
  font-size:clamp(19px, 3.5vw, 24px);
  color:var(--forest);
  padding:20px 0;
  border-top:2px solid var(--divider);
}
.outcome-list li:last-child{ border-bottom:2px solid var(--divider); }

/* ---------- Measurement (Block B -- disabled by default) ---------- */
/* Uses .section-lede and h2, no additional selectors required. */

/* ---------- Purpose ---------- */
.purpose-statement{
  font-family:'Archivo', sans-serif;
  font-weight:800;
  font-size:clamp(24px, 5.5vw, 40px);
  line-height:1.3;
  color:var(--paper);
  max-width:760px;
  margin:40px 0 0;
}

/* ---------- Who it is for ----------
   Five items -- a fixed-column grid leaves an empty trailing cell whenever
   the item count doesn't divide evenly into the column count. Tags that
   flow with flex-wrap have no such failure mode regardless of item count. */
.audience-list{
  list-style:none;
  margin:0 0 28px;
  padding:0;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.audience-list li{
  background:var(--paper);
  border:2px solid var(--divider);
  padding:10px 18px;
  font-size:15px;
  font-weight:600;
  color:var(--forest);
}
.audience-closing{
  font-size:17px;
  line-height:1.6;
  color:var(--text-body);
  margin:0;
}
.bbbee-line{
  font-size:15px;
  line-height:1.65;
  color:var(--text-muted-onlight);
  border-top:1px solid var(--divider);
  padding-top:20px;
  margin-top:28px;
}

/* ---------- Nominate / form ---------- */
.nominate-grid{
  max-width:1100px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr;
  gap:40px;
}
.nominate-copy{ max-width:680px; }
.nominate-copy h2{ color:var(--forest); }
.nominate-copy p{ font-size:17px; line-height:1.65; color:rgba(10,48,24,0.9); }
.nominate-secondary{ font-size:15px; margin-top:20px; }
.nominate-secondary .calendly-link{ color:var(--forest); text-decoration:underline; text-underline-offset:3px; font-weight:600; }

.form-card{
  background:var(--forest);
  padding:24px 20px;
  max-width:640px;
  width:100%;
}

.form-progress{ margin-bottom:20px; }
.form-progress-labels{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:8px;
  font-size:12px;
  color:var(--text-muted-ondark);
  text-transform:uppercase;
  letter-spacing:0.06em;
}
.form-progress-track{
  height:4px;
  background:rgba(248,248,246,0.2);
}
.form-progress-bar{
  height:100%;
  background:var(--gold);
  transition:width .2s ease;
}
@media (prefers-reduced-motion: reduce){ .form-progress-bar{ transition:none; } }

.form-error{
  background:rgba(216,48,48,0.15);
  border:1px solid var(--red);
  color:var(--paper);
  padding:12px 14px;
  font-size:14px;
  margin-bottom:16px;
}
.form-error a{ color:var(--gold); }

.field{ margin-bottom:16px; }
.field label{
  display:block;
  font-size:13px;
  color:var(--text-muted-ondark);
  margin-bottom:6px;
}
.input{
  width:100%;
  min-height:44px;
  padding:10px 12px;
  background:#123825;
  border:1px solid rgba(248,248,246,0.3);
  color:var(--paper);
  font-family:'Inter', sans-serif;
  font-size:15px;
  border-radius:var(--radius-none);
}
.input::placeholder{ color:rgba(248,248,246,0.45); }
textarea.input{ resize:vertical; }

.field.has-error .input{ border-color:var(--red); }
.field-error{
  color:#FFB3B3;
  font-size:13px;
  margin:6px 0 0;
  min-height:0;
}
.field-error:empty{ display:none; }

.field-checkbox{
  display:flex;
  align-items:flex-start;
  gap:10px;
}
.field-checkbox input[type="checkbox"]{
  width:20px;
  height:20px;
  min-width:20px;
  margin-top:2px;
  accent-color:var(--gold);
}
.field-checkbox label{
  font-size:13.5px;
  line-height:1.5;
  color:var(--text-ondark);
  margin:0;
}
.popia-note{
  font-size:12.5px;
  color:var(--text-muted-ondark);
  margin:8px 0 0;
}

.step2-heading{
  font-family:'Archivo', sans-serif;
  font-weight:700;
  font-size:15px;
  color:var(--paper);
  margin:0 0 18px;
}
.supplier-block{
  border-top:1px solid rgba(248,248,246,0.18);
  padding-top:16px;
  margin-bottom:16px;
}
.supplier-label{
  font-size:13px;
  font-weight:600;
  color:var(--gold);
  margin:0 0 12px;
}
.optional-tag{
  font-weight:400;
  color:var(--text-muted-ondark);
  text-transform:none;
  letter-spacing:normal;
}

.honeypot{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}

.form-step-actions{
  display:flex;
  gap:12px;
  margin-top:8px;
}
.form-step-actions .btn-secondary{
  border-color:rgba(248,248,246,0.3);
  color:var(--paper);
}
.form-step-actions .btn-primary{ flex:1; }

.form-success{
  padding:24px 0;
}
.success-check{
  display:flex;
  align-items:center;
  justify-content:center;
  width:44px; height:44px;
  border-radius:50%;
  background:var(--green);
  color:#fff;
  font-size:20px;
  margin-bottom:20px;
}
.form-success p{
  font-size:17px;
  line-height:1.6;
  color:var(--paper);
  margin:0;
}
.form-success[hidden]{ display:none; }

.form-footer{
  margin-top:20px;
  padding-top:18px;
  border-top:1px solid rgba(248,248,246,0.18);
}
.form-footer .calendly-link{
  font-size:14px;
  color:var(--gold);
  display:inline-block;
  margin-bottom:8px;
}
.form-footer-contact{
  font-size:13.5px;
  color:var(--text-muted-ondark);
  margin:0;
}

@media (min-width:900px){
  .nominate-grid{ grid-template-columns:1.1fr 1fr; align-items:start; }
  .form-card{ padding:40px; }
}

/* ---------- For individual entrepreneurs (Section 10) ----------
   Deliberately quiet relative to the corporate CTA above it: light
   background (not gold), a narrower single column instead of the wide
   two-column CTA layout, a smaller heading, and a secondary (outlined)
   button rather than the primary gold one. */
.entrepreneurs-section{ background:var(--paper); }
.entrepreneurs-inner{
  max-width:560px;
  margin:0 auto;
}
.entrepreneurs-section h2{
  font-size:clamp(22px, 4vw, 30px); /* smaller than the section 9 heading */
}
.entrepreneurs-section .section-lede{ margin-bottom:28px; }

.entrepreneur-form{
  background:var(--white);
  border:2px solid var(--divider);
  padding:24px 20px;
}
.entrepreneur-form label{
  display:block;
  font-size:13px;
  color:var(--text-muted-onlight);
  margin-bottom:6px;
}
.entrepreneur-form .input{
  background:var(--paper);
  border:1px solid var(--divider);
  color:var(--forest);
}
.entrepreneur-form .input::placeholder{ color:rgba(10,48,24,0.4); }
.entrepreneur-form .field.has-error .input{ border-color:var(--red); }
.entrepreneur-form .field-error{ color:#B02020; }
.entrepreneur-form .btn-secondary{ width:100%; justify-content:center; margin-top:4px; }

.entrepreneur-form-error{
  background:rgba(216,48,48,0.08);
  border:1px solid var(--red);
  color:var(--forest);
  padding:12px 14px;
  font-size:14px;
  margin-bottom:16px;
}
.entrepreneur-form-error a{ color:var(--green); font-weight:600; }

.entrepreneur-success{
  background:var(--white);
  border:2px solid var(--divider);
  padding:24px 20px;
}
.entrepreneur-success p{ color:var(--forest); }

@media (min-width:640px){
  .entrepreneur-form{ padding:32px; }
}

/* ---------- Footer ---------- */
.site-footer{
  background:var(--forest);
  padding:40px 20px 28px;
}
.footer-inner{ max-width:var(--container); margin:0 auto; }
.footer-top{
  display:flex;
  flex-direction:column;
  gap:24px;
  border-bottom:1px solid rgba(248,248,246,0.15);
  padding-bottom:24px;
  margin-bottom:20px;
}
.footer-brand{ display:flex; flex-direction:column; gap:10px; max-width:420px; }
.footer-logo{ background:var(--paper); padding:6px 10px; margin-bottom:4px; }
.footer-title{
  font-family:'Archivo', sans-serif;
  font-weight:800;
  font-size:17px;
  color:var(--paper);
  margin:0;
}
.footer-tagline{
  font-size:13px;
  font-style:italic;
  color:var(--text-muted-ondark);
  margin:0;
}
.footer-brand p{
  font-size:13px;
  line-height:1.6;
  color:var(--text-muted-ondark);
  margin:0;
}
.footer-links{ display:flex; flex-direction:column; gap:8px; }
.footer-links a{
  font-size:12.5px;
  color:var(--text-muted-ondark);
  text-decoration:none;
}
.footer-links a:hover{ text-decoration:underline; }
.footer-bottom{
  display:flex;
  flex-direction:column;
  gap:12px;
  font-size:12.5px;
  color:var(--text-muted-ondark);
  line-height:1.6;
}

@media (min-width:640px){
  .site-footer{ padding:48px 32px 32px; }
  .footer-top{ flex-direction:row; justify-content:space-between; }
  .footer-bottom{ flex-direction:row; justify-content:space-between; }
}
