/* ============================================================
   ФГ "Бланш" — Cinematic Hero
   Growing mushroom + drifting spores + parallax + aurora
   ============================================================ */

.hxhero {
  position: relative;
  overflow: hidden;
  padding: clamp(130px, 17vw, 200px) 0 clamp(70px, 9vw, 120px);
  isolation: isolate;
}

/* ---------- Background layers ---------- */
.hx-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }

.hx-aurora {
  position: absolute; inset: -20%;
  background:
    radial-gradient(45% 45% at 18% 22%, rgba(34,197,94,.30), transparent 60%),
    radial-gradient(40% 40% at 82% 18%, rgba(234,179,8,.22), transparent 60%),
    radial-gradient(50% 50% at 70% 80%, rgba(22,163,74,.22), transparent 62%),
    radial-gradient(40% 40% at 25% 85%, rgba(202,138,4,.16), transparent 60%);
  filter: blur(40px);
  background-size: 200% 200%;
  animation: hx-aurora 18s ease-in-out infinite alternate;
  opacity: .9;
}
@keyframes hx-aurora {
  0%   { background-position: 0% 0%, 100% 0%, 100% 100%, 0% 100%; }
  100% { background-position: 30% 20%, 70% 30%, 60% 70%, 30% 80%; }
}

.hx-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(21,128,61,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21,128,61,.06) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 65% 42%, #000, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 65% 42%, #000, transparent 72%);
}

/* ---------- Spores ---------- */
.hx-spores { position: absolute; inset: 0; }
.hx-spore {
  position: absolute; bottom: -10px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff, var(--green-500));
  opacity: 0;
  will-change: transform, opacity;
  animation-name: hx-drift;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes hx-drift {
  0%   { transform: translate(0, 0) scale(.6); opacity: 0; }
  10%  { opacity: var(--op, .6); }
  90%  { opacity: var(--op, .6); }
  100% { transform: translate(var(--dx, 20px), calc(-1 * var(--rise, 90vh))) scale(1); opacity: 0; }
}

/* ---------- Copy column ---------- */
.hx-copy { position: relative; z-index: 2; }

