:root {
  --bg-0: #050b18;
  --bg-1: #0A1628;
  --bg-2: #0D2147;
  --bg-3: #1A3A6B;
  --accent-1: #4A9EFF;
  --accent-2: #60B0FF;
  --accent-3: #8FC4FF;
  --white: #FFFFFF;
  --soft: #E8F0FF;
  --muted: rgba(232, 240, 255, 0.62);
  --dim: rgba(232, 240, 255, 0.42);
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-bg-2: rgba(74, 158, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.10);
  --glass-border-2: rgba(74, 158, 255, 0.22);
  --gold: #f0c674;
  --shadow-deep: 0 30px 80px -20px rgba(0,0,0,0.55);
  --shadow-glow: 0 10px 40px -10px rgba(74,158,255,0.45);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-title: 'Anton', 'Archivo Black', Impact, sans-serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg-0);
  color: var(--soft);
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "ss02";
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- GLOBAL BACKGROUND MESH ---------- */
.site-bg {
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(1100px 700px at 78% -10%, rgba(74,158,255,0.18), transparent 60%),
    radial-gradient(900px 600px at 8% 28%, rgba(96,176,255,0.12), transparent 55%),
    radial-gradient(800px 600px at 50% 78%, rgba(26,58,107,0.55), transparent 60%),
    linear-gradient(180deg, #05101f 0%, #07182d 35%, #050d1d 70%, #03070f 100%);
}
.site-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 1.5px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  opacity: 0.55;
}

.mesh {
  position: fixed; inset: -10vmax; z-index: -1; pointer-events: none;
  filter: blur(70px); opacity: 0.55;
}
.mesh i {
  position: absolute; border-radius: 50%;
  mix-blend-mode: screen;
}
.mesh i:nth-child(1) { width: 38vmax; height: 38vmax; left: -8vmax; top: -10vmax; background: radial-gradient(circle, rgba(74,158,255,0.55), transparent 70%); animation: meshA 22s ease-in-out infinite alternate; }
.mesh i:nth-child(2) { width: 30vmax; height: 30vmax; right: -6vmax; top: 18vmax; background: radial-gradient(circle, rgba(96,176,255,0.45), transparent 70%); animation: meshB 28s ease-in-out infinite alternate; }
.mesh i:nth-child(3) { width: 40vmax; height: 40vmax; left: 18vmax; bottom: -12vmax; background: radial-gradient(circle, rgba(26,58,107,0.65), transparent 70%); animation: meshC 32s ease-in-out infinite alternate; }
@keyframes meshA { to { transform: translate(8vmax, 6vmax) scale(1.15); } }
@keyframes meshB { to { transform: translate(-10vmax, 12vmax) scale(0.95); } }
@keyframes meshC { to { transform: translate(6vmax, -10vmax) scale(1.1); } }

/* Hero interactive canvas */
.hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ---------- LOADING SCREEN ---------- */
.loader {
  position: fixed; inset: 0; z-index: 100;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background:
    radial-gradient(900px 600px at 50% 40%, rgba(74,158,255,0.22), transparent 60%),
    radial-gradient(700px 500px at 50% 90%, rgba(26,58,107,0.7), transparent 60%),
    linear-gradient(180deg, #050d1f 0%, #03060f 100%);
  transition: opacity 0.9s ease, visibility 0.9s ease;
  gap: 36px;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-logo { position: relative; width: 220px; height: 220px; }
.loader-logo .ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(74,158,255,0.25);
  box-shadow: inset 0 0 60px rgba(74,158,255,0.15);
  animation: ringPulse 2.4s ease-in-out infinite;
}
.loader-logo .glow {
  position: absolute; inset: -40px; border-radius: 50%;
  background: radial-gradient(circle, rgba(74,158,255,0.45), transparent 65%);
  filter: blur(20px);
  animation: ringPulse 3s ease-in-out infinite;
}
@keyframes ringPulse { 50% { transform: scale(1.04); opacity: 0.85; } }

.loader-logo svg .ldot { opacity: 0; transform-origin: center; transform-box: fill-box; }
.loader-logo.go svg .ldot { animation: dotIn 0.6s cubic-bezier(.2,.7,.2,1) forwards; }

@keyframes dotIn {
  0% { opacity: 0; transform: scale(0.2); }
  60% { opacity: 1; transform: scale(1.2); }
  100% { opacity: 1; transform: scale(1); }
}

.loader-title {
  font-family: var(--font-title);
  font-weight: 400;
  letter-spacing: 0.32em;
  font-size: 20px;
  color: var(--soft);
  display: flex; gap: 2px;
  text-indent: 0.32em;
  text-transform: uppercase;
}
.loader-title span {
  opacity: 0;
  transform: translateY(8px);
  animation: letterIn 0.5s ease forwards;
}
@keyframes letterIn { to { opacity: 1; transform: translateY(0); } }

.loader-sub {
  font-size: 11px;
  letter-spacing: 0.38em;
  color: var(--dim);
  text-indent: 0.38em;
  opacity: 0;
  animation: letterIn 0.6s ease forwards 1.4s;
}

.loader-bar {
  width: 220px; height: 2px; border-radius: 2px;
  background: rgba(255,255,255,0.08); overflow: hidden;
  position: relative;
}
.loader-bar i {
  position: absolute; inset: 0; width: 0;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2), var(--white));
  box-shadow: 0 0 12px var(--accent-2);
  animation: barFill 2.6s cubic-bezier(.5,.05,.2,1) forwards;
}
@keyframes barFill { to { width: 100%; } }

