/* =========================================================
   BITMOMO — Custom CSS v5.0 (CLEAN - NO DUPLICATES)
   ========================================================= */

/* ============= VARIABLES ============= */
:root {
  --bg: #0c1c2a;
  --bg-2: #0f2233;
  --ink: #e6f0f2;
  --muted: #c7d4db;
  --teal: #26d0c6;
  --teal-hover: #19b6ad;
  --cta: #f4ad32;
  --cta-hover: #e69a18;
  --stroke: rgba(255,255,255,.08);
  --card-bg: #0f2434;
  --radius: 18px;
  --pill: 9999px;
  --shadow: 0 18px 48px rgba(0,0,0,.32);
  --font: ui-sans-serif, system-ui, -apple-system, "Inter", sans-serif;
}

/* ============= RESET ============= */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); }
body { color: var(--ink); font-family: var(--font); line-height: 1.6; overflow-x: hidden; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-hover); }
img { max-width: 100%; height: auto; display: block; }

/* ============= CONTAINER ============= */
.bm-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ============= HEADER ============= */
.bm-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 34, 51, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--stroke);
}

.bm-header .bm-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

/* Brand/Logo */
.bm-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.bm-brand .custom-logo-link { display: flex; align-items: center; }

/* Keep the header mark independent from source-image metadata and optimizer rewrites. */
.bm-header .bm-brand-logo {
  display: block;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
}

.bm-header .bm-brand-logo > img {
  width: 48px !important;
  height: 48px !important;
  max-width: none;
  object-fit: contain;
}

/* Navigation */
.bm-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.bm-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 36px;
  margin: 0;
  padding: 0;
}

.bm-nav-list li { margin: 0; padding: 0; }

.bm-nav-list a {
  color: var(--ink);
  font-weight: 700;
  font-size: 15px;
  padding: 8px 4px;
  opacity: 0.9;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s, color 0.2s;
}

.bm-nav-list a:hover { opacity: 1; color: var(--teal); }

/* CTA Button */
.bm-cta {
  flex-shrink: 0;
  padding: 11px 24px;
  border-radius: var(--pill);
  border: 2px solid var(--teal);
  color: var(--teal);
  font-weight: 800;
  font-size: 14px;
  transition: all 0.2s;
}

.bm-cta:hover {
  background: var(--teal);
  color: #08222a;
}

/* ============= HAMBURGER (CLEAN DESIGN) ============= */
.bm-header button.bm-hamburger {
  display: none;
  position: relative;
  z-index: 1001;
  flex: 0 0 40px;
  min-width: 40px;
  max-width: 40px;
  width: 40px;
  height: 40px;
  -webkit-appearance: none !important;
  appearance: none !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: var(--teal);
  cursor: pointer;
  line-height: 1;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 0;
}

.bm-header button.bm-hamburger > span {
  display: block;
  flex: 0 0 2px;
  width: 24px !important;
  min-width: 24px;
  max-width: 24px;
  height: 2px !important;
  min-height: 2px;
  max-height: 2px;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background-color: var(--teal) !important;
  background-image: none !important;
  border-radius: 2px;
  box-shadow: none !important;
  font-size: 0;
  transition: all 0.25s ease;
}

.bm-header button.bm-hamburger.active > span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.bm-header button.bm-hamburger.active > span:nth-child(2) { opacity: 0; }
.bm-header button.bm-hamburger.active > span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ============= TABLET (< 1000px) ============= */
@media (max-width: 1000px) {
  .bm-header .bm-container { height: 68px; gap: 20px; }
  .bm-header .bm-brand-logo { flex-basis: 44px; width: 44px; height: 44px; }
  .bm-header .bm-brand-logo > img { width: 44px !important; height: 44px !important; }
  .bm-nav-list { gap: 24px; }
  .bm-nav-list a { font-size: 14px; }
  .bm-cta { padding: 9px 18px; font-size: 13px; }
}

/* ============= MOBILE (< 768px) ============= */
@media (max-width: 768px) {
  .bm-header .bm-container {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    height: 60px;
    padding: 0 16px;
  }
  
  .bm-brand {
    flex-shrink: 0;
    margin-right: auto;
  }
  
  .bm-header .bm-brand-logo { flex-basis: 36px; width: 36px; height: 36px; }
  .bm-header .bm-brand-logo > img { width: 36px !important; height: 36px !important; }
  
  .bm-header button.bm-hamburger { display: flex; }
  .bm-cta { display: none; }
  
  .bm-nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(15, 34, 51, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 999;
  }
  
  .bm-nav.open {
    max-height: 320px;
    border-bottom: 1px solid var(--stroke);
  }
  
  .bm-nav-list {
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
  }
  
  .bm-nav-list li { text-align: center; }
  
  .bm-nav-list a {
    display: block;
    padding: 16px 24px;
    font-size: 15px;
  }
  
  .bm-nav-list a:hover { background: rgba(38, 208, 198, 0.08); }
  body.menu-open { overflow: hidden; }
}

