/* ==========================================================================
   Greenfield Infra — landing page (index.html)
   Requires theme.css
   ========================================================================== */

.wrap { width: 100%; max-width: 1240px; margin-inline: auto; padding-inline: clamp(18px, 4vw, 40px); }

/* ==========================================================================
   1. CURTAIN INTRO
   Two velvet drapes + pelmet in brand green with gold trim. landing.js adds
   .is-open to <html> once the hero image is ready; the drapes gather and part.
   ========================================================================== */
html.is-curtained { overflow: hidden; }

.curtain {
  position: fixed; inset: 0; z-index: 1000; overflow: hidden; cursor: pointer;
  background: transparent; -webkit-tap-highlight-color: transparent;
}

.curtain__drape {
  position: absolute; top: -2%; height: 104%; width: 51%;
  will-change: transform; backface-visibility: hidden;
  background:
    /* shadow under the pelmet, weight at the hem */
    linear-gradient(180deg, rgba(0, 0, 0, .62) 0%, rgba(0, 0, 0, 0) 24%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, .55) 100%),
    /* long uneven waves so the pleats don't look machine-made */
    repeating-linear-gradient(90deg, rgba(0, 0, 0, .0) 0 120px, rgba(0, 0, 0, .22) 210px, rgba(0, 0, 0, 0) 330px),
    /* velvet nap */
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .045) 0 1px, rgba(255, 255, 255, 0) 1px 7px),
    /* the pleats */
    repeating-linear-gradient(90deg,
      #041a0a 0px, #0b3514 15px, #185f22 36px, #38942f 48px, #1d6c27 57px, #0a3113 78px, #041a0a 96px);
  box-shadow: inset 0 0 140px rgba(0, 0, 0, .6);
}
.curtain__drape--l { left: 0;  transform-origin: 0 50%; }
.curtain__drape--r { right: 0; transform-origin: 100% 50%; }