/* ---------- NAVBAR (floating pill) ---------- */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: min(720px, calc(100% - 24px));
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 10px 8px 14px;
  gap: 12px;
  border-radius: 999px;
  background: rgba(7, 16, 30, 0.55);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  box-shadow: 0 14px 40px -16px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.05);
  transition: top 0.35s ease, width 0.35s ease, background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.nav.scrolled {
  top: 12px;
  width: min(640px, calc(100% - 24px));
  background: rgba(6, 14, 26, 0.78);
  box-shadow: 0 22px 56px -20px rgba(0,0,0,0.75), inset 0 1px 0 rgba(255,255,255,0.06), 0 0 0 1px rgba(74,158,255,0.12);
}
.nav-brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.nav-brand .nav-logo {
  width: 32px; height: 32px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #2f6fd0, #0e2552 70%);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 4px 14px rgba(74,158,255,0.35), inset 0 0 16px rgba(255,255,255,0.06);
  overflow: hidden; flex: 0 0 auto;
  display: grid; place-items: center;
}
.nav-brand .nav-logo img { width: 100%; height: 100%; object-fit: cover; }
.nav-brand .b1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
}

.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none;
}
.nav-links a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  transition: all 0.2s ease;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.nav-links a.has-icon img { width: 14px; height: 14px; border-radius: 3px; object-fit: cover; }

.btn-cta {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  color: white;
  background: linear-gradient(135deg, #2563d0 0%, #4A9EFF 55%, #60B0FF 100%);
  box-shadow: 0 8px 24px -8px rgba(74,158,255,0.7), inset 0 1px 0 rgba(255,255,255,0.35);
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
  flex: 0 0 auto;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 32px -8px rgba(74,158,255,0.85), inset 0 1px 0 rgba(255,255,255,0.4); }
.btn-cta:active { transform: translateY(0) scale(0.98); }
.btn-cta::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,0.55) 50%, transparent 65%);
  transform: translateX(-150%);
  animation: shimmer 3.2s ease-in-out infinite;
}
@keyframes shimmer { 0%, 30% { transform: translateX(-150%); } 60%, 100% { transform: translateX(150%); } }

/* Nav mobile menu trigger */
.nav-menu-btn {
  display: none;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  align-items: center; justify-content: center;
  color: var(--soft);
  flex: 0 0 auto;
  transition: all 0.2s ease;
}
.nav-menu-btn:hover { background: rgba(255,255,255,0.08); }
.nav-menu-btn svg { width: 16px; height: 16px; }

.nav-mobile {
  position: fixed; top: 70px; left: 12px; right: 12px;
  z-index: 49;
  padding: 16px;
  border-radius: 22px;
  background: rgba(6, 14, 26, 0.92);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.7);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all 0.3s ease;
}
.nav-mobile.open { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-mobile ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.nav-mobile a {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 14px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--soft);
  border: 1px solid transparent;
}
.nav-mobile a:hover, .nav-mobile a:active { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.08); }
.nav-mobile a.has-icon img { width: 22px; height: 22px; border-radius: 6px; object-fit: cover; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-menu-btn { display: inline-flex; }
  .nav { width: calc(100% - 24px); }
  .nav.scrolled { width: calc(100% - 24px); }
}
@media (max-width: 480px) {
  .nav-brand .b1 { font-size: 14px; }
  .btn-cta { padding: 8px 13px; font-size: 12.5px; }
}

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  color: var(--soft);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.25s ease;
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.25); transform: translateY(-2px); }

/* ---------- LAYOUT ---------- */
.section { position: relative; padding: 110px 22px; max-width: 1180px; margin: 0 auto; }
.section--narrow { max-width: 980px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent-3);
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(74,158,255,0.08);
  border: 1px solid rgba(74,158,255,0.22);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 8px var(--accent-2);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 50% { transform: scale(1.4); opacity: 0.6; } }

.h-display {
  font-family: var(--font-title);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.005em;
  color: var(--white);
  text-transform: uppercase;
}
.h-display em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.01em;
  line-height: 1.15;
  display: inline-block;
  padding: 0.06em 0.02em 0.04em;
  background: linear-gradient(120deg, #93c4ff 0%, #ffffff 50%, #5fa9ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-title { font-size: clamp(38px, 7vw, 76px); }
.section-sub { color: var(--muted); max-width: 620px; margin-top: 16px; font-size: clamp(15px, 1.6vw, 17px); line-height: 1.55; }

/* glass card base */
.glass {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.045) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 22px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 18px 50px -28px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.06);
  overflow: hidden;
}
.glass::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(450px 180px at 0% 0%, rgba(74,158,255,0.12), transparent 60%);
  opacity: 0.7;
}