/* ============= APPROVED HEADER / NAVIGATION ============= */
.bm-header { background: rgba(8,18,32,.98); backdrop-filter: none; -webkit-backdrop-filter: none; }
.bm-header .bm-container { max-width: 1220px; height: 64px; justify-content: flex-start; gap: 44px; }
.bm-brand-logo,
.bm-brand .custom-logo-link { gap: 12px; color: var(--ink); }
.bm-header .bm-brand-logo { flex-basis: auto; width: auto; height: 38px; }
.bm-header .bm-brand-logo { display: inline-flex; align-items: center; }
.bm-header .bm-brand-logo > img { width: 38px !important; height: 38px !important; border-radius: 10px; }
.bm-brand-name { color: var(--ink); font-size: 21px; font-weight: 800; letter-spacing: -.02em; }
.bm-nav { min-width: 0; justify-content: stretch; }
.bm-nav-groups { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.bm-nav-list { gap: 34px; }
.bm-nav-list a { color: #aebdd2; font-size: 15px; font-weight: 650; opacity: 1; }
.bm-nav-list a:hover,
.bm-nav-list a:focus-visible { color: var(--ink); }
.bm-nav-list a:focus-visible { outline: 2px solid var(--teal); outline-offset: 4px; border-radius: 4px; }
.bm-nav-list--actions { gap: 24px; }
.bm-nav-list .bm-nav-login { color: #8fa2bd; }
.bm-nav-list .bm-nav-pro { display: inline-flex; align-items: center; justify-content: center; min-height: 42px; padding: 9px 22px; border-radius: 11px; background: #ff762b; color: #111827; font-weight: 850; }
.bm-nav-list .bm-nav-pro:hover,
.bm-nav-list .bm-nav-pro:focus-visible { background: #ff8a4c; color: #111827; }

@media (max-width: 1000px) and (min-width: 769px) {
  .bm-header .bm-container { gap: 24px; }
  .bm-nav-list { gap: 20px; }
  .bm-nav-list--actions { gap: 14px; }
  .bm-nav-list .bm-nav-pro { padding-inline: 16px; }
}

@media (max-width: 768px) {
  .bm-header .bm-container { height: 60px; padding: 0 20px; }
  .bm-header .bm-brand-logo { width: auto; height: 34px; }
  .bm-header .bm-brand-logo > img { width: 34px !important; height: 34px !important; }
  .bm-brand-name { font-size: 19px; }
  .bm-nav { top: 60px; max-height: 0; box-shadow: 0 18px 30px rgba(0,0,0,.28); }
  body.admin-bar .bm-nav { top: 106px; }
  .bm-nav.open { max-height: 390px; }
  .bm-nav-groups { display: block; padding: 10px 20px 22px; }
  .bm-nav-list { align-items: stretch; padding: 0; }
  .bm-nav-list li { width: 100%; text-align: left; }
  .bm-nav-list a { padding: 13px 10px; font-size: 15px; }
  .bm-nav-list--actions { margin-top: 8px; padding-top: 10px; border-top: 1px solid var(--stroke); }
  .bm-nav-list .bm-nav-pro { width: 100%; margin-top: 5px; padding: 11px 18px; }
}

/* ============= HERO ============= */
.bm-hero {
  /* Bottom padding trimmed: it used to stack with the next section's own
     top padding (.bm-section), compounding into ~150-170px of blank
     space between the hero and whatever follows it. */
  padding: clamp(80px, 10vw, 140px) 0 clamp(24px, 3vw, 40px);
  text-align: center;
  background:
    radial-gradient(1200px 520px at 72% -12%, rgba(38,208,198,.20), transparent 62%),
    radial-gradient(900px 420px at 12% -16%, rgba(36,139,199,.20), transparent 58%),
    linear-gradient(180deg, #142a3e 0%, #0f2333 42%, var(--bg) 78%);
}

.bm-hero-title {
  margin: 0 0 20px;
  font-weight: 800;
  line-height: 1.15;
  font-size: clamp(36px, 6vw, 68px);
  color: #f2f7fa;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.bm-hero-title .teal { color: var(--teal); }

.bm-hero-sub {
  margin: 0 auto;
  max-width: 720px;
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--muted);
}

.bm-hero-btn {
  display: inline-flex;
  align-items: center;
  margin: 32px auto 0;
  padding: 15px 32px;
  border-radius: var(--pill);
  background: var(--cta);
  color: #0b1620;
  font-weight: 800;
  font-size: clamp(15px, 1.5vw, 18px);
  box-shadow: var(--shadow);
  transition: transform 0.15s, background 0.2s;
}

.bm-hero-btn:hover {
  background: var(--cta-hover);
  color: #0b1620;
  transform: translateY(-2px);
}

/* Approved homepage direction: preserve the existing dark visual system. */
.bm-hero { padding: clamp(72px, 9vw, 128px) 0; text-align: left; background: var(--bg); }
.bm-hero-layout { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(420px, .88fr); align-items: center; gap: clamp(48px, 7vw, 104px); }
.bm-hero-copy { min-width: 0; }
.bm-hero-eyebrow,
.bm-hero-notes,
.bm-direction-head,
.bm-direction-meta dt,
.bm-why-title { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; letter-spacing: .15em; }
.bm-hero-eyebrow { display: flex; align-items: center; gap: 14px; margin: 0 0 34px; color: var(--teal); font-size: 12px; font-weight: 800; }
.bm-hero-eyebrow span { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }
.bm-hero-title { max-width: 720px; margin: 0 0 24px; font-size: clamp(46px, 5.2vw, 78px); line-height: 1.04; }
.bm-hero-sub { max-width: 760px; margin: 0; font-size: clamp(17px, 1.55vw, 22px); line-height: 1.7; }
.bm-hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }
.bm-hero-btn { margin: 0; min-height: 52px; border-radius: 12px; box-shadow: none; }
.bm-hero-btn--secondary { border: 1px solid var(--stroke); background: transparent; color: var(--ink); }
.bm-hero-btn--secondary:hover { border-color: var(--teal); background: rgba(38,208,198,.06); color: var(--ink); }
.bm-hero-notes { margin: 32px 0 0; color: #667b98; font-size: 11px; line-height: 1.7; }
.bm-hero-notes span { margin: 0 18px; }
.bm-direction-card { min-width: 0; padding: clamp(24px, 3vw, 34px); border: 1px solid var(--stroke); border-radius: 20px; background: rgba(16,30,49,.7); }
.bm-direction-head { display: flex; justify-content: space-between; gap: 20px; color: #71839f; font-size: 11px; }
.bm-direction-head strong { color: #8ba0bd; font-weight: 600; text-align: right; }
.bm-direction-chart { position: relative; display: flex; align-items: stretch; gap: clamp(4px, .7vw, 10px); height: 220px; margin: 24px 0; }
.bm-direction-baseline { position: absolute; z-index: 0; top: 50%; right: 0; left: 0; height: 1px; background: #263b58; }
.bm-direction-bar { position: relative; z-index: 1; flex: 1 1 0; min-width: 3px; }
.bm-direction-bar span { position: absolute; left: 0; width: 100%; min-height: 3px; border-radius: 5px; background: #8ba0bd; opacity: .75; }
.bm-direction-bar.is-bullish span { bottom: 50%; height: calc(var(--direction-size) * .46%); background: var(--teal); }
.bm-direction-bar.is-bearish span { top: 50%; height: calc(var(--direction-size) * .46%); background: #ff7b6d; }
.bm-direction-bar.is-neutral span { top: calc(50% - 2px); height: 4px; background: #8ba0bd; }
.bm-direction-empty { align-self: center; width: 100%; margin: 0; color: var(--muted); font-size: 13px; text-align: center; }
.bm-direction-meta { display: grid; grid-template-columns: minmax(100px,.75fr) minmax(90px,.6fr) minmax(0,1.65fr); gap: 20px; margin: 0; padding-top: 22px; border-top: 1px solid var(--stroke); }
.bm-direction-meta div { min-width: 0; }
.bm-direction-meta dt { color: #71839f; font-size: 10px; }
.bm-direction-meta dd { margin: 8px 0 0; color: var(--ink); font-size: 15px; font-weight: 750; line-height: 1.35; }
.bm-direction-meta-driver dd { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.bm-why { padding-top: clamp(42px, 6vw, 80px); }
.bm-why-title { margin: 0 0 38px; color: #71839f; font-size: 12px; }
.bm-why-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.bm-why-grid article { padding-top: 26px; border-top: 2px solid var(--teal); }
.bm-why-grid h3 { margin: 0 0 14px; color: var(--ink); font-size: clamp(20px, 2vw, 27px); }
.bm-why-grid p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.65; }

@media (max-width: 980px) {
  .bm-hero-layout { grid-template-columns: 1fr; gap: 48px; }
  .bm-direction-card { width: min(100%, 720px); }
}

@media (max-width: 640px) {
  .bm-hero { padding: 52px 0 58px; }
  .bm-hero-eyebrow { margin-bottom: 24px; font-size: 10px; }
  .bm-hero-title { font-size: clamp(40px, 12vw, 54px); }
  .bm-hero-sub { font-size: 16px; line-height: 1.6; }
  .bm-hero-actions { display: grid; }
  .bm-hero-btn { width: 100%; justify-content: center; padding-inline: 18px; }
  .bm-hero-notes { font-size: 9px; }
  .bm-hero-notes span { margin: 0 6px; }
  .bm-direction-card { padding: 20px 16px; border-radius: 16px; }
  .bm-direction-head { font-size: 9px; }
  .bm-direction-chart { height: 150px; }
  .bm-direction-meta { grid-template-columns: 1fr 1fr; gap: 18px 14px; }
  .bm-direction-meta-driver { grid-column: 1 / -1; }
  .bm-direction-meta dd { font-size: 14px; }
  .bm-why-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ============= SECTIONS ============= */
.bm-section {
  padding: clamp(40px, 6vw, 70px) 0;
  background: var(--bg);
}

.bm-section-title {
  margin: 0 0 clamp(28px, 4vw, 44px);
  text-align: center;
  color: var(--teal);
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 42px);
  text-transform: uppercase;
}

/* ============= CARDS ============= */
.bm-cards {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

@media (max-width: 640px) {
  .bm-cards { grid-template-columns: 1fr; gap: 20px; }
}

.bm-card {
  background: var(--card-bg);
  border: 1px solid #0b1b28;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 20px;
  box-shadow: 0 10px 26px rgba(0,0,0,.18);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.18s, border-color 0.18s;
}

.bm-card:hover {
  transform: translateY(-3px);
  border-color: rgba(127,221,213,.35);
}

.bm-card-art {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #0a1d2a;
}

.bm-card-art img { width: 100%; height: 100%; object-fit: cover; }

.bm-card-title {
  margin: 8px 0 0;
  font-weight: 800;
  font-size: clamp(18px, 1.3vw, 21px);
  color: var(--teal);
}

.bm-card-title a { color: inherit; }
.bm-card-title a:hover { text-decoration: underline; }

.bm-card-text {
  color: var(--muted);
  font-size: clamp(14px, 0.3vw + 13px, 16px);
  margin: 0;
}

/* ============= DISCOVER MORE ============= */
.bm-discover-more {
  text-align: center;
  margin-top: clamp(40px, 5vw, 56px);
}

.bm-discover-more .bm-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--pill);
  border: 2px solid var(--teal);
  color: var(--teal);
  font-weight: 800;
  font-size: 16px;
  transition: all 0.2s;
}

.bm-discover-more .bm-btn:hover {
  background: var(--teal);
  color: #08222a;
}

/* ============= ARTICLE ============= */
.bm-article {
  background: var(--bg);
  padding: 16px 0 40px;
}

.bm-article-title {
  margin: 0 0 6px;
  font-weight: 800;
  font-size: clamp(26px, 4.2vw, 44px);
  color: #f2f7fa;
}

.bm-article-meta {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 16px;
}

.bm-article-figure {
  margin: 18px 0;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #0a1d2a;
}

.bm-article-body {
  max-width: 820px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.75;
  color: #cdd6dc;
}

.bm-article-body p { margin: 0 0 1.1em; }
.bm-article-body h2 { font-size: 1.6em; margin: 1.25em 0 0.55em; color: #f4f7fb; }
.bm-article-body h3 { font-size: 1.3em; margin: 1.1em 0 0.5em; color: #f4f7fb; }
.bm-article-body ul, .bm-article-body ol { padding-left: 1.2em; margin: 0.7em 0 1.1em; }
.bm-article-body a { color: var(--teal); }

.bm-article-body blockquote {
  margin: 1.2em 0;
  padding: 0.9em 1em;
  border-left: 4px solid var(--teal);
  background: rgba(255,255,255,.03);
  border-radius: 10px;
}

/* ============= PAGINATION ============= */
.bm-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 40px 0;
}

.bm-pagination a,
.bm-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 38px;
  padding: 0 16px;
  border-radius: var(--pill);
  border: 2px solid var(--teal);
  background: var(--teal);
  color: #062027;
  font-weight: 800;
  font-size: 14px;
}

.bm-pagination .current {
  background: transparent;
  color: var(--teal);
}

/* ============= FOOTER ============= */
.bm-footer {
  padding: 32px 0;
  color: var(--muted);
  background: var(--bg-2);
  border-top: 1px solid var(--stroke);
  text-align: center;
}

.bm-footer p { margin: 0; font-size: 14px; }

.bm-footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 14px;
}

.bm-footer-links a {
  color: var(--muted);
  font-size: 13px;
  opacity: 0.85;
}

.bm-footer-links a:hover { color: var(--teal); opacity: 1; }

/* ============= SUBSCRIBE CTA ============= */
.bm-subscribe-cta {
  margin: 32px 0 16px;
  text-align: center;
}

.bm-btn-subscribe {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--pill);
  background: var(--teal);
  color: #062027;
  font-weight: 800;
  font-size: 16px;
  border: none;
  transition: background 0.2s;
}

.bm-btn-subscribe:hover {
  background: var(--teal-hover);
  color: #062027;
}

.bm-subscribe-caption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.bm-disclaimer {
  margin: 64px auto 0;
  padding-top: 16px;
  border-top: 1px solid var(--stroke);
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

/* ============= SUBSCRIBE MODAL ============= */
#bm-subscribe-modal[aria-hidden="true"] { display: none; }

#bm-subscribe-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

#bm-subscribe-modal .bm-subscribe-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(2px);
}

#bm-subscribe-modal .bm-subscribe-dialog {
  position: relative;
  width: min(520px, 92vw);
  margin: 6vh auto 0;
  padding: 14px;
  border-radius: 16px;
  background: #0f2233;
  color: #e6f0f2;
  border: 1px solid rgba(255,255,255,.08);
}

#bm-subscribe-modal .bm-subscribe-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.22);
  color: #e6f0f2;
  font-size: 20px;
  cursor: pointer;
}

#bm-subscribe-modal .bm-subscribe-title {
  margin: 2px 4px 10px;
  text-align: center;
  font-weight: 800;
  color: var(--teal);
}

#bm-subscribe-modal .bm-subscribe-form {
  background: #fff;
  border-radius: 12px;
  padding: 14px 12px;
  color: #0b1620;
}

/* ============= UTILITIES ============= */
.site-info, .copyright, .footer-copyright { display: none; }
header.site-header, .elementor-location-header { display: none; }
.admin-bar .bm-header { top: 32px; }
img:not([src]), img[src=""], img[src="#"] { display: none !important; }

/* ============= CATEGORY ARCHIVE ============= */
.bm-page-head {
  text-align: center;
  padding: clamp(60px, 8vw, 120px) 20px clamp(40px, 6vw, 80px);
  border-bottom: 1px solid var(--stroke);
  background:
    radial-gradient(800px 400px at 70% -10%, rgba(38, 208, 198, .12), transparent 65%),
    radial-gradient(600px 300px at 20% -12%, rgba(36, 139, 199, .12), transparent 60%),
    linear-gradient(180deg, #0f2233 0%, #0c1c2a 100%);
}

.bm-page-head .bm-container {
  margin: 0 auto;
}

.bm-page-title {
  position: relative;
  display: inline-block;
  margin: 0;
  padding-bottom: 12px;
  color: #f2f7fa;
  font-weight: 800;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.2;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .25);
}

.bm-page-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 60px;
  height: 4px;
  border-radius: 2px;
  background: var(--teal);
  transform: translateX(-50%);
}

/* ============= BTC DAILY INTELLIGENCE — FREE SNAPSHOT ============= */
.bm-btc {
  padding-top: clamp(40px, 6vw, 72px);
}

.bm-btc .bm-section-title {
  margin-bottom: 24px;
}

.bm-btc-card,
.bm-pro-teaser {
  width: min(100%, 680px);
  margin-inline: auto;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.bm-btc-card {
  padding: clamp(22px, 4vw, 34px);
  background: linear-gradient(145deg, #11293b, var(--card-bg));
}

.bm-btc-summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.bm-btc-kicker,
.bm-btc-price span,
.bm-btc-driver > span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.bm-btc-direction {
  display: inline-flex;
  padding: 7px 15px;
  border-radius: var(--pill);
  font-size: 14px;
  font-weight: 800;
}

.bm-btc-direction.is-bullish { color: #46dda5; background: rgba(38,208,150,.14); }
.bm-btc-direction.is-bearish { color: #ff8080; background: rgba(239,68,68,.14); }
.bm-btc-direction.is-neutral { color: var(--muted); background: rgba(199,212,219,.12); }

.bm-btc-price { text-align: right; }
.bm-btc-price strong {
  display: block;
  color: var(--ink);
  font-size: clamp(26px, 5vw, 38px);
  line-height: 1.1;
}

.bm-btc-confidence {
  margin-top: 26px;
}

.bm-btc-confidence-label {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

.bm-btc-confidence-label strong { color: var(--ink); }
.bm-btc-confidence-track {
  height: 8px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: var(--pill);
  background: rgba(255,255,255,.08);
}
.bm-btc-confidence-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), #7fddd5);
}

.bm-btc-driver {
  margin-top: 26px;
  padding: 18px;
  border: 1px solid rgba(38,208,198,.16);
  border-radius: 14px;
  background: rgba(38,208,198,.05);
}
.bm-btc-driver-list {
  margin: 0;
  padding-left: 20px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
}
.bm-btc-driver-list li + li { margin-top: 8px; }

.bm-btc-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 12px;
}
.bm-btc-freshness {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: var(--pill);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.bm-btc-freshness.is-fresh { color: #46dda5; background: rgba(38,208,150,.13); }
.bm-btc-freshness.is-delayed { color: #ffd27a; background: rgba(244,173,50,.14); }
.bm-btc-freshness.is-unavailable { color: var(--muted); background: rgba(199,212,219,.10); }

.bm-btc-unavailable { text-align: center; padding-block: 10px; }
.bm-btc-unavailable h3 {
  margin: 18px 0 8px;
  color: var(--ink);
  font-size: clamp(21px, 4vw, 28px);
}
.bm-btc-unavailable p { margin: 0 auto; max-width: 520px; color: var(--muted); }

.bm-btc-disclaimer {
  margin: 24px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--stroke);
  color: var(--muted);
  font-size: 11px;
  opacity: .75;
}

/* ============= BITMOMO PRO TEASER ============= */
.bm-pro-teaser {
  margin-top: 20px;
  padding: clamp(24px, 4vw, 36px);
  background: linear-gradient(145deg, rgba(25,55,75,.98), rgba(12,28,42,.98));
  text-align: center;
}
.bm-pro-eyebrow {
  display: inline-block;
  color: var(--cta);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
}
.bm-pro-teaser h3 {
  max-width: 580px;
  margin: 12px auto 10px;
  color: var(--ink);
  font-size: clamp(22px, 4vw, 30px);
  line-height: 1.25;
}
.bm-pro-teaser > p { margin: 0 auto; max-width: 540px; color: var(--muted); }
.bm-pro-locks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
  text-align: left;
}
.bm-pro-locks li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  background: rgba(255,255,255,.035);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}
.bm-pro-cta,
.bm-pro-page-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 26px;
  border-radius: var(--pill);
  background: var(--cta);
  color: #1a1206;
  font-weight: 800;
}
.bm-pro-cta:hover,
.bm-pro-page-back:hover { background: var(--cta-hover); color: #1a1206; }

/* ============= PRO PLACEHOLDER ============= */
.bm-pro-page-hero {
  min-height: calc(100vh - 72px);
  display: grid;
  place-items: center;
  padding: 80px 0;
  background: radial-gradient(900px 500px at 50% 0, rgba(38,208,198,.16), transparent 65%), var(--bg);
  text-align: center;
}
.bm-pro-page-hero h1 {
  max-width: 800px;
  margin: 16px auto;
  color: var(--ink);
  font-size: clamp(34px, 7vw, 64px);
  line-height: 1.08;
}
.bm-pro-page-hero p { max-width: 620px; margin: 0 auto 28px; color: var(--muted); }

@media (max-width: 640px) {
  .bm-btc { padding-top: 34px; }
  .bm-btc-summary { align-items: center; }
  .bm-btc-price strong { font-size: 27px; }
  .bm-btc-status { align-items: flex-start; flex-direction: column; }
  .bm-pro-locks { grid-template-columns: 1fr; }
  .bm-pro-teaser h3 { font-size: 23px; }
}
.bm-btc-help {
  color: var(--muted, #93a4bd);
  font-size: 11px;
  font-weight: 500;
  text-decoration: none;
}

.bm-btc-help:hover,
.bm-btc-help:focus-visible {
  color: var(--teal, #2dd4bf);
}


/* ============= PR63 VISUAL PARITY ============= */
.bm-header .bm-container { height: 70px; }
.bm-nav-list { gap: 30px; }
.bm-hero { padding: clamp(82px, 9vw, 132px) 0 92px; }
.bm-hero-layout { grid-template-columns: minmax(0, 1.08fr) minmax(450px, .92fr); gap: clamp(48px, 6vw, 88px); }
.bm-hero-title { max-width: 690px; font-size: clamp(50px, 5.1vw, 74px); }
.bm-hero-sub { max-width: 710px; font-size: clamp(17px, 1.4vw, 20px); line-height: 1.72; }
.bm-direction-card { min-height: 302px; padding: 28px 30px 24px; border-radius: 18px; }
.bm-direction-chart { height: 150px; margin: 22px 0 18px; }
.bm-state-chart { align-items: flex-end; justify-content: flex-end; border-bottom: 1px solid #263b58; }
.bm-state-chart .bm-direction-bar { flex: 0 1 44px; width: 44px; min-width: 10px; height: 100%; }
.bm-state-chart .bm-direction-bar span { bottom: 0; height: calc(var(--direction-size) * 1%); background: linear-gradient(180deg, #35cdbb, #2d8f91); opacity: .95; }
.bm-direction-meta { grid-template-columns: .7fr 1.6fr .7fr; padding-top: 18px; }
.bm-direction-meta dd { font-size: 14px; }
.bm-direction-meta-driver dd { -webkit-line-clamp: 1; }

.bm-btc { padding: clamp(46px, 6vw, 82px) 0; }
.bm-btc-section-head { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 26px; }
.bm-btc-section-head h2 { margin: 0; color: var(--teal); font: 800 13px/1.4 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; letter-spacing: .18em; }
.bm-btc-section-head p { margin: 0; color: #667b98; font-size: 14px; }
.bm-btc-card,
.bm-pro-teaser { width: 100%; max-width: none; margin-inline: 0; box-shadow: none; }
.bm-btc-card { padding: 0; overflow: hidden; background: rgba(16,30,49,.7); }
.bm-btc-overview { display: grid; grid-template-columns: 1.05fr 1fr 1fr; }
.bm-btc-metric { min-width: 0; padding: clamp(28px, 3.2vw, 46px); }
.bm-btc-metric + .bm-btc-metric { border-left: 1px solid var(--stroke); }
.bm-btc-kicker,
.bm-btc-driver > span { display: block; margin: 0 0 16px; color: #71839f; font: 800 11px/1.4 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; letter-spacing: .17em; text-transform: uppercase; }
.bm-btc-metric strong { display: flex; align-items: center; gap: 14px; color: var(--ink); font-size: clamp(28px, 3vw, 40px); line-height: 1.1; }
.bm-btc-state strong i { width: 10px; height: 10px; flex: 0 0 10px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 5px rgba(38,208,198,.13); }
.bm-btc-metric p { margin: 18px 0 0; color: #8fa2bd; font-size: 15px; line-height: 1.5; }
.bm-btc-price { text-align: left; }
.bm-btc-confidence { margin: 0; }
.bm-btc-confidence-segments { display: grid; grid-template-columns: repeat(5, minmax(18px, 1fr)); gap: 7px; margin-top: 22px; }
.bm-btc-confidence-segments span { height: 6px; border-radius: 99px; background: #1e304c; }
.bm-btc-confidence-segments .is-active { background: var(--teal); }
.bm-btc-driver { display: grid; grid-template-columns: 170px minmax(0, 1fr); gap: 20px 0; margin: 0; padding: clamp(28px, 3.2vw, 42px); border: 0; border-top: 1px solid var(--stroke); border-radius: 0; background: rgba(24,49,66,.24); }
.bm-btc-driver > span { margin: 4px 0 0; color: var(--teal); }
.bm-btc-driver-list { margin: 0; padding-left: 22px; font-size: clamp(15px, 1.5vw, 18px); line-height: 1.55; }
.bm-btc-driver-list li + li { margin-top: 10px; }
.bm-btc-driver-empty { margin: 0; color: var(--muted); }
.bm-btc-status { margin: 0; padding: 24px clamp(28px, 3.2vw, 42px); border-top: 1px solid var(--stroke); }
.bm-btc-status > div { display: flex; align-items: center; gap: 18px; }
.bm-btc-status time { color: #71839f; font: 700 11px/1.5 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; letter-spacing: .06em; }
.bm-btc-freshness { gap: 7px; padding: 7px 12px; border: 1px solid rgba(38,208,198,.34); text-transform: none; }
.bm-btc-freshness i { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.bm-btc-disclaimer { max-width: 570px; margin: 0; padding: 0; border: 0; text-align: right; }

.bm-pro-teaser { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: clamp(38px, 7vw, 100px); margin-top: 70px; padding: clamp(42px, 5vw, 72px); border-radius: 20px; background: rgba(16,30,49,.78); text-align: left; }
.bm-pro-copy { min-width: 0; }
.bm-pro-teaser h3 { max-width: 540px; margin: 22px 0 18px; font-size: clamp(32px, 3.4vw, 48px); line-height: 1.18; }
.bm-pro-teaser .bm-pro-copy > p { max-width: 500px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.65; }
.bm-pro-cta { margin-top: 28px; border-radius: 12px; }
.bm-pro-locks { margin: 0; gap: 14px; }
.bm-pro-locks li { min-height: 86px; padding: 22px; border-radius: 14px; background: rgba(7,17,30,.62); font-size: 15px; }
.bm-pro-locks li > span:last-child { filter: saturate(.2); opacity: .8; }

@media (max-width: 1050px) {
  .bm-hero-layout { grid-template-columns: 1fr; }
  .bm-direction-card { width: min(100%, 720px); }
  .bm-btc-overview { grid-template-columns: 1fr 1fr; }
  .bm-btc-confidence { grid-column: 1 / -1; border-top: 1px solid var(--stroke); border-left: 0 !important; }
}

@media (max-width: 760px) {
  .bm-header .bm-container { height: 60px; }
  .bm-nav { top: 60px; }
  .bm-nav.open { max-height: 430px; }
  .bm-nav-groups { padding: 8px 20px 18px; }
  .bm-nav-list a { padding: 11px 10px; }
  .bm-hero { padding: 50px 0 58px; }
  .bm-direction-card { min-height: 0; }
  .bm-state-chart .bm-direction-bar { flex-basis: 32px; width: 32px; }
  .bm-btc-section-head { align-items: flex-start; flex-direction: column; gap: 8px; }
  .bm-btc-section-head p { font-size: 12px; }
  .bm-btc-overview { grid-template-columns: 1fr; }
  .bm-btc-metric + .bm-btc-metric,
  .bm-btc-confidence { grid-column: auto; border-top: 1px solid var(--stroke); border-left: 0; }
  .bm-btc-metric { padding: 25px 22px; }
  .bm-btc-metric strong { font-size: 30px; }
  .bm-btc-driver { grid-template-columns: 1fr; padding: 25px 22px; }
  .bm-btc-status { align-items: flex-start; flex-direction: column; padding: 22px; }
  .bm-btc-status > div { align-items: flex-start; flex-direction: column; }
  .bm-btc-disclaimer { text-align: left; }
  .bm-pro-teaser { grid-template-columns: 1fr; gap: 34px; margin-top: 42px; padding: 30px 22px; }
  .bm-pro-teaser h3 { font-size: 30px; }
  .bm-pro-locks { grid-template-columns: 1fr; }
}

/* ============= DIRECTIONAL BIAS FIX (customer-facing UI cleanup sprint) =============
   Market State and Directional Bias are rendered as two separate, independently
   collapsible metrics. No new design tokens -- reuses existing :root variables
   and the pre-existing .bm-btc-direction pill (previously defined but unused). */
.bm-direction-head { flex-wrap: wrap; row-gap: 12px; }
.bm-direction-metric { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.bm-direction-metric--bias { align-items: flex-end; text-align: right; }

.bm-btc-bias-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin: 16px 0 0; }
.bm-btc-bias-label { color: #71839f; font: 800 11px/1.4 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; letter-spacing: .17em; text-transform: uppercase; }

/* ============= HOMEPAGE HIERARCHY: NEW SECTIONS (customer-facing UI cleanup sprint) =============
   Bitmomo Pro (standalone), Future Pro capability, Research, AI Lab, Platform,
   Newsletter. All reuse existing :root tokens, .bm-section/.bm-container rhythm,
   and established idioms (.bm-why-grid's teal top-border accent, .bm-pro-cta's
   pill-button treatment) rather than introducing a new design language. */

/* ---- Future Pro capability (11 AI Analysts / Watchtower / Telegram) ---- */
.bm-future-head { max-width: 760px; }
.bm-future-eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  padding: 4px 12px;
  border: 1px solid var(--stroke);
  border-radius: var(--pill);
  color: #8ba0bd;
  font: 800 11px/1.4 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.bm-future-head h2 { margin: 0 0 14px; color: var(--ink); font-size: clamp(24px, 2.6vw, 34px); line-height: 1.32; }
.bm-future-sub { margin: 0; max-width: 620px; color: var(--muted); font-size: 16px; line-height: 1.65; }
.bm-future-list { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 0; padding: 0; list-style: none; }
.bm-future-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px dashed var(--stroke);
  border-radius: var(--radius);
  background: rgba(255,255,255,.02);
}
.bm-future-badge {
  padding: 3px 9px;
  border-radius: var(--pill);
  background: rgba(199,212,219,.12);
  color: var(--muted);
  font: 800 10px/1.4 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: .08em;
}
.bm-future-name { color: var(--ink); font-weight: 700; font-size: 15px; }
.bm-future-link { display: inline-block; margin-top: 22px; color: var(--teal); font-weight: 700; }
.bm-future-link:hover { color: var(--teal-hover); }

/* ---- AI Lab ---- */
.bm-ai-lab-eyebrow {
  display: block;
  margin: 0 0 14px;
  color: var(--teal);
  font: 800 11px/1.4 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.bm-ai-lab h2 { margin: 0 0 16px; max-width: 780px; color: var(--ink); font-size: clamp(24px, 2.6vw, 34px); line-height: 1.32; }
.bm-ai-lab-thesis { margin: 0 0 32px; max-width: 700px; color: var(--muted); font-size: 16px; line-height: 1.7; }
.bm-ai-lab-themes { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin: 0 0 28px; padding: 0; list-style: none; }
.bm-ai-lab-themes li { padding-top: 20px; border-top: 2px solid var(--teal); }
.bm-ai-lab-themes h3 { margin: 0 0 10px; color: var(--ink); font-size: 18px; }
.bm-ai-lab-themes p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.6; }
.bm-ai-lab-link { color: var(--teal); font-weight: 700; }
.bm-ai-lab-link:hover { color: var(--teal-hover); }

/* ---- Research ---- */
.bm-research-head { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin: 0 0 28px; }
.bm-research-head h2 { margin: 0; color: var(--ink); font-size: clamp(24px, 2.6vw, 32px); }
.bm-research-more { color: var(--teal); font-weight: 700; font-size: 14px; white-space: nowrap; }
.bm-research-more:hover { color: var(--teal-hover); }
.bm-research-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin: 0; padding: 0; list-style: none; }
.bm-research-item { padding: 22px; border: 1px solid var(--stroke); border-radius: var(--radius); background: var(--card-bg); }
.bm-research-category {
  display: inline-block;
  margin: 0 0 10px;
  color: var(--teal);
  font: 800 10px/1.4 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.bm-research-item h2, .bm-research-item h3 { margin: 0 0 10px; font-size: 18px; line-height: 1.35; }
.bm-research-item h2 a, .bm-research-item h3 a { color: var(--ink); }
.bm-research-item h2 a:hover, .bm-research-item h3 a:hover { color: var(--teal); }
.bm-research-item p { margin: 0 0 12px; color: var(--muted); font-size: 14.5px; line-height: 1.6; }
.bm-research-link { color: var(--teal); font-weight: 700; font-size: 14px; }
.bm-research-link:hover { color: var(--teal-hover); }

/* ---- Platform yang Kami Gunakan ---- */
.bm-platform h2 { margin: 0 0 22px; color: var(--ink); font-size: clamp(24px, 2.6vw, 32px); }
.bm-platform-card { max-width: 520px; padding: 24px; border: 1px solid var(--stroke); border-radius: var(--radius); background: var(--card-bg); }
.bm-platform-card h3 { margin: 0 0 8px; color: var(--ink); font-size: 19px; }
.bm-platform-card p { margin: 0 0 14px; color: var(--muted); font-size: 15px; line-height: 1.6; }
.bm-platform-link { color: var(--teal); font-weight: 700; }
.bm-platform-link:hover { color: var(--teal-hover); }
.bm-platform-disclosure { margin: 18px 0 0; max-width: 620px; color: #71839f; font-size: 12px; line-height: 1.6; }

/* ---- Newsletter ----
   SECONDARY email capture (position 10, near the footer) -- Founding
   Membership Whitelist is now the primary conversion goal, so this must
   stay visually quiet: compact padding/type, and an outline CTA rather
   than a filled one. --cta (orange) is reserved for the single primary
   action (.bm-wl-teaser-cta / .bm-pro-cta / .bm-hero-btn) -- never used
   here, on purpose. */
.bm-newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: var(--card-bg);
}
.bm-newsletter-copy h2 { margin: 0 0 6px; color: var(--ink); font-size: clamp(18px, 2vw, 22px); }
.bm-newsletter-copy p { margin: 0; color: var(--muted); font-size: 14px; }
.bm-newsletter-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  padding: 11px 22px;
  border: 1px solid var(--stroke);
  border-radius: var(--pill);
  background: transparent;
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
}
.bm-newsletter-cta:hover { border-color: var(--teal); color: var(--teal); }

/* ---- Founding Membership Whitelist homepage teaser (position 5) ----
   PRIMARY conversion action pre-checkout: the only homepage CTA besides
   Bitmomo Pro's own that uses --cta (orange). Renders only the fallback
   static teaser markup (bm-wl-teaser*) until PR #64 + PR #67 merge and
   Bitmomo_Pro_Whitelist::render_widget() takes over this same section --
   see whitelist.php and assets/css/bitmomo-pro-whitelist.css (that
   widget's own stylesheet, loaded by the plugin once present). */
.bm-wl-teaser {
  max-width: 560px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: var(--card-bg);
  text-align: center;
}
.bm-wl-teaser-eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font: 800 11px/1.4 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.bm-wl-teaser-price { margin: 0; color: var(--ink); font-size: clamp(20px, 2.2vw, 26px); font-weight: 800; line-height: 1.5; }
.bm-wl-teaser-cap { margin: 10px 0 0; color: var(--muted); font-size: 14px; }
.bm-wl-teaser-sub { margin: 14px auto 0; max-width: 420px; color: var(--muted); font-size: 15px; line-height: 1.6; }
.bm-wl-teaser-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  padding: 14px 32px;
  border-radius: var(--pill);
  background: var(--cta);
  color: #1a1206;
  font-weight: 800;
}
.bm-wl-teaser-cta:hover { background: var(--cta-hover); color: #1a1206; }
.bm-wl-teaser-note { margin: 16px 0 0; color: #71839f; font-size: 12px; line-height: 1.6; }

/* ---- How Bitmomo Works (position 6) ----
   Compact 4-step system overview; step 4 (Watchtower) is visually
   differentiated (dashed border, muted) from the three live steps and
   leads into the absorbed Future Pro capability block below it, which
   reuses the existing .bm-future-* rules verbatim (unchanged). */
.bm-howworks-head { max-width: 640px; margin: 0 0 32px; }
.bm-howworks-eyebrow {
  display: block;
  margin: 0 0 14px;
  color: var(--teal);
  font: 800 11px/1.4 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.bm-howworks-head h2 { margin: 0; color: var(--ink); font-size: clamp(24px, 2.6vw, 34px); line-height: 1.32; }
.bm-howworks-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 40px;
  padding: 0;
  list-style: none;
  counter-reset: bm-howworks;
}
.bm-howworks-steps li {
  padding: 18px 16px;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: var(--card-bg);
}
.bm-howworks-steps li:not(.bm-howworks-step--future) { counter-increment: bm-howworks; }
.bm-howworks-steps li:not(.bm-howworks-step--future) .bm-howworks-step-label::before {
  content: counter(bm-howworks) ". ";
  color: var(--teal);
}
.bm-howworks-step--future { border-style: dashed; background: rgba(255,255,255,.02); }
.bm-howworks-step-label { display: flex; align-items: center; gap: 8px; color: var(--ink); font-weight: 700; font-size: 15px; }
.bm-howworks-steps p { margin: 10px 0 0; color: var(--muted); font-size: 13.5px; line-height: 1.55; }
.bm-howworks-future { padding-top: 8px; border-top: 1px solid var(--stroke); }

@media (max-width: 900px) {
  .bm-howworks-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .bm-ai-lab-themes { grid-template-columns: 1fr; }
  .bm-research-list { grid-template-columns: 1fr; }
  .bm-future-list { flex-direction: column; align-items: stretch; }
  .bm-newsletter-inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .bm-newsletter-cta { width: 100%; justify-content: center; }
  .bm-howworks-steps { grid-template-columns: 1fr; }
  .bm-wl-teaser { padding: 24px 20px; }
}

/* ============= RISET ARCHIVE (category-riset.php) ============= */
.bm-riset-head { padding: clamp(48px, 6vw, 84px) 20px clamp(32px, 4vw, 56px); }
.bm-riset-eyebrow {
  display: block;
  margin: 0 0 14px;
  color: var(--teal);
  font: 800 11px/1.4 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.bm-riset-sub { max-width: 620px; margin: 14px auto 0; color: var(--muted); font-size: 16px; line-height: 1.6; }

.bm-riset-thumb {
  display: block;
  width: 56px;
  height: 56px;
  margin: 0 0 14px;
  border-radius: 12px;
  overflow: hidden;
  background: #0a1d2a;
}
.bm-riset-thumb img { width: 100%; height: 100%; object-fit: cover; }
.bm-riset-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 4px; }
.bm-riset-meta time { color: #71839f; font-size: 12px; }

/* ============= RISET ARTICLE-END BRIDGE (single.php) ============= */
.bm-riset-bridge { padding-top: 0; padding-bottom: clamp(32px, 5vw, 56px); }
.bm-riset-bridge-card {
  max-width: 820px;
  margin: 0 auto;
  padding: 22px 26px;
  border: 1px solid rgba(38,208,198,.22);
  border-radius: var(--radius);
  background: rgba(38,208,198,.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.bm-riset-bridge-eyebrow {
  display: block;
  margin: 0 0 6px;
  color: var(--teal);
  font: 800 11px/1.4 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.bm-riset-bridge-card p { margin: 0; color: var(--ink); font-size: 15px; }
.bm-riset-bridge-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  padding: 11px 22px;
  border: 1px solid var(--teal);
  border-radius: var(--pill);
  color: var(--teal);
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
}
.bm-riset-bridge-cta:hover { background: var(--teal); color: #08222a; }

@media (max-width: 640px) {
  .bm-riset-bridge-card { padding: 20px; }
  .bm-riset-bridge-cta { width: 100%; justify-content: center; }
}

/* ============= P0 VISUAL CORRECTION v2: RISET REDESIGN (2026-09-04) =============
   Product-brand market-intelligence page, not an editorial magazine: a
   compact left-aligned hero, a "Latest Research" primary+secondary
   spotlight, a distinct "Bitmomo AI Lab" brand/R&D module, and a dense
   "Arsip Riset" list. No gradients on the AI Lab module (flat tint
   only), no orange anywhere in Riset (orange stays commercial-only).
   Homepage chart CSS below this block is untouched -- frozen this pass.

   Final visual correction pass (2026-09-04b): "Latest Research" is now a
   single compact index list (no giant magazine card); Arsip rows are
   single clickable anchors with the excerpt removed (this also resolves
   the old fixed-height + line-clamp text clipping); AI Lab presentation
   is compressed/de-widgeted with restrained cyan dividers. AI Lab
   architecture, copy, and pillars are unchanged. */

.bm-riset-hero {
  text-align: left;
  padding: clamp(32px, 4vw, 48px) 20px clamp(24px, 3vw, 32px);
}
.bm-riset-hero .bm-container { margin: 0 auto; }
.bm-riset-hero-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.bm-riset-hero-copy { max-width: 560px; }
.bm-riset-hero .bm-page-title {
  display: block;
  max-width: 560px;
  padding-bottom: 0;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.22;
  text-align: left;
}
.bm-riset-hero .bm-page-title::after { display: none; }
.bm-riset-hero .bm-riset-eyebrow { margin: 0 0 10px; }
.bm-riset-hero .bm-riset-sub { margin: 10px 0 0; max-width: 440px; text-align: left; font-size: 15px; }

.bm-riset-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  padding-bottom: 4px;
  margin: 0;
}
.bm-riset-nav a {
  padding-bottom: 6px;
  border-bottom: 1px solid transparent;
  color: var(--muted);
  font: 700 12px/1.4 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.bm-riset-nav a:hover,
.bm-riset-nav a:focus-visible {
  border-bottom-color: var(--teal);
  color: var(--ink);
}

.bm-riset-section-eyebrow {
  display: block;
  margin: 0 0 20px;
  color: var(--teal);
  font: 800 11px/1.4 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: .16em;
  text-transform: uppercase;
}

/* ---- Riset Terbaru: compact research index list, not a magazine
   spotlight. Title/idea over image; a restrained thumbnail on the
   latest item only. Whole row is one clickable anchor. ---- */
.bm-riset-latest { padding: clamp(32px, 4vw, 48px) 0; }
.bm-riset-index-list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--stroke);
  max-width: 760px;
}
.bm-riset-index-item { border-bottom: 1px solid var(--stroke); }
.bm-riset-index-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 6px;
  color: inherit;
  border-radius: 8px;
}
.bm-riset-index-row:hover { background: rgba(255, 255, 255, .03); }
.bm-riset-index-row:hover h3 { color: var(--teal); }
.bm-riset-index-thumb {
  flex: 0 0 auto;
  display: block;
  width: 84px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  background: #0f2434;
}
.bm-riset-index-thumb img,
.bm-riset-index-thumb-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bm-riset-index-body { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.bm-riset-index-body time { color: #71839f; font-size: 12px; letter-spacing: .01em; }
.bm-riset-index-body h3 {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.35;
}
.bm-riset-index-item--featured .bm-riset-index-body h3 { font-size: clamp(16.5px, 1.4vw, 18.5px); }
.bm-riset-index-arrow {
  flex: 0 0 auto;
  color: var(--teal);
  font-weight: 700;
  font-size: 15px;
  transition: transform .15s ease;
}
.bm-riset-index-row:hover .bm-riset-index-arrow { transform: translateX(3px); }

/* ---- Bitmomo AI Lab: brand/R&D module, not an article grid. Flat cyan
   tint only -- no gradients, no orange, no illustration-as-identity.
   Architecture/copy/pillars unchanged -- density + click affordance +
   divider weight only. ---- */
.bm-ai-lab-brand {
  padding: clamp(40px, 5vw, 60px) 0;
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
  background: rgba(56, 189, 248, .035);
}
.bm-ai-lab-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: start; }
.bm-ai-lab-kicker { display: flex; align-items: baseline; gap: 10px; margin: 0 0 18px; }
.bm-ai-lab-kicker span {
  color: #8ba0bd;
  font: 800 12px/1.4 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: .14em;
}
.bm-ai-lab-kicker strong {
  color: #38bdf8;
  font: 800 14px/1.4 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: .14em;
}
.bm-ai-lab-intro h2 { margin: 0 0 12px; max-width: 620px; color: #e6f6ff; font-size: clamp(22px, 2.6vw, 30px); line-height: 1.3; }
.bm-ai-lab-support { margin: 0 0 28px; max-width: 540px; color: var(--muted); font-size: 15px; line-height: 1.65; }

.bm-ai-lab-pillars { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin: 0; padding: 0; list-style: none; }
.bm-ai-lab-pillars li { padding-top: 14px; border-top: 2px solid #38bdf8; }
.bm-ai-lab-pillar-name { display: block; margin: 0 0 8px; color: var(--ink); font-weight: 700; font-size: 14.5px; }
.bm-ai-lab-pillars p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }

.bm-ai-lab-work {
  padding: 18px 20px;
  border: 1px solid rgba(56, 189, 248, .18);
  border-radius: var(--radius);
  background: rgba(10, 22, 33, .32);
}
.bm-ai-lab-work-label {
  display: block;
  margin: 0 0 12px;
  color: #38bdf8;
  font: 800 11px/1.4 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.bm-ai-lab-work-list { margin: 0; padding: 0; list-style: none; }
.bm-ai-lab-work-list li {
  padding: 10px 8px;
  margin: 0 -8px;
  border-top: 1px solid rgba(56, 189, 248, .15);
  border-radius: 6px;
  transition: background .15s ease;
}
.bm-ai-lab-work-list li:first-child { border-top: 0; }
.bm-ai-lab-work-list li:hover { background: rgba(56, 189, 248, .06); }
.bm-ai-lab-work-topic {
  display: block;
  margin-bottom: 4px;
  color: #6fb8d6;
  font: 800 10px/1.4 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: .1em;
}
.bm-ai-lab-work-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}
.bm-ai-lab-work-list a::after {
  content: "\2192";
  flex: 0 0 auto;
  color: #38bdf8;
  font-weight: 700;
  transition: transform .15s ease;
}
.bm-ai-lab-work-list a:hover { color: #38bdf8; }
.bm-ai-lab-work-list a:hover::after { transform: translateX(3px); }

/* ---- Arsip: dense, compact scan list -- no excerpt, single clickable
   anchor per row. ---- */
.bm-riset-archive { padding: clamp(32px, 4vw, 48px) 0 clamp(44px, 5.5vw, 64px); }
.bm-riset-archive-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  max-width: 720px;
}
.bm-riset-archive-list li { border-top: 1px solid var(--stroke); }
.bm-riset-archive-list li:first-child { border-top: 0; }
.bm-riset-archive-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 14px 6px;
  color: inherit;
  border-radius: 8px;
}
.bm-riset-archive-row:hover { background: rgba(255, 255, 255, .03); }
.bm-riset-archive-row:hover .bm-riset-archive-title { color: var(--teal); }
.bm-riset-archive-row time { flex: 0 0 auto; color: #71839f; font-size: 12px; }
.bm-riset-archive-title { flex: 1 1 auto; min-width: 0; color: var(--ink); font-weight: 700; font-size: 15px; }
.bm-riset-archive-arrow { flex: 0 0 auto; color: var(--teal); font-weight: 700; transition: transform .15s ease; }
.bm-riset-archive-row:hover .bm-riset-archive-arrow { transform: translateX(3px); }

@media (max-width: 1050px) {
  .bm-ai-lab-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .bm-riset-hero-inner { flex-direction: column; align-items: flex-start; gap: 18px; }
}

@media (max-width: 640px) {
  .bm-riset-hero { padding: 28px 20px 22px; }
  .bm-riset-hero .bm-page-title { font-size: 24px; }
  .bm-riset-nav { gap: 16px; }

  .bm-riset-index-row { gap: 12px; padding: 13px 4px; }
  .bm-riset-index-thumb { width: 64px; height: 46px; }
  .bm-riset-index-body h3 { font-size: 14px; }
  .bm-riset-index-item--featured .bm-riset-index-body h3 { font-size: 15.5px; }

  /* AI Lab: ~20-30% denser on mobile via tighter padding/spacing/type,
     never cramped. Architecture/copy/pillars unchanged. */
  .bm-ai-lab-brand { padding: clamp(26px, 7vw, 36px) 0; }
  .bm-ai-lab-kicker { margin: 0 0 10px; }
  .bm-ai-lab-intro h2 { font-size: clamp(20px, 5.5vw, 23px); margin: 0 0 8px; }
  .bm-ai-lab-support { margin: 0 0 18px; font-size: 14px; line-height: 1.55; }
  .bm-ai-lab-pillars { grid-template-columns: 1fr; gap: 12px; }
  .bm-ai-lab-pillars li {
    padding-top: 10px;
    border-top: 0;
    position: relative;
  }
  .bm-ai-lab-pillars li::before {
    content: "";
    display: block;
    width: 26px;
    height: 1px;
    margin-bottom: 9px;
    background: rgba(56, 189, 248, .45);
  }
  .bm-ai-lab-pillar-name { font-size: 13.5px; margin-bottom: 5px; }
  .bm-ai-lab-pillars p { font-size: 12.5px; line-height: 1.45; }
  .bm-ai-lab-work { padding: 14px 16px; margin-top: 18px; }
  .bm-ai-lab-work-label { margin: 0 0 10px; }
  .bm-ai-lab-work-list li { padding: 9px 6px; margin: 0 -6px; }
  .bm-ai-lab-work-list a { font-size: 13.5px; }
  .bm-ai-lab-work-topic { font-size: 9.5px; margin-bottom: 3px; }

  .bm-riset-archive-row { padding: 12px 4px; }
}

@media (max-width: 480px) {
  /* Arsip row: arrow must stay pinned to the title block, never its own
     standalone line -- switch to a 2-col grid (date spans full width,
     title+arrow share the second row) so the arrow position is independent
     of how many lines the title text wraps to. */
  .bm-riset-archive-row {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "date  date"
      "title arrow";
    column-gap: 12px;
    row-gap: 3px;
    align-items: center;
  }
  .bm-riset-archive-row time { grid-area: date; }
  .bm-riset-archive-title { grid-area: title; }
  .bm-riset-archive-arrow { grid-area: arrow; align-self: center; }
}


/* ============= P0 VISUAL CORRECTION: HOMEPAGE CHART POLISH (2026-09) =============
   CSS-only. No data/semantics changed: color still = Directional Bias,
   height still = Market State Certainty. .bm-direction-dates and
   .bm-direction-detail were emitted by home-hero.php with zero CSS
   defined for them anywhere in this file -- they rendered as unstyled
   inline spans / a default browser dl, which is what read as "cramped"
   and "raw stacked output". This adds the missing styling only. */
.bm-direction-dates {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: clamp(4px, .7vw, 10px);
  margin: 8px 0 0;
}
.bm-direction-dates span {
  flex: 0 1 44px;
  width: 44px;
  min-width: 0;
  text-align: center;
  color: #71839f;
  font: 700 10px/1.4 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: .02em;
  visibility: hidden;
}
.bm-direction-dates span:nth-child(5n+1) { visibility: visible; }
.bm-direction-dates span:last-child { visibility: visible; color: var(--teal); font-weight: 800; }

.bm-direction-bar.is-current span,
.bm-direction-bar.is-selected span {
  opacity: 1;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, .22);
}
.bm-direction-bar.is-current::after {
  content: "";
  position: absolute;
  top: -9px;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal);
  transform: translateX(-50%);
}

.bm-direction-detail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 14px 0 0;
  padding: 16px clamp(16px, 2vw, 22px);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  background: rgba(38, 208, 198, .04);
}
.bm-direction-detail div { min-width: 0; }
.bm-direction-detail dt {
  margin: 0 0 6px;
  color: #71839f;
  font: 800 10px/1.4 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.bm-direction-detail dd { margin: 0; color: var(--ink); font-size: 14px; font-weight: 750; line-height: 1.3; }
.bm-direction-detail dd.is-bullish { color: var(--teal); }
.bm-direction-detail dd.is-bearish { color: #ff7b6d; }
.bm-direction-detail dd.is-neutral { color: #c7d4db; }

@media (max-width: 760px) {
  .bm-direction-dates span { flex-basis: 32px; width: 32px; }
}

@media (max-width: 640px) {
  .bm-direction-detail { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 14px; padding: 14px 16px; }
}
