/* ==========================================================================
   BETA ENERGY — home page design system (scoped, self-contained)
   Editorial + institutional: Fraunces display over Inter, disciplined greens,
   photography-led. Namespaced with .be- and loaded only on the home layout.
   ========================================================================== */

/* ---- Tokens ------------------------------------------------------------- */
.be-body {
  --be-bg:        #f4f6f3;
  --be-bg-2:      #ffffff;
  --be-bg-soft:   #ebefe9;
  --be-ink:       #10201a;
  --be-ink-2:     #2c3b34;
  --be-ink-soft:  #56655d;
  --be-line:      rgba(16,32,26,.12);
  --be-line-2:    rgba(16,32,26,.07);

  --be-dark:      #061410;
  --be-dark-2:    #08201a;
  --be-forest:    #0d3a29;
  --be-emerald:   #1a8f57;
  --be-emerald-2: #26a866;
  --be-emerald-d: #147a49;
  --be-sage:      #9cc3ac;   /* soft accent on dark (replaces neon) */
  --be-mint:      #d5e9dc;
  --be-cream:     #eef6ef;

  --be-white:     #ffffff;

  --be-radius:    16px;
  --be-radius-sm: 10px;
  --be-radius-lg: 22px;

  --be-shadow-sm: 0 1px 2px rgba(10,26,18,.05), 0 6px 16px -12px rgba(10,26,18,.22);
  --be-shadow:    0 6px 14px -8px rgba(10,26,18,.18), 0 26px 50px -30px rgba(10,26,18,.34);
  --be-shadow-lg: 0 10px 24px -12px rgba(6,20,14,.34), 0 50px 90px -46px rgba(4,16,11,.55);

  --be-maxw:      1200px;
  --be-gutter:    clamp(20px, 5vw, 44px);
  --be-section-y: clamp(76px, 9vw, 148px);

  --be-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --be-sans:    'Inter', 'Segoe UI', system-ui, sans-serif;

  --be-ease:      cubic-bezier(.22,1,.36,1);

  margin: 0;
  background: var(--be-bg);
  color: var(--be-ink);
  font-family: var(--be-sans);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.be-body *, .be-body *::before, .be-body *::after { box-sizing: border-box; }
.be-body img, .be-body svg, .be-body video { display: block; max-width: 100%; }
.be-body a { color: inherit; text-decoration: none; }
.be-body h1,.be-body h2,.be-body h3,.be-body h4 {
  font-family: var(--be-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.012em;
  margin: 0;
  color: var(--be-ink);
  font-optical-sizing: auto;
}
.be-body p { margin: 0; }
.be-body ::selection { background: var(--be-emerald); color: #fff; }

/* ---- Layout helpers ---------------------------------------------------- */
.be-container { width: 100%; max-width: var(--be-maxw); margin-inline: auto; padding-inline: var(--be-gutter); }
.be-container--wide { max-width: 1360px; }
.be-section { padding-block: var(--be-section-y); position: relative; }
.be-section--tight { padding-block: clamp(52px, 6vw, 96px); }
.be-bg-alt { background: var(--be-bg-soft); }

.be-title { font-size: clamp(2rem, 1.2rem + 3.1vw, 3.5rem); }
.be-title--xl { font-size: clamp(2.4rem, 1.1rem + 4.6vw, 4.6rem); }
.be-lead-label { /* small section descriptor, NOT a kicker over a heading */
  display: block; font-family: var(--be-sans); font-weight: 600; font-size: 13px;
  letter-spacing: .02em; color: var(--be-emerald-d);
}
.be-lede { font-size: clamp(1.06rem, .98rem + .5vw, 1.28rem); color: var(--be-ink-soft); line-height: 1.58; max-width: 62ch; }
.be-em { color: var(--be-emerald-d); font-weight: 500; }
.be-serif-i { font-family: var(--be-display); font-style: italic; font-weight: 500; }

/* subtle editorial underline (solid, not a gradient bar) */
.be-underline { position: relative; white-space: nowrap; box-shadow: inset 0 -0.09em 0 var(--be-emerald-2); padding-bottom: .02em; }

/* ---- Buttons ----------------------------------------------------------- */
.be-btn {
  --_bg: var(--be-emerald);
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 100px;
  font-family: var(--be-sans); font-weight: 600; font-size: 15px; letter-spacing: .005em;
  color: #fff; background: var(--_bg); border: 1px solid transparent; cursor: pointer;
  box-shadow: 0 8px 20px -12px rgba(20,122,73,.7);
  transition: transform .28s var(--be-ease), box-shadow .28s var(--be-ease), background .28s var(--be-ease);
  will-change: transform;
}
.be-btn:hover { transform: translateY(-2px); background: var(--be-emerald-2); box-shadow: 0 14px 28px -14px rgba(20,122,73,.75); }
.be-btn:active { transform: translateY(0); }
.be-btn:focus-visible { outline: 2px solid var(--be-emerald-2); outline-offset: 3px; }
.be-btn--ghost { background: transparent; color: var(--be-ink); border-color: var(--be-line); box-shadow: none; }
.be-btn--ghost:hover { background: rgba(16,32,26,.05); border-color: rgba(16,32,26,.2); }
.be-btn--glass {
  background: rgba(255,255,255,.10); color:#fff; border-color: rgba(255,255,255,.34);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); box-shadow: none;
}
.be-btn--glass:hover { background: rgba(255,255,255,.18); }
.be-btn .be-ico { width: 18px; height: 18px; }

.be-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--be-emerald-d); font-size: 15px; }
.be-link .be-ico { width: 17px; height: 17px; transition: transform .25s var(--be-ease); }
.be-link:hover .be-ico { transform: translateX(4px); }
.be-band .be-link, .be-dark .be-link { color: var(--be-sage); }

/* ---- Header ------------------------------------------------------------ */
.be-header { position: fixed; inset: 0 0 auto 0; z-index: 90; transition: background .35s var(--be-ease), box-shadow .35s var(--be-ease); }
.be-header__inner { display: flex; align-items: center; gap: 24px; height: 76px; }
.be-header.is-stuck { background: rgba(247,249,246,.9); backdrop-filter: saturate(150%) blur(14px); -webkit-backdrop-filter: saturate(150%) blur(14px); box-shadow: 0 1px 0 var(--be-line); }
.be-brand { display: inline-flex; align-items: center; gap: 11px; margin-right: auto; }
.be-brand__mark { width: 32px; height: 32px; flex: none; }
.be-brand__name { font-family: var(--be-display); font-weight: 600; letter-spacing: .02em; font-size: 19px; color: #fff; transition: color .35s var(--be-ease); }
.be-brand__name b { font-weight: 600; }
.be-header.is-stuck .be-brand__name { color: var(--be-ink); }

.be-nav { display: flex; align-items: center; gap: 2px; }
.be-nav a { padding: 9px 14px; border-radius: 8px; font-weight: 500; font-size: 15px; color: rgba(255,255,255,.82); transition: color .25s, background .25s; }
.be-nav a:hover { color: #fff; background: rgba(255,255,255,.10); }
.be-header.is-stuck .be-nav a { color: var(--be-ink-2); }
.be-header.is-stuck .be-nav a:hover { color: var(--be-emerald-d); background: rgba(26,143,87,.08); }

.be-header__cta { display: flex; align-items: center; gap: 10px; }
.be-login { font-weight: 600; font-size: 15px; padding: 9px 6px; color: rgba(255,255,255,.9); }
.be-header.is-stuck .be-login { color: var(--be-ink); }
.be-login:hover { color: var(--be-sage); }
.be-header.is-stuck .be-login:hover { color: var(--be-emerald-d); }
.be-header .be-btn { padding: 11px 20px; font-size: 14.5px; }

.be-burger { display: none; width: 46px; height: 46px; border-radius: 12px; border: 1px solid rgba(255,255,255,.28); background: rgba(255,255,255,.08); align-items: center; justify-content: center; cursor: pointer; }
.be-header.is-stuck .be-burger { border-color: var(--be-line); background: rgba(16,32,26,.04); }
.be-burger span { display:block; width: 20px; height: 2px; background: #fff; border-radius: 2px; position: relative; }
.be-burger span::before,.be-burger span::after{ content:""; position:absolute; left:0; width:20px; height:2px; background:#fff; border-radius:2px; }
.be-burger span::before{ top:-6px; } .be-burger span::after{ top:6px; }
.be-header.is-stuck .be-burger span, .be-header.is-stuck .be-burger span::before, .be-header.is-stuck .be-burger span::after { background: var(--be-ink); }

.be-drawer { position: fixed; inset: 0; z-index: 100; display: none; background: rgba(6,20,14,.5); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.be-drawer.is-open { display: block; }
.be-drawer__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(86vw, 350px);
  background: #071c15; border-left: 1px solid rgba(255,255,255,.08);
  padding: 24px 26px calc(26px + env(safe-area-inset-bottom)); display: flex; flex-direction: column; gap: 4px;
  transform: translateX(100%); transition: transform .4s var(--be-ease); box-shadow: var(--be-shadow-lg);
}
.be-drawer.is-open .be-drawer__panel { transform: translateX(0); }
.be-drawer__top { display:flex; align-items:center; justify-content:space-between; margin-bottom: 16px; }
.be-drawer__close { width:44px; height:44px; border-radius:12px; border:1px solid rgba(255,255,255,.16); background:rgba(255,255,255,.06); color:#fff; font-size:22px; cursor:pointer; }
.be-drawer a.be-drawer__link { color: #eaf5ee; font-family: var(--be-display); font-weight: 500; font-size: 21px; padding: 13px 4px; border-bottom: 1px solid rgba(255,255,255,.07); }
.be-drawer a.be-drawer__link:hover { color: var(--be-sage); }
.be-drawer .be-btn { margin-top: 16px; justify-content: center; }
.be-drawer .be-login { color:#cfe4d8; margin-top: 6px; text-align:center; }

/* ---- Hero -------------------------------------------------------------- */
.be-hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding-top: 120px; padding-bottom: 92px; overflow: hidden; background: #061410; color: #e9f3ec; isolation: isolate; }
.be-hero__media { position: absolute; inset: 0; z-index: -3; }
.be-hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: .72; transform: scale(1.05); }
.be-hero__scrim { position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(103deg, rgba(6,20,14,.9) 0%, rgba(6,20,14,.6) 44%, rgba(6,20,14,.28) 100%),
    linear-gradient(180deg, rgba(6,20,14,.1) 0%, rgba(6,20,14,.42) 62%, rgba(6,20,14,.9) 100%); }
.be-hero__glow { position: absolute; z-index: -2; width: 60vw; height: 60vw; max-width: 640px; max-height: 640px; top: -12%; right: -6%; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(38,168,102,.22), transparent 62%); filter: blur(24px); animation: be-float 18s var(--be-ease) infinite alternate; }
.be-hero__inner { position: relative; max-width: 900px; }
.be-hero h1 { color: #fff; font-size: clamp(2.7rem, 1.3rem + 5.6vw, 5.6rem); font-weight: 500; letter-spacing: -.02em; line-height: 1.0; text-wrap: balance; }
.be-hero__accent { font-style: italic; font-weight: 400; color: var(--be-cream); }
.be-hero__sub { margin-top: 24px; font-family: var(--be-sans); font-weight: 500; font-size: clamp(1.02rem, .92rem + .6vw, 1.32rem); color: #bfd7c7; letter-spacing: .01em; }
.be-hero__lede { margin-top: 18px; max-width: 60ch; color: rgba(220,235,225,.8); font-size: clamp(1rem,.96rem + .3vw,1.14rem); }
.be-hero__cta { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; }

.be-hero__chips { margin-top: 52px; display: flex; flex-wrap: wrap; gap: 30px 44px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.12); }
.be-chip { display: flex; align-items: center; gap: 13px; }
.be-chip b { font-family: var(--be-display); font-weight: 600; font-size: 17px; color: #fff; display: block; }
.be-chip span { font-size: 13px; color: rgba(220,235,225,.66); line-height: 1.3; }
.be-chip .be-ico { width: 24px; height: 24px; color: var(--be-sage); flex: none; }

.be-scrollcue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(220,235,225,.5); font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; }
.be-scrollcue i { width: 22px; height: 34px; border: 1.5px solid rgba(255,255,255,.28); border-radius: 14px; position: relative; }
.be-scrollcue i::after { content:""; position:absolute; left:50%; top:6px; width:3px; height:7px; border-radius:3px; background: var(--be-sage); transform: translateX(-50%); animation: be-scroll 1.8s infinite; }

/* ---- Restrained ticker strip ------------------------------------------ */
.be-strip { background: var(--be-dark); border-block: 1px solid rgba(255,255,255,.07); overflow: hidden; }
.be-strip__track { display: flex; gap: 40px; align-items: center; padding: 15px 0; white-space: nowrap; width: max-content; animation: be-marquee 44s linear infinite; }
.be-strip__track span { display: inline-flex; align-items: center; gap: 40px; font-family: var(--be-sans); font-weight: 600; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: rgba(213,233,220,.62); }
.be-strip__track span::after { content:""; width: 4px; height: 4px; border-radius: 50%; background: var(--be-emerald-2); }

/* ---- Editorial split --------------------------------------------------- */
.be-split { display: grid; grid-template-columns: 1.02fr 1fr; gap: clamp(32px, 5vw, 84px); align-items: center; }
.be-split--rev .be-split__media { order: -1; }
.be-split__body > * + * { margin-top: 22px; }
.be-split__head { margin-bottom: 4px; }
.be-figure { position: relative; border-radius: var(--be-radius-lg); overflow: hidden; box-shadow: var(--be-shadow-lg); }
.be-figure img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3.3; transition: transform 1.1s var(--be-ease); }
.be-figure:hover img { transform: scale(1.04); }
.be-figure__tag { position: absolute; left: 18px; bottom: 18px; z-index: 2; display: inline-flex; align-items: center; gap: 9px; padding: 10px 16px; border-radius: 100px; background: rgba(6,20,14,.5); border: 1px solid rgba(255,255,255,.2); color: #fff; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); font-size: 12.5px; font-weight: 600; }
.be-figure__tag .be-ico { width: 17px; height: 17px; color: var(--be-sage); }

/* ---- Dark full-bleed band --------------------------------------------- */
.be-band { position: relative; overflow: hidden; color: #e6f1eb; background: var(--be-dark); isolation: isolate; }
.be-band__media { position: absolute; inset: 0; z-index: -2; }
.be-band__media img { width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.be-band__scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, rgba(6,20,14,.9) 0%, rgba(6,20,14,.68) 48%, rgba(8,32,26,.44) 100%); }
.be-band .be-container { padding-block: var(--be-section-y); }
.be-glasscard { max-width: 640px; padding: clamp(28px, 3.4vw, 52px); border-radius: var(--be-radius-lg); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); box-shadow: var(--be-shadow-lg); }
.be-glasscard > * + * { margin-top: 20px; }
.be-glasscard h2 { color: #fff; }
.be-band p { color: rgba(220,235,225,.8); }
.be-pullquote { font-family: var(--be-display); font-weight: 500; font-style: italic; letter-spacing: -.01em; line-height: 1.24; font-size: clamp(1.35rem, 1rem + 1.5vw, 2rem); color: #fff; }
.be-pullquote .be-em { color: var(--be-sage); font-style: italic; }

/* ---- Capability list (Intelligence) — editorial, not boxed cards ------- */
.be-caplist { display: grid; grid-template-columns: repeat(2, 1fr); column-gap: clamp(40px, 6vw, 96px); }
.be-cap { display: flex; gap: 18px; padding: 30px 0; border-top: 1px solid var(--be-line); }
.be-cap__ico { width: 30px; height: 30px; flex: none; color: var(--be-emerald); margin-top: 3px; }
.be-cap__ico .be-ico { width: 30px; height: 30px; stroke-width: 1.6; }
.be-cap h3 { font-size: 1.3rem; font-weight: 600; margin-bottom: 7px; }
.be-cap p { color: var(--be-ink-soft); font-size: .99rem; max-width: 42ch; }

/* callout after capabilities */
.be-callout { margin-top: 30px; padding: clamp(30px,3.6vw,52px); border-radius: var(--be-radius-lg); background: linear-gradient(115deg, #08241b, #0d3a29); color: #eaf5ee; display: flex; flex-wrap: wrap; gap: 22px 56px; align-items: center; justify-content: space-between; }
.be-callout .be-pullquote { flex: 1 1 300px; color: #fff; }
.be-callout p { flex: 1 1 320px; max-width: 54ch; color: rgba(220,235,225,.82); }

/* ---- Focus bento (Investment) ----------------------------------------- */
.be-bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.be-fcard { position: relative; overflow: hidden; border-radius: var(--be-radius-lg); min-height: 300px; display: flex; flex-direction: column; justify-content: flex-end; color: #fff; isolation: isolate; box-shadow: var(--be-shadow); transition: transform .4s var(--be-ease), box-shadow .4s var(--be-ease); }
.be-fcard:hover { transform: translateY(-5px); box-shadow: var(--be-shadow-lg); }
.be-fcard__img { position: absolute; inset: 0; z-index: -2; }
.be-fcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--be-ease); }
.be-fcard:hover .be-fcard__img img { transform: scale(1.05); }
.be-fcard__scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(6,20,14,0) 30%, rgba(6,20,14,.58) 62%, rgba(6,20,14,.9) 100%); }
.be-fcard__body { padding: 28px; }
.be-fcard h3 { font-size: 1.55rem; font-weight: 600; margin-bottom: 9px; color:#fff; }
.be-fcard p { color: rgba(233,243,238,.85); font-size: .97rem; max-width: 46ch; }
.be-fcard--wide { grid-column: span 3; }
.be-fcard--sm { grid-column: span 2; }
.be-fcard--wide h3 { font-size: 1.85rem; }

/* ---- Stats band -------------------------------------------------------- */
.be-stats { position: relative; overflow: hidden; background: linear-gradient(120deg, #08241b, #061410 65%); color: #eaf5ee; isolation:isolate; }
.be-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(24px,3vw,48px); }
.be-stat { padding-left: 22px; border-left: 1px solid rgba(156,195,172,.35); }
.be-stat__n { font-family: var(--be-display); font-weight: 500; letter-spacing: -.02em; line-height: 1; font-size: clamp(2.6rem, 1.4rem + 3.2vw, 4rem); color: #f2fbf4; }
.be-stat__l { margin-top: 14px; color: rgba(220,235,225,.7); font-size: .95rem; max-width: 26ch; }

/* ---- Risk section ------------------------------------------------------ */
.be-risk__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(30px,5vw,76px); align-items: center; }
.be-riskcard { padding: clamp(28px,3vw,42px); border-radius: var(--be-radius-lg); background: var(--be-bg-2); border: 1px solid var(--be-line); box-shadow: var(--be-shadow); }
.be-riskrow { display: flex; gap: 16px; padding: 20px 0; border-top: 1px solid var(--be-line); }
.be-riskrow:first-of-type { border-top: 0; padding-top: 4px; }
.be-riskrow .be-ico { width: 24px; height: 24px; color: var(--be-emerald); flex: none; margin-top: 2px; }
.be-riskrow b { font-family: var(--be-display); font-weight: 600; font-size: 1.08rem; display:block; margin-bottom: 3px; }
.be-riskrow span { color: var(--be-ink-soft); font-size: .95rem; }

/* ---- Transparency checklist ------------------------------------------- */
.be-check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 clamp(40px,6vw,80px); margin-top: 8px; }
.be-checkitem { display: flex; gap: 15px; align-items: center; padding: 19px 2px; border-bottom: 1px solid var(--be-line); }
.be-checkitem__tick { width: 26px; height: 26px; border-radius: 50%; flex: none; display: grid; place-items: center; background: var(--be-emerald); color: #fff; }
.be-checkitem__tick .be-ico { width: 15px; height: 15px; }
.be-checkitem span { font-weight: 500; font-family: var(--be-display); font-size: 1.05rem; }
.be-clearline { margin-top: 44px; font-family: var(--be-display); font-weight: 500; font-size: clamp(1.4rem, 1rem + 1.5vw, 2.1rem); letter-spacing: -.015em; }
.be-clearline b { color: var(--be-emerald-d); font-weight: 600; }

/* ---- Vision close ------------------------------------------------------ */
.be-vision { position: relative; overflow: hidden; background: #061410; color: #eaf5ee; text-align: center; isolation:isolate; }
.be-vision__media { position:absolute; inset:0; z-index:-3; }
.be-vision__media img { width:100%; height:100%; object-fit: cover; opacity:.3; }
.be-vision__scrim { position:absolute; inset:0; z-index:-2; background: linear-gradient(180deg, rgba(6,20,14,.82), rgba(6,20,14,.95)); }
.be-vision__lines { max-width: 940px; margin-inline: auto; }
.be-vision__intro { font-size: clamp(1.05rem,.9rem+.9vw,1.4rem); color: rgba(220,235,225,.62); }
.be-vision__trio { margin-top: 30px; }
.be-vision__trio p { font-family: var(--be-display); font-weight: 500; letter-spacing: -.015em; line-height: 1.24; font-size: clamp(1.5rem, 1rem + 2.2vw, 2.7rem); color: #fff; }
.be-vision__big { margin: 38px auto 6px; font-family: var(--be-display); font-weight: 500; font-size: clamp(2.5rem, 1rem + 6.4vw, 5.8rem); letter-spacing: -.02em; line-height: .98; color: #f2fbf4; text-wrap: balance; }
.be-vision__big em { font-style: italic; color: var(--be-cream); }
.be-vision__cta { margin-top: 34px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- Footer ------------------------------------------------------------ */
.be-footer { background: #061410; color: #c7ddd0; padding-top: clamp(58px,7vw,96px); border-top: 1px solid rgba(255,255,255,.06); }
.be-footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,.08); }
.be-footer__brand .be-brand__name { color: #fff; }
.be-footer__brand p { margin-top: 16px; max-width: 34ch; color: rgba(199,221,208,.66); font-size: .95rem; }
.be-footer h4 { font-family: var(--be-sans); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--be-sage); margin-bottom: 16px; font-weight: 600; }
.be-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.be-footer ul a { color: rgba(199,221,208,.8); font-size: .96rem; transition: color .25s, padding-left .25s; }
.be-footer ul a:hover { color: #fff; padding-left: 4px; }
.be-footer__contact a { display: block; color: #fff; font-family: var(--be-display); font-weight: 500; font-size: 1.05rem; }
.be-footer__contact span { color: rgba(199,221,208,.55); font-size: .85rem; display:block; margin-top: 14px; }
.be-subscribe { display: flex; gap: 8px; margin-top: 14px; }
.be-subscribe input { flex: 1; min-width: 0; padding: 12px 16px; border-radius: 100px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.05); color: #fff; font-family: var(--be-sans); font-size: 14px; }
.be-subscribe input::placeholder { color: rgba(199,221,208,.5); }
.be-subscribe input:focus { outline: none; border-color: var(--be-emerald-2); box-shadow: 0 0 0 3px rgba(38,168,102,.18); }
.be-subscribe button { flex: none; width: 46px; height: 46px; border-radius: 50%; border: none; cursor: pointer; color: #fff; background: var(--be-emerald); display: grid; place-items: center; transition: background .25s; }
.be-subscribe button:hover { background: var(--be-emerald-2); }
.be-footer__legal { padding: 26px 0 38px; }
.be-footer__disclaimer { font-size: 12.5px; line-height: 1.7; color: rgba(199,221,208,.46); }
.be-footer__bar { display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: space-between; padding-top: 22px; margin-top: 22px; border-top: 1px solid rgba(255,255,255,.08); }
.be-footer__bar span { font-size: 13px; color: rgba(199,221,208,.5); }
.be-footer__bar nav { display: flex; gap: 20px; }
.be-footer__bar nav a { font-size: 13px; color: rgba(199,221,208,.66); }
.be-footer__bar nav a:hover { color: #fff; }

/* ---- Motion (progressive enhancement, snappy + subtle) ----------------- */
.be-anim [data-reveal] { opacity: 0; transform: translateY(16px); will-change: transform, opacity; }
.be-anim [data-reveal="left"] { transform: translateX(-22px); }
.be-anim [data-reveal="right"] { transform: translateX(22px); }

@keyframes be-float { from { transform: translate(0,0); } to { transform: translate(-30px,24px); } }
@keyframes be-scroll { 0% { opacity: 0; transform: translate(-50%,0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%,11px); } }
@keyframes be-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- Responsive -------------------------------------------------------- */
@media (max-width: 1080px) {
  .be-nav { display: none; }
  .be-header__cta .be-btn, .be-header__cta .be-login { display: none; }
  .be-burger { display: inline-flex; }
  .be-footer__top { grid-template-columns: 1fr 1fr; gap: 34px; }
}
@media (max-width: 860px) {
  .be-split { grid-template-columns: 1fr; }
  .be-split--rev .be-split__media { order: 0; }
  .be-caplist { grid-template-columns: 1fr; }
  .be-cap:nth-child(2) { border-top: 1px solid var(--be-line); }
  .be-risk__grid { grid-template-columns: 1fr; }
  .be-bento { grid-template-columns: repeat(4, 1fr); }
  .be-fcard--wide { grid-column: span 4; }
  .be-fcard--sm { grid-column: span 2; }
  .be-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .be-check-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .be-body { font-size: 16px; }
  .be-bento { grid-template-columns: 1fr; }
  .be-fcard--wide, .be-fcard--sm { grid-column: span 1; }
  .be-stats__grid { grid-template-columns: 1fr; }
  .be-footer__top { grid-template-columns: 1fr; }
  .be-hero__cta .be-btn { width: 100%; justify-content: center; }
  .be-hero__chips { gap: 22px; }
}

/* ---- Reduced motion ---------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .be-body *, .be-body *::before, .be-body *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .be-hero__glow, .be-strip__track, .be-scrollcue i::after { animation: none !important; }
  .be-anim [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* ==========================================================================
   Interior pages (About, Contact, FAQ, legal, Team, Why, Help, News, Market)
   ========================================================================== */
.be-pagehero { position: relative; overflow: hidden; background: #061410; color: #e9f3ec; padding: clamp(140px,16vh,196px) 0 clamp(52px,7vw,86px); isolation: isolate; }
.be-pagehero__media { position:absolute; inset:0; z-index:-2; }
.be-pagehero__media img { width:100%; height:100%; object-fit:cover; opacity:.42; }
.be-pagehero__scrim { position:absolute; inset:0; z-index:-1; background: radial-gradient(90% 130% at 12% 0%, rgba(38,168,102,.2), transparent 58%), linear-gradient(180deg, rgba(6,20,14,.66), rgba(6,20,14,.92)); }
.be-pagehero h1 { color:#fff; font-size: clamp(2.3rem, 1.3rem + 3.4vw, 3.9rem); font-weight:500; letter-spacing:-.02em; line-height:1.05; }
.be-pagehero h1 em { font-style: italic; color: var(--be-cream); }
.be-pagehero p { margin-top: 18px; max-width: 62ch; color: rgba(220,235,225,.8); font-size: clamp(1rem,.96rem+.3vw,1.18rem); }
.be-crumb { display:flex; gap:9px; align-items:center; font-size:13px; color: rgba(220,235,225,.55); margin-bottom: 20px; }
.be-crumb a:hover { color: var(--be-sage); }

/* Prose (legal + long-form) */
.be-prose { max-width: 80ch; }
.be-prose > * + * { margin-top: 16px; }
.be-prose h2 { font-size: clamp(1.5rem,1.1rem+1.4vw,2.1rem); margin-top: 48px; }
.be-prose h3, .be-prose h4 { font-size: 1.24rem; font-weight:600; margin-top: 34px; color: var(--be-ink); }
.be-prose p { color: var(--be-ink-2); }
.be-prose strong { color: var(--be-ink); font-weight: 600; }
.be-prose a { color: var(--be-emerald-d); box-shadow: inset 0 -1px 0 rgba(26,143,87,.4); }
.be-prose ul { margin: 4px 0; padding-left: 22px; color: var(--be-ink-2); }
.be-prose li { margin-top: 7px; }
.be-prose__note { margin-top: 44px; padding: 18px 22px; border-radius: 14px; background: var(--be-bg-soft); border: 1px solid var(--be-line); font-size: .95rem; color: var(--be-ink-soft); }
.be-prose__note strong { color: var(--be-emerald-d); }

/* Forms */
.be-field { margin-bottom: 20px; }
.be-field label { display:block; font-weight:600; font-size:13.5px; margin-bottom:8px; color: var(--be-ink-2); }
.be-input, .be-textarea { width:100%; padding: 14px 16px; border-radius: 12px; border:1px solid var(--be-line); background: var(--be-bg-2); color: var(--be-ink); font-family: var(--be-sans); font-size: 15px; transition: border-color .2s, box-shadow .2s; }
.be-input:focus, .be-textarea:focus { outline:none; border-color: var(--be-emerald-2); box-shadow: 0 0 0 3px rgba(38,168,102,.16); }
.be-textarea { min-height: 150px; resize: vertical; }
.be-formrow { display:grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.be-alert { padding: 14px 18px; border-radius: 12px; margin-bottom: 22px; font-size:14.5px; background: rgba(38,168,102,.12); border:1px solid rgba(38,168,102,.35); color: var(--be-emerald-d); }

/* Contact layout */
.be-contact-grid { display:grid; grid-template-columns: 1fr 1.15fr; gap: clamp(30px,5vw,72px); align-items:start; }
.be-infocard { border-radius: var(--be-radius-lg); border:1px solid var(--be-line); background: var(--be-bg-2); box-shadow: var(--be-shadow); overflow:hidden; }
.be-inforow { display:flex; gap:16px; padding: 24px 26px; border-bottom:1px solid var(--be-line); }
.be-inforow:last-child { border-bottom:0; }
.be-inforow .be-ico { width:22px; height:22px; color: var(--be-emerald); flex:none; margin-top:2px; }
.be-inforow b { display:block; font-family: var(--be-display); font-weight:600; margin-bottom:4px; }
.be-inforow a, .be-inforow span { color: var(--be-ink-soft); font-size:.98rem; }
.be-inforow a:hover { color: var(--be-emerald-d); }
.be-formcard { border-radius: var(--be-radius-lg); border:1px solid var(--be-line); background: var(--be-bg-2); box-shadow: var(--be-shadow); padding: clamp(26px,3vw,40px); }

/* FAQ accordion (native <details>) */
.be-acc { max-width: 880px; }
.be-acc details { border-bottom:1px solid var(--be-line); }
.be-acc summary { list-style:none; cursor:pointer; display:flex; align-items:center; justify-content:space-between; gap:20px; padding: 24px 4px; font-family: var(--be-display); font-weight:600; font-size:1.16rem; color: var(--be-ink); }
.be-acc summary::-webkit-details-marker { display:none; }
.be-acc summary::after { content:""; width:11px; height:11px; border-right:2px solid var(--be-emerald); border-bottom:2px solid var(--be-emerald); transform: rotate(45deg); transition: transform .3s var(--be-ease); flex:none; margin-top:-4px; }
.be-acc details[open] summary::after { transform: rotate(225deg); }
.be-acc__body { padding: 0 4px 26px; color: var(--be-ink-soft); max-width: 72ch; }

/* News / insights */
.be-newsgrid { display:grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.be-newscard { border-radius: var(--be-radius-lg); overflow:hidden; background: var(--be-bg-2); border:1px solid var(--be-line); box-shadow: var(--be-shadow-sm); transition: transform .4s var(--be-ease), box-shadow .4s var(--be-ease); display:flex; flex-direction:column; }
.be-newscard:hover { transform: translateY(-5px); box-shadow: var(--be-shadow); }
.be-newscard__img { aspect-ratio: 16/10; overflow:hidden; }
.be-newscard__img img { width:100%; height:100%; object-fit:cover; transition: transform 1s var(--be-ease); }
.be-newscard:hover .be-newscard__img img { transform: scale(1.05); }
.be-newscard__body { padding: 24px; flex:1; display:flex; flex-direction:column; }
.be-newscard__meta { font-size:12px; letter-spacing:.08em; text-transform:uppercase; color: var(--be-emerald-d); font-weight:600; }
.be-newscard h3 { font-size:1.24rem; margin: 10px 0 8px; }
.be-newscard p { color: var(--be-ink-soft); font-size:.96rem; }

/* CTA band */
.be-ctaband { position: relative; overflow:hidden; background: linear-gradient(115deg, #08241b, #0d3a29); color:#eaf5ee; border-radius: var(--be-radius-lg); padding: clamp(40px,5vw,74px); text-align:center; }
.be-ctaband h2 { color:#fff; font-size: clamp(1.8rem,1.2rem+2.4vw,3rem); }
.be-ctaband p { margin: 16px auto 0; max-width: 54ch; color: rgba(220,235,225,.82); }
.be-ctaband__btns { margin-top: 30px; display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* Team / members */
.be-team { display:grid; grid-template-columns: repeat(3,1fr); gap:24px; }
.be-member { border-radius: var(--be-radius-lg); overflow:hidden; border:1px solid var(--be-line); background:var(--be-bg-2); box-shadow: var(--be-shadow-sm); transition: transform .4s var(--be-ease), box-shadow .4s var(--be-ease); }
.be-member:hover { transform: translateY(-4px); box-shadow: var(--be-shadow); }
.be-member__img { aspect-ratio: 4/3; overflow:hidden; }
.be-member__img img { width:100%; height:100%; object-fit:cover; }
.be-member__body { padding: 22px 24px; }
.be-member h3 { font-size:1.22rem; }
.be-member span { color: var(--be-emerald-d); font-size:.9rem; font-weight:600; }
.be-member p { margin-top:10px; color: var(--be-ink-soft); font-size:.95rem; }

/* Feature grid (why / help) */
.be-featgrid { display:grid; grid-template-columns: repeat(3,1fr); gap:20px; }
.be-featcard { display:block; padding: 30px; border-radius: var(--be-radius); background: var(--be-bg-2); border:1px solid var(--be-line); box-shadow: var(--be-shadow-sm); transition: transform .35s var(--be-ease), box-shadow .35s var(--be-ease), border-color .35s var(--be-ease); }
a.be-featcard:hover { transform: translateY(-4px); box-shadow: var(--be-shadow); border-color: rgba(26,143,87,.3); }
.be-featcard .be-ico { width:28px; height:28px; color: var(--be-emerald); margin-bottom:16px; }
.be-featcard h3 { font-size:1.2rem; margin-bottom:8px; }
.be-featcard p { color: var(--be-ink-soft); font-size:.97rem; }

@media (max-width: 980px){ .be-featgrid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .be-featgrid { grid-template-columns: 1fr; } }

@media (max-width: 860px){
  .be-formrow { grid-template-columns:1fr; }
  .be-contact-grid { grid-template-columns:1fr; }
  .be-newsgrid { grid-template-columns: repeat(2,1fr); }
  .be-team { grid-template-columns: repeat(2,1fr); }
}
@media (max-width:560px){
  .be-newsgrid { grid-template-columns:1fr; }
  .be-team { grid-template-columns:1fr; }
}