/* reveal animation */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s cubic-bezier(.2,.7,.2,1), transform 0.9s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal-child > * { opacity: 0; transform: translateY(22px); transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1); }
.reveal-child.in > * { opacity: 1; transform: none; }
.reveal-child.in > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-child.in > *:nth-child(2) { transition-delay: 0.14s; }
.reveal-child.in > *:nth-child(3) { transition-delay: 0.23s; }
.reveal-child.in > *:nth-child(4) { transition-delay: 0.32s; }
.reveal-child.in > *:nth-child(5) { transition-delay: 0.41s; }
.reveal-child.in > *:nth-child(6) { transition-delay: 0.5s; }

/* ---------- HERO ---------- */
.hero {
  padding-top: 120px; padding-bottom: 80px;
  min-height: 100vh;
  display: grid; align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-inner { text-align: center; max-width: 880px; margin: 0 auto; padding: 0 6px; position: relative; z-index: 2; }

/* Magnetic title — whole group tilts toward cursor via --tx/--ty (-1..1) */
.magnetic {
  --tx: 0; --ty: 0;
  perspective: 1000px;
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1);
}
.magnetic-inner {
  transform:
    rotateX(calc(var(--ty) * -6deg))
    rotateY(calc(var(--tx) * 8deg))
    translateZ(0);
  transition: transform 0.25s cubic-bezier(.2,.7,.2,1);
  transform-style: preserve-3d;
  will-change: transform;
}
.magnetic-inner .hero-title { transform: translateZ(60px); }
.magnetic-inner .hero-pill { transform: translateZ(80px); }
.magnetic-inner .hero-sub { transform: translateZ(30px); }
.magnetic-inner .hero-actions { transform: translateZ(50px); }

/* Per-letter title animation */
.title-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) rotate(6deg);
  animation: letterRise 0.8s cubic-bezier(.2,.7,.2,1) forwards;
  will-change: transform;
  text-transform: uppercase;
}
.title-letter.italic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.01em;
  line-height: 1.18;
  padding-top: 0.08em;
  background: linear-gradient(120deg, #93c4ff 0%, #ffffff 50%, #5fa9ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@keyframes letterRise {
  to { opacity: 1; transform: translateY(0) rotate(0); }
}
.title-letter:hover {
  transform: translateY(-6px) scale(1.05);
  transition: transform 0.3s cubic-bezier(.2,.7,.2,1);
}

/* Live ticker */
.ticker {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 8px 14px 8px 8px;
  border-radius: 999px;
  background: rgba(7, 18, 36, 0.55);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-size: 13px;
  font-weight: 500;
  color: var(--soft);
  margin-bottom: 22px;
}
.ticker .live-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(74,222,128,0.12);
  color: #86efac;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}