/* gold leading edge */
.curtain__drape i {
  position: absolute; top: 0; bottom: 0; width: 13px;
  background: linear-gradient(90deg, #5e4300, #f5c302 32%, #fff4b8 50%, #e2a900 70%, #5e4300);
  box-shadow: 0 0 22px rgba(245, 195, 2, .4);
}
.curtain__drape--l i { right: 0; }
.curtain__drape--r i { left: 0; }

/* gold band + fringe at the hem */
.curtain__drape::before, .curtain__drape::after { content: ""; position: absolute; left: 0; right: 0; }
.curtain__drape::before {
  bottom: calc(1.9% + 24px); height: 7px;
  background: linear-gradient(180deg, #fff1a6, #f5c302 45%, #8d6500);
}
.curtain__drape::after {
  bottom: 1.9%; height: 24px;
  background: repeating-linear-gradient(90deg, #f7cb1e 0 3px, #8d6500 3px 6px);
  -webkit-mask-image: linear-gradient(180deg, #000 55%, transparent);
          mask-image: linear-gradient(180deg, #000 55%, transparent);
}

/* pelmet with scalloped, gold-edged swags */
.curtain__pelmet {
  position: absolute; left: 0; right: 0; top: 0; height: clamp(54px, 11vh, 112px);
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .04) 0 1px, transparent 1px 7px),
    linear-gradient(180deg, #03140a 0%, #0d3d18 58%, #1f7229 100%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .55);
  will-change: transform;
}
.curtain__pelmet::after {
  content: ""; position: absolute; left: 0; right: 0; top: calc(100% - 1px); height: 52px;
  background:
    radial-gradient(ellipse 66px 50px at 50% 0, #1f7229 0 84%, #f5c302 85% 95%, rgba(245, 195, 2, 0) 97%) 0 0 / 132px 52px repeat-x;
  filter: drop-shadow(0 10px 12px rgba(0, 0, 0, .5));
}

/* warm spotlight on the closed curtain */
.curtain__spot {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(46% 42% at 50% 47%, rgba(223, 233, 6, .2), rgba(147, 207, 28, .08) 45%, rgba(0, 0, 0, 0) 72%);
  mix-blend-mode: screen;
}

.curtain__crest {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  display: grid; justify-items: center; gap: 14px; text-align: center; width: max-content; max-width: 92vw;
}
/* Gold-ringed medallion carrying the official stacked lockup (emblem + name + tagline). The dark disc is what keeps the
   lime/citron lettering legible against the green velvet and hides the gold seam behind it. */
.curtain__medal {
  position: relative; width: clamp(250px, 42vw, 380px); aspect-ratio: 1; border-radius: 50%;
  display: grid; place-items: center; padding: 17% 17% 15%;
  background: radial-gradient(circle at 50% 36%, #123f1b, #04160a 72%);
  box-shadow: 0 0 0 2px rgba(245, 195, 2, .9), 0 0 0 10px rgba(4, 22, 10, .85), 0 0 0 11px rgba(245, 195, 2, .35),
              0 26px 60px rgba(0, 0, 0, .65), 0 0 90px rgba(147, 207, 28, .35);
  animation: gf-medal 2.6s ease-in-out infinite;
}
.curtain__medal img { width: 100%; height: auto; filter: drop-shadow(0 6px 14px rgba(0, 0, 0, .5)); }
.curtain__hint {
  position: absolute; left: 0; right: 0; bottom: max(7vh, 44px); text-align: center;
  font: 500 .7rem/1 var(--gf-body); letter-spacing: .3em; text-transform: uppercase; color: rgba(255, 255, 255, .75);
  opacity: 0; animation: gf-hint 1.6s ease-in-out 2.6s infinite;
}

@keyframes gf-medal { 50% { box-shadow: 0 0 0 2px rgba(245, 195, 2, 1), 0 0 0 10px rgba(4, 22, 10, .85), 0 0 0 11px rgba(245, 195, 2, .55), 0 26px 60px rgba(0, 0, 0, .65), 0 0 130px rgba(223, 233, 6, .5); } }
@keyframes gf-hint  { 0%, 100% { opacity: 0; } 50% { opacity: .9; } }

/* --- opening --- */
html.is-open .curtain { pointer-events: none; animation: gf-curtain-off .01s linear calc(var(--t, 1) * 3.3s) forwards; }
html.is-open .curtain__hint { display: none; }
html.is-open .curtain__crest  { animation: gf-crest-out calc(var(--t, 1) * .75s) ease-in forwards; }
html.is-open .curtain__spot   { animation: gf-fade-out calc(var(--t, 1) * 1.2s) ease forwards; }
html.is-open .curtain__drape--l { animation: gf-open-l calc(var(--t, 1) * 2.5s) cubic-bezier(.66, 0, .18, 1) calc(var(--t, 1) * .5s) forwards; }
html.is-open .curtain__drape--r { animation: gf-open-r calc(var(--t, 1) * 2.5s) cubic-bezier(.66, 0, .18, 1) calc(var(--t, 1) * .5s) forwards; }
html.is-open .curtain__pelmet   { animation: gf-pelmet-up calc(var(--t, 1) * 1.7s) cubic-bezier(.6, 0, .3, 1) calc(var(--t, 1) * 1.05s) forwards; }
html.is-fast { --t: .38; }

@keyframes gf-open-l {
  0%   { transform: translate3d(0, 0, 0) scaleX(1) skewX(0deg); }
  14%  { transform: translate3d(0, 0, 0) scaleX(.965) skewX(.7deg); }
  100% { transform: translate3d(-103%, 0, 0) scaleX(.4) skewX(-3.5deg); }
}
@keyframes gf-open-r {
  0%   { transform: translate3d(0, 0, 0) scaleX(1) skewX(0deg); }
  14%  { transform: translate3d(0, 0, 0) scaleX(.965) skewX(-.7deg); }
  100% { transform: translate3d(103%, 0, 0) scaleX(.4) skewX(3.5deg); }
}
@keyframes gf-pelmet-up   { to { transform: translate3d(0, -190%, 0); } }
@keyframes gf-crest-out   { to { opacity: 0; transform: translate(-50%, -50%) scale(1.16); filter: blur(8px); } }
@keyframes gf-fade-out    { to { opacity: 0; } }
@keyframes gf-curtain-off { to { visibility: hidden; } }

@media (prefers-reduced-motion: reduce) {
  html.is-open .curtain { animation: gf-fade-out .5s ease forwards !important; }
  html.is-open .curtain * { animation: none !important; }
}

/* ==========================================================================
   2. NAV
   ========================================================================== */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 50; padding-block: 14px; transition: padding .35s; }
/* The frosted bar lives on a pseudo-element: backdrop-filter on .nav itself would make it the
   containing block for the fixed-position mobile menu and clip it to the bar's height. */
.nav::before {
  content: ""; position: absolute; inset: 0; z-index: -2; opacity: 0; transition: opacity .35s;
  background: rgba(4, 20, 10, .78);
  -webkit-backdrop-filter: blur(14px) saturate(140%); backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 var(--gf-line), 0 18px 40px -24px #000;
}
.nav.is-stuck { padding-block: 8px; }
.nav.is-stuck::before { opacity: 1; }
.nav__in { display: flex; align-items: center; gap: 24px; }
/* official horizontal lockup; allowed to shrink so Login + menu always fit beside it on narrow phones */
.nav__brand { display: block; flex: 0 1 auto; min-width: 0; margin-right: auto; }
.nav__brand img { width: 250px; max-width: 100%; height: auto; filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .5)); transition: width .35s; }
.nav.is-stuck .nav__brand img { width: 214px; }

.nav__links { display: flex; align-items: center; gap: clamp(14px, 2vw, 28px); }
.nav__links > a:not(.gf-btn) {
  position: relative; font: 500 .88rem/1 var(--gf-head); color: rgba(237, 246, 230, .86); padding: 8px 0; transition: color .25s;
}
.nav__links > a:not(.gf-btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; border-radius: 2px;
  background: var(--gf-grad); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--gf-ease);
}
.nav__links > a:not(.gf-btn):hover { color: #fff; }
.nav__links > a:not(.gf-btn):hover::after { transform: scaleX(1); }
.nav__join-m { display: none; }

.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__burger {
  display: none; width: 44px; height: 44px; border-radius: 14px; border: 1px solid var(--gf-line-2);
  background: rgba(255, 255, 255, .06); cursor: pointer; place-items: center;
}
.nav__burger .ico { width: 22px; height: 22px; }
.nav__burger .ico--close { display: none; }

@media (max-width: 1040px) {
  .nav__burger { display: grid; }
  .nav__links {
    position: fixed; inset: 0; z-index: -1; flex-direction: column; justify-content: center; gap: 6px;
    background: rgba(3, 16, 8, .97); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
    opacity: 0; visibility: hidden; transform: translateY(-12px);
    transition: opacity .35s, transform .35s var(--gf-ease), visibility .35s;
  }
  .nav__links > a:not(.gf-btn) { font-size: 1.35rem; padding: 14px 8px; }
  .nav__join-m { display: inline-flex; margin-top: 22px; }
  .nav.is-menu .nav__links { opacity: 1; visibility: visible; transform: none; }
  .nav.is-menu .ico--open { display: none; }
  .nav.is-menu .ico--close { display: block; }
}
@media (max-width: 560px) {
  .nav__join { display: none; }
  .nav__brand img, .nav.is-stuck .nav__brand img { width: 186px; }
  .nav__in { gap: 12px; }
}

/* ==========================================================================
   3. HERO
   ========================================================================== */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: 100vh; min-height: 100svh; display: flex; align-items: center;
  background: var(--gf-night);
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 74% 50%; }
.js .hero__bg img { transform: scale(1.14); transform-origin: 72% 46%; }
html.is-open .hero__bg img { transform: none; transition: transform 4.6s cubic-bezier(.16, .7, .2, 1) .45s; }

.hero__shade {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 20, 10, .94) 0%, rgba(4, 20, 10, .8) 26%, rgba(4, 20, 10, .2) 56%, rgba(4, 20, 10, 0) 74%),
    linear-gradient(0deg, rgba(4, 20, 10, .96) 0%, rgba(4, 20, 10, 0) 26%),
    linear-gradient(180deg, rgba(4, 20, 10, .6) 0%, rgba(4, 20, 10, 0) 20%);
}

