/* ============================================================
   LeCharge · production styles
   Apple.com discipline: near-monochrome + one green accent,
   real SF Pro, scroll-fill statement, pinned product showcase.
   ============================================================ */

:root {
  --bg:        #ffffff;
  --bg-alt:    #f5f5f7;
  --bg-dark:   #0b0c0e;
  --ink:       #1d1d1f;
  --ink-2:     #6e6e73;
  --ink-3:     #86868b;
  --dim:       #d2d2d7;
  --hair:      rgba(0,0,0,.10);

  --accent:      #00a15c;
  --accent-2:    #12b06a;
  --accent-deep: #007a45;
  --accent-tint: rgba(0,161,92,.10);

  --radius:  20px;
  --ease:    cubic-bezier(.22,.61,.36,1);
  --ease-io: cubic-bezier(.28,.11,.32,1);
  --maxw:    1080px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
          "Helvetica Neue", Inter, system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
/* overflow-x: clip prevents horizontal scroll WITHOUT breaking position: sticky */
body { font-family: var(--font); color: var(--ink); background: var(--bg); line-height: 1.47; letter-spacing: -.01em; overflow-x: clip; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4,h5 { font-weight: 600; letter-spacing: -.025em; line-height: 1.06; }
img,svg { max-width: 100%; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 7px; font-size: 16px; font-weight: 500; padding: 12px 23px; border-radius: 980px; cursor: pointer; border: 0; white-space: nowrap; transition: transform .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease); }
.btn .chev { transition: transform .35s var(--ease); }
.btn:hover .chev { transform: translateX(3px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-1px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-1px); }
.btn-ghost { background: rgba(0,0,0,.055); color: var(--ink); }
.btn-ghost:hover { background: rgba(0,0,0,.09); transform: translateY(-1px); }

.link { display: inline-flex; align-items: center; gap: 5px; color: var(--accent); font-weight: 500; font-size: 16px; }
.link .chev { transition: transform .35s var(--ease); }
.link:hover .chev { transform: translateX(4px); }

/* ---------- Nav ---------- */
header.nav { position: fixed; inset: 0 0 auto 0; z-index: 100; height: 48px; display: flex; align-items: center; border-bottom: 1px solid transparent; transition: background .4s var(--ease-io), backdrop-filter .4s var(--ease-io), border-color .4s var(--ease-io); }
header.nav.solid, header.nav.menu-open { background: rgba(255,255,255,.72); backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px); border-bottom: 1px solid var(--hair); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.brand { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 19px; letter-spacing: -.02em; }
.brand .spark { width: 17px; height: 17px; color: var(--accent); }
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-size: 13px; color: var(--ink-2); transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta .mini { font-size: 13px; font-weight: 500; padding: 7px 15px; border-radius: 980px; background: var(--accent); color: #fff; transition: background .25s var(--ease), transform .25s var(--ease); }
.nav-cta .mini:hover { background: var(--accent-deep); transform: translateY(-1px); }

/* hamburger */
.nav-toggle { display: none; width: 40px; height: 40px; margin-right: -8px; background: transparent; border: 0; cursor: pointer; position: relative; }
.nav-toggle span { position: absolute; left: 10px; right: 10px; height: 1.5px; background: var(--ink); transition: transform .35s var(--ease), opacity .2s var(--ease); }
.nav-toggle span:nth-child(1) { top: 15px; } .nav-toggle span:nth-child(2) { top: 24px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }

/* mobile menu panel */
.mobile-menu { position: fixed; inset: 48px 0 auto 0; z-index: 99; background: rgba(255,255,255,.94); backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px); border-bottom: 1px solid var(--hair); padding: 12px 24px 22px; transform: translateY(-12px); opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s; }
.mobile-menu.open { opacity: 1; transform: none; visibility: visible; }
.mobile-menu a { display: block; font-size: 18px; font-weight: 500; padding: 13px 0; border-bottom: 1px solid var(--hair); color: var(--ink); }
.mobile-menu a:last-of-type { border-bottom: 0; }
.mobile-menu .btn { margin-top: 16px; width: 100%; justify-content: center; }

@media (max-width: 900px) { .nav-links, .nav-cta { display: none; } .nav-toggle { display: flex; } }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease-io), transform .7s var(--ease-io); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 150px 0 30px; text-align: center; overflow: hidden; }
.hero .glow { position: absolute; top: 2%; left: 50%; transform: translateX(-50%); width: 820px; max-width: 120vw; height: 560px; pointer-events: none; z-index: 0; background: radial-gradient(closest-side, rgba(0,161,92,.10), transparent 70%); filter: blur(10px); }
.hero > .wrap { position: relative; z-index: 1; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 500; color: var(--accent-deep); margin-bottom: 16px; }
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-tint); }
h1.hero-title { font-size: clamp(40px, 8vw, 92px); line-height: 1.02; letter-spacing: -.035em; max-width: 15ch; margin: 0 auto; }
h1.hero-title .g { color: var(--accent); }
.hero .sub { font-size: clamp(18px, 2.1vw, 23px); color: var(--ink-2); font-weight: 400; max-width: 42ch; margin: 24px auto 0; line-height: 1.42; }
.hero .cta-row { display: flex; gap: 12px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }

/* charger illustration */
.charger-stage { position: relative; margin: 44px auto 0; width: min(340px, 90vw); height: 470px; z-index: 2; }
.charger-shadow { position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%); width: 300px; max-width: 88%; height: 46px; border-radius: 50%; background: radial-gradient(closest-side, rgba(0,0,0,.16), transparent 72%); filter: blur(3px); }
.charger { position: absolute; left: 50%; top: 0; transform: translateX(-50%); width: 212px; height: 424px; border-radius: 48px;
  background: linear-gradient(180deg,#fff 0%,#f1f2f4 46%,#e7e9ec 100%);
  box-shadow: 0 34px 80px -22px rgba(0,0,0,.24), inset 0 2px 3px rgba(255,255,255,.9), inset 0 -18px 34px rgba(0,0,0,.05); border: 1px solid rgba(0,0,0,.05); }
.charger::before { content:""; position: absolute; inset: 6px 6px auto 6px; height: 120px; border-radius: 42px 42px 60px 60px; background: linear-gradient(180deg, rgba(255,255,255,.85), transparent); }
.charger .screen { position: absolute; top: 30px; left: 22px; right: 22px; height: 152px; border-radius: 26px; background: linear-gradient(160deg,#121417,#1c2026); box-shadow: inset 0 1px 2px rgba(255,255,255,.08), 0 6px 16px rgba(0,0,0,.28); padding: 20px; color: #fff; overflow: hidden; }
.screen .ring { position: absolute; right: 18px; top: 18px; width: 42px; height: 42px; border-radius: 50%; background: conic-gradient(var(--accent) 0 78%, rgba(255,255,255,.12) 78% 100%); -webkit-mask: radial-gradient(closest-side, transparent 66%, #000 68%); mask: radial-gradient(closest-side, transparent 66%, #000 68%); box-shadow: 0 0 16px rgba(0,161,92,.55); }
.screen .kw { font-size: 31px; font-weight: 600; letter-spacing: -.03em; margin-top: 6px; }
.screen .kw span { font-size: 15px; color: var(--accent-2); font-weight: 500; }
.screen .label { font-size: 11px; color: rgba(255,255,255,.55); letter-spacing: .06em; text-transform: uppercase; }
.screen .bars { position: absolute; bottom: 18px; left: 20px; right: 20px; display: flex; gap: 4px; align-items: flex-end; height: 26px; }
.screen .bars i { flex: 1; background: rgba(0,161,92,.85); border-radius: 2px; animation: pulseBar 1.8s ease-in-out infinite; }
@keyframes pulseBar { 0%,100% { opacity:.4; height:30%; } 50% { opacity:1; height:100%; } }
.charger .status { position: absolute; bottom: 76px; left: 50%; transform: translateX(-50%); width: 54px; height: 54px; border-radius: 50%; background: radial-gradient(closest-side, rgba(0,161,92,.2), transparent); display: grid; place-items: center; }
.charger .status .led { width: 12px; height: 12px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 6px rgba(0,161,92,.16), 0 0 18px rgba(0,161,92,.9); animation: breathe 2.4s ease-in-out infinite; }
@keyframes breathe { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.25); opacity: .8; } }
.charger .grille { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); width: 70px; height: 5px; border-radius: 3px; background: rgba(0,0,0,.07); box-shadow: 0 10px 0 rgba(0,0,0,.05), 0 20px 0 rgba(0,0,0,.045); }
.cable { position: absolute; right: 20px; top: 212px; z-index: 1; }
.cable svg { overflow: visible; }
.cable .plug { filter: drop-shadow(0 6px 10px rgba(0,0,0,.2)); }

/* ---------- Stats ---------- */
.stats { padding: 20px 0 90px; }
.stats .grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat .num { font-size: clamp(34px,5vw,52px); font-weight: 600; letter-spacing: -.03em; }
.stat .num .u { color: var(--accent); }
.stat .cap { font-size: 15px; color: var(--ink-2); margin-top: 4px; }
@media (max-width: 720px) { .stats .grid { grid-template-columns: repeat(2,1fr); gap: 36px 24px; } }

/* ---------- Scroll-fill statement ---------- */
.fill { height: 210vh; position: relative; }
.fill-stage { position: sticky; top: 0; height: 100vh; display: grid; place-items: center; text-align: center; padding: 0 24px; }
.fill-stage p { max-width: 15ch; font-size: clamp(32px, 6vw, 76px); font-weight: 600; letter-spacing: -.03em; line-height: 1.08; }
.fill-stage .w { color: var(--dim); transition: color .35s var(--ease); }
.fill-stage .w.lit { color: var(--ink); }
.fill-stage .w.accent.lit { color: var(--accent); }

/* ---------- Sections ---------- */
section.band { padding: 112px 0; }
section.band.grey { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-head .kicker { color: var(--accent); font-weight: 500; font-size: 15px; margin-bottom: 12px; }
.section-head h2 { font-size: clamp(30px,5vw,56px); }
.section-head p { font-size: 19px; color: var(--ink-2); margin-top: 16px; line-height: 1.5; }

/* ---------- Dual-track cards ---------- */
.tracks { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.track { border-radius: 24px; padding: 40px 38px; border: 1px solid var(--hair); background: #fff; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.track:hover { transform: translateY(-5px); box-shadow: 0 30px 70px -24px rgba(0,0,0,.18); }
.track .t-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--ink-2); margin-bottom: 18px; }
.track .t-badge .ic { width: 26px; height: 26px; border-radius: 8px; background: var(--bg-alt); display: grid; place-items: center; color: var(--ink); }
.track.invest .t-badge .ic { background: var(--accent-tint); color: var(--accent-deep); }
.track h3 { font-size: 29px; }
.track p { font-size: 17px; color: var(--ink-2); margin-top: 13px; line-height: 1.5; }
.track .big { margin-top: 22px; font-size: 15px; color: var(--ink-2); }
.track .big b { display: block; font-size: 44px; line-height: 1; margin-top: 5px; font-weight: 600; letter-spacing: -.03em; }
.track.invest .big b { color: var(--accent); }
.track .btn { margin-top: 26px; }
@media (max-width: 820px) { .tracks { grid-template-columns: 1fr; } .track { padding: 34px 28px; } }

/* ---------- Pinned product showcase ---------- */
.pin { height: 260vh; position: relative; background: var(--bg-alt); }
.pin-stage { position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; }
.pin-stage .pin-head { text-align: center; margin-bottom: 6px; }
.pin-stage .pin-head .kicker { color: var(--accent); font-weight: 500; font-size: 15px; margin-bottom: 10px; }
.pin-stage .pin-head h2 { font-size: clamp(28px,4.4vw,48px); }
.pin-cluster { position: relative; width: min(760px, 92vw); height: 460px; display: grid; place-items: center; }
.pin-charger { transform: scale(.9); transition: transform .1s linear; }
.callout { position: absolute; width: 210px; opacity: 0; transform: translateY(14px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.callout.on { opacity: 1; transform: none; }
.callout .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px var(--accent-tint); margin-bottom: 10px; }
.callout h4 { font-size: 19px; letter-spacing: -.02em; }
.callout p { font-size: 14px; color: var(--ink-2); margin-top: 5px; line-height: 1.45; }
.callout.c1 { top: 40px; left: 0; text-align: right; }
.callout.c1 .dot { margin-left: auto; }
.callout.c2 { top: 40px; right: 0; }
.callout.c3 { bottom: 40px; left: 0; text-align: right; }
.callout.c3 .dot { margin-left: auto; }
.callout.c4 { bottom: 40px; right: 0; }
@media (max-width: 900px) {
  .pin { height: auto; } .pin-stage { position: static; height: auto; padding: 88px 0; }
  .pin-cluster { height: auto; width: 100%; grid-template-columns: repeat(2, 1fr); gap: 30px 24px; padding: 40px 24px 0; }
  .pin-charger { grid-column: 1 / -1; order: -1; margin-bottom: 10px; }
  .callout { position: static; width: auto; opacity: 1; transform: none; text-align: left !important; }
  .callout .dot { margin: 0 0 10px 0 !important; }
}
@media (max-width: 520px) { .pin-cluster { grid-template-columns: 1fr; } }

/* ---------- Pillars ---------- */
.pillar { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 108px; }
.pillar:last-child { margin-bottom: 0; }
.pillar.flip .p-visual { order: 2; }
.pillar .badge { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--accent-deep); margin-bottom: 16px; }
.pillar h3 { font-size: clamp(26px,3.4vw,40px); }
.pillar p.lead { font-size: 19px; color: var(--ink-2); margin-top: 16px; line-height: 1.55; max-width: 46ch; }
.pillar ul { list-style: none; margin-top: 22px; display: grid; gap: 11px; }
.pillar li { display: flex; gap: 11px; align-items: flex-start; font-size: 16px; }
.pillar li svg { flex: none; margin-top: 3px; }
.pillar .link { margin-top: 26px; }
.p-visual { height: 390px; border-radius: 26px; position: relative; overflow: hidden; box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 10px 30px rgba(0,0,0,.06); border: 1px solid var(--hair); }
.p-visual.soft { background: linear-gradient(160deg,#fbfcfd,#eef1f4); }
.p-visual.dark { background: linear-gradient(160deg,#121417,#20262e); border-color: rgba(255,255,255,.06); }
.mock-pay { position: absolute; inset: 38px; display: flex; flex-direction: column; gap: 13px; }
.pay-card { background: #fff; border-radius: 16px; box-shadow: 0 1px 2px rgba(0,0,0,.04),0 8px 22px rgba(0,0,0,.06); padding: 15px 18px; display: flex; align-items: center; justify-content: space-between; }
.pay-card .l { display: flex; align-items: center; gap: 12px; }
.pay-card .ico { width: 36px; height: 36px; border-radius: 10px; background: var(--accent-tint); display: grid; place-items: center; color: var(--accent-deep); }
.pay-card .t { font-size: 14px; font-weight: 600; } .pay-card .t small { display: block; color: var(--ink-3); font-weight: 400; font-size: 12px; }
.pay-card .amt { font-size: 16px; font-weight: 600; color: var(--accent-deep); }
.pay-total { margin-top: auto; background: var(--ink); color: #fff; border-radius: 16px; padding: 17px 20px; display: flex; justify-content: space-between; align-items: center; }
.pay-total small { color: rgba(255,255,255,.6); font-size: 12px; display: block; }
.pay-total .v { font-size: 23px; font-weight: 600; }
.mock-load { position: absolute; inset: 0; display: grid; place-items: center; color: #fff; }
.load-hub { width: 150px; height: 150px; border-radius: 50%; border: 1px solid rgba(255,255,255,.12); display: grid; place-items: center; position: relative; }
.load-hub::before, .load-hub::after { content:""; position: absolute; inset: -34px; border-radius: 50%; border: 1px solid rgba(0,161,92,.28); }
.load-hub::before { animation: ripple 3s ease-out infinite; } .load-hub::after { animation: ripple 3s ease-out infinite 1.5s; }
@keyframes ripple { 0% { transform: scale(.85); opacity:.8; } 100% { transform: scale(1.35); opacity: 0; } }
.load-hub .core { width: 92px; height: 92px; border-radius: 22px; background: linear-gradient(150deg, var(--accent-2), var(--accent-deep)); display: grid; place-items: center; box-shadow: 0 0 40px rgba(0,161,92,.5); font-weight: 600; font-size: 20px; letter-spacing: -.02em; }
.load-nodes { position: absolute; inset: 0; }
.load-nodes span { position: absolute; width: 46px; height: 46px; border-radius: 13px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); display: grid; place-items: center; font-size: 11px; color: rgba(255,255,255,.8); }
.load-nodes span:nth-child(1){ top:20%; left:16%; } .load-nodes span:nth-child(2){ top:16%; right:16%; }
.load-nodes span:nth-child(3){ bottom:20%; left:14%; } .load-nodes span:nth-child(4){ bottom:16%; right:15%; }
@media (max-width: 860px) { .pillar { grid-template-columns: 1fr; gap: 32px; margin-bottom: 76px; } .pillar.flip .p-visual { order: 0; } .p-visual { height: 320px; } }

/* ---------- Products ---------- */
.products .grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.product { background: #fff; border: 1px solid var(--hair); border-radius: var(--radius); padding: 32px 28px; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.product:hover { transform: translateY(-6px); box-shadow: 0 30px 70px -24px rgba(0,0,0,.18); }
.product .p-ico { width: 54px; height: 82px; border-radius: 12px; margin-bottom: 22px; position: relative; background: linear-gradient(180deg,#fff,#eef0f3); box-shadow: 0 1px 2px rgba(0,0,0,.04),0 8px 22px rgba(0,0,0,.06); border: 1px solid var(--hair); }
.product .p-ico::after { content:""; position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 30px; height: 22px; border-radius: 6px; background: #15171b; }
.product .p-ico .d { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px rgba(0,161,92,.8); }
.product h4 { font-size: 22px; }
.product .kind { font-size: 13px; font-weight: 500; color: var(--accent-deep); background: var(--accent-tint); display: inline-block; padding: 4px 11px; border-radius: 980px; margin: 12px 0; }
.product .desc { font-size: 15px; color: var(--ink-2); line-height: 1.5; min-height: 66px; }
.product .price { margin-top: 16px; font-size: 14px; color: var(--ink-3); }
.product .price b { color: var(--ink); font-size: 26px; font-weight: 600; display: block; margin-top: 2px; letter-spacing: -.02em; }
@media (max-width: 860px) { .products .grid { grid-template-columns: 1fr; } .product .desc { min-height: 0; } }

/* ---------- Investment: flow diagram (CSS, responsive) ---------- */
.flow { max-width: 940px; margin: 0 auto 64px; }
.flow-track { display: flex; align-items: flex-start; justify-content: center; gap: 6px; }
.fnode { flex: 0 0 138px; text-align: center; }
.fcirc { width: 88px; height: 88px; border-radius: 50%; margin: 0 auto 16px; background: var(--bg-alt); border: 1px solid var(--hair); display: grid; place-items: center; color: var(--ink); }
.fcirc.green { background: var(--accent-tint); border-color: #a9ddc6; color: var(--accent); }
.fname { font-weight: 600; font-size: 15px; letter-spacing: -.01em; }
.fsub { font-size: 12.5px; color: var(--ink-3); margin-top: 3px; }
.fconn { position: relative; flex: 1 1 auto; min-width: 36px; height: 2px; margin-top: 43px; background: var(--dim); }
.fconn::after { content: ""; position: absolute; right: -1px; top: 50%; transform: translateY(-50%); border-left: 6px solid var(--dim); border-top: 4px solid transparent; border-bottom: 4px solid transparent; }
.fconn span { position: absolute; left: 50%; bottom: 9px; transform: translateX(-50%); font-size: 12px; font-weight: 500; color: var(--ink-2); background: var(--bg); padding: 0 7px; white-space: nowrap; }
.flow-return { position: relative; margin-top: 30px; height: 40px; }
.flow-return .fr-line { position: absolute; top: 50%; left: 7%; right: 7%; height: 2px; background: linear-gradient(90deg, var(--accent), rgba(0,161,92,.35)); }
.flow-return .fr-line::before { content: ""; position: absolute; left: -1px; top: 50%; transform: translateY(-50%); border-right: 7px solid var(--accent); border-top: 5px solid transparent; border-bottom: 5px solid transparent; }
.flow-return .fr-chip { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); display: inline-flex; align-items: center; gap: 8px; background: var(--bg); border: 1px solid #a9ddc6; color: var(--accent-deep); font-size: 13px; font-weight: 500; padding: 7px 15px; border-radius: 980px; white-space: nowrap; }
@media (max-width: 680px) {
  .flow-track { flex-direction: column; align-items: center; gap: 0; }
  .fnode { flex: none; }
  .fconn { width: 2px; height: 30px; min-width: 0; margin: 4px 0; }
  .fconn::after { right: 50%; top: auto; bottom: -1px; transform: translateX(50%); border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 6px solid var(--dim); border-bottom: 0; }
  .fconn span { left: calc(50% + 14px); bottom: auto; top: 50%; transform: translateY(-50%); }
  .flow-return { margin-top: 22px; height: auto; text-align: center; }
  .flow-return .fr-line { display: none; }
  .flow-return .fr-chip { position: static; transform: none; white-space: normal; }
}
.returns { display: grid; grid-template-columns: 1.1fr .9fr; gap: 54px; align-items: center; }
.chart { background: #fff; border: 1px solid var(--hair); border-radius: 24px; padding: 32px 28px 24px; box-shadow: 0 1px 2px rgba(0,0,0,.04),0 10px 30px rgba(0,0,0,.06); }
/* bars share a clean baseline (names live in their own row below, so
   label wrapping on mobile can't shift the bars or the reference line) */
.bars2 { display: flex; align-items: flex-end; gap: 16px; height: 300px; padding-top: 26px; position: relative; }
.bankline { position: absolute; left: 0; right: 0; border-top: 1.5px dashed var(--ink-3); opacity: .5; }
.bar2 { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; height: 100%; }
.bar2 .fill2 { width: 100%; max-width: 74px; border-radius: 9px 9px 0 0; height: 0; transition: height 1.1s var(--ease); }
.bar2 .val { font-weight: 600; font-size: 22px; margin-bottom: 8px; opacity: 0; transition: opacity .5s var(--ease) .4s; letter-spacing: -.02em; }
.bar2.in .val { opacity: 1; }
.bar-names { display: flex; gap: 16px; margin-top: 12px; }
.bar-names span { flex: 1; text-align: center; font-size: 13px; color: var(--ink-2); line-height: 1.3; }
.chart-legend { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 18px; font-size: 12.5px; color: var(--ink-3); }
.chart-legend .swatch { display: inline-block; width: 22px; height: 0; border-top: 1.5px dashed var(--ink-3); }
.invest-copy h2 { font-size: clamp(28px,4vw,46px); }
.invest-copy p { font-size: 18px; color: var(--ink-2); margin-top: 16px; line-height: 1.55; }
.invest-copy .pts { list-style: none; margin: 22px 0 0; display: grid; gap: 11px; }
.invest-copy .pts li { display: flex; gap: 11px; font-size: 16px; }
.invest-copy .btn { margin-top: 28px; }
@media (max-width: 880px) { .returns { grid-template-columns: 1fr; gap: 34px; } }

/* ---------- Segments ---------- */
.segs .grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.seg { border-radius: var(--radius); padding: 28px 24px; background: #fff; border: 1px solid var(--hair); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.seg:hover { transform: translateY(-5px); box-shadow: 0 1px 2px rgba(0,0,0,.04),0 10px 30px rgba(0,0,0,.06); }
.seg .s-ico { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-tint); display: grid; place-items: center; color: var(--accent-deep); margin-bottom: 16px; }
.seg h5 { font-size: 18px; }
.seg p { font-size: 14px; color: var(--ink-2); margin-top: 7px; line-height: 1.5; }
@media (max-width: 900px) { .segs .grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px) { .segs .grid { grid-template-columns: 1fr; } }

/* ---------- Testimonial ---------- */
.quote { text-align: center; max-width: 860px; margin: 0 auto; }
.quote p { font-size: clamp(23px,3.2vw,36px); font-weight: 600; line-height: 1.28; letter-spacing: -.02em; }
.quote .who { margin-top: 28px; font-size: 16px; color: var(--ink-2); }
.quote .who b { color: var(--ink); }

/* ---------- Final CTA ---------- */
.final { text-align: center; }
.final h2 { font-size: clamp(32px,5vw,58px); max-width: 18ch; margin: 0 auto; }
.final p { font-size: 20px; color: var(--ink-2); margin-top: 18px; }
.final .cta-row { display: flex; gap: 12px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
footer { background: var(--bg-alt); padding: 54px 0 40px; border-top: 1px solid var(--hair); }
footer .top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; }
footer .cols { display: flex; gap: 60px; flex-wrap: wrap; }
footer .col h6 { font-size: 12px; color: var(--ink-3); font-weight: 600; letter-spacing: .04em; margin-bottom: 13px; }
footer .col a { display: block; font-size: 14px; color: var(--ink-2); margin-bottom: 9px; transition: color .2s; }
footer .col a:hover { color: var(--ink); }
footer .legal { margin-top: 42px; padding-top: 22px; border-top: 1px solid var(--hair); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: var(--ink-3); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .fill-stage .w { color: var(--ink) !important; }
  .callout { opacity: 1 !important; transform: none !important; }
  .pin-charger { transform: scale(1) !important; }
  .bar2 .fill2 { transition: none !important; }
}