.ticker .live-badge i {
  width: 6px; height: 6px; border-radius: 50%; background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: pulse 1.4s ease-in-out infinite;
}
.ticker .pair { color: var(--dim); font-size: 12px; letter-spacing: 0.06em; }
.ticker .price { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--white); }
.ticker .delta { color: #86efac; font-size: 12px; font-weight: 600; }
.ticker .delta.down { color: #fca5a5; }
.ticker .spark { width: 60px; height: 20px; }

/* Floating signal cards */
.float-card {
  position: absolute;
  z-index: 1;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(8, 19, 38, 0.65);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 24px 50px -20px rgba(0,0,0,0.6);
  font-size: 12px;
  min-width: 180px;
  text-align: left;
  animation: floatBob 6s ease-in-out infinite;
}
.float-card .row { display: flex; align-items: center; gap: 10px; }
/* avatar stack with images */
.float-card .avatars i,
.float-card .avatars img {
  width: 26px; height: 26px; border-radius: 50%;
  border: 2px solid #0a1628;
  background: linear-gradient(135deg, #4A9EFF, #1A3A6B);
  margin-left: -8px;
  object-fit: cover;
  display: block;
}
.float-card .avatars img:first-child,
.float-card .avatars i:first-child { margin-left: 0; }

.float-card .row + .row { margin-top: 8px; }
.float-card .label { font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--dim); }
.float-card .value { font-family: var(--font-display); font-weight: 600; color: var(--white); font-size: 18px; }
.float-card .badge {
  font-size: 10.5px; padding: 3px 8px; border-radius: 999px;
  background: rgba(74,222,128,0.14); color: #86efac;
  font-weight: 600; letter-spacing: 0.06em;
}
.float-card .badge.buy { background: rgba(74,222,128,0.14); color: #86efac; }
.float-card .badge.sell { background: rgba(252,165,165,0.14); color: #fca5a5; }
.float-card .mini-spark { width: 36px; height: 22px; }
.float-card .avatars { display: flex; align-items: center; }
.float-card.fc-1 { top: 18%; left: 6%; animation-delay: 0s; }
.float-card.fc-2 { top: 30%; right: 5%; animation-delay: -2s; }
.float-card.fc-3 { bottom: 18%; left: 8%; animation-delay: -4s; }
.float-card.fc-4 { bottom: 22%; right: 7%; animation-delay: -1s; }

@media (max-width: 1100px) {
  .float-card.fc-1, .float-card.fc-3 { left: 2%; }
  .float-card.fc-2, .float-card.fc-4 { right: 2%; }
}
@media (max-width: 820px) {
  .float-card { display: none; }
}

/* Scroll indicator */
.scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 10.5px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--dim);
  z-index: 2;
}
.scroll-cue .line {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, transparent, var(--accent-2), transparent);
  background-size: 100% 200%;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { background-position: 0 -100%; }
  100% { background-position: 0 200%; }
}

.hero-logo {
  width: clamp(160px, 36vw, 260px); height: clamp(160px, 36vw, 260px);
  margin: 0 auto 28px;
  position: relative;
  filter: drop-shadow(0 24px 50px rgba(74,158,255,0.45));
}
.hero-logo .halo {
  position: absolute; inset: -22%; border-radius: 50%;
  background: radial-gradient(circle, rgba(74,158,255,0.55), transparent 60%);
  filter: blur(28px); opacity: 0.8;
  animation: ringPulse 4s ease-in-out infinite;
}
.hero-logo img {
  position: relative; width: 100%; height: 100%; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow:
    inset 0 0 80px rgba(255,255,255,0.06),
    0 30px 60px -20px rgba(0,0,0,0.6),
    0 0 0 1px rgba(74,158,255,0.25);
  animation: floatBob 8s ease-in-out infinite;
}
@keyframes floatBob { 50% { transform: translateY(-10px); } }

.hero-title {
  font-size: clamp(46px, 11vw, 116px);
  margin-bottom: 18px;
  line-height: 1;
  padding-top: 0.04em;
}
.hero-sub {
  color: var(--muted);
  font-size: clamp(15px, 2vw, 19px);
  line-height: 1.55;
  max-width: 580px;
  margin: 0 auto 28px;
}

.hero-actions {
  display: flex; flex-direction: column; gap: 12px;
  align-items: stretch;
  max-width: 380px; margin: 0 auto;
}
.btn-hero-primary {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 26px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, #1f57c2 0%, #4A9EFF 50%, #76c1ff 100%);
  box-shadow:
    0 14px 40px -10px rgba(74,158,255,0.75),
    inset 0 1px 0 rgba(255,255,255,0.45),
    inset 0 -10px 30px -10px rgba(11,30,70,0.4);
  overflow: hidden;
  isolation: isolate;
  min-height: 54px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-hero-primary::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.6) 50%, transparent 70%);
  transform: translateX(-150%);
  animation: shimmer 3.2s ease-in-out infinite 0.4s;
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 50px -12px rgba(74,158,255,0.9), inset 0 1px 0 rgba(255,255,255,0.5); }
.btn-hero-primary:active { transform: translateY(-1px) scale(0.99); }

.btn-hero-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 14px;
  color: var(--soft);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  min-height: 54px;
  transition: all 0.25s ease;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.3); transform: translateY(-2px); }

.slot-pulse {
  margin-top: 26px;
  font-size: 13px;
  color: var(--accent-3);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(74,158,255,0.06);
  border: 1px solid rgba(74,158,255,0.18);
  animation: slotPulse 2.4s ease-in-out infinite;
}
@keyframes slotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,158,255,0.45); }
  50% { box-shadow: 0 0 0 12px rgba(74,158,255,0); }
}

.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-3);
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  margin-bottom: 24px;
}



/* ---------- PARTNER MARQUEE ---------- */
.partners {
  position: relative;
  padding: 28px 0 36px;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(180deg, rgba(7,16,30,0.4), rgba(7,16,30,0.1));
  overflow: hidden;
}
.partners-label {
  text-align: center;
  font-size: 10.5px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 18px;
}
.partners-label span {
  display: inline-flex; align-items: center; gap: 12px;
}
.partners-label span::before, .partners-label span::after {
  content: ""; width: 24px; height: 1px; background: rgba(255,255,255,0.18);
}
.marquee {
  display: flex; overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}
.marquee-track {
  display: flex; flex: 0 0 auto;
  gap: 56px;
  padding-right: 56px;
  animation: marquee 32s linear infinite;
  align-items: center;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-100%); } }
.partner-chip {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 10px 22px 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  white-space: nowrap;
}
.partner-chip img {
  width: 46px; height: 46px; border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.15);
  background: #061227;
}
.partner-chip .pt-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--white);
  letter-spacing: 0.01em;
  line-height: 1;
}
.partner-chip .pt-sub {
  font-size: 10.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 5px;
}
.partner-chip .star {
  color: var(--accent-2);
  font-size: 18px;
  display: inline-flex;
  filter: drop-shadow(0 0 6px rgba(74,158,255,0.6));
}