.hero__in { padding-block: 128px 104px; }
.hero__title {
  margin: 0 0 .42em; font: 800 clamp(2.2rem, 4.15vw, 3.7rem)/1.06 var(--gf-head);
  letter-spacing: -.022em; text-wrap: balance; text-shadow: 0 6px 30px rgba(0, 0, 0, .45);
}
.hero__lead { margin: 0 0 2em; max-width: 34ch; font-size: clamp(1rem, 1.5vw, 1.2rem); color: rgba(237, 246, 230, .9); }
.hero__lead::before {
  content: ""; display: block; width: 74px; height: 4px; border-radius: 4px; margin-bottom: 1.1em; background: var(--gf-grad-gold);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__pills {
  --gap: clamp(14px, 2.4vw, 32px);
  list-style: none; display: flex; gap: var(--gap); padding: 0; margin: clamp(38px, 6vh, 64px) 0 0;
}
.hero__pills li {
  display: flex; flex-direction: column; align-items: center; gap: 11px; text-align: center;
  font: 500 .76rem/1.32 var(--gf-body); color: rgba(237, 246, 230, .92);
}
.hero__pills li + li { padding-left: var(--gap); border-left: 1px solid rgba(245, 195, 2, .32); }
.hero__pills span {
  width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center; color: var(--gf-citron);
  background: radial-gradient(circle at 50% 35%, rgba(41, 110, 30, .55), rgba(4, 24, 10, .7));
  border: 1.5px solid rgba(223, 233, 6, .6);
  box-shadow: 0 0 20px rgba(147, 207, 28, .38), inset 0 0 16px rgba(147, 207, 28, .2);
}
.hero__pills .ico { width: 26px; height: 26px; stroke-width: 1.7; }

.hero__scroll {
  position: absolute; left: 50%; bottom: 22px; translate: -50% 0; width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; color: var(--gf-citron); border: 1px solid var(--gf-line-2);
  background: rgba(4, 20, 10, .45); animation: gf-bob 2.2s ease-in-out infinite;
}
@keyframes gf-bob { 50% { transform: translateY(7px); } }

/* staged entrance once the curtain parts */
.js .hero__rise { opacity: 0; transform: translateY(30px); }
html.is-open .hero__rise { animation: gf-rise 1s var(--gf-ease) calc(var(--t, 1) * 1.75s + var(--d) * .13s) forwards; }
@keyframes gf-rise { to { opacity: 1; transform: none; } }

@media (max-width: 700px) {
  .hero { align-items: flex-end; }
  .hero__bg { inset: 0 0 auto 0; height: 66vh; height: 66svh; }
  .hero__bg img { object-position: 50% 22%; }
  .js .hero__bg img { transform-origin: 50% 40%; }
  .hero__shade {
    inset: 0 0 auto 0; height: 66vh; height: 66svh;
    background: linear-gradient(180deg, rgba(4, 20, 10, .62) 0%, rgba(4, 20, 10, 0) 17%, rgba(4, 20, 10, 0) 46%, rgba(4, 20, 10, .82) 76%, #04140a 100%);
  }
  .hero__in { padding-block: 47vh 84px; padding-block: 47svh 84px; }
  .hero__title { font-size: clamp(1.9rem, 8.4vw, 2.6rem); }
  .hero__cta .gf-btn { flex: 1 1 0; --pad-x: 1em; }
  .hero__pills { justify-content: space-between; --gap: 10px; margin-top: 34px; }
  .hero__pills li { flex: 1 1 0; font-size: .66rem; }
  .hero__pills span { width: 48px; height: 48px; }
  .hero__pills .ico { width: 21px; height: 21px; }
}

/* ==========================================================================
   4. SECTION BASICS
   ========================================================================== */
.sec { position: relative; overflow: hidden; padding-block: clamp(72px, 10vw, 132px); }
.sec--light {
  color: #1a1a18;
  background:
    radial-gradient(58% 48% at 0% 0%, rgba(147, 207, 28, .2), rgba(147, 207, 28, 0) 62%),
    radial-gradient(46% 52% at 100% 100%, rgba(41, 89, 6, .13), rgba(41, 89, 6, 0) 64%),
    #f4f9ee;
}
.sec__head { text-align: center; margin: 0 auto clamp(34px, 5vw, 60px); max-width: 760px; }
.sec__head--left { text-align: left; margin: 0; }
.sec__head .eyebrow { justify-content: center; }
.sec__head--left .eyebrow { justify-content: flex-start; }

.eyebrow {
  display: flex; align-items: center; gap: 12px; margin: 0 0 16px;
  font: 600 .72rem/1.2 var(--gf-body); letter-spacing: .26em; text-transform: uppercase; color: var(--gf-lime);
}
.eyebrow::before { content: ""; width: 30px; height: 2px; border-radius: 2px; background: currentColor; flex: none; }
.eyebrow--dark { color: var(--gf-green); }

.h2 { margin: 0 0 .45em; font: 800 clamp(1.95rem, 4.1vw, 3.25rem)/1.08 var(--gf-head); letter-spacing: -.02em; text-wrap: balance; }
.h2 span { background: linear-gradient(180deg, #d3ea3c, #84c41d); -webkit-background-clip: text; background-clip: text; color: transparent; }
.h2--dark { color: #0c2907; }
.h2--dark span { background-image: linear-gradient(180deg, #4c9a14, #295906); }

.lead { margin: 0 0 1.6em; max-width: 46ch; font-size: clamp(1rem, 1.35vw, 1.14rem); color: var(--gf-muted); }
.lead--dark { color: #3c4a37; }

.script { margin: 0; font: 400 clamp(1.35rem, 2.6vw, 1.9rem)/1.2 var(--gf-script); color: var(--gf-gold); transform: rotate(-2.5deg); transform-origin: left; }

/* scroll reveal */
.js .reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s var(--gf-ease), transform .9s var(--gf-ease); transition-delay: calc(var(--i, 0) * 90ms); }
.js .reveal.in { opacity: 1; transform: none; }

/* ==========================================================================
   5. ABOUT
   ========================================================================== */
.about__grid { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1fr); gap: clamp(30px, 6vw, 88px); align-items: center; }
.about__art { position: relative; margin: 0; isolation: isolate; }
.about__art::before {
  content: ""; position: absolute; inset: 22px -22px -22px 22px; z-index: -1; border-radius: 34px;
  background: linear-gradient(135deg, #dfe906, #93cf1c 50%, #295906);
}
.about__art img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 42%; border-radius: 34px;
  box-shadow: 0 40px 70px -34px rgba(12, 50, 8, .75);
}
.about__focus { margin: 0 0 14px; font: 700 1.12rem/1 var(--gf-head); color: var(--gf-green); }
.focus { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(10px, 1.6vw, 18px); }
.focus li {
  padding: 18px 8px 16px; text-align: center; border-radius: 22px; background: #fff;
  border: 1px solid rgba(41, 89, 6, .16); box-shadow: 0 18px 34px -24px rgba(20, 60, 10, .6);
  transition: transform .4s var(--gf-ease), box-shadow .4s var(--gf-ease), opacity .9s var(--gf-ease);
}
.focus li:hover { transform: translateY(-6px); box-shadow: 0 28px 44px -24px rgba(20, 60, 10, .7); }
.focus img { width: clamp(62px, 8vw, 98px); height: auto; margin: 0 auto 10px; }
.focus strong { display: block; font: 600 clamp(.72rem, 1.05vw, .88rem)/1.28 var(--gf-head); color: #0f3206; }

@media (max-width: 860px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__art { margin-right: 16px; }
  .about__art::before { inset: 14px -14px -14px 14px; border-radius: 26px; }
  .about__art img { aspect-ratio: 1 / 1; border-radius: 26px; }
}

/* ==========================================================================
   6. VISION
   ========================================================================== */
.vision { background: radial-gradient(70% 100% at 0% 50%, #0d3517 0%, var(--gf-night) 72%); }
.vision__art { position: absolute; inset: 0 0 0 auto; width: 54%; }
.vision__art img {
  width: 100%; height: 100%; object-fit: cover; object-position: 42% 50%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 42%); mask-image: linear-gradient(90deg, transparent 0%, #000 42%);
}
.vision__copy { max-width: 560px; }
.chips { list-style: none; margin: 0 0 30px; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.chips li {
  display: flex; align-items: center; gap: 13px; padding: 13px 14px; border-radius: 20px;
  background: linear-gradient(135deg, rgba(147, 207, 28, .13), rgba(255, 255, 255, .02));
  border: 1px solid var(--gf-line); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.chips span {
  width: 50px; height: 50px; flex: none; border-radius: 50%; display: grid; place-items: center; color: var(--gf-citron);
  background: radial-gradient(circle at 50% 30%, #2f7d22, #0a2c12);
  box-shadow: 0 0 0 2px var(--gf-gold), 0 6px 16px rgba(0, 0, 0, .45);
}
.chips .ico { width: 23px; height: 23px; }
.chips strong { display: block; font: 600 .92rem/1.2 var(--gf-head); }
.chips em { display: block; margin-top: 3px; font-style: normal; font-size: .76rem; line-height: 1.3; color: var(--gf-muted); }

@media (max-width: 860px) {
  .vision { padding-top: 0; }
  .vision__art { position: relative; width: 100%; aspect-ratio: 5 / 4; margin-bottom: -40px; }
  .vision__art img { object-position: 50% 38%; -webkit-mask-image: linear-gradient(180deg, #000 58%, transparent); mask-image: linear-gradient(180deg, #000 58%, transparent); }
  .vision__copy { max-width: none; }
}
@media (max-width: 460px) { .chips { grid-template-columns: 1fr; } }

/* ==========================================================================
   7. JOURNEY
   ========================================================================== */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 2.6vw, 34px); }
.step {
  position: relative; border-radius: 26px; background: #fff; border: 1px solid rgba(41, 89, 6, .13);
  box-shadow: 0 30px 56px -36px rgba(20, 60, 10, .7);
  transition: transform .45s var(--gf-ease), box-shadow .45s var(--gf-ease), opacity .9s var(--gf-ease);
}
.step:hover { transform: translateY(-8px); box-shadow: 0 40px 64px -34px rgba(20, 60, 10, .8); }
.step__img { aspect-ratio: 16 / 10; overflow: hidden; border-radius: 25px 25px 0 0; }
.step__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--gf-ease); }
.step:hover .step__img img { transform: scale(1.07); }
.step__body { display: flex; align-items: center; gap: 15px; padding: 18px 22px 22px; }
.step__body b {
  font: 800 2.2rem/1 var(--gf-head); letter-spacing: -.03em;
  background: linear-gradient(180deg, #a5d82a, #2f7a0c); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.step__body h3 { margin: 0; font: 700 1.04rem/1.2 var(--gf-head); color: #0c2907; }
.step__body p { margin: 3px 0 0; font-size: .84rem; color: #55664f; }
/* chevron connector between cards */
.step + .step::before {
  content: ""; position: absolute; z-index: 2; top: 31%; left: calc(clamp(18px, 2.6vw, 34px) / -2); width: 38px; height: 38px;
  translate: -50% -50%; border-radius: 50%; background: var(--gf-grad) ; box-shadow: 0 8px 18px -6px rgba(60, 120, 10, .8), 0 0 0 5px #f4f9ee;
}
.step + .step::after {
  content: ""; position: absolute; z-index: 3; top: 31%; left: calc(clamp(18px, 2.6vw, 34px) / -2); width: 9px; height: 9px;
  translate: -70% -50%; rotate: 45deg; border-top: 2.5px solid #0c2907; border-right: 2.5px solid #0c2907;
}
@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; gap: 30px; }
  .step + .step::before { top: -15px; left: 50%; }
  .step + .step::after  { top: -15px; left: 50%; translate: -50% -70%; rotate: 135deg; }
}

/* ==========================================================================
   8. COMMERCIAL ROADMAP
   ========================================================================== */
.road { background: linear-gradient(180deg, #071f0e 0%, var(--gf-night) 100%); }
.road__rail {
  --edge: max(clamp(18px, 4vw, 40px), calc((100vw - 1240px) / 2 + clamp(18px, 4vw, 40px)));
  overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory; scrollbar-width: none;
  padding: 6px var(--edge) 10px; scroll-padding-inline: var(--edge);
}
.road__rail::-webkit-scrollbar { display: none; }
.road__track { list-style: none; margin: 0; padding: 0; display: grid; grid-auto-flow: column; grid-auto-columns: minmax(240px, 72vw); gap: 16px; }
.tile {
  position: relative; overflow: hidden; border-radius: 24px; aspect-ratio: 4 / 3; scroll-snap-align: center;
  border: 1px solid var(--gf-line); background: var(--gf-forest);
}
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--gf-ease); }
.tile:hover img { transform: scale(1.08); }
.tile div { position: absolute; inset: auto 0 0 0; padding: 64px 18px 16px; background: linear-gradient(0deg, rgba(3, 16, 8, .96) 8%, rgba(3, 16, 8, 0)); }
.tile b { font: 700 .74rem/1 var(--gf-head); letter-spacing: .24em; color: var(--gf-citron); }
.tile h3 { margin: 6px 0 0; font: 600 1.02rem/1.2 var(--gf-head); }
.tile::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(223, 233, 6, 0); transition: box-shadow .4s;
}
.tile:hover::after { box-shadow: inset 0 0 0 1.5px rgba(223, 233, 6, .6); }
@media (min-width: 1100px) {
  .road__track { grid-auto-flow: row; grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .tile { aspect-ratio: 4 / 5; }
}
.tags { list-style: none; margin: 34px 0 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.tags li { padding: .52em 1.15em; border-radius: 999px; font: 500 .78rem/1.2 var(--gf-body); color: var(--gf-muted); border: 1px solid var(--gf-line-2); background: rgba(255, 255, 255, .03); }

/* ==========================================================================
   9. BUSINESS PLAN DECK
   ========================================================================== */
.deck { background: radial-gradient(80% 60% at 50% 0%, #0e3a19 0%, var(--gf-night) 72%); }
.deck__head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 20px; margin-bottom: clamp(24px, 4vw, 40px); }
.deck__head .h2 { margin-bottom: 0; }
.deck__tools { display: flex; align-items: center; gap: 10px; }
.deck__nav {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; cursor: pointer;
  border: 1px solid var(--gf-line-2); background: rgba(255, 255, 255, .05); transition: background-color .25s, color .25s, border-color .25s, opacity .25s;
}
.deck__nav:hover { background: var(--gf-lime); border-color: var(--gf-lime); color: #06240c; }
.deck__nav:disabled { opacity: .35; cursor: default; pointer-events: none; }

.deck__rail {
  --edge: max(clamp(18px, 4vw, 40px), calc((100vw - 1240px) / 2 + clamp(18px, 4vw, 40px)));
  overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory; scrollbar-width: none;
  padding: 12px var(--edge) 34px; scroll-padding-inline: var(--edge);
}
.deck__rail::-webkit-scrollbar { display: none; }
.deck__track { list-style: none; margin: 0; padding: 0; display: flex; gap: clamp(14px, 2vw, 24px); }
.deck__track li { flex: 0 0 min(82vw, 600px); scroll-snap-align: start; }
.deck__track a {
  position: relative; display: block; overflow: hidden; border-radius: 22px; aspect-ratio: 16 / 9; background: var(--gf-forest);
  border: 1px solid var(--gf-line-2); box-shadow: 0 34px 60px -34px #000; cursor: zoom-in;
  transition: transform .45s var(--gf-ease), border-color .3s, box-shadow .45s var(--gf-ease);
}
.deck__track a:hover { transform: translateY(-8px); border-color: rgba(223, 233, 6, .7); box-shadow: 0 44px 70px -34px #000, 0 0 50px -14px rgba(147, 207, 28, .5); }
.deck__track img { width: 100%; height: 100%; object-fit: cover; }
.deck__track a::after {
  content: attr(data-n) " / 17"; position: absolute; right: 12px; bottom: 12px; padding: .38em .8em; border-radius: 999px;
  font: 600 .7rem/1 var(--gf-head); color: #fff; background: rgba(3, 16, 8, .72); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.deck__hint { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 0; font-size: .8rem; color: var(--gf-dim); }
.deck__hint .ico { width: 15px; height: 15px; }

/* ==========================================================================
   10. CTA
   ========================================================================== */
.cta { padding-top: clamp(30px, 5vw, 60px); }
.cta__card {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); min-height: 440px; overflow: hidden; border-radius: 36px;
  background: linear-gradient(120deg, #0d3517, #051a0b 70%); border: 1px solid var(--gf-line-2); box-shadow: 0 60px 110px -60px #000;
}
.cta__copy { display: flex; flex-direction: column; justify-content: center; gap: 20px; padding: clamp(28px, 5vw, 68px); }
.cta__copy .h2 { margin: 0; }
.cta__copy .h2 span { background-image: var(--gf-grad-gold); }
.cta__btns { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; }
.cta__art { position: relative; }
.cta__art img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 60% 40%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 36%); mask-image: linear-gradient(90deg, transparent 0%, #000 36%);
}
@media (max-width: 860px) {
  .cta__card { grid-template-columns: 1fr; border-radius: 28px; }
  .cta__art { order: -1; aspect-ratio: 4 / 3; }
  .cta__art img { -webkit-mask-image: linear-gradient(180deg, #000 55%, transparent); mask-image: linear-gradient(180deg, #000 55%, transparent); }
  .cta__copy { padding-top: 6px; }
  .cta__btns .gf-btn { flex: 1 1 auto; }
}

/* ==========================================================================
   11. FOOTER
   ========================================================================== */
.foot { background: #020d06; border-top: 1px solid var(--gf-line); padding-block: 58px 26px; font-size: .88rem; color: var(--gf-muted); }
.foot__grid { display: grid; grid-template-columns: auto minmax(0, 1.5fr) auto auto; gap: 30px clamp(24px, 4vw, 60px); align-items: start; }
.foot__brand img { width: 240px; max-width: 100%; height: auto; }
.foot__item { display: flex; gap: 13px; font-style: normal; line-height: 1.55; }
.foot__item > span {
  width: 42px; height: 42px; flex: none; border-radius: 50%; display: grid; place-items: center; color: var(--gf-citron);
  border: 1px solid rgba(223, 233, 6, .4); background: rgba(147, 207, 28, .08);
}
.foot__item strong { display: block; margin-bottom: 3px; font: 600 .74rem/1.2 var(--gf-head); letter-spacing: .12em; text-transform: uppercase; color: var(--gf-lime); }
.foot__item a { color: var(--gf-text); overflow-wrap: anywhere; }
.foot__item a:hover { color: var(--gf-citron); }
.foot__base {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 6px 24px; margin-top: 42px; padding-top: 20px;
  border-top: 1px solid var(--gf-line); font-size: .76rem; color: var(--gf-dim);
}
.foot__base p { margin: 0; }
@media (max-width: 960px) { .foot__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot__grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   12. LIGHTBOX
   ========================================================================== */
.lb {
  position: fixed; inset: 0; z-index: 900; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 12px;
  padding: 16px; background: rgba(2, 10, 5, .95); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  animation: gf-lb-in .3s ease;
}
.lb[hidden] { display: none; }
@keyframes gf-lb-in { from { opacity: 0; } }
.lb__fig { margin: 0; min-width: 0; display: grid; justify-items: center; gap: 12px; }
.lb__fig img {
  width: auto; height: auto; max-width: 100%; max-height: 84vh; max-height: 84svh; border-radius: 14px;
  box-shadow: 0 40px 100px -20px #000; cursor: zoom-in; background: var(--gf-forest);
}
.lb__fig figcaption { font-size: .82rem; color: var(--gf-muted); text-align: center; }
.lb__btn {
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; cursor: pointer;
  border: 1px solid var(--gf-line-2); background: rgba(255, 255, 255, .07); transition: background-color .25s, color .25s;
}
.lb__btn:hover { background: var(--gf-lime); color: #06240c; }
.lb__close { position: absolute; top: 14px; right: 14px; z-index: 2; }
/* tap-to-zoom: lets phone users pan around a landscape slide */
.lb.is-zoom .lb__fig { overflow: auto; max-height: 86svh; justify-items: start; }
.lb.is-zoom .lb__fig img { max-width: none; max-height: none; width: 230vw; cursor: zoom-out; border-radius: 8px; }
@media (max-width: 700px) {
  .lb { grid-template-columns: minmax(0, 1fr); padding: 10px; }
  .lb__prev, .lb__next { position: absolute; bottom: 18px; z-index: 2; }
  .lb__prev { left: 18px; } .lb__next { right: 18px; }
}
