/* ============================================================
   Brunu — v4 — based on real Brunu app screenshots
   Cool light grey background, bold black sans-serif headlines,
   dashed eyebrows, no italics, no red.
   ============================================================ */

:root {
  --bg: #f7f5f0;            /* light off-white, faint warmth */
  --bg-2: #efeae0;
  --paper: #ffffff;
  --ink: #0a0a0a;
  --ink-2: #1a1a1a;
  --ink-3: #6b6760;
  --ink-4: #9a9690;
  --line: rgba(20,18,12,0.10);
  --line-soft: rgba(20,18,12,0.06);
  --accent: #6b6760;        /* warm grey eyebrow */
  --pos: #0a8a3d;
  --neg: #c53030;

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, "SF Mono", Menlo, monospace;

  --max: 1200px;
  --gutter: clamp(20px, 4vw, 48px);
  --section-y: clamp(96px, 11vw, 160px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.011em;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
em { font-style: normal; font-weight: 800; }

/* ───── Mobile hamburger + drawer ───── */
:root {
  --bx-nav-bg: #1a1a1a;  /* off-black to match brand.ai aesthetic */
}
.bx-nav__burger {
  display: none;
  width: 36px; height: 36px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: transparent;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 4px;
  cursor: pointer;
  margin-left: 8px;
}
.bx-nav__burger span {
  width: 16px; height: 1.5px; background: #fff; border-radius: 2px;
}
/* Logo image — visible on mobile only, text label visible on desktop only */
.bx-nav__logo-img { display: none; height: 26px; width: auto; transition: opacity .35s ease; }
.bx-nav__logo-text { }

@media (max-width: 760px) {
  .bx-nav__cta { display: none !important; }
  .bx-nav__links { display: none !important; }
  .bx-nav__burger { display: inline-flex !important; }

  /* brand.ai-style mobile: full-width off-black rounded bar */
  .bx-nav {
    position: fixed !important;
    top: 12px !important;
    left: 12px !important;
    right: 12px !important;
    transform: none !important;
    max-width: none !important;
    width: auto !important;
    padding: 10px 18px !important;
    border-radius: 22px !important;
    justify-content: space-between !important;
    background: var(--bx-nav-bg) !important;
    transition: left .55s cubic-bezier(0.16, 1, 0.3, 1),
                right .55s cubic-bezier(0.16, 1, 0.3, 1),
                padding .4s ease,
                border-radius .4s ease;
  }
  .bx-nav__logo { margin-right: 0; }
  .bx-nav__logo-img { display: inline-block; }
  .bx-nav__logo-text { display: none; }
  .bx-nav__burger {
    width: 42px; height: 42px;
    border-radius: 14px;
    border: 0;
    background: rgba(255,255,255,0.08);
    transition: opacity .25s ease .3s, transform .35s ease;
  }
  .bx-nav__burger span { width: 18px; }

  /* Intro state: nav is collapsed to a small logo button, centered.
     React strips the .bx-nav--collapsed class after 650ms, which lets
     the transitions above animate the bar opening. */
  .bx-nav--collapsed {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    padding: 12px !important;
    border-radius: 18px !important;
  }
  .bx-nav--collapsed .bx-nav__burger {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
  }
}

/* Also for desktop: also use the off-black on the floating pill */
.bx-nav { background: var(--bx-nav-bg); }
/* brand.ai-style mobile menu: TWO separate rounded panels with
   page-background gap between them.                              */
.bx-mobile-menu {
  position: fixed !important;
  top: 0; right: 0; bottom: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 9999;
  padding: 12px;
  display: flex; flex-direction: column;
  gap: 8px;
  background: transparent;        /* page bg shows around panels */
  animation: bxMenuIn .25s ease;
}
@keyframes bxMenuIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* Top bar: logo + close */
.bx-mobile-menu__bar {
  background: var(--bx-nav-bg);
  border-radius: 22px;
  padding: 12px 18px;
  display: flex; align-items: center; justify-content: space-between;
  flex: 0 0 auto;
}
.bx-mobile-menu__logo-link { display: inline-flex; align-items: center; }
.bx-mobile-menu__logo-img { height: 28px; width: auto; }
.bx-mobile-menu__close {
  width: 42px; height: 42px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  border: 0; color: #fff;
  font-size: 24px; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
}

/* Lower panel: links + CTA */
.bx-mobile-menu__panel {
  background: var(--bx-nav-bg);
  border-radius: 22px;
  padding: 16px 22px 28px;
  flex: 1 1 auto;
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.bx-mobile-menu__links { list-style: none; margin: 0; padding: 0; }
.bx-mobile-menu__links li { border-top: 1px solid rgba(255,255,255,0.08); }
.bx-mobile-menu__links li:first-child { border-top: 0; }
.bx-mobile-menu__links a {
  display: block;
  padding: 22px 0;
  color: #fff;
  font-size: 26px; font-weight: 500; letter-spacing: -0.02em;
}
.bx-mobile-menu__cta {
  margin-top: auto;
  display: flex; flex-direction: column; gap: 10px;
  padding-top: 28px;
}
.bx-mobile-menu__cta .bx-btn { width: 100%; }
.bx-btn--io { background: #0a0a0a !important; color: #fff !important; border: 1px solid rgba(255,255,255,0.16) !important; }

/* No-image pulse card */
.bx-pulse__card--noimg { padding: 4px; }
.bx-pulse__card--noimg .bx-pulse__copy { padding: 22px 22px 24px; }
.bx-pulse__card--noimg .bx-pulse__text { font-size: 17px; line-height: 1.35; }

/* ───── Floating nav pill ───── */
.bx-nav {
  position: fixed; top: 18px; left: 50%; transform: translateX(-50%);
  z-index: 50;
  display: flex; align-items: center; gap: 4px;
  padding: 6px 6px 6px 18px;
  background: #0a0a0a; color: #fff;
  border-radius: 999px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.18);
  max-width: calc(100vw - 32px);
}
.bx-nav__logo {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 14px; margin-right: 14px;
}
.bx-nav__mark {
  width: 22px; height: 22px; border-radius: 999px;
  background: #fff; color: #0a0a0a;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
}
.bx-nav__links { display: flex; gap: 2px; list-style: none; margin: 0; padding: 0; }
.bx-nav__links a {
  padding: 8px 14px; font-size: 13.5px; font-weight: 500;
  color: rgba(255,255,255,0.85); border-radius: 999px;
}
.bx-nav__links a:hover { background: rgba(255,255,255,0.08); color: #fff; }
.bx-nav__cta { display: flex; align-items: center; gap: 8px; margin-left: 14px; padding-left: 14px; border-left: 1px solid rgba(255,255,255,0.16); }
.bx-nav__signin { font-size: 13px; color: rgba(255,255,255,0.85); padding: 8px; white-space: nowrap; }
.bx-nav__cta-btn {
  background: #fff; color: #0a0a0a;
  padding: 8px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 700;
  white-space: nowrap;
  transition: transform .15s ease;
}
.bx-nav__cta-btn:hover { transform: translateY(-1px); }
@media (max-width: 760px) {
  .bx-nav__links { display: none; }
  .bx-nav__cta { border-left: 0; padding-left: 0; margin-left: 0; }
}

/* ───── Buttons ───── */
.bx-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 999px;
  font-size: 14px; font-weight: 700;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  margin: 4px;
}
.bx-btn:hover { transform: translateY(-1px); }
.bx-btn--primary { background: var(--ink); color: #fff; }
.bx-btn--primary:hover { background: #2a2a2a; }
.bx-btn--ghost { color: var(--ink); border-color: var(--line); background: transparent; }
.bx-btn--ghost:hover { border-color: var(--ink); }
.bx-btn--lg { padding: 15px 30px; font-size: 14.5px; }

/* ───── Eyebrow with dashes (matches screenshots) ───── */
.bx-eyebrow-dash {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11.5px; font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.18em;
  margin: 0 auto 28px;
  white-space: nowrap;
}
.bx-eyebrow-dash--center { display: flex; justify-content: center; }
.bx-eyebrow-dash__rule { width: 24px; height: 1px; background: currentColor; opacity: 0.55; }
.bx-eyebrow-dash--light { color: rgba(255,255,255,0.65); }

/* ───── Display headlines (bold heavy sans, like screenshots) ───── */
.bx-h2-display {
  font-size: clamp(44px, 6vw, 84px);
  line-height: 1.0;
  letter-spacing: -0.034em;
  font-weight: 800;
  margin: 0 0 24px;
  text-wrap: balance;
}
.bx-h2-display--light { color: #fff; }
.bx-h2-display em { font-weight: 800; font-style: normal; }

.bx-h2 {
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.028em;
  font-weight: 800;
  margin: 0 0 20px;
  text-wrap: balance;
}
.bx-h2 em { font-weight: 800; font-style: normal; }

.bx-lede {
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.55;
  color: var(--ink-3);
  max-width: 56ch;
  margin: 0 0 32px;
  text-wrap: pretty;
}
.bx-lede--center { margin-left: auto; margin-right: auto; text-align: center; }
.bx-lede--light { color: rgba(255,255,255,0.72); }

/* ───── Hero ───── */
.bx-hero {
  padding: 140px var(--gutter) 60px;
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.bx-hero__title {
  font-size: clamp(48px, 7.2vw, 100px);
  line-height: 1.0;
  letter-spacing: -0.036em;
  font-weight: 800;
  margin: 12px 0 24px;
}
.bx-hero__title-line {
  display: block;
  white-space: nowrap;
}
@media (max-width: 920px) {
  .bx-hero__title { font-size: clamp(40px, 8vw, 68px); }
  .bx-hero__title-line { white-space: normal; }
}
.bx-hero__sub {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  color: var(--ink-3);
  max-width: 56ch;
  margin: 0 auto 28px;
  text-wrap: pretty;
}
.bx-hero__rotator-LEGACY {
  display: inline-block;
  font-weight: 700;
  color: var(--ink);
  min-width: 7ch;
}
.bx-hero__cta { display: flex; gap: 4px; flex-wrap: wrap; justify-content: center; }
.bx-hero__meta { margin-top: 14px; font-size: 12px; color: var(--ink-4); }

/* ───── Hero skybox ───── */
.bx-hero__skybox {
  margin: 56px auto 0;
  max-width: var(--max);
  position: relative;
}
.bx-hero__sky {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 21 / 10;
  background: linear-gradient(180deg, #b8c8d4 0%, #d6dde2 60%, #e6e3dc 100%);
  box-shadow: 0 30px 80px -40px rgba(40,50,60,.35);
}
.bx-hero__sky-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.bx-hero__cursor {
  position: absolute;
  display: inline-flex; align-items: flex-start;
  pointer-events: none;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.25));
}
.bx-hero__cursor svg { display: block; }
.bx-hero__cursor-label {
  margin-left: 6px; margin-top: 12px;
  background: #0a0a0a;
  color: #fff;
  font-size: 12px; font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.bx-hero__thinking {
  position: absolute;
  left: 50%;
  bottom: -90px;
  transform: translateX(-50%);
  width: min(640px, 88%);
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.18), 0 6px 18px -6px rgba(0,0,0,.08);
  padding: 18px 22px 20px;
  text-align: left;
  font-size: 13.5px; line-height: 1.55;
  color: #2a2d33;
}
.bx-thinking__head { display: flex; align-items: center; gap: 8px; padding-bottom: 14px; border-bottom: 1px solid #f0f0ee; margin-bottom: 12px; }
.bx-thinking__spinner {
  width: 14px; height: 14px; border-radius: 999px;
  border: 1.5px solid #d8dadd; border-top-color: #6b7079;
  animation: bx-spin 1s linear infinite;
}
@keyframes bx-spin { to { transform: rotate(360deg); } }
.bx-thinking__title { font-weight: 600; color: #1a1d22; }
.bx-thinking__sec { color: #8a8f97; font-size: 12px; }
.bx-thinking__caret { margin-left: auto; color: #8a8f97; font-size: 12px; }
.bx-thinking__step { display: flex; align-items: center; gap: 8px; margin: 14px 0 6px; }
.bx-thinking__step:first-of-type { margin-top: 0; }
.bx-thinking__dot {
  width: 12px; height: 12px; border-radius: 999px;
  border: 1.5px dashed #c2c5ca;
}
.bx-thinking__step-label { font-size: 12.5px; color: #6b7079; }
.bx-thinking__para { margin: 6px 0; color: #2a2d33; padding-left: 22px; }
.bx-thinking__row {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: #fafaf8;
  border-radius: 10px;
  margin: 6px 0 0 22px;
}
.bx-thinking__row-icon { display: inline-flex; }
.bx-thinking__row-text { flex: 1; font-size: 13px; font-weight: 500; color: #1a1d22; }
.bx-thinking__row-meta { font-size: 12px; color: #8a8f97; }
.bx-thinking__row-meta--ok { color: #0a7a4a; font-weight: 700; text-transform: lowercase; }
.bx-thinking__row-chev { color: #b0b4ba; font-size: 14px; }
.bx-thinking__row--action { background: rgba(10,122,74,0.06); }
.bx-thinking__prompt {
  display: flex; gap: 10px; align-items: baseline;
  padding: 10px 12px; margin: 0 0 12px;
  background: #f5f3ee; border-radius: 10px;
}
.bx-thinking__prompt-label {
  font-size: 9.5px; font-weight: 800; letter-spacing: 0.14em; color: #8a8f97; flex: none;
}
.bx-thinking__prompt-text { font-size: 13px; font-style: italic; color: #1a1d22; line-height: 1.4; }
@media (max-width: 760px) {
  .bx-hero__sky { aspect-ratio: 4 / 3; }
  .bx-hero__thinking { font-size: 12.5px; padding: 14px 16px 16px; bottom: -60px; }
  .bx-thinking__row { padding: 10px 12px; }
}

/* ───── Hero testimonials ───── */
.bx-hero__testimonials {
  margin: 140px auto 0;
  max-width: var(--max);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  text-align: left;
}
@media (max-width: 760px) { .bx-hero__testimonials { grid-template-columns: 1fr; } }
.bx-quote {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 18px 20px;
}
.bx-quote__stars { color: #f5a623; font-size: 12px; letter-spacing: 0.04em; margin-bottom: 8px; }
.bx-quote__text { font-size: 14.5px; font-weight: 600; margin: 0 0 14px; line-height: 1.4; color: var(--ink); }
.bx-quote__who { display: flex; align-items: center; gap: 10px; }
.bx-quote__avatar { width: 26px; height: 26px; border-radius: 999px; background: linear-gradient(135deg, #c0c4ca, #8a9099); }
.bx-quote__name { font-size: 12px; font-weight: 700; }
.bx-quote__role { font-size: 11px; color: var(--ink-4); }

/* ───── Section primitives ───── */
.bx-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--section-y) var(--gutter);
}
.bx-section--center { text-align: center; }

/* ───── Action pills (Agentic AI) ───── */
.bx-action-pills {
  margin: 48px auto 32px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  max-width: 800px;
}
.bx-action-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px; font-weight: 600;
  color: var(--ink-2);
  transition: transform .15s ease, border-color .2s ease;
}
.bx-action-pill:hover { transform: translateY(-1px); border-color: var(--ink); }
.bx-action-pill__dot {
  width: 6px; height: 6px; border-radius: 999px; background: var(--ink);
}

.bx-prompt-bar {
  max-width: 540px; margin: 0 auto;
  display: flex; align-items: center; gap: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 8px 8px 18px;
}
.bx-prompt-bar__plus {
  width: 28px; height: 28px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--bg-2); color: var(--ink-3);
  font-size: 16px; font-weight: 600;
}
.bx-prompt-bar__text { flex: 1; color: var(--ink-4); font-size: 14px; text-align: left; }
.bx-prompt-bar__send {
  width: 32px; height: 32px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ink); color: #fff;
  font-size: 14px;
}
.bx-finepro {
  margin: 14px auto 0;
  font-size: 11px;
  color: var(--ink-4);
}

/* ───── Integrations ───── */
.bx-applist {
  margin: 56px auto 0;
  max-width: 720px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px 16px;
}
@media (max-width: 760px) { .bx-applist { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 460px) { .bx-applist { grid-template-columns: repeat(3, 1fr); } }
.bx-applist__cell { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.bx-applist__icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(20,18,12,0.10);
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
}
.bx-applist__name { font-size: 12px; color: var(--ink-3); font-weight: 500; }

/* ───── Forecast cards ───── */
.bx-forecast-stack {
  margin: 48px auto 0;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}
.bx-forecast {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: stretch;
}
.bx-forecast__head {
  grid-column: 1 / -1;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 10px; margin-bottom: 6px;
}
.bx-forecast__brand { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; }
.bx-forecast__avatar {
  width: 22px; height: 22px; border-radius: 999px;
  background: var(--ink); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
}
.bx-forecast__date { font-size: 12px; color: var(--ink-4); }
.bx-forecast__tag {
  display: inline-block;
  background: #ffd54a;
  color: #1a1500;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.10em;
  margin-bottom: 10px;
}
.bx-forecast__h { font-size: 17px; font-weight: 700; line-height: 1.32; margin: 0 0 8px; letter-spacing: -0.012em; }
.bx-forecast__sub { font-size: 12.5px; color: var(--ink-4); margin: 0; line-height: 1.5; }
.bx-forecast__gauge {
  display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between;
  text-align: right;
}
.bx-forecast__steady { font-size: 10.5px; color: var(--ink-4); margin-top: 8px; }

.bx-gauge { position: relative; width: 64px; height: 64px; }
.bx-gauge__num {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800;
}

/* ───── Global Pulse (dark) ───── */
.bx-pulse {
  background: #0a0a0a;
  color: #fff;
  margin-top: var(--section-y);
}
.bx-pulse__inner {
  max-width: var(--max); margin: 0 auto;
  padding: var(--section-y) var(--gutter);
  text-align: center;
}
.bx-pulse__grid {
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  text-align: left;
}
@media (max-width: 920px) { .bx-pulse__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .bx-pulse__grid { grid-template-columns: 1fr; } }
.bx-pulse__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
}
.bx-pulse__thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #1a1d22;
}
.bx-pulse__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.04);
  transition: transform 0.6s ease;
}
.bx-pulse__card:hover .bx-pulse__thumb img { transform: scale(1.04); }
.bx-pulse__copy { padding: 14px 16px 18px; }
.bx-pulse__tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
}
.bx-pulse__text {
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  margin: 0 0 14px;
}
.bx-pulse__age { font-size: 10.5px; color: rgba(255,255,255,0.45); letter-spacing: 0.05em; text-transform: uppercase; font-weight: 600; }

/* ───── Split (Bet Against The Bot) ───── */
.bx-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 920px) { .bx-split { grid-template-columns: 1fr; } }
.bx-split__copy { max-width: 480px; }
.bx-checklist { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 10px; }
.bx-checklist li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px; color: var(--ink-2); line-height: 1.5;
}
.bx-checklist li::before {
  content: "\2713"; flex: none;
  width: 20px; height: 20px; border-radius: 999px;
  background: var(--ink); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; margin-top: 1px;
}
.bx-split__visual {
  border-radius: 24px;
  background: var(--bg-2);
  padding: 28px 24px;
  overflow: hidden;
}

/* ───── Bet Against The Bot — debate visual ───── */
.bx-debate { display: flex; flex-direction: column; gap: 18px; }
.bx-debate__top { display: flex; gap: 20px; align-items: center; }
.bx-debate__gauge { position: relative; width: 180px; height: 180px; flex: none; }
.bx-debate__num {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 44px; font-weight: 800; letter-spacing: -0.03em; color: #0a0a0a;
  font-feature-settings: "tnum";
}
.bx-debate__num span { font-size: 22px; font-weight: 700; margin-left: 2px; opacity: 0.7; }
.bx-debate__sub {
  position: absolute; left: 0; right: 0; bottom: 28px;
  text-align: center; font-size: 10px; letter-spacing: 0.14em;
  color: rgba(10,10,10,0.55); font-weight: 700; text-transform: uppercase;
}
.bx-debate__qmeta { flex: 1; min-width: 0; }
.bx-debate__qlabel { font-size: 10.5px; font-weight: 800; letter-spacing: 0.14em; color: rgba(10,10,10,0.5); margin-bottom: 6px; }
.bx-debate__q { font-size: 16px; font-weight: 600; line-height: 1.3; color: #0a0a0a; margin-bottom: 14px; }
.bx-debate__bar-row { display: flex; justify-content: space-between; font-size: 12px; font-weight: 600; color: rgba(10,10,10,0.6); }
.bx-debate__bar-num { color: #0a0a0a; font-weight: 800; font-size: 13px; }
.bx-debate__bar-track { position: relative; height: 8px; background: rgba(10,10,10,0.10); border-radius: 999px; margin: 8px 0 6px; }
.bx-debate__bar-fill { position: absolute; top: 0; bottom: 0; left: 0; background: #0a0a0a; border-radius: 999px; }
.bx-debate__bar-marker { position: absolute; top: -3px; width: 3px; height: 14px; background: #d97706; border-radius: 2px; transform: translateX(-1px); box-shadow: 0 0 0 2px rgba(217,119,6,0.18); }
.bx-debate__bar-meta { display: flex; justify-content: space-between; font-size: 11px; color: rgba(10,10,10,0.5); }
.bx-debate__feed { display: flex; flex-direction: column; gap: 8px; }
.bx-debate__msg { display: flex; gap: 10px; background: #fff; border-radius: 12px; padding: 10px 12px; align-items: flex-start; }
.bx-debate__msg--ai { background: #0a0a0a; color: #fff; }
.bx-debate__avatar {
  width: 28px; height: 28px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: #fff; flex: none;
}
.bx-debate__avatar--ai { background: #fff; color: #0a0a0a; }
.bx-debate__who { font-size: 11.5px; font-weight: 700; color: #0a0a0a; }
.bx-debate__msg--ai .bx-debate__who { color: #fff; }
.bx-debate__who span { color: rgba(10,10,10,0.45); font-weight: 500; }
.bx-debate__msg--ai .bx-debate__who span { color: rgba(255,255,255,0.55); }
.bx-debate__text { font-size: 13px; line-height: 1.4; margin-top: 2px; color: #1a1d22; }
.bx-debate__msg--ai .bx-debate__text { color: rgba(255,255,255,0.92); }
@media (max-width: 720px) {
  .bx-debate__top { flex-direction: column; align-items: stretch; }
  .bx-debate__gauge { align-self: center; }
}

/* ───── Markets ───── */
.bx-markets {
  margin: 48px auto 0;
  max-width: 800px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 24px;
  text-align: left;
}
.bx-markets__row {
  display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap;
  padding-bottom: 16px; border-bottom: 1px solid var(--line-soft);
}
.bx-markets__sym { font-size: 13px; font-weight: 700; letter-spacing: 0.05em; color: var(--ink-3); }
.bx-markets__price { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; }
.bx-markets__chg { font-size: 13px; font-weight: 600; }
.bx-markets__chg--down { color: var(--neg); }
.bx-spark { display: block; margin: 16px 0; }
.bx-markets__cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  padding: 12px 0; border-bottom: 1px solid var(--line-soft); margin-bottom: 16px;
}
@media (max-width: 540px) { .bx-markets__cards { grid-template-columns: repeat(2, 1fr); } }
.bx-markets__card { padding: 10px 12px; background: var(--bg); border-radius: 10px; }
.bx-markets__lbl { font-size: 10px; color: var(--ink-4); letter-spacing: 0.08em; font-weight: 700; margin-bottom: 4px; }
.bx-markets__val { font-size: 14.5px; font-weight: 700; }
.bx-markets__story { padding-top: 8px; }
.bx-markets__storylbl { font-size: 10.5px; color: var(--accent); letter-spacing: 0.14em; font-weight: 800; margin-bottom: 8px; }
.bx-markets__story p { font-size: 13.5px; line-height: 1.6; color: var(--ink-2); margin: 0; }

/* ───── Crypto ───── */
.bx-crypto {
  margin: 48px auto 0;
  max-width: 760px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 18px 22px;
  text-align: left;
}
.bx-crypto__head {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; letter-spacing: 0.10em; font-weight: 700; color: var(--ink-4);
  padding-bottom: 14px; border-bottom: 1px solid var(--line-soft);
}
.bx-crypto__live { color: var(--pos); }
.bx-crypto__row {
  display: grid;
  grid-template-columns: 32px 32px 1fr auto auto;
  align-items: center; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}
.bx-crypto__row:last-child { border-bottom: 0; }
.bx-crypto__rank { font-size: 12px; color: var(--ink-4); font-weight: 700; }
.bx-crypto__dot {
  width: 28px; height: 28px; border-radius: 999px;
  background: linear-gradient(135deg, #f7931a, #d97700);
}
.bx-crypto__row:nth-child(3) .bx-crypto__dot { background: linear-gradient(135deg, #627eea, #3c5cd0); }
.bx-crypto__row:nth-child(4) .bx-crypto__dot { background: linear-gradient(135deg, #26a17b, #1a8a66); }
.bx-crypto__row:nth-child(5) .bx-crypto__dot { background: linear-gradient(135deg, #5a5a5a, #2a2a2a); }
.bx-crypto__row:nth-child(6) .bx-crypto__dot { background: linear-gradient(135deg, #f0b90b, #c79900); }
.bx-crypto__name { font-size: 14px; font-weight: 700; }
.bx-crypto__sub { font-size: 11px; color: var(--ink-4); font-weight: 500; margin-top: 2px; }
.bx-crypto__mc { text-align: right; font-size: 13px; font-weight: 600; }
.bx-crypto__price { text-align: right; font-size: 14px; font-weight: 700; }
.bx-crypto__chg { font-size: 12px; color: var(--pos); margin-top: 2px; font-weight: 600; }

/* ───── Pricing ───── */
.bx-pricing__toggle {
  display: inline-flex;
  background: var(--paper);
  border-radius: 999px;
  padding: 4px;
  border: 1px solid var(--line);
  margin: 8px auto 40px;
}
.bx-pricing__toggle button {
  padding: 9px 20px;
  font-size: 13px; font-weight: 600;
  border-radius: 999px;
  color: var(--ink-3);
  display: inline-flex; align-items: center; gap: 8px;
}
.bx-pricing__toggle .is-on { background: var(--ink); color: #fff; }
.bx-pricing__save {
  font-family: var(--font-mono);
  font-size: 10.5px;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(10,15,25,0.08);
  color: var(--ink);
  font-weight: 700;
}
.bx-pricing__toggle .is-on .bx-pricing__save { background: rgba(255,255,255,0.18); color: #fff; }

.bx-tiers {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  text-align: left;
}
@media (max-width: 1080px) { .bx-tiers { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .bx-tiers { grid-template-columns: 1fr; } }
.bx-tier {
  background: var(--paper);
  border-radius: 18px;
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative; min-height: 380px;
  border: 1px solid var(--line-soft);
}
.bx-tier--popular { background: var(--ink); color: #fff; border-color: var(--ink); }
.bx-tier--popular .bx-tier__per,
.bx-tier--popular .bx-tier__tag { color: rgba(255,255,255,0.7); }
.bx-tier--popular .bx-tier__limit { color: rgba(255,255,255,0.55); border-top-color: rgba(255,255,255,0.12); }
.bx-tier__badge {
  position: absolute; top: -10px; left: 22px;
  background: var(--ink); color: #fff;
  font-size: 10.5px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
}
.bx-tier--popular .bx-tier__badge { background: #fff; color: var(--ink); }
.bx-tier__name {
  font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.10em;
  color: var(--ink-3); font-weight: 700;
}
.bx-tier--popular .bx-tier__name { color: rgba(255,255,255,0.6); }
.bx-tier__price { display: flex; align-items: baseline; gap: 4px; }
.bx-tier__amt { font-size: 44px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.bx-tier__per { font-size: 13px; color: var(--ink-3); }
.bx-tier__tag { font-size: 13.5px; color: var(--ink-2); line-height: 1.5; min-height: 60px; }
.bx-tier__limit { font-size: 12px; color: var(--ink-3); line-height: 1.55; padding-top: 14px; border-top: 1px solid var(--line); margin-top: auto; font-family: var(--font-mono); }
.bx-tier .bx-btn { justify-content: center; width: 100%; margin: 0; }
.bx-tier--popular .bx-btn--primary { background: #fff; color: var(--ink); }
.bx-tier--popular .bx-btn--primary:hover { background: var(--bg-2); }

/* ───── Final CTA ───── */
.bx-finalcta {
  text-align: center;
  padding: var(--section-y) var(--gutter);
}
.bx-finalcta__h {
  font-size: clamp(44px, 6.5vw, 88px);
  letter-spacing: -0.034em;
  font-weight: 800;
  line-height: 1.0;
  margin: 0 0 32px;
  text-wrap: balance;
}
.bx-finalcta__h em { font-weight: 800; font-style: normal; }
.bx-finalcta__cta { display: flex; gap: 4px; flex-wrap: wrap; justify-content: center; }

/* ───── Footer ───── */
.bx-footer {
  background: var(--ink);
  color: #fff;
  padding: 80px 0 32px;
  border-radius: 28px 28px 0 0;
}
.bx-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.4fr 4fr;
  gap: 48px;
}
@media (max-width: 760px) { .bx-footer__inner { grid-template-columns: 1fr; } }
.bx-footer .bx-nav__logo { color: #fff; font-size: 18px; }
.bx-footer .bx-nav__mark { background: #fff; color: var(--ink); }
.bx-footer__brand p { font-size: 13.5px; color: rgba(255,255,255,0.6); line-height: 1.55; margin-top: 16px; }
.bx-footer__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 760px) { .bx-footer__cols { grid-template-columns: repeat(2, 1fr); } }
.bx-footer__h {
  font-size: 11.5px; letter-spacing: 0.10em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 14px; font-weight: 700;
}
.bx-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.bx-footer ul a { font-size: 13.5px; color: rgba(255,255,255,0.85); }
.bx-footer ul a:hover { color: #fff; }
.bx-footer__base {
  max-width: var(--max);
  margin: 56px auto 0;
  padding: 24px var(--gutter) 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; justify-content: space-between; gap: 24px;
  font-size: 11.5px; color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
}
.bx-footer__disc { max-width: 520px; line-height: 1.5; }