/* ---------- TEAM ---------- */
.team-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
}
.team-card {
  position: relative;
  padding: 30px 28px;
  display: flex; gap: 24px; align-items: flex-start;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease;
}
.team-card:hover { transform: translateY(-4px); border-color: rgba(74,158,255,0.32); }
.team-card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(400px 200px at 0% 0%, rgba(74,158,255,0.14), transparent 60%);
}
.team-photo {
  position: relative;
  width: 104px; height: 104px; border-radius: 50%;
  overflow: hidden; flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 18px 36px -14px rgba(0,0,0,0.7), inset 0 0 0 3px rgba(7,16,30,0.6);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo::after {
  content: ""; position: absolute; inset: -3px; border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(74,158,255,0.0), rgba(74,158,255,0.6), rgba(255,255,255,0.5), rgba(74,158,255,0.0));
  z-index: -1; filter: blur(8px); opacity: 0.7;
  animation: spin 8s linear infinite;
}
.team-info { flex: 1; min-width: 0; position: relative; z-index: 1; }
.team-role {
  font-size: 10.5px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--accent-3); margin-bottom: 6px;
}
.team-name {
  font-family: var(--font-display); font-weight: 600;
  color: var(--white); font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.team-handle {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--accent-2);
  letter-spacing: 0.04em;
  font-weight: 500;
}
.team-blurb {
  color: var(--muted);
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
}
.team-actions { margin-top: 16px; display: flex; gap: 8px; flex-wrap: wrap; }
.team-tg {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(74,158,255,0.10);
  border: 1px solid rgba(74,158,255,0.3);
  color: var(--accent-2);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
}
.team-tg:hover { background: rgba(74,158,255,0.18); color: var(--white); transform: translateY(-2px); }
.team-stats {
  display: flex; gap: 14px; margin-top: 18px; flex-wrap: wrap;
}
.team-stats > div {
  padding-right: 14px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.team-stats > div:last-child { border-right: none; }
.team-stats .n { font-family: var(--font-display); font-weight: 600; color: var(--white); font-size: 17px; line-height: 1; }
.team-stats .l { font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--dim); margin-top: 4px; }

@media (max-width: 760px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-card { padding: 24px 20px; gap: 18px; }
  .team-photo { width: 86px; height: 86px; }
  .team-name { font-size: 20px; }
}

/* ---------- TUTORIAL HFM ---------- */
.tut-head {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-bottom: 30px;
}
.tut-broker-chip {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 16px 10px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
}
.tut-broker-chip img {
  width: 30px; height: 30px; border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.15);
}
.tut-broker-chip .l { font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--dim); }
.tut-broker-chip .n { font-family: var(--font-display); font-weight: 600; color: var(--white); font-size: 15px; margin-top: 2px; line-height: 1; }

.tut-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  counter-reset: step;
}
.tut-card {
  position: relative;
  padding: 26px 22px 22px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
}
.tut-card:hover { transform: translateY(-4px); border-color: rgba(74,158,255,0.32); }
.tut-card .step {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 56px;
  line-height: 1;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(74,158,255,0.6), rgba(255,255,255,0.15));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.tut-card h4 {
  font-family: var(--font-display); font-weight: 600;
  color: var(--white); font-size: 19px;
  letter-spacing: -0.005em;
  line-height: 1.15;
}
.tut-card p { color: var(--muted); font-size: 13.5px; line-height: 1.55; }
.tut-card .pill {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px; border-radius: 999px;
  font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
  background: rgba(74,158,255,0.08);
  border: 1px solid rgba(74,158,255,0.22);
  color: var(--accent-3);
  width: fit-content;
}
.tut-cta {
  margin-top: 28px;
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 16px;
  padding: 22px 24px;
  border-radius: 20px;
  background: linear-gradient(120deg, rgba(74,158,255,0.10), rgba(13,33,71,0.30));
  border: 1px solid rgba(74,158,255,0.28);
}
.tut-cta .left { display: flex; align-items: center; gap: 14px; flex: 1; min-width: 240px; }
.tut-cta .left img { width: 44px; height: 44px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.12); }
.tut-cta .left .t { font-family: var(--font-display); font-weight: 600; color: var(--white); font-size: 17px; }
.tut-cta .left .s { color: var(--muted); font-size: 13px; margin-top: 2px; }
.tut-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  color: white;
  background: linear-gradient(135deg, #1f57c2 0%, #4A9EFF 50%, #76c1ff 100%);
  box-shadow: 0 10px 30px -10px rgba(74,158,255,0.7);
  transition: transform 0.25s ease;
}
.tut-cta-btn:hover { transform: translateY(-2px); }

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

/* ---------- STATS ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.stat {
  padding: 26px 22px 22px;
  text-align: left;
  transition: transform 0.4s ease, border-color 0.4s ease;
}
.stat:hover { transform: translateY(-4px); border-color: rgba(74,158,255,0.35); }
.stat-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(74,158,255,0.18), rgba(96,176,255,0.08));
  border: 1px solid rgba(74,158,255,0.25);
  display: grid; place-items: center;
  font-size: 18px;
  margin-bottom: 18px;
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(34px, 5vw, 48px);
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1;
  display: flex; align-items: baseline; gap: 2px;
}
.stat-num .unit { font-size: 0.55em; color: var(--accent-2); font-weight: 500; margin-left: 2px; }
.stat-label {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ---------- NARRATIVE ---------- */
.narrative {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 28px; align-items: stretch;
}
.narrative-card { padding: 38px 34px; }
.narrative-card p {
  color: var(--soft);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 18px;
  text-wrap: pretty;
}
.narrative-card p:last-child { margin-bottom: 0; }
.narrative-card .kicker {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--accent-3);
  font-size: 19px;
  margin-bottom: 6px;
}

