/* =========================================================
   ABB Ventures — Landing v2 (interactive / animated)
   Palette: molten gold & bronze on deep espresso black
   ========================================================= */
:root {
  --bronze:   #b06a2c;
  --bronze-2: #d89a4e;
  --gold:     #e7b45a;
  --gold-hi:  #ffd98a;
  --copper:   #8a4a22;
  --black:    #0d0803;
  --espresso: #171008;
  --espresso-2: #1f150b;
  --coffee:   #33220f;
  --cream:    #f6f1e9;
  --cream-2:  #efe6d8;
  --ink:      #211913;
  --ink-soft: #5c4d40;
  /* light fintech bento */
  --bg:       #f4f1ea;
  --card:     #ffffff;
  --hair:     rgba(40, 30, 18, 0.10);
  --charcoal: #1c1712;
  --gold-matte: #e3a943;
  --line:     rgba(120, 84, 45, 0.16);
  --line-gold:rgba(231, 180, 90, 0.22);
  --grad:     linear-gradient(100deg, #8a4a22 0%, #b06a2c 40%, #e7b45a 100%);
  --shadow:   0 24px 60px -28px rgba(70, 40, 15, 0.55);
  --radius:   20px;
  --maxw:     1180px;
  --font:     'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --display:  'Sora', var(--font);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: #e8dcc8;
  background: #0a0603;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }

.grad {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.grad-shimmer {
  background: linear-gradient(100deg, #8a4a22 0%, #e7b45a 30%, #ffd98a 50%, #e7b45a 70%, #8a4a22 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center; gap: 22px; grid-auto-rows: min-content;
  align-content: center;
  background: radial-gradient(120% 120% at 50% 30%, #1f150b, var(--black) 70%);
  transition: opacity .6s ease, visibility .6s;
}
/* the cinematic IS the loading experience — skip the preloader when it's on */
body.cine .preloader { display: none; }
.pre-logo { width: 190px; animation: preFloat 2.2s ease-in-out infinite; filter: drop-shadow(0 18px 34px rgba(0,0,0,.6)); }
@keyframes preFloat { 0%,100% { transform: scale(1); } 50% { transform: scale(1.05); } }
.pre-bar { width: 180px; height: 3px; border-radius: 3px; background: rgba(231,180,90,.15); overflow: hidden; }
.pre-bar span { display: block; height: 100%; width: 40%; border-radius: 3px; background: var(--grad); animation: preSlide 1.1s ease-in-out infinite; }
@keyframes preSlide { 0% { transform: translateX(-120%); } 100% { transform: translateX(340%); } }
body:not(.is-loading) .preloader { opacity: 0; visibility: hidden; pointer-events: none; }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: var(--grad); z-index: 120;
  box-shadow: 0 0 12px rgba(231,180,90,.8);
}

/* ---------- Cursor glow ---------- */
.cursor-glow {
  position: fixed; width: 340px; height: 340px; border-radius: 50%;
  pointer-events: none; z-index: 1; opacity: 0;
  background: radial-gradient(closest-side, rgba(231,180,90,.10), transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity .4s;
}
body.cursor-on .cursor-glow { opacity: 1; }

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--display); font-weight: 600; font-size: .95rem;
  padding: .72em 1.4em; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer; overflow: hidden;
  transition: transform .2s ease, box-shadow .3s ease, background .3s ease, color .2s, border-color .3s;
  white-space: nowrap; will-change: transform;
}
.btn-lg { padding: .95em 1.8em; font-size: 1.04rem; }
.btn-primary {
  background: var(--grad); color: #fff;
  box-shadow: 0 20px 30px -20px rgba(216, 154, 78, .72);
}
.btn-primary::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
  transform: translateX(-100%);
}
.btn-primary:hover::after { animation: btnSheen .8s ease; }
@keyframes btnSheen { to { transform: translateX(100%); } }
.btn-primary:hover { box-shadow: 0 26px 42px -22px rgba(231, 180, 90, .85); }
.btn-ghost { background: transparent; border-color: rgba(138, 74, 34, .35); color: var(--copper); }
.btn-ghost:hover { background: rgba(138, 74, 34, .08); }
.btn-outline { background: rgba(231,180,90,.04); border-color: var(--line-gold); color: var(--gold); }
.btn-outline:hover { background: rgba(231,180,90,.12); border-color: var(--gold); box-shadow: 0 0 24px rgba(231,180,90,.25); }
.btn-light { background: #fff; color: var(--copper); box-shadow: 0 10px 24px -10px rgba(0,0,0,.5); }
.btn-light:hover { transform: translateY(-2px); }
/* matte flat (light theme) */
.btn-gold { background: var(--gold-matte); color: #2a1c0c; box-shadow: 0 18px 28px -20px rgba(200,140,60,.7); }
.btn-gold:hover { background: #d89a2f; transform: translateY(-2px); box-shadow: 0 24px 38px -22px rgba(216,154,78,.8); }
.btn-gold::after { display: none; }
.btn-charcoal { background: var(--charcoal); color: #f6f1e9; }
.btn-charcoal:hover { background: #000; transform: translateY(-2px); }
.arrow { transition: transform .2s; display: inline-block; }
.btn:hover .arrow, .text-link:hover .arrow { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .35s, box-shadow .35s, backdrop-filter .35s;
}
.site-header.scrolled {
  backdrop-filter: saturate(160%) blur(14px);
  background: rgba(13, 8, 3, .82);
  box-shadow: 0 1px 0 rgba(231,180,90,.14), 0 12px 34px -18px rgba(0,0,0,.7);
}
/* hidden during the forge, drops down on resolve */
body.cine .site-header { transform: translateY(-108%); opacity: 0; pointer-events: none; }
body.cine.resolved .site-header {
  transform: none; opacity: 1; pointer-events: auto;
  transition: transform .7s cubic-bezier(.2,.8,.2,1) .1s, opacity .7s ease .1s;
}
.nav-wrap { display: flex; align-items: center; gap: 20px; height: 78px; }
.brand-logo { height: 50px; width: auto; filter: drop-shadow(0 4px 10px rgba(0,0,0,.5)); transition: transform .3s; }
.brand:hover .brand-logo { transform: scale(1.06); }
.nav { display: flex; gap: 4px; margin-left: 14px; margin-right: auto; }
.nav a {
  position: relative; font-family: var(--display); font-weight: 500; font-size: .93rem;
  color: #d8c7ae; padding: .5em .85em; border-radius: 10px;
  transition: color .2s;
}
.nav a::after {
  content: ""; position: absolute; left: .85em; right: .85em; bottom: .3em; height: 2px;
  background: var(--grad); border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform .28s ease;
}
.nav a:hover { color: var(--gold-hi); }
.nav a:hover::after { transform: scaleX(1); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.site-header .btn-ghost { border-color: rgba(231,180,90,.35); color: var(--gold); }
.site-header .btn-ghost:hover { background: rgba(231,180,90,.1); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; z-index: 110; }
.nav-toggle span { width: 24px; height: 2px; background: var(--gold); border-radius: 2px; transition: .3s; }

/* =========================================================
   Cinematic forge intro + dark-gold bull hero
   ========================================================= */

/* ----- Cinematic wrapper (only pins when JS enables .cine) ----- */
.cine-wrap { position: relative; }
.cine-stage { position: relative; }
.forge-canvas { display: none; }
.cine-captions { display: none; }
.cine-skip { display: none; }

body.cine { background: #05030f00; }
body.cine .cine-wrap { height: 760vh; }              /* scroll length for the story */
body.cine .cine-stage {
  position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden;
  background: #060402;
}
body.cine .forge-canvas {
  display: block; position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 1; transition: opacity .6s ease;
}
/* on resolve the HTML hero takes over — fade the canvas out so the bull doesn't double */
body.cine.resolved .forge-canvas { opacity: 0; pointer-events: none; }
/* story captions */
body.cine .cine-captions { display: block; }
.cine-cap {
  position: absolute; left: 50%; top: 71%; transform: translate(-50%,-50%);
  z-index: 3; width: min(90vw, 760px); text-align: center;
  font-family: var(--display); font-weight: 600; letter-spacing: .01em;
  font-size: clamp(1.2rem, 3vw, 2rem); color: #f0e0c2;
  opacity: 0; pointer-events: none; text-shadow: 0 2px 30px rgba(231,180,90,.35);
}
.cine-cap[data-cap="1"] { font-weight: 400; color: #c9b48c; letter-spacing: .06em; font-size: clamp(1rem, 2.4vw, 1.5rem); }
.cine-cap .ell { animation: ell 1.4s steps(4) infinite; }
@keyframes ell { 0% { opacity: .2; } 50% { opacity: 1; } 100% { opacity: .2; } }

/* skip button */
body.cine .cine-skip {
  display: inline-flex; align-items: center; gap: .5em;
  position: absolute; left: 50%; transform: translateX(-50%);
  bottom: calc(22px + env(safe-area-inset-bottom, 0px));
  z-index: 8; background: rgba(20,12,4,.55); border: 1px solid rgba(231,180,90,.4);
  color: var(--gold); font-family: var(--display); font-weight: 600; font-size: .82rem;
  padding: .62em 1.35em; border-radius: 999px; cursor: pointer;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  box-shadow: 0 6px 20px -8px rgba(0,0,0,.6);
  transition: background .25s, opacity .4s, transform .3s;
}
body.cine .cine-skip:hover { background: rgba(231,180,90,.14); }
body.cine .cine-skip span { animation: nudge 1.6s ease-in-out infinite; }
@keyframes nudge { 0%,100% { transform: translateY(0); } 50% { transform: translateY(3px); } }
body.cine.resolved .cine-skip { opacity: 0; pointer-events: none; }

/* ----- Hero (dark gold) ----- */
.hero {
  position: relative; overflow: hidden;
  min-height: 92vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 130px 0 64px; color: #f4e9d8;
  background: radial-gradient(130% 120% at 50% -10%, #2f1e0e 0%, var(--espresso) 48%, var(--black) 100%);
}
.hero-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; max-width: 800px; order: 1; }
.scroll-hint { order: 2; }

/* when running inside the cinematic, hero overlays the stage & waits for resolve */
body.cine .cine-stage .hero {
  position: absolute; inset: 0; min-height: 0; z-index: 2;
  padding-top: 92px; opacity: 0; pointer-events: none;
  transition: opacity .9s ease;
  background: radial-gradient(130% 120% at 50% -10%, #2f1e0e 0%, var(--espresso) 48%, var(--black) 100%);
}
body.cine.resolved .cine-stage .hero { opacity: 1; pointer-events: auto; }

/* hero UI entrance (plays on resolve / normal load) */
.hero-fx { opacity: 0; transform: translateY(22px); }
body.resolved .hero-fx, body:not(.cine) .hero-fx {
  animation: heroIn .85s cubic-bezier(.2,.7,.2,1) forwards; animation-delay: var(--fx, 0s);
}
@keyframes heroIn { to { opacity: 1; transform: none; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--display); font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; font-size: .74rem;
  color: var(--gold); padding: .55em 1.1em; border: 1px solid rgba(231,180,90,.3);
  border-radius: 999px; background: rgba(231,180,90,.06); margin-bottom: 18px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 0 rgba(231,180,90,.6); animation: ping 2s ease-out infinite; }
@keyframes ping { 70% { box-shadow: 0 0 0 9px rgba(231,180,90,0); } 100% { box-shadow: 0 0 0 0 rgba(231,180,90,0); } }

.hero-title {
  font-family: var(--display); font-weight: 800; line-height: 1.03;
  font-size: clamp(2.3rem, 5vw, 3.9rem); letter-spacing: -.02em; margin-bottom: 16px;
}
.hero-sub { font-size: 1.05rem; color: #d8c7ae; max-width: 560px; margin-bottom: 26px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.hero-badges { list-style: none; display: flex; align-items: center; gap: 22px; margin-top: 26px; flex-wrap: wrap; justify-content: center; }
.hero-badges li b { display: block; font-family: var(--display); font-size: 1.3rem; color: var(--gold-hi); }
.hero-badges li span { font-size: .85rem; color: #b7a184; }
.hero-badges .sep { width: 1px; height: 34px; background: linear-gradient(180deg, transparent, rgba(231,180,90,.4), transparent); }

/* ----- Pseudo-3D layered bull ----- */
.bull3d {
  order: 0; position: relative; z-index: 1;
  width: min(58vw, 264px); aspect-ratio: 735 / 650; margin-bottom: 8px;
  transform-style: preserve-3d; transition: transform .2s cubic-bezier(.2,.7,.3,1);
  will-change: transform;
}
.bull-aura {
  position: absolute; inset: -12%; z-index: 0; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(231,180,90,.28), transparent 70%);
  filter: blur(12px); animation: auraPulse 5s ease-in-out infinite;
}
@keyframes auraPulse { 0%,100% { opacity: .75; transform: scale(1); } 50% { opacity: 1; transform: scale(1.06); } }
.bull3d .bl { position: absolute; inset: 0; margin: auto; width: 100%; height: 100%; object-fit: contain; user-select: none; }
.bl-shadow { z-index: 1; filter: brightness(0) blur(8px); opacity: .3; transform: translateY(14px) scale(.98); }
.bl-main {
  z-index: 2; animation: bullBreath 6s ease-in-out infinite;
  filter: drop-shadow(0 22px 36px rgba(0,0,0,.55));
}
@keyframes bullBreath { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-7px) scale(1.01); } }

/* scroll hint */
.scroll-hint { position: relative; z-index: 2; display: grid; place-items: center; margin-top: 30px; }
.mouse { width: 26px; height: 42px; border: 2px solid rgba(231,180,90,.5); border-radius: 14px; display: grid; justify-items: center; padding-top: 7px; }
.wheel { width: 4px; height: 8px; border-radius: 4px; background: var(--gold); animation: wheel 1.6s ease-in-out infinite; }
@keyframes wheel { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(12px); opacity: 0; } 100% { opacity: 0; } }

/* tagline marquee (dark) */
.tagline-strip {
  position: relative; z-index: 3; border-top: 1px solid rgba(231,180,90,.16);
  border-bottom: 1px solid rgba(231,180,90,.16);
  background: #0d0803; overflow: hidden; padding: 15px 0;
}
.marquee { display: flex; width: max-content; animation: scroll 32s linear infinite; }
.tagline-strip:hover .marquee { animation-play-state: paused; }
.marquee span {
  font-family: var(--display); font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; font-size: .82rem; color: var(--gold); opacity: .95;
}
.marquee i { font-style: normal; color: var(--bronze-2); margin: 0 .6em; }
@keyframes scroll { to { transform: translateX(-33.333%); } }

/* ============================================================
   Sections — dark cinematic
   ============================================================ */
.section { position: relative; padding: 122px 0; overflow: hidden; background: var(--black); }
/* ambient gold glow behind each section */
.section::before {
  content: ""; position: absolute; left: 50%; top: -8%; z-index: 0;
  width: 1100px; max-width: 130%; height: 540px; transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(231,180,90,.09), transparent 72%);
  pointer-events: none;
}
/* glowing hairline divider at the top edge of each section */
.section::after, .cta-band::before {
  content: ""; position: absolute; top: 0; left: 12%; right: 12%; height: 1px; z-index: 1;
  background: linear-gradient(90deg, transparent, rgba(231,180,90,.4), transparent);
}
.section > .container { position: relative; z-index: 2; }

.section-head { position: relative; z-index: 2; max-width: 740px; margin: 0 auto 60px; text-align: center; }
.kicker {
  font-family: var(--display); font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; font-size: .74rem; color: var(--gold);
}
h2 { font-family: var(--display); font-weight: 800; letter-spacing: -.02em; color: #f4e9d8;
  font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.12; margin: 14px 0 16px; }
.section-lead { color: #b7a184; font-size: 1.06rem; }
.text-link { display: inline-flex; align-items: center; gap: .4em; font-family: var(--display); font-weight: 600; color: var(--gold); }
.text-link:hover { color: var(--gold-hi); }

/* bull watermark (parallax) */
.bull-watermark {
  position: absolute; right: -170px; top: 40%; will-change: transform;
  width: 640px; opacity: .06; z-index: 0; pointer-events: none;
}
.bull-watermark img { width: 100%; filter: drop-shadow(0 0 46px rgba(231,180,90,.25)); }

/* glassy dark card base */
.feature, .highlight-list, .income-card {
  background: linear-gradient(160deg, rgba(255,255,255,.055), rgba(255,255,255,.012));
  border: 1px solid rgba(231,180,90,.14); border-radius: var(--radius);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}

/* About */
.about-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr; gap: 60px; align-items: center; }
.about-copy h2 { text-align: left; }
.about-copy p { color: #c4b193; margin-bottom: 16px; }
.highlight-list { list-style: none; display: grid; gap: 4px; padding: 26px; position: relative;
  box-shadow: 0 34px 66px -34px rgba(0,0,0,.85); }
.highlight-list::before {
  content: ""; position: absolute; inset: -1px; border-radius: var(--radius); padding: 1px;
  background: linear-gradient(140deg, rgba(231,180,90,.55), transparent 42%, transparent 68%, rgba(176,106,44,.45));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.highlight-list li {
  display: flex; align-items: center; gap: 12px; color: #e8dcc8;
  font-family: var(--display); font-weight: 500; padding: 12px 10px;
  border-bottom: 1px dashed rgba(231,180,90,.14); border-radius: 10px;
  transition: background .25s, transform .25s;
}
.highlight-list li:hover { background: rgba(231,180,90,.09); transform: translateX(6px); }
.highlight-list li:last-child { border-bottom: 0; }
.hi-ic { color: var(--gold); font-size: .8rem; transition: transform .3s; }
.highlight-list li:hover .hi-ic { transform: rotate(180deg) scale(1.2); }

/* Stats */
.stats-band {
  position: relative; overflow: hidden; padding: 58px 0;
  background: linear-gradient(180deg, #100a05, var(--black));
  border-top: 1px solid rgba(231,180,90,.12); border-bottom: 1px solid rgba(231,180,90,.12);
}
.stats-band::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 120% at 50% 0%, rgba(231,180,90,.08), transparent 70%);
}
.stats-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; text-align: center; }
.stat b { display: block; font-family: var(--display); font-weight: 800; font-size: 2.5rem;
  background: linear-gradient(100deg, #d89a4e, #ffd98a); -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 0 34px rgba(231,180,90,.18); }
.stat > span { color: #a99373; font-size: .93rem; }
.stat b .count { font: inherit; color: inherit; }

/* Features */
.feature-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.feature {
  position: relative; padding: 32px 26px; overflow: hidden;
  transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s, border-color .3s;
}
.feature:hover {
  transform: translateY(-8px); border-color: rgba(231,180,90,.45);
  box-shadow: 0 28px 54px -26px rgba(0,0,0,.85), 0 0 36px -8px rgba(231,180,90,.22);
}
.f-ic {
  width: 56px; height: 56px; display: grid; place-items: center; font-size: 1.55rem;
  border-radius: 16px; margin-bottom: 18px;
  background: linear-gradient(140deg, rgba(231,180,90,.2), rgba(176,106,44,.08));
  border: 1px solid rgba(231,180,90,.22);
  transition: transform .35s cubic-bezier(.3,1.6,.4,1);
}
.feature:hover .f-ic { transform: scale(1.12) rotate(-6deg); }
.feature h3 { font-family: var(--display); font-weight: 700; font-size: 1.2rem; margin-bottom: 8px; color: #f4e9d8; }
.feature p { color: #b7a184; font-size: .96rem; }

/* spotlight (mouse-follow highlight) */
.spotlight { --mx: 50%; --my: 50%; }
.spotlight::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; opacity: 0;
  background: radial-gradient(280px circle at var(--mx) var(--my), rgba(231,180,90,.16), transparent 65%);
  transition: opacity .35s; pointer-events: none;
}
.spotlight:hover::after { opacity: 1; }

/* ambient particle canvas — must overlay, not take layout space */
.hero-particles {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}

/* Income (deeper dark) */
.section-dark { background: radial-gradient(120% 100% at 80% 0%, #2c1c0d, var(--espresso) 55%, var(--black)); color: #f0e5d3; }
.income-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.income-card {
  position: relative; padding: 28px 22px; overflow: hidden;
  transition: transform .3s cubic-bezier(.2,.7,.3,1), background .3s, border-color .3s, box-shadow .3s;
}
.income-card:hover {
  transform: translateY(-8px) scale(1.015); border-color: rgba(231,180,90,.55);
  box-shadow: 0 20px 44px -18px rgba(0,0,0,.7), 0 0 0 1px rgba(231,180,90,.2), 0 0 34px -6px rgba(231,180,90,.25);
}
.income-card .num {
  font-family: var(--display); font-weight: 800; font-size: 1rem; color: var(--gold); opacity: .6;
  transition: opacity .3s, text-shadow .3s;
}
.income-card:hover .num { opacity: 1; text-shadow: 0 0 16px rgba(231,180,90,.8); }
.income-card h3 { font-family: var(--display); font-weight: 700; font-size: 1.16rem; margin: 10px 0 8px; color: #f4e9d8; }
.income-card p { color: #c4b193; font-size: .92rem; }
.income-cta { background: var(--grad); border: 0; display: flex; flex-direction: column; gap: 10px; justify-content: center; }
.income-cta h3, .income-cta p { color: #fff; }
.income-cta .btn { align-self: flex-start; }
.income-note { position: relative; z-index: 2; text-align: center; margin-top: 32px; font-size: .88rem; color: #a99373; }

/* Journey */
.journey {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; align-items: start; padding-top: 12px;
}
.j-progress { position: absolute; top: 40px; left: 9%; right: 9%; height: 2px; background: rgba(231,180,90,.14); border-radius: 2px; z-index: 0; }
.j-progress span {
  display: block; height: 100%; width: 0; border-radius: 2px;
  background: var(--grad); box-shadow: 0 0 14px rgba(231,180,90,.7);
  transition: width 1.3s cubic-bezier(.2,.7,.2,1);
}
.j-step { position: relative; z-index: 1; text-align: center; }
.j-num {
  width: 58px; height: 58px; display: grid; place-items: center; margin: 0 auto 16px;
  font-family: var(--display); font-weight: 800; font-size: 1.35rem; color: #fff;
  border-radius: 50%; background: var(--grad);
  box-shadow: 0 12px 26px -10px rgba(176,106,44,.8), 0 0 0 6px var(--black), 0 0 0 7px rgba(231,180,90,.25);
  transition: transform .3s cubic-bezier(.3,1.6,.4,1), box-shadow .3s;
}
.j-step:hover .j-num { transform: scale(1.16) rotate(6deg); box-shadow: 0 16px 32px -10px rgba(176,106,44,.95), 0 0 0 6px var(--black), 0 0 30px rgba(231,180,90,.55); }
.j-step h3 { font-family: var(--display); font-weight: 700; margin-bottom: 6px; color: #f4e9d8; }
.j-step p { color: #a99373; font-size: .92rem; padding: 0 6px; }

/* CTA */
.cta-band {
  position: relative; overflow: hidden; text-align: center;
  background: radial-gradient(130% 150% at 50% 0%, #2c1c0d, var(--espresso) 60%, var(--black));
  color: #f4e9d8; padding: 116px 0;
}
.cta-glow { position: absolute; inset: 0; background: radial-gradient(closest-side at 50% 0%, rgba(231,180,90,.28), transparent 60%); animation: ctaGlow 6s ease-in-out infinite alternate; }
@keyframes ctaGlow { to { opacity: .5; } }
.cta-bull {
  position: absolute; left: 50%; bottom: -14%; transform: translateX(-50%);
  width: 560px; opacity: .07; pointer-events: none; will-change: transform;
}
.cta-inner { position: relative; z-index: 2; max-width: 640px; }
.cta-inner p { color: #d8c7ae; font-size: 1.12rem; margin: 12px auto 30px; }

/* Footer */
.site-footer { position: relative; background: #060402; color: #cbb89b; padding: 66px 0 28px; border-top: 1px solid rgba(231,180,90,.12); }
.footer-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 34px; }
.footer-logo { height: 56px; margin-bottom: 16px; }
.footer-brand p { font-size: .94rem; color: #a89173; max-width: 320px; }
.footer-col h4 { font-family: var(--display); color: var(--gold); font-size: .95rem; margin-bottom: 14px; letter-spacing: .04em; }
.footer-col a { display: block; padding: 5px 0; color: #b8a488; font-size: .93rem; transition: color .2s, padding-left .25s; }
.footer-col a:hover { color: var(--gold-hi); padding-left: 6px; }
.chip { display: inline-block; margin: 0 8px 8px 0; padding: .4em .95em; font-size: .8rem;
  border: 1px solid rgba(231,180,90,.3); border-radius: 999px; color: var(--gold); transition: background .25s, box-shadow .25s; }
.chip:hover { background: rgba(231,180,90,.1); box-shadow: 0 0 18px rgba(231,180,90,.25); }
.footer-bottom { position: relative; z-index: 2; margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(231,180,90,.12); }
.disclaimer { font-size: .82rem; color: #8f7a5f; max-width: 900px; margin-bottom: 12px; }
.copyright { font-size: .84rem; color: #a89173; }

/* Reveal animation (cinematic focus-pull) */
.reveal { opacity: 0; transform: translateY(34px); filter: blur(9px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1), filter .9s ease; }
.reveal.in { opacity: 1; transform: none; filter: blur(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .journey { grid-template-columns: repeat(2, 1fr); gap: 30px 18px; }
  .j-progress { display: none; }
  /* bento -> headline + bull stacked, trust row of 3 */
  .bento {
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas:
      "main main bull"
      "usdt bep  glob";
  }
  .b-main { padding: 38px 34px; }
  .b-bull { min-height: 300px; }
}
@media (max-width: 900px) {
  .nav, .nav-cta { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .nav.open {
    display: flex; position: absolute; top: 78px; left: 0; right: 0; flex-direction: column;
    background: rgba(13,8,3,.97); backdrop-filter: blur(14px);
    padding: 12px 24px 22px; border-bottom: 1px solid rgba(231,180,90,.15); gap: 2px;
    box-shadow: 0 20px 40px -24px rgba(0,0,0,.6);
  }
  .hero { padding-top: 104px; }
  body.cine .cine-stage .hero { padding-top: 84px; }
  .bull3d { width: min(48vw, 200px); }
  .hero-title { font-size: clamp(1.9rem, 6vw, 2.8rem); }
  .hero-sub { font-size: 1rem; margin-bottom: 24px; }
  .about-grid { grid-template-columns: 1fr; }
  /* bento -> main full, bull full, trust row of 3 */
  .bento {
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas:
      "main main main"
      "bull bull bull"
      "usdt bep  glob";
  }
  .b-bull { min-height: 280px; }
  .feature-grid { grid-template-columns: repeat(2,1fr); }
  .income-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 26px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .bull-watermark, .cursor-glow { display: none; }
}
@media (max-width: 620px) {
  /* bento -> everything stacks one per row */
  .bento {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "bull"
      "usdt"
      "bep"
      "glob";
    gap: 12px;
  }
  .b-main { padding: 32px 26px; }
  .b-bull { min-height: 300px; }
}
@media (max-width: 560px) {
  .section { padding: 72px 0; }
  .feature-grid, .income-grid, .journey { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  /* --- compact hero so it fits one phone screen --- */
  body.cine .cine-stage .hero { padding-top: 68px; }
  .hero { padding: 82px 20px 34px; }
  .bull3d { width: min(42vw, 148px); margin-bottom: 2px; }
  .eyebrow { font-size: .58rem; letter-spacing: .09em; padding: .45em .85em; margin-bottom: 12px; }
  .hero-title { font-size: clamp(1.55rem, 7.6vw, 2.15rem); margin-bottom: 12px; }
  .hero-sub { font-size: .9rem; line-height: 1.5; margin-bottom: 20px; max-width: 340px; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn-lg { padding: .74em 1.5em; font-size: .94rem; }
  .hero-badges { gap: 14px; margin-top: 16px; }
  .hero-badges li b { font-size: 1.05rem; }
  .hero-badges li span { font-size: .76rem; }
  .hero-badges .sep { height: 26px; }
  .scroll-hint { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .hero-in { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}