.hx-title { margin: 18px 0 0; }
.hx-word {
  display: inline-block;
  white-space: pre;
  opacity: 0;
  transform: translateY(28px) rotate(2deg);
  will-change: transform, opacity;
}
.hx-grad {
  background: linear-gradient(100deg, var(--green-600), var(--green-700));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hx-grad--gold {
  background: linear-gradient(100deg, var(--gold-500), var(--gold-700));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* preset hidden state for JS-driven entrance */
.hx-fade { opacity: 0; transform: translateY(22px); will-change: transform, opacity; }

/* ---------- Stage (art) ---------- */
.hx-stage {
  position: relative; z-index: 1;
  aspect-ratio: 1/1;
  display: grid; place-items: center;
  perspective: 1000px;
}
.hx-stage__inner {
  position: relative; width: 100%; height: 100%;
  display: grid; place-items: center;
  transform-style: preserve-3d;
}

/* circular backdrop */
.hx-disc {
  position: absolute; width: 78%; aspect-ratio: 1/1; border-radius: 50%;
  background:
    radial-gradient(circle at 38% 30%, rgba(255,255,255,.85), rgba(240,253,244,.5) 45%, rgba(220,252,231,.25) 70%, transparent 72%);
  box-shadow: inset 0 0 60px rgba(21,128,61,.10), 0 40px 80px -30px rgba(20,83,45,.35);
}
.hx-glow {
  position: absolute; width: 72%; aspect-ratio: 1/1; border-radius: 50%;
  background: radial-gradient(circle at 42% 38%, rgba(255,245,214,.55), rgba(234,179,8,.18) 45%, transparent 68%);
  filter: blur(26px);
}

/* rotating rings (subtle) */
.hx-ring { position: absolute; border-radius: 50%; }
.hx-ring--1 {
  width: 86%; aspect-ratio: 1/1;
  border: 1px dashed rgba(21,128,61,.16);
  animation: hx-spin 38s linear infinite;
}
.hx-ring--2 {
  width: 67%; aspect-ratio: 1/1;
  border: 1px solid rgba(202,138,4,.13);
  animation: hx-spin 28s linear infinite reverse;
}
.hx-ring--2::before {
  content: ""; position: absolute; top: -4px; left: 50%; width: 7px; height: 7px;
  margin-left: -3.5px; border-radius: 50%;
  background: var(--gold-500); box-shadow: 0 0 10px rgba(202,138,4,.6); opacity: .7;
}
@keyframes hx-spin { to { transform: rotate(360deg); } }

/* orbit dots (faint drifting spores) */
.hx-orbit { position: absolute; width: 92%; aspect-ratio: 1/1; animation: hx-spin 50s linear infinite; opacity: .6; }
.hx-orbit span {
  position: absolute; width: 7px; height: 7px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff, var(--green-500));
  box-shadow: 0 0 8px rgba(34,197,94,.5);
}
.hx-orbit span:nth-child(1){ top: 4%; left: 50%; }
.hx-orbit span:nth-child(2){ top: 50%; right: 2%; width: 5px; height: 5px; background: radial-gradient(circle at 35% 30%, #fff, var(--gold-500)); }
.hx-orbit span:nth-child(3){ bottom: 8%; left: 22%; width: 5px; height: 5px; }

/* the mushroom */
.hx-mushroom { position: relative; width: 56%; max-width: 320px; will-change: transform; }
.hx-mushroom svg { width: 100%; height: auto; overflow: visible; display: block; filter: drop-shadow(0 22px 28px rgba(20,83,45,.28)); }

#mh-cap   { transform-box: fill-box; transform-origin: 50% 100%; }
#mh-stem  { transform-box: fill-box; transform-origin: 50% 100%; }
#mh-gills { transform-box: fill-box; transform-origin: 50% 0%; }
.mh-spot  { transform-box: fill-box; transform-origin: 50% 50%; }

/* floating glass cards */
.hx-card {
  position: absolute; z-index: 3;
  background: rgba(255,255,255,.78); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 18px; padding: 14px 16px; width: 196px;
  box-shadow: 0 18px 40px -14px rgba(20,83,45,.4);
  will-change: transform;
}
.hx-card__row { display: flex; align-items: center; gap: 10px; }
.hx-card__ic { width: 38px; height: 38px; border-radius: 11px; display: flex; align-items: center; justify-content: center; flex: none; }
.hx-card__ic svg { width: 20px; height: 20px; }
.hx-card strong { font-family: 'Rubik', sans-serif; font-size: 14.5px; color: var(--green-900); display: block; line-height: 1.1; }
.hx-card span.sub { font-size: 12px; color: var(--ink-soft); }
.hx-card--dried { left: -6%; bottom: 12%; }
.hx-card--dried .hx-card__ic { background: var(--gold-100); color: var(--gold-700); }
.hx-card--alu   { right: -8%; top: 14%; }
.hx-card--alu .hx-card__ic { background: var(--steel-200); color: var(--steel-700); }

/* small chip */
.hx-chip {
  position: absolute; z-index: 3; top: 6%; left: 6%;
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--green-700); color: #fff;
  font-family: 'Rubik', sans-serif; font-weight: 600; font-size: 12.5px;
  padding: 8px 14px; border-radius: 99px; box-shadow: 0 12px 26px -8px rgba(21,128,61,.6);
  will-change: transform;
}
.hx-chip .dot { width: 8px; height: 8px; border-radius: 50%; background: #86efac; box-shadow: 0 0 0 0 rgba(134,239,172,.7); animation: hx-pulse 2s ease-out infinite; }
@keyframes hx-pulse { 0%{box-shadow:0 0 0 0 rgba(134,239,172,.7);} 70%{box-shadow:0 0 0 10px rgba(134,239,172,0);} 100%{box-shadow:0 0 0 0 rgba(134,239,172,0);} }

/* scroll hint */
.hx-scroll-hint {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: 'Rubik', sans-serif; font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-soft); opacity: .7;
}
.hx-scroll-hint .mouse { width: 24px; height: 38px; border: 2px solid var(--green-700); border-radius: 14px; position: relative; }
.hx-scroll-hint .mouse::before { content:""; position:absolute; top:7px; left:50%; width:4px; height:8px; margin-left:-2px; border-radius:3px; background: var(--green-700); animation: hx-wheel 1.6s ease-in-out infinite; }
@keyframes hx-wheel { 0%{ transform: translateY(0); opacity:1;} 60%{ transform: translateY(10px); opacity:0;} 100%{opacity:0;} }

/* ---------- Responsive ---------- */
@media (max-width: 900px){
  .hx-stage { max-width: 460px; margin: 0 auto 8px; }
  .hx-card { width: 168px; }
  .hx-scroll-hint { display: none; }
}
@media (max-width: 680px){
  .hx-card--dried { left: -2%; bottom: 6%; }
  .hx-card--alu { right: -2%; top: 4%; }
  .hx-card { width: 150px; padding: 11px 13px; }
  .hx-chip { display: none; }
}

@media (prefers-reduced-motion: reduce){
  .hx-aurora, .hx-ring--1, .hx-ring--2, .hx-orbit, .hx-chip .dot, .hx-scroll-hint .mouse::before { animation: none !important; }
  .hx-word, .hx-fade { opacity: 1 !important; transform: none !important; }
  .hx-spore { display: none !important; }
}

/* ============================================================
   INTRO OVERLAY (cinematic load reveal)
   ============================================================ */
.intro {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 50% 38%, #1c7040, #0f4727 68%, #093a1f);
  overflow: hidden; will-change: clip-path, opacity;
  clip-path: inset(0 0 0 0);
}
.intro.is-done { pointer-events: none; }
.intro::before {
  content: ""; position: absolute; inset: -20%;
  background:
    radial-gradient(40% 40% at 30% 30%, rgba(234,179,8,.18), transparent 60%),
    radial-gradient(40% 40% at 72% 68%, rgba(134,239,172,.18), transparent 60%);
  filter: blur(30px);
}
.intro__inner { position: relative; z-index: 2; text-align: center; }
.intro__mark { width: 132px; height: 132px; margin: 0 auto; opacity: 0; }
.intro__mark svg { width: 100%; height: 100%; filter: drop-shadow(0 14px 34px rgba(0,0,0,.45)); }
.intro__name { font-family: 'Rubik', sans-serif; font-weight: 600; color: #fff; font-size: clamp(30px, 6vw, 44px); letter-spacing: .05em; margin-top: 20px; opacity: 0; }
.intro__tag { font-family: 'Rubik', sans-serif; color: var(--gold-400); font-size: 12px; letter-spacing: .3em; text-transform: uppercase; margin-top: 10px; opacity: 0; }
.intro__spores { position: absolute; inset: 0; pointer-events: none; }
.intro__spore { position: absolute; left: 50%; top: 42%; width: 9px; height: 9px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #fff, #86efac); opacity: 0; }
.intro__skip {
  position: absolute; bottom: 26px; right: 28px; z-index: 3;
  color: rgba(255,255,255,.75); font-family: 'Rubik', sans-serif; font-size: 13px; letter-spacing: .08em;
  cursor: pointer; border: 1px solid rgba(255,255,255,.28); padding: 8px 18px; border-radius: 99px;
  transition: all .2s var(--ease);
}
.intro__skip:hover { background: rgba(255,255,255,.12); color: #fff; }
.intro-hidden .intro { display: none !important; }

/* ============================================================
   SCROLL JOURNEY (sticky scrub — mushroom life cycle)
   ============================================================ */
.journey { position: relative; height: 300vh; background: var(--green-50); }
.journey__sticky {
  position: sticky; top: 0; height: 100vh; display: flex; align-items: center; overflow: hidden;
}
.journey__sticky::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 40%, rgba(202,138,4,.14));
  opacity: var(--jp, 0); transition: opacity .1s linear;
}
.journey__layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px,5vw,64px); align-items: center; width: 100%; position: relative; z-index: 1; }

.journey__copy { position: relative; z-index: 2; }
.journey__steps { display: flex; flex-direction: column; gap: 12px; margin: 26px 0 30px; }
.jstep {
  display: flex; gap: 14px; align-items: center; padding: 14px 18px; border-radius: 16px;
  border: 1px solid transparent; opacity: .42; transform: translateX(0);
  transition: all .45s var(--ease);
}
.jstep.active { opacity: 1; background: #fff; border-color: var(--green-200, #bbf7d0); box-shadow: var(--shadow-md); transform: translateX(8px); }
.jstep__ic { width: 46px; height: 46px; border-radius: 13px; flex: none; display: flex; align-items: center; justify-content: center; background: var(--green-100); color: var(--green-700); transition: all .45s var(--ease); }
.jstep.active .jstep__ic { background: var(--gold-100); color: var(--gold-700); transform: scale(1.06); }
.jstep__ic svg { width: 24px; height: 24px; }
.jstep__t strong { display: block; font-family: 'Rubik', sans-serif; font-weight: 600; color: var(--green-900); line-height: 1.1; }
.jstep__t span { font-size: 14px; color: var(--ink-soft); }

.journey__stage { position: relative; display: flex; justify-content: center; align-items: center; min-height: 60vh; }
.jscene { position: relative; width: min(460px, 86%); aspect-ratio: 1/1; }
.jscene__disc {
  position: absolute; inset: 8%; border-radius: 50%;
  background: radial-gradient(circle at 40% 32%, rgba(255,255,255,.85), rgba(240,253,244,.45) 50%, transparent 72%);
  box-shadow: inset 0 0 60px rgba(21,128,61,.10), 0 40px 80px -34px rgba(20,83,45,.3);
}
.jscene__warm { position: absolute; inset: 4%; border-radius: 50%; background: radial-gradient(circle at 50% 46%, rgba(234,179,8,.5), rgba(202,138,4,.18) 45%, transparent 68%); opacity: 0; filter: blur(8px); pointer-events: none; }
.jscene__soil { position: absolute; left: 14%; right: 14%; bottom: 12%; height: 12%; border-radius: 50%; background: radial-gradient(circle at 50% 20%, #4a3622, #231708); box-shadow: 0 10px 22px -8px rgba(0,0,0,.5); opacity: 0; }
.jscene__soil::before, .jscene__soil::after { content: ""; position: absolute; border-radius: 50%; background: #6b5132; opacity: .55; }
.jscene__soil::before { width: 12%; height: 22%; left: 22%; top: 30%; }
.jscene__soil::after { width: 9%; height: 18%; right: 26%; top: 40%; background: #5c4628; }
.jscene__spores { position: absolute; inset: 0; pointer-events: none; }
.jspore { position: absolute; bottom: 16%; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #fff, var(--green-500)); opacity: 0; animation: hx-drift linear infinite; --dx: 14px; --rise: 60vh; --op: .5; }
.jscene__fresh { position: absolute; left: 12%; right: 12%; bottom: 12%; transform-origin: 50% 100%; will-change: transform, opacity; }
.jscene__dried { position: absolute; inset: 14%; opacity: 0; transform-origin: 50% 50%; will-change: transform, opacity; display: grid; place-items: center; }
.jscene__fresh svg, .jscene__dried svg { width: 100%; height: auto; overflow: visible; }
.jscene__fresh svg { filter: drop-shadow(0 18px 24px rgba(20,83,45,.26)); }

/* vertical progress rail */
.jrail { position: absolute; left: -2px; top: 12%; bottom: 12%; width: 4px; border-radius: 4px; background: rgba(20,83,45,.12); z-index: 3; }
.jrail__fill { position: absolute; top: 0; left: 0; width: 100%; height: 0; border-radius: 4px; background: linear-gradient(var(--green-500), var(--gold-500)); transition: height .1s linear; }
.jrail__dot { position: absolute; left: 50%; width: 14px; height: 14px; margin-left: -7px; border-radius: 50%; background: #fff; border: 2px solid var(--green-200, #bbf7d0); transform: translateY(-50%); transition: all .3s var(--ease); }
.jrail__dot.active { border-color: var(--gold-500); background: var(--gold-500); box-shadow: 0 0 0 5px rgba(202,138,4,.18); }
.jrail__dot:nth-child(1){ top: 0%; } .jrail__dot:nth-child(2){ top: 33%; }
.jrail__dot:nth-child(3){ top: 66%; } .jrail__dot:nth-child(4){ top: 100%; }

@media (max-width: 900px){
  /* Mobile: scene becomes the hero of the section, big & centred.
     Compact 2x2 stepper makes the scroll-scrub obviously visible. */
  .journey { height: 260vh; }
  .journey__sticky { height: 100vh; height: 100svh; }
  .journey__layout {
    grid-template-columns: 1fr; gap: 4px; height: 100vh; height: 100svh;
    align-content: center; justify-items: center; text-align: center;
  }
  .journey__stage { order: 1; min-height: auto; width: 100%; }
  .journey__copy { order: 2; width: 100%; max-width: 460px; }
  .journey__copy .eyebrow { justify-content: center; }
  .journey__copy .h1 { font-size: clamp(1.4rem, 6vw, 1.9rem); margin: 4px 0 2px; }
  .journey__copy > p { display: none; }            /* hide long description on mobile */

  .jscene { width: min(360px, 80vw); }

  /* steps -> compact 2x2 chips */
  .journey__steps { flex-direction: row; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 14px 0 16px; }
  .jstep { width: calc(50% - 6px); padding: 9px 11px; gap: 10px; border-radius: 13px; }
  .jstep.active { transform: none; }
  .jstep__ic { width: 34px; height: 34px; border-radius: 10px; }
  .jstep__ic svg { width: 18px; height: 18px; }
  .jstep__t { text-align: left; }
  .jstep__t strong { font-size: 12.5px; }
  .jstep__t span { display: none; }                /* hide subtitle, keep title */

  .jrail { display: none; }                         /* dots redundant with active chips */
}
@media (max-width: 400px){
  .jscene { width: 84vw; }
  .jstep { width: 100%; }
}
/* short phones — keep everything inside one screen */
@media (max-width: 900px) and (max-height: 740px){
  .journey__copy .eyebrow { display: none; }
  .journey__copy .h1 { font-size: 1.3rem; margin: 2px 0; }
  .jscene { width: min(260px, 58vw); }
  .journey__steps { margin: 10px 0 12px; gap: 6px; }
  .jstep { padding: 7px 10px; }
  .jstep__ic { width: 30px; height: 30px; }
}
@media (prefers-reduced-motion: reduce){
  .journey { height: auto; }
  .journey__sticky { position: static; height: auto; padding: 64px 0; }
  .journey__layout { height: auto; }
  .jspore { display: none; }
}

/* clickable hero cards */
.hx-card { cursor: pointer; text-decoration: none; transition: box-shadow .25s var(--ease); }
.hx-card:hover { box-shadow: 0 24px 50px -14px rgba(20,83,45,.5); }
.hx-card__go { width: 16px; height: 16px; flex: none; margin-left: auto; color: var(--green-600); opacity: .55; transition: opacity .2s var(--ease), transform .2s var(--ease); }
.hx-card:hover .hx-card__go { opacity: 1; transform: translateX(3px); }
.hx-card--alu .hx-card__go { color: var(--steel-600); }

/* ============================================================
   HERO fit-to-screen tuning (compact vertical rhythm)
   ============================================================ */
.hxhero { padding: clamp(108px, 11vw, 136px) 0 clamp(40px, 5vw, 64px); }
.hxhero .h-display { font-size: clamp(2.05rem, 4.4vw, 3.4rem); line-height: 1.06; }
.hxhero .hx-copy .lead { font-size: clamp(1rem, 1.1vw, 1.1rem); margin-top: 16px; }
.hxhero .hx-title { margin-top: 14px; }
.hx-stage { max-width: 460px; justify-self: center; align-self: center; }
/* tighten the CTA + stats spacing on the hero */
.hxhero .hx-copy > .hx-fade { margin-top: 22px !important; }
.hxhero .hx-copy > .hx-fade:first-of-type { margin-top: 0 !important; }
@media (min-width: 901px) and (max-height: 820px){
  .hxhero { padding-top: clamp(102px, 10vw, 122px); }
  .hxhero .h-display { font-size: clamp(2rem, 3.2vw, 2.9rem); }
  .hxhero .hx-stage { max-width: 430px; }
  .hxhero .hx-copy .lead { font-size: 1rem; margin-top: 14px; }
}

/* ============================================================
   MODERN HERO (editorial split + bento media)  v3
   ============================================================ */
.nhero {
  position: relative; overflow: hidden; isolation: isolate;
  padding: clamp(124px, 13vw, 152px) 0 clamp(48px, 6vw, 76px);
  background: linear-gradient(180deg, var(--green-50) 0%, var(--cream) 70%);
}
.nhero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.nhero__glow { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; }
.nhero__glow--1 { width: 520px; height: 520px; background: radial-gradient(circle, #bbf7d0, transparent 70%); top: -180px; left: -120px; }
.nhero__glow--2 { width: 460px; height: 460px; background: radial-gradient(circle, var(--gold-100), transparent 70%); bottom: -200px; right: -120px; }
.nhero__dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(21,128,61,.08) 1px, transparent 1.4px);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 72%);
  mask-image: linear-gradient(180deg, #000, transparent 72%);
}
.nhero__layout {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.02fr .98fr;
  gap: clamp(28px, 4vw, 56px); align-items: center;
}
.nhero__title {
  font-family: 'Rubik', sans-serif; font-weight: 600; letter-spacing: -.022em;
  line-height: 1.04; font-size: clamp(2.1rem, 4.3vw, 3.5rem);
  margin: 18px 0 0; color: var(--green-900);
}
.nhero .accent-green { color: var(--green-600); }
.nhero .accent-gold { color: var(--gold-600); }
.nhero__lead { font-size: clamp(1.02rem, 1.15vw, 1.16rem); color: var(--ink-soft); max-width: 47ch; margin: 20px 0 0; line-height: 1.62; }
.nhero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.nhero__stats { display: flex; gap: clamp(22px, 3vw, 36px); flex-wrap: wrap; margin-top: 34px; }

/* bento media */
.nhero__media {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.22fr 1fr; grid-template-rows: 1fr 1fr;
  gap: 14px; height: clamp(380px, 42vw, 496px);
}
.nhero__tile { position: relative; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid rgba(255,255,255,.6); }
.nhero__tile--a { grid-row: 1 / span 2; }
.nhero__tile .photo { position: absolute; inset: 0; width: 100%; height: 100%; }
.nhero__tile .ph { border-radius: 0; }
.nhero__cap {
  position: absolute; left: 14px; bottom: 14px; z-index: 4;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  color: var(--green-900); font-family: 'Rubik', sans-serif; font-weight: 600;
  font-size: 12.5px; padding: 6px 13px; border-radius: 99px; box-shadow: var(--shadow-sm);
}

@media (min-width: 901px) and (max-height: 820px){
  .nhero { padding-top: clamp(132px, 11vw, 146px); }
  .nhero__title { font-size: clamp(2rem, 3.4vw, 3rem); }
  .nhero__lead { margin-top: 14px; }
  .nhero__cta { margin-top: 22px; }
  .nhero__stats { margin-top: 24px; }
  .nhero__media { height: clamp(360px, 38vw, 440px); }
}
@media (max-width: 900px){
  .nhero { padding: clamp(104px, 24vw, 128px) 0 48px; }
  .nhero__layout { grid-template-columns: 1fr; gap: 30px; }
  .nhero__media { order: -1; height: clamp(300px, 64vw, 380px); }
  .nhero__lead { max-width: 56ch; }
}
@media (max-width: 420px){
  .nhero__media { height: 320px; gap: 10px; }
  .nhero__cap { font-size: 11.5px; padding: 5px 10px; }
}
@media (prefers-reduced-motion: reduce){
  .nhero__glow { animation: none; }
}

/* ============================================================
   SPLIT HERO — text + one photo, full-screen  (v5)
   ============================================================ */
.shero {
  position: relative; overflow: hidden; isolation: isolate;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  padding: clamp(134px, 16vh, 158px) 0 clamp(40px, 6vh, 64px);
  background: linear-gradient(180deg, var(--green-50) 0%, var(--cream) 72%);
}
.shero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.shero__glow { position: absolute; border-radius: 50%; filter: blur(72px); opacity: .5; }
.shero__glow--1 { width: 520px; height: 520px; background: radial-gradient(circle, #bbf7d0, transparent 70%); top: -180px; left: -130px; }
.shero__glow--2 { width: 440px; height: 440px; background: radial-gradient(circle, var(--gold-100), transparent 70%); bottom: -200px; right: -120px; }
.shero__dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(21,128,61,.07) 1px, transparent 1.4px);
  background-size: 24px 24px;
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 78%);
  mask-image: linear-gradient(180deg, #000, transparent 78%);
}
.shero__layout {
  position: relative; z-index: 1; width: 100%;
  display: grid; grid-template-columns: 1.04fr 1fr;
  gap: clamp(30px, 4.5vw, 64px); align-items: center;
}
.shero__title {
  font-family: 'Rubik', sans-serif; font-weight: 600; letter-spacing: -.022em;
  line-height: 1.05; font-size: clamp(2.3rem, 4.6vw, 3.85rem);
  margin: 18px 0 0; color: var(--green-900);
}
.shero .accent-green { color: var(--green-600); }
.shero .accent-gold { color: var(--gold-600); }
.shero__lead { font-size: clamp(1.04rem, 1.2vw, 1.2rem); color: var(--ink-soft); max-width: 50ch; margin: 22px 0 0; line-height: 1.62; }
.shero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.shero__stats { display: flex; gap: clamp(24px, 3vw, 40px); flex-wrap: wrap; margin-top: 38px; }

.shero__media {
  position: relative; height: clamp(380px, 72vh, 660px);
  border-radius: 28px; overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.6);
}
.shero__media .photo { position: absolute; inset: 0; width: 100%; height: 100%; }
.shero__media .ph { border-radius: 0; }
.shero__badge {
  position: absolute; left: 18px; bottom: 18px; z-index: 4;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  color: var(--green-900); font-family: 'Rubik', sans-serif; font-weight: 600;
  font-size: 13px; padding: 9px 15px; border-radius: 99px; box-shadow: var(--shadow-sm);
}
.shero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-500); }

.shero__scroll {
  position: absolute; left: 50%; bottom: 20px; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--ink-soft); font-family: 'Rubik', sans-serif; font-size: 11px;
  letter-spacing: .18em; text-transform: uppercase; opacity: .65;
}
.shero__scroll svg { width: 20px; height: 20px; animation: shero-bob 1.8s ease-in-out infinite; }
@keyframes shero-bob { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(5px);} }

@media (min-width: 901px) and (max-height: 900px){
  .shero { padding: clamp(122px, 14vh, 138px) 0 clamp(32px, 4vh, 44px); }
  .shero__title { font-size: clamp(1.95rem, 3.1vw, 2.85rem); }
  .shero__lead { font-size: 1.02rem; margin-top: 14px; }
  .shero__cta { margin-top: 22px; }
  .shero__stats { margin-top: 24px; }
  .shero__media { height: clamp(330px, 58vh, 470px); }
  .shero__scroll { display: none; }
}
@media (min-width: 901px) and (max-height: 720px){
  .shero__title { font-size: clamp(1.8rem, 2.8vw, 2.5rem); }
  .shero__media { height: clamp(300px, 54vh, 420px); }
  .shero__lead { margin-top: 10px; }
}
@media (max-width: 900px){
  .shero { min-height: auto; display: block; padding: clamp(104px, 22vw, 128px) 0 56px; }
  .shero__layout { grid-template-columns: 1fr; gap: 28px; }
  .shero__media { order: -1; height: clamp(260px, 52vw, 360px); }
  .shero__lead { max-width: 58ch; }
  .shero__scroll { display: none; }
}
@media (prefers-reduced-motion: reduce){
  .shero__scroll svg { animation: none; }
}

/* ============================================================
   HERO v7 — refined cinematic: mushroom is the star,
   cards flank the bottom so the cap stays fully visible
   ============================================================ */
.hxhero .hx-stage { max-width: 560px; justify-self: center; }
.hxhero .hx-mushroom { width: 80%; max-width: 440px; }
.hxhero .hx-card { width: 176px; }
.hxhero .hx-card--dried { left: -4%; bottom: 2%; top: auto; }
.hxhero .hx-card--alu   { right: -4%; bottom: 2%; top: auto; }
.hxhero .hx-chip { top: 2%; left: 2%; right: auto; }
.hxhero .hx-disc { width: 86%; }
.hxhero .hx-ring--1 { width: 94%; }
.hxhero .hx-ring--2 { width: 74%; }

@media (min-width: 901px) and (max-height: 820px){
  .hxhero .hx-stage { max-width: 500px; }
  .hxhero .hx-mushroom { width: 76%; }
  .hxhero .hx-card { width: 158px; }
}
@media (max-width: 900px){
  .hxhero .hx-stage { max-width: 440px; }
  .hxhero .hx-mushroom { width: 64%; }
  .hxhero .hx-card { width: 162px; }
  .hxhero .hx-card--dried { left: 0; bottom: 6%; }
  .hxhero .hx-card--alu   { right: 0; bottom: 6%; }
}
@media (max-width: 420px){
  .hxhero .hx-card { width: 144px; padding: 11px 12px; }
  .hxhero .hx-chip { font-size: 11px; padding: 6px 11px; }
}

/* ============================================================
   BULLETPROOF HERO (.bh) — clean split, CSS-only, no JS deps
   text left + big realistic mushroom right. Never piles up.
   ============================================================ */
.bh {
  position: relative; overflow: hidden; isolation: isolate;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  padding: clamp(132px, 15vh, 160px) 0 clamp(40px, 5vh, 64px);
  background: linear-gradient(180deg, var(--green-50) 0%, var(--cream) 72%);
}
.bh__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.bh__glow { position: absolute; border-radius: 50%; filter: blur(72px); opacity: .5; }
.bh__glow--1 { width: 520px; height: 520px; background: radial-gradient(circle, #bbf7d0, transparent 70%); top: -180px; left: -130px; }
.bh__glow--2 { width: 440px; height: 440px; background: radial-gradient(circle, var(--gold-100), transparent 70%); bottom: -200px; right: -120px; }
.bh__dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(21,128,61,.07) 1px, transparent 1.4px);
  background-size: 24px 24px;
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 78%);
  mask-image: linear-gradient(180deg, #000, transparent 78%);
}
.bh__grid {
  position: relative; z-index: 1; width: 100%;
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 4vw, 56px); align-items: center;
}
.bh__title {
  font-family: 'Rubik', sans-serif; font-weight: 600; letter-spacing: -.022em;
  line-height: 1.05; font-size: clamp(2.2rem, 4.5vw, 3.7rem);
  margin: 18px 0 0; color: var(--green-900);
}
.bh__title .ag { color: var(--green-600); }
.bh__title .au { color: var(--gold-600); }
.bh__lead { font-size: clamp(1.02rem, 1.2vw, 1.18rem); color: var(--ink-soft); max-width: 48ch; margin: 20px 0 0; line-height: 1.62; }
.bh__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.bh__stats { display: flex; gap: clamp(22px, 3vw, 40px); flex-wrap: wrap; margin-top: 34px; }

.bh__art { position: relative; display: grid; place-items: center; aspect-ratio: 1 / 1; width: 100%; max-width: 500px; justify-self: center; }
.bh__disc {
  position: absolute; width: 90%; aspect-ratio: 1/1; border-radius: 50%;
  background: radial-gradient(circle at 40% 32%, rgba(255,255,255,.9), rgba(240,253,244,.55) 46%, rgba(220,252,231,.28) 70%, transparent 73%);
  box-shadow: inset 0 0 60px rgba(21,128,61,.10), 0 40px 80px -32px rgba(20,83,45,.32);
}
.bh__ring { position: absolute; width: 96%; aspect-ratio: 1/1; border-radius: 50%; border: 1px dashed rgba(21,128,61,.16); animation: bh-spin 40s linear infinite; }
@keyframes bh-spin { to { transform: rotate(360deg); } }
.bh__mush { position: relative; width: 80%; max-width: 380px; }
.bh__mush svg { width: 100%; height: auto; overflow: visible; display: block; filter: drop-shadow(0 22px 30px rgba(20,83,45,.26)); }

/* entrance — pure CSS, content stays visible if disabled */
@media (prefers-reduced-motion: no-preference){
  .bh__copy > *, .bh__art { opacity: 0; transform: translateY(22px); animation: bh-in .7s var(--ease) forwards; }
  .bh__copy > *:nth-child(1){ animation-delay: .05s; }
  .bh__copy > *:nth-child(2){ animation-delay: .12s; }
  .bh__copy > *:nth-child(3){ animation-delay: .19s; }
  .bh__copy > *:nth-child(4){ animation-delay: .26s; }
  .bh__copy > *:nth-child(5){ animation-delay: .33s; }
  .bh__art { transform: translateY(26px) scale(.97); animation-duration: .9s; animation-delay: .18s; }
}
@keyframes bh-in { to { opacity: 1; transform: none; } }
.bh__ring, .bh__disc { will-change: transform; }

@media (min-width: 901px) and (max-height: 860px){
  .bh { padding-top: clamp(124px, 14vh, 140px); }
  .bh__title { font-size: clamp(2rem, 3.4vw, 3rem); }
  .bh__lead { margin-top: 14px; }
  .bh__cta { margin-top: 22px; }
  .bh__stats { margin-top: 24px; }
  .bh__art { max-width: 420px; }
}
@media (max-width: 900px){
  .bh { min-height: auto; display: block; padding: clamp(104px, 22vw, 128px) 0 52px; }
  .bh__grid { grid-template-columns: 1fr; gap: 28px; }
  .bh__art { order: -1; max-width: 340px; }
  .bh__lead { max-width: 58ch; }
}
@media (prefers-reduced-motion: reduce){
  .bh__ring { animation: none; }
}

/* ============================================================
   BH v11 — restored floating cards (in free corners) + life
   ============================================================ */
.bh__art .bh__disc { width: 84%; }
.bh__art .bh__ring { width: 92%; }
.bh__art .bh__mush { width: 74%; max-width: 360px; }

.bh__card {
  position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.88); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.75); border-radius: 16px; padding: 12px 14px; width: 184px;
  box-shadow: 0 18px 40px -14px rgba(20,83,45,.4); text-decoration: none; cursor: pointer;
  transition: box-shadow .25s var(--ease);
}
.bh__card:hover { box-shadow: 0 24px 52px -14px rgba(20,83,45,.5); }
.bh__card-ic { width: 38px; height: 38px; border-radius: 11px; flex: none; display: flex; align-items: center; justify-content: center; }
.bh__card-ic svg { width: 20px; height: 20px; }
.bh__card-tx strong { font-family: 'Rubik', sans-serif; font-weight: 600; font-size: 14px; color: var(--green-900); display: block; line-height: 1.15; }
.bh__card-tx span { font-size: 12px; color: var(--ink-soft); }
.bh__card-go { width: 16px; height: 16px; flex: none; margin-left: auto; color: var(--green-600); opacity: .55; transition: opacity .2s var(--ease), transform .2s var(--ease); }
.bh__card:hover .bh__card-go { opacity: 1; transform: translateX(3px); }
.bh__card--dried { left: -8%; bottom: 7%; }
.bh__card--dried .bh__card-ic { background: var(--gold-100); color: var(--gold-700); }
.bh__card--alu { right: -8%; top: 7%; }
.bh__card--alu .bh__card-ic { background: var(--steel-200); color: var(--steel-700); }
.bh__card--alu .bh__card-go { color: var(--steel-600); }