.narrative-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
  overflow: hidden;
}
.narrative-visual .map {
  position: relative; width: 100%; aspect-ratio: 1 / 1; max-width: 360px;
}
.narrative-visual .map img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,0.6),
    inset 0 0 80px rgba(255,255,255,0.05);
}
.narrative-visual .map::after {
  content: ""; position: absolute; inset: -10%; border-radius: 50%;
  border: 1px dashed rgba(74,158,255,0.4);
  animation: spin 30s linear infinite;
}
.narrative-visual .map::before {
  content: ""; position: absolute; inset: -20%; border-radius: 50%;
  border: 1px solid rgba(74,158,255,0.15);
}
@keyframes spin { to { transform: rotate(360deg); } }

.narrative-overlay {
  position: absolute; top: 24px; left: 24px;
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px; border-radius: 999px;
  background: rgba(7, 18, 36, 0.6); border: 1px solid rgba(255,255,255,0.12);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-3);
  backdrop-filter: blur(10px);
}
.narrative-overlay .live-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 8px #4ade80; animation: pulse 1.6s ease-in-out infinite; }

.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 22px; }
.feature {
  padding: 22px 22px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform 0.35s ease, border-color 0.35s ease;
}
.feature:hover { transform: translateY(-3px); border-color: rgba(74,158,255,0.32); }
.feature-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(74,158,255,0.2), rgba(96,176,255,0.06));
  border: 1px solid rgba(74,158,255,0.28);
  display: grid; place-items: center; font-size: 16px;
}
.feature h4 {
  font-family: var(--font-display); font-weight: 600;
  color: var(--white); font-size: 18px;
  letter-spacing: -0.005em;
}
.feature p { color: var(--muted); font-size: 13.5px; line-height: 1.55; }

/* ---------- PNL GALLERY (real screenshots) ---------- */
.pnl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pnl-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1), border-color 0.4s ease, box-shadow 0.4s ease;
  display: flex; flex-direction: column;
  isolation: isolate;
}
.pnl-card:hover {
  transform: translateY(-6px);
  border-color: rgba(74,158,255,0.45);
  box-shadow: 0 30px 60px -22px rgba(74,158,255,0.4);
}
.pnl-card.feature { grid-row: span 2; grid-column: span 1; }
.pnl-thumb {
  position: relative;
  aspect-ratio: 9 / 14;
  overflow: hidden;
  background: #000;
  cursor: zoom-in;
}
.pnl-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1);
}
.pnl-card:hover .pnl-thumb img { transform: scale(1.04); }
.pnl-thumb::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 50%, rgba(5, 11, 24, 0.85) 100%);
}
.pnl-thumb .zoom-hint {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(7, 16, 30, 0.75);
  border: 1px solid rgba(255,255,255,0.18);
  display: grid; place-items: center;
  color: var(--accent-2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}
.pnl-card:hover .zoom-hint { opacity: 1; transform: scale(1); }
.pnl-thumb .pair-tag {
  position: absolute; top: 12px; left: 12px;
  font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent-3);
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(7, 16, 30, 0.75);
  border: 1px solid rgba(74,158,255,0.25);
  backdrop-filter: blur(10px);
}
.pnl-thumb .corner-amount {
  position: absolute; left: 16px; right: 16px; bottom: 14px;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 8px;
}
.pnl-thumb .ca-amt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1;
  color: #86efac;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 24px rgba(0,0,0,0.7);
}
.pnl-thumb .ca-side {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--soft);
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}
.pnl-meta {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(7, 16, 30, 0.4);
}
.pnl-meta .av {
  width: 32px; height: 32px; border-radius: 50%;
  flex: 0 0 auto;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.12);
}
.pnl-meta .who { flex: 1; min-width: 0; }
.pnl-meta .who .n { font-size: 13px; font-weight: 600; color: var(--white); }
.pnl-meta .who .d { font-size: 11px; color: var(--dim); margin-top: 2px; }
.pnl-meta .tag {
  font-size: 10.5px;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  font-weight: 600;
  background: rgba(74,222,128,0.12);
  border: 1px solid rgba(74,222,128,0.3);
  color: #86efac;
  white-space: nowrap;
}
.pnl-meta .tag.scalp { background: rgba(74,158,255,0.12); border-color: rgba(74,158,255,0.3); color: var(--accent-2); }
.pnl-meta .tag.swing { background: rgba(251,146,60,0.12); border-color: rgba(251,146,60,0.3); color: #fdba74; }

/* Gallery CTA row */
.gallery-cta-row {
  margin-top: 30px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
  padding: 18px 22px;
  border-radius: 18px;
  background: linear-gradient(120deg, rgba(74,158,255,0.08), rgba(13,33,71,0.20));
  border: 1px solid rgba(74,158,255,0.22);
}
.gallery-cta-row .lhs { display: flex; align-items: center; gap: 14px; }
.gallery-cta-row .lhs .ic {
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(74,158,255,0.18);
  border: 1px solid rgba(74,158,255,0.35);
  color: var(--accent-2);
}
.gallery-cta-row .t { font-family: var(--font-display); font-weight: 600; color: var(--white); font-size: 17px; line-height: 1.1; }
.gallery-cta-row .s { color: var(--muted); font-size: 13px; margin-top: 3px; }
.gallery-cta-row .btn-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1f57c2, #4A9EFF);
  color: white;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 10px 30px -10px rgba(74,158,255,0.7);
  transition: transform 0.25s ease;
}
.gallery-cta-row .btn-arrow:hover { transform: translateY(-2px); }

@media (max-width: 900px) {
  .pnl-grid { grid-template-columns: repeat(2, 1fr); }
  .pnl-card.feature { grid-row: span 1; }
}
@media (max-width: 560px) {
  .pnl-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(2, 6, 14, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: grid; place-items: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-card {
  position: relative;
  width: min(420px, 100%);
  max-height: 92vh;
  display: flex; flex-direction: column;
  background: linear-gradient(180deg, rgba(13, 30, 56, 0.85), rgba(7, 16, 30, 0.85));
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 50px 100px -20px rgba(0,0,0,0.8);
  transform: scale(0.96) translateY(10px);
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1);
}
.lightbox.open .lightbox-card { transform: scale(1) translateY(0); }
.lightbox-img-wrap {
  position: relative;
  background: #000;
  max-height: 70vh;
  overflow: hidden;
}
.lightbox-img-wrap img {
  width: 100%; height: auto; max-height: 70vh;
  object-fit: contain;
  display: block;
}
.lightbox-info { padding: 18px 20px 22px; }
.lightbox-info .row1 { display: flex; align-items: center; gap: 12px; }
.lightbox-info .av { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(255,255,255,0.12); }
.lightbox-info .nm { flex: 1; min-width: 0; }
.lightbox-info .nm .n { font-family: var(--font-display); font-weight: 600; color: var(--white); font-size: 17px; line-height: 1.1; }
.lightbox-info .nm .h { font-size: 12px; color: var(--accent-2); margin-top: 3px; }
.lightbox-info .amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: #86efac;
  line-height: 1;
  margin-top: 16px;
}
.lightbox-info .sub { color: var(--muted); font-size: 13px; margin-top: 8px; line-height: 1.5; }
.lightbox-info .chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.lightbox-info .chips span {
  font-size: 10.5px; padding: 4px 10px; border-radius: 999px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
}
.lightbox-close {
  position: absolute; top: 14px; right: 14px;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(7, 16, 30, 0.7);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--soft);
  display: grid; place-items: center;
  z-index: 2;
  transition: all 0.2s ease;
}
.lightbox-close:hover { background: rgba(74,158,255,0.18); color: white; }
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(7, 16, 30, 0.7);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--soft);
  display: grid; place-items: center;
  z-index: 2;
  transition: all 0.2s ease;
}
.lightbox-nav:hover { background: rgba(74,158,255,0.22); }
.lightbox-nav.prev { left: 14px; }
.lightbox-nav.next { right: 14px; }
@media (max-width: 520px) {
  .lightbox-nav.prev { left: 8px; }
  .lightbox-nav.next { right: 8px; }
}

/* ---------- HASIL PAGE ---------- */
.h-hero {
  padding: 130px 22px 60px;
  text-align: center;
  position: relative;
  max-width: 1180px; margin: 0 auto;
}
.h-hero .back {
  display: inline-flex; align-items: center; gap: 6px;
  margin-bottom: 22px;
  font-size: 12.5px; letter-spacing: 0.06em;
  color: var(--muted);
  padding: 7px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.2s ease;
}
.h-hero .back:hover { background: rgba(255,255,255,0.08); color: var(--white); }