.bh__spores { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.bh__spores span { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #fff, var(--green-500)); opacity: 0; }
.bh__spores span:nth-child(1){ left: 20%; bottom: 20%; animation: bh-drift 7s linear infinite; }
.bh__spores span:nth-child(2){ left: 60%; bottom: 26%; width: 5px; height: 5px; animation: bh-drift 9s linear .8s infinite; }
.bh__spores span:nth-child(3){ left: 76%; bottom: 16%; animation: bh-drift 8s linear 2s infinite; }
.bh__spores span:nth-child(4){ left: 40%; bottom: 12%; width: 6px; height: 6px; animation: bh-drift 10s linear 1.4s infinite; }
.bh__spores span:nth-child(5){ left: 52%; bottom: 32%; width: 4px; height: 4px; background: radial-gradient(circle at 35% 30%, #fff, var(--gold-500)); animation: bh-drift 8.5s linear 3s infinite; }
@keyframes bh-drift { 0%{ transform: translateY(0) scale(.6); opacity: 0; } 12%{ opacity: .6; } 85%{ opacity: .45; } 100%{ transform: translateY(-230px) scale(1); opacity: 0; } }

@media (prefers-reduced-motion: no-preference){
  .bh__mush { animation: bh-bob 6s ease-in-out 1.1s infinite; }
  .bh__card--dried { animation: bh-cardin .6s var(--ease) .5s both, bh-float 5.5s ease-in-out 1.2s infinite; }
  .bh__card--alu   { animation: bh-cardin .6s var(--ease) .65s both, bh-float 6.2s ease-in-out 1.5s infinite reverse; }
}
@keyframes bh-bob { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-10px); } }
@keyframes bh-cardin { from{ opacity: 0; } to{ opacity: 1; } }
@keyframes bh-float { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-8px); } }

@media (min-width: 901px) and (max-height: 860px){
  .bh__card { width: 162px; padding: 10px 12px; }
}
@media (max-width: 900px){
  .bh__card { width: 152px; padding: 10px 12px; }
  .bh__card--dried { left: -1%; bottom: 3%; top: auto; }
  .bh__card--alu { right: -1%; bottom: 3%; top: auto; }
  .bh__spores { display: none; }
}
@media (max-width: 420px){
  .bh__card { width: 140px; }
  .bh__card-tx span { display: none; }
}