.h-stats-row {
  margin-top: 32px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.h-stat {
  text-align: left;
  padding: 22px 22px;
}
.h-stat .l { font-size: 10.5px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--dim); }
.h-stat .v {
  font-family: var(--font-display); font-weight: 600;
  color: var(--white); font-size: clamp(28px, 4vw, 38px);
  letter-spacing: -0.01em; margin-top: 8px; line-height: 1;
}
.h-stat .v.green { color: #86efac; }
.h-stat .meta { font-size: 11px; color: var(--muted); margin-top: 8px; }

.filters {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin: 38px 0 22px;
  padding: 0 22px; max-width: 1180px; margin-left: auto; margin-right: auto;
}
.filter-chip {
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  color: var(--muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.2s ease;
  cursor: pointer;
}
.filter-chip:hover { color: var(--white); }
.filter-chip.active {
  color: var(--white);
  background: linear-gradient(135deg, rgba(74,158,255,0.22), rgba(74,158,255,0.10));
  border-color: rgba(74,158,255,0.45);
  box-shadow: 0 8px 22px -10px rgba(74,158,255,0.5);
}
.filter-chip .count {
  display: inline-block; margin-left: 6px;
  font-size: 11px; padding: 1px 7px; border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: var(--dim);
}
.filter-chip.active .count { background: rgba(74,158,255,0.18); color: var(--accent-3); }

.h-grid {
  padding: 0 22px 80px;
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 900px) { .h-grid { grid-template-columns: repeat(2, 1fr); } .h-stats-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .h-grid { grid-template-columns: 1fr; gap: 14px; } .h-stats-row { grid-template-columns: repeat(2, 1fr); } }

.h-empty {
  padding: 60px 22px;
  text-align: center; color: var(--muted);
}

@media (max-width: 600px) {
  .h-hero { padding: 110px 16px 40px; }
  .filters, .h-grid { padding-left: 16px; padding-right: 16px; }
}

/* ---------- PNL GALLERY (legacy) keep grid fallback styling above ---------- */

/* ---------- CTA ---------- */
.cta {
  position: relative;
  padding: 130px 22px;
  overflow: hidden;
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(700px 400px at 50% 30%, rgba(74,158,255,0.30), transparent 60%),
    radial-gradient(900px 500px at 50% 100%, rgba(26,58,107,0.7), transparent 60%);
}
.cta-card {
  position: relative; max-width: 880px; margin: 0 auto;
  text-align: center;
  padding: 60px 36px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(74,158,255,0.10) 0%, rgba(13,33,71,0.30) 100%);
  border: 1px solid rgba(74,158,255,0.28);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 50px 100px -40px rgba(74,158,255,0.6), inset 0 1px 0 rgba(255,255,255,0.1);
  overflow: hidden;
}
.cta-card::before {
  content: ""; position: absolute; top: -60%; left: -10%; right: -10%; height: 80%;
  background: radial-gradient(closest-side, rgba(74,158,255,0.35), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.cta-slot {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px; border-radius: 999px;
  background: rgba(251, 146, 60, 0.08);
  border: 1px solid rgba(251, 146, 60, 0.3);
  color: #fdba74;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  animation: slotPulse 2.2s ease-in-out infinite;
}

.cta h2 {
  font-family: var(--font-title);
  font-size: clamp(40px, 7vw, 86px);
  color: var(--white);
  margin: 22px 0 16px;
  letter-spacing: 0.005em;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
}
.cta p {
  color: var(--muted);
  max-width: 560px; margin: 0 auto 32px;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.55;
}
.cta .btn-hero-primary { display: inline-flex; padding: 18px 34px; font-size: 17px; min-width: 280px; }

.trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 18px; margin-top: 24px; }
.trust span { font-size: 12.5px; color: var(--muted); letter-spacing: 0.02em; }
.trust span::before { content: "✓"; color: #6ee7b7; margin-right: 6px; font-weight: bold; }

/* ---------- FOOTER ---------- */
.footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 50px 22px 60px;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.4));
}
.footer-row { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 14px; }
.footer-row .nav-logo { width: 30px; height: 30px; }
.footer .copy { font-size: 13px; color: var(--muted); letter-spacing: 0.04em; font-family: var(--font-display); font-weight: 500; }
.footer .legal { font-size: 12px; color: var(--dim); max-width: 540px; margin: 12px auto; line-height: 1.6; }
.footer .socials { margin-top: 18px; display: flex; gap: 10px; justify-content: center; }
.footer .socials a {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--accent-2);
  transition: all 0.3s ease;
}
.footer .socials a:hover { background: rgba(74,158,255,0.12); border-color: rgba(74,158,255,0.4); transform: translateY(-3px); color: var(--white); }

/* ---------- MOBILE ---------- */
@media (max-width: 900px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .narrative { grid-template-columns: 1fr; }
  .narrative-visual { min-height: 360px; }
  .pnl-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 90px 18px; }
}
@media (max-width: 600px) {
  .nav { padding: 14px 16px; }
  .nav.scrolled { padding: 10px 16px; }
  .nav-brand .nav-logo { width: 34px; height: 34px; }
  .nav-brand-text .b1 { font-size: 15px; }
  .nav-brand-text .b2 { font-size: 9px; letter-spacing: 0.22em; }
  .btn-cta { padding: 9px 14px; font-size: 13px; }
  .hero { padding-top: 110px; padding-bottom: 60px; min-height: 100svh; }
  .hero-title { font-size: clamp(36px, 11vw, 56px); }
  .features { grid-template-columns: 1fr; }
  .pnl-grid { grid-template-columns: 1fr; }
  .stat { padding: 22px 18px; }
  .section { padding: 80px 16px; }
  .narrative-card { padding: 30px 22px; }
  .cta-card { padding: 44px 22px; border-radius: 24px; }
  .cta { padding: 100px 18px; }
  .ticker { font-size: 12px; }
  .ticker .price { font-size: 14px; }
  .scroll-cue { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.1s !important; }
}