/* ═══════════════════════════════════════════════════════════
   BWS 2.0 — Main Stylesheet
   Afrofuturist dark theme · Amber/Gold palette
════════════════════════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-deep:        #0e0600;
  --bg-dark:        #150900;
  --bg-panel:       #1a0d02;
  --bg-panel-2:     #1f1108;
  --bg-glass:       rgba(30, 14, 2, 0.75);

  --amber:          #c8892a;
  --amber-light:    #e8a83a;
  --amber-glow:     #ff9c20;
  --gold:           #d4a030;
  --gold-dim:       #8a6820;
  --copper:         #b06428;

  --text-white:     #f0e8d8;
  --text-light:     #c8b898;
  --text-dim:       #7a6040;
  --text-muted:     #4a3820;

  --border:         rgba(200, 137, 42, 0.25);
  --border-bright:  rgba(200, 137, 42, 0.55);
  --glow-amber:     0 0 18px rgba(200, 137, 42, 0.4);
  --glow-strong:    0 0 32px rgba(232, 168, 58, 0.6);

  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      20px;
  --radius-pill:    999px;

  --font-display:   'Orbitron', 'Rajdhani', sans-serif;
  --font-ui:        'Rajdhani', 'Inter', sans-serif;
  --font-body:      'Inter', sans-serif;

  --header-h:       68px;
  --section-pad:    48px 24px;
  --max-w:          1400px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { color: var(--amber-light); text-decoration: none; transition: color .2s; }
a:hover { color: var(--amber-glow); }

/* ── Utility Buttons ── */
.btn-primary {
  background: linear-gradient(135deg, var(--amber), var(--copper));
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  transition: filter .2s, transform .15s;
  white-space: nowrap;
}
.btn-primary:hover { filter: brightness(1.15); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--amber-light);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-pill);
  padding: 9px 20px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.btn-ghost:hover { background: rgba(200,137,42,.12); color: var(--amber-glow); }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--amber); }

/* ═══════════════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(14, 6, 0, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.6); }

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 24px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 42px;
  height: 30px;
  display: inline-block;
  flex: 0 0 auto;
  color: transparent;
  font-size: 0;
  background: url("../assets/images/logos/bws-logo.png") center / contain no-repeat;
  filter: drop-shadow(0 0 8px var(--amber));
  line-height: 1;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--text-white);
}
.logo-version {
  color: var(--amber);
  font-weight: 900;
}

.header-nav {
  display: flex;
  gap: 6px;
  flex: 1;
}
.nav-link {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--text-light);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
}
.nav-link:hover { color: var(--amber-glow); background: rgba(200,137,42,.08); }

.nav-edu-group {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-edu-parent {
  cursor: pointer;
}

.nav-edu-parent::after {
  content: none;
}

.nav-edu-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 130;
  min-width: 170px;
  padding: 10px;
  display: grid;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -8px);
  border: 1px solid rgba(218, 158, 52, .42);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(45, 20, 6, .9), rgba(5, 3, 1, .96)),
    rgba(0, 0, 0, .8);
  box-shadow: 0 18px 34px rgba(0, 0, 0, .48), 0 0 24px rgba(216, 144, 42, .16);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.nav-edu-menu::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -6px;
  width: 10px;
  height: 10px;
  transform: translateX(-50%) rotate(45deg);
  border-left: 1px solid rgba(218, 158, 52, .42);
  border-top: 1px solid rgba(218, 158, 52, .42);
  background: rgba(28, 12, 3, .96);
}

.nav-edu-menu a {
  display: block;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 6px;
  color: #f1e1c0;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.nav-edu-menu a:hover,
.nav-edu-menu a:focus,
.nav-edu-menu a.active {
  color: #ffd37b;
  background: rgba(216, 144, 42, .14);
  outline: none;
}

.nav-edu-group:hover .nav-edu-menu,
.nav-edu-group:focus-within .nav-edu-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.header-actions { display: flex; gap: 10px; align-items: center; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--amber-light);
  border-radius: 2px;
  transition: transform .3s;
}

/* ═══════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(14,6,0,0) 0%, rgba(14,6,0,0.55) 60%),
    linear-gradient(to bottom, rgba(14,6,0,0.3) 0%, rgba(14,6,0,0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 60px 24px 80px;
  max-width: 780px;
  width: 100%;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: .03em;
  color: #fff;
  text-shadow:
    0 0 40px rgba(200, 137, 42, 0.5),
    0 2px 8px rgba(0,0,0,.8);
  margin-bottom: 36px;
}

/* Search */
.hero-search-wrap {
  margin-bottom: 28px;
}
.hero-search-bar {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.09);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-pill);
  padding: 4px 6px 4px 18px;
  max-width: 580px;
  margin: 0 auto;
  box-shadow: 0 4px 24px rgba(0,0,0,.4), inset 0 0 0 1px rgba(200,137,42,.1);
  transition: border-color .2s, box-shadow .2s;
}
.hero-search-bar:focus-within {
  border-color: var(--amber);
  box-shadow: var(--glow-amber), 0 4px 24px rgba(0,0,0,.4);
}
.search-icon { font-size: 18px; color: var(--text-dim); margin-right: 10px; }
.hero-search-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1;
  padding: 10px 0;
}
.hero-search-input::placeholder { color: var(--text-dim); }
.hero-search-btn {
  background: linear-gradient(135deg, var(--amber), var(--copper));
  border: none;
  border-radius: var(--radius-pill);
  width: 42px; height: 42px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  flex-shrink: 0;
  transition: filter .2s;
}
.hero-search-btn:hover { filter: brightness(1.2); }

/* Category Pills */
.hero-category-pills {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.category-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(14, 6, 0, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  color: var(--text-light);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s, box-shadow .2s;
  backdrop-filter: blur(8px);
}
.category-pill .pill-icon { font-size: 14px; color: var(--amber); }
.category-pill:hover,
.category-pill.active {
  background: rgba(200, 137, 42, 0.18);
  border-color: var(--amber);
  color: var(--amber-glow);
  box-shadow: var(--glow-amber);
}

/* ═══════════════════════════════════════════════════════════
   SECTION SHARED
════════════════════════════════════════════════════════════ */
.section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-pad);
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 16px;
}
.section-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-diamond { color: var(--amber); font-size: 14px; }
.section-title {
  font-family: var(--font-ui);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--text-white);
}
.section-actions { display: flex; align-items: center; gap: 10px; }
.view-all-link {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--amber);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  transition: background .2s;
}
.view-all-link:hover { background: rgba(200,137,42,.1); }

.scroll-arrow {
  background: rgba(200,137,42,.12);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 34px; height: 34px;
  color: var(--amber);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  display: flex; align-items: center; justify-content: center;
}
.scroll-arrow:hover { background: rgba(200,137,42,.25); border-color: var(--amber); }

/* Horizontal scroll track */
.horizontal-scroll-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.horizontal-scroll-track::-webkit-scrollbar { height: 4px; }

/* ═══════════════════════════════════════════════════════════
   BUSINESS CARDS
════════════════════════════════════════════════════════════ */
.businesses-section { border-top: 1px solid var(--border); }

.biz-card {
  flex-shrink: 0;
  width: 210px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.biz-card:hover {
  transform: translateY(-4px);
  border-color: var(--amber);
  box-shadow: var(--glow-amber);
}
.biz-card-img-wrap {
  position: relative;
  height: 160px;
  overflow: hidden;
  background: #1a1008;
}
.biz-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.biz-card-img-wrap.bws-platform-card {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 36%, rgba(228, 171, 68, .2), transparent 42%),
    linear-gradient(135deg, rgba(36, 17, 5, .95), rgba(7, 5, 2, .98));
}
.biz-card-img-wrap.bws-platform-card img {
  width: min(82%, 170px);
  height: min(82%, 114px);
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(230, 169, 65, .32));
}
.biz-card:hover .biz-card-img-wrap img { transform: scale(1.05); }

.biz-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,6,0,.92) 40%, transparent 100%);
  opacity: 0;
  transition: opacity .25s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
}
.biz-card:hover .biz-card-overlay { opacity: 1; }
.biz-card-rating { color: var(--amber); font-size: 13px; margin-bottom: 4px; }
.biz-card-desc {
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.4;
}

.biz-card-footer {
  padding: 10px 12px;
  border-top: 1px solid var(--border);
}
.biz-card-name {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-white);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Ghost card */
.biz-card--ghost { border-style: dashed; border-color: var(--gold-dim); }
.ghost-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ghost-content {
  text-align: center;
  color: var(--text-dim);
}
.ghost-icon {
  display: block;
  font-size: 36px;
  font-weight: 300;
  color: var(--gold-dim);
  margin-bottom: 8px;
}
.ghost-content p { font-size: 12px; }

/* ═══════════════════════════════════════════════════════════
   MAP + NEWS ROW
════════════════════════════════════════════════════════════ */
.map-news-row {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-pad);
  border-top: 1px solid var(--border);
}

/* Panel shared */
.conquer-map-panel,
.news-panel,
.hot-topics-panel,
.conversation-panel,
.fin-edu-panel,
.bbbb-panel {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.panel-header-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(200,137,42,.04);
}
.panel-gem, .topics-gem { color: var(--amber); font-size: 13px; }
.panel-title {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: .04em;
}

/* Conquer Map inner */
.conquer-map-inner {
  display: flex;
  gap: 0;
  padding: 18px;
  min-height: 280px;
}
.map-stats-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 180px;
  flex-shrink: 0;
}
.map-stat-group { display: flex; flex-direction: column; gap: 8px; }
.map-stat { display: flex; flex-direction: column; }
.stat-label {
  font-size: 10px;
  letter-spacing: .08em;
  color: var(--text-dim);
  font-family: var(--font-ui);
  font-weight: 600;
  text-transform: uppercase;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.1;
}
.stat-value.amber { color: var(--amber-light); }

.map-location-badge {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: rgba(200,137,42,.08);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 12px;
}
.map-pin { color: var(--amber); font-size: 16px; }
.map-location-badge strong { font-family: var(--font-ui); font-size: 14px; color: var(--text-white); }
.map-sub-select { display: flex; gap: 6px; margin-top: 4px; flex-wrap: wrap; align-items: center; }
.map-region-select {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  color: var(--text-light);
  border-radius: var(--radius-sm);
  padding: 2px 6px;
  font-size: 12px;
}
.map-savor-btn {
  background: none;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  border-radius: var(--radius-pill);
  padding: 3px 10px;
  font-size: 11px;
  cursor: pointer;
  font-family: var(--font-ui);
  font-weight: 600;
  transition: background .2s;
}
.map-savor-btn:hover { background: rgba(200,137,42,.1); }

.newsletter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,137,42,.1);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-pill);
  padding: 9px 16px;
  color: var(--amber-light);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
  margin-top: auto;
}
.newsletter-btn:hover { background: rgba(200,137,42,.2); }

.map-visual-col {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.map-img {
  max-height: 280px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(200,137,42,.3));
}

/* ── News Panel ── */
.news-header { justify-content: space-between; }
.live-badge {
  background: #c0392b;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 2px 7px;
  border-radius: 3px;
  vertical-align: middle;
  margin-left: 6px;
  animation: pulse-red 1.5s infinite;
}
@keyframes pulse-red {
  0%,100% { opacity: 1; }
  50% { opacity: .6; }
}
.news-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-dim);
}
.heart-btn { color: #c0392b; cursor: pointer; }
.pause-btn { cursor: pointer; color: var(--text-dim); }
.viewer-count {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--amber);
}

.news-anchor-wrap {
  position: relative;
  background: linear-gradient(135deg, #0a0500 0%, #1c0e04 100%);
  overflow: hidden;
  height: 180px;
}
.news-anchor-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.news-anchor-label {
  position: absolute;
  bottom: 8px; left: 10px;
  display: flex; gap: 6px; align-items: center;
}
.anchor-name-badge {
  background: var(--amber);
  color: #000;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
}
.live-dot-badge {
  background: #c0392b;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 3px;
  animation: pulse-red 1.5s infinite;
}

/* News Ticker */
.news-ticker-wrap {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  min-height: 72px;
  overflow: hidden;
}
.news-ticker p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
  animation: tickerScroll 8s ease-in-out infinite;
}
.news-ticker p strong { color: var(--amber-light); }
@keyframes tickerScroll {
  0% { opacity: 0; transform: translateY(8px); }
  8% { opacity: 1; transform: translateY(0); }
  90% { opacity: 1; }
  100% { opacity: 0; }
}

/* News Signup */
.news-panel-signup { padding: 12px 16px; }
.news-signup-row {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
.news-email-input {
  flex: 1;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  color: var(--text-white);
  font-size: 13px;
  outline: none;
  transition: border-color .2s;
}
.news-email-input:focus { border-color: var(--amber); }
.news-email-input::placeholder { color: var(--text-muted); }

.news-signup-links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
}
.signup-link { color: var(--text-dim); }
.signup-link:hover { color: var(--amber); }
.social-icons { display: flex; gap: 6px; margin-left: auto; }
.social-icon {
  width: 26px; height: 26px;
  background: rgba(200,137,42,.1);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 700;
  transition: background .2s, color .2s;
}
.social-icon:hover { background: rgba(200,137,42,.25); color: var(--amber); }

/* ═══════════════════════════════════════════════════════════
   HOT TOPICS + CONVERSATION ROW
════════════════════════════════════════════════════════════ */
.community-row {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-pad);
  border-top: 1px solid var(--border);
}

/* Topic list */
.topic-list { padding: 8px 0; }
.topic-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(200,137,42,.07);
  transition: background .2s;
  cursor: pointer;
}
.topic-item:hover { background: rgba(200,137,42,.04); }

.topic-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-panel-2);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.topic-avatar img { width: 100%; height: 100%; object-fit: cover; }

.topic-content { flex: 1; min-width: 0; }
.topic-title {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.topic-meta { display: flex; gap: 8px; flex-wrap: wrap; }
.topic-stat {
  font-size: 11px;
  color: var(--amber);
  font-weight: 600;
}
.topic-stat em { color: var(--text-dim); font-style: normal; }
.topic-info { font-size: 11px; color: var(--text-dim); }
.topic-badge {
  background: var(--amber);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.topic-alert { font-size: 12px; flex-shrink: 0; }
.topic-loc { font-size: 10px; color: var(--text-dim); white-space: nowrap; }

.continue-conv-btn {
  margin: 12px 18px;
  background: rgba(200,137,42,.1);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  color: var(--amber-light);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
  display: flex; align-items: center; gap: 8px;
}
.continue-conv-btn:hover { background: rgba(200,137,42,.2); }

/* Conversation panel */
.conversation-panel { padding: 0; }
.conversation-inner {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.conv-avatar-stack { display: flex; }
.conv-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--bg-panel);
}
.conv-avatar--offset { margin-left: -14px; }

.conv-stats { display: flex; gap: 14px; align-items: flex-start; }
.conv-stat-main {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--amber-light);
}
.conv-stat-sub { font-size: 11px; color: var(--text-dim); line-height: 1.4; }

.conv-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 70px;
}
.chart-bar {
  flex: 1;
  background: rgba(200,137,42,.2);
  border-radius: 3px 3px 0 0;
  transition: background .2s;
}
.chart-bar.active { background: var(--amber); }
.chart-bar:hover { background: var(--amber-light); }

.conv-topics-note {
  padding: 8px 18px 14px;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 11px;
}

/* ═══════════════════════════════════════════════════════════
   REVIEWS
════════════════════════════════════════════════════════════ */
.reviews-section { border-top: 1px solid var(--border); }

.review-card {
  flex-shrink: 0;
  width: 200px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform .2s, border-color .2s;
}
.review-card:hover { transform: translateY(-3px); border-color: var(--amber); }

.review-card-img {
  width: 100%; height: 140px;
  object-fit: cover;
}
.review-card-body { padding: 10px 12px; }
.review-card-name {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-white);
}
.review-card-biz { font-size: 11px; color: var(--text-dim); margin: 2px 0 4px; }
.review-date { color: var(--text-muted); }
.review-stars { color: var(--amber); font-size: 13px; }

/* ═══════════════════════════════════════════════════════════
   FINANCIAL EDUCATION + BBBB
════════════════════════════════════════════════════════════ */
.fin-edu-row {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-pad);
  border-top: 1px solid var(--border);
}

.fin-edu-panel { padding: 18px; }
.fin-edu-panel .section-title { margin-bottom: 0; }
.fin-edu-panel .panel-header-bar {
  justify-content: space-between;
  border-bottom: none;
  padding: 0 0 14px 0;
  background: none;
}

/* Education cards */
.edu-card {
  flex-shrink: 0;
  width: 200px;
  background: var(--bg-panel-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform .2s, border-color .2s;
}
.edu-card:hover { transform: translateY(-3px); border-color: var(--amber); }

.edu-card-img-wrap {
  position: relative;
  height: 130px;
  overflow: hidden;
  background: #100800;
}
.edu-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.edu-card-stars {
  position: absolute;
  bottom: 6px; left: 8px;
  color: var(--amber);
  font-size: 11px;
  text-shadow: 0 1px 4px rgba(0,0,0,.8);
}

.edu-card-body { padding: 10px 12px; }
.edu-card-title {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
  line-height: 1.3;
}
.edu-card-meta { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 8px; }
.edu-card-author { font-size: 11px; color: var(--amber-light); }
.edu-card-date { font-size: 10px; color: var(--text-dim); }
.edu-card-actions { display: flex; gap: 5px; flex-wrap: wrap; }

.edu-btn {
  background: rgba(200,137,42,.15);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 3px 9px;
  font-size: 11px;
  font-family: var(--font-ui);
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: background .2s;
}
.edu-btn:hover { background: rgba(200,137,42,.3); color: var(--amber-glow); }
.edu-btn--outline { background: transparent; border-color: var(--border); }
.edu-btn--social { background: rgba(59,89,152,.2); border-color: rgba(59,89,152,.4); color: #7b9fd4; }

/* BBBB Panel */
.bbbb-panel {
  display: flex;
  flex-direction: column;
}
.bbbb-header {
  padding: 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(200,137,42,.04);
}
.bbbb-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.bbbb-gem {
  font-size: 28px;
  color: var(--amber);
  filter: drop-shadow(0 0 6px var(--amber));
}
.bbbb-logo strong {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: .1em;
}
.bbbb-name {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.3;
}

.bbbb-list {
  list-style: none;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.bbbb-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}
.bbbb-icon { font-size: 16px; color: var(--amber); }

.bbbb-actions {
  display: flex;
  gap: 10px;
  padding: 14px 18px;
  border-top: 1px solid var(--border);
}
.bbbb-learn { flex: 1; }
.bbbb-signup { flex: 1.2; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  margin-top: 48px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 24px 32px;
  display: flex;
  gap: 64px;
}
.footer-brand { max-width: 240px; }
.footer-tagline {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 8px;
  line-height: 1.5;
}
.footer-links {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col h4 {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 13px;
  color: var(--text-dim);
}
.footer-col a:hover { color: var(--amber-light); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 16px 24px;
  text-align: center;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .map-news-row,
  .community-row,
  .fin-edu-row {
    grid-template-columns: 1fr;
  }
  .news-panel { max-width: 100%; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-actions { display: none; }
  .hamburger { display: flex; }

  .hero-title { font-size: clamp(22px, 6vw, 36px); }
  .hero-category-pills { gap: 7px; }
  .category-pill { padding: 8px 14px; font-size: 12px; }

  :root { --section-pad: 32px 16px; }

  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-links { gap: 28px; }

  .map-stats-col { min-width: 140px; }
}

@media (max-width: 480px) {
  .hero-category-pills .category-pill { padding: 7px 11px; font-size: 11px; }
  .biz-card { width: 175px; }
  .review-card { width: 170px; }
  .edu-card { width: 170px; }
}

/* BWS visual-reference calibration: 2026-05-16 */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(14, 6, 0, .18), rgba(14, 6, 0, .86)),
    url("../assets/images/page_texture_overlay.png") center top / cover no-repeat;
  opacity: .48;
}

.site-header {
  height: 58px;
  background: rgba(18, 8, 2, .66);
  border-bottom-color: rgba(255, 196, 107, .18);
  box-shadow: 0 12px 38px rgba(0, 0, 0, .22);
}

.header-inner { gap: 24px; }
.header-logo .logo-text { letter-spacing: .08em; }
.nav-link { border: 1px solid transparent; }
.nav-link:hover {
  border-color: rgba(255, 189, 86, .24);
  background: rgba(45, 20, 8, .68);
}

.hero {
  min-height: 520px;
  height: min(58vw, 640px);
  align-items: flex-start;
  isolation: isolate;
  padding-top: 52px;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: auto 0 -2px;
  height: 34%;
  background: linear-gradient(180deg, rgba(14, 6, 0, 0), var(--bg-deep) 92%);
  z-index: 4;
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 900ms ease, transform 4200ms ease;
  will-change: opacity, transform;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-layer {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.hero-layer-back { z-index: 1; }
.hero-layer-mid {
  z-index: 2;
  opacity: .72;
  mix-blend-mode: screen;
}

.hero-bg-img {
  height: calc(100% + 90px);
  filter: saturate(1.08) contrast(1.08) brightness(.98);
}

.hero-bg-overlay {
  z-index: 3;
  background:
    radial-gradient(ellipse 64% 54% at 52% 18%, rgba(255, 193, 101, .22) 0%, rgba(14, 6, 0, 0) 58%),
    linear-gradient(180deg, rgba(35, 13, 3, .12) 0%, rgba(14, 6, 0, .14) 36%, rgba(14, 6, 0, .86) 100%),
    linear-gradient(90deg, rgba(8, 3, 0, .42), transparent 24%, transparent 72%, rgba(8, 3, 0, .52));
}

.hero-layout-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background-image: url("../assets/images/hero/bws2-layout-overlay.png");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: .28;
  mix-blend-mode: screen;
  filter: contrast(1.12) brightness(1.05);
}

.hero-content {
  max-width: 760px;
  padding: 8px 20px 0;
}

.hero-title {
  font-family: var(--font-ui);
  font-size: clamp(34px, 4.15vw, 50px);
  line-height: .98;
  letter-spacing: 0;
  color: #f9ead5;
  text-shadow: 0 3px 0 rgba(63, 29, 11, .75), 0 10px 28px rgba(0, 0, 0, .62);
  margin-bottom: 32px;
}

.hero-search-bar {
  max-width: 760px;
  min-height: 54px;
  border-radius: 7px;
  padding: 0 0 0 18px;
  background: rgba(255, 242, 221, .92);
  border-color: rgba(102, 45, 18, .74);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .36), inset 0 0 0 1px rgba(255, 255, 255, .32);
}

.search-icon { color: #7b4c2a; font-size: 24px; }
.hero-search-input {
  color: #3b2518;
  font-size: 16px;
  min-width: 0;
}
.hero-search-input::placeholder { color: #6d533f; }
.hero-search-btn {
  width: 58px;
  height: 54px;
  border-radius: 0 7px 7px 0;
  background: linear-gradient(135deg, #2a130b, #100604);
  border-left: 1px solid rgba(105, 54, 25, .55);
}

.hero-category-pills {
  gap: 12px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 8px;
}

.category-pill {
  flex: 0 0 auto;
  border-radius: 6px;
  padding: 11px 22px;
  background: linear-gradient(180deg, rgba(55, 25, 14, .95), rgba(29, 12, 7, .95));
  border-color: rgba(255, 178, 76, .28);
  box-shadow: 0 9px 22px rgba(0, 0, 0, .32), inset 0 1px 0 rgba(255, 214, 153, .08);
  color: #f7e5cb;
}

.category-pill:hover,
.category-pill.active {
  background: linear-gradient(180deg, rgba(81, 36, 16, .98), rgba(37, 14, 6, .98));
}

.hero-carousel-controls {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 12px;
}

.hero-dot {
  width: 28px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 228, 185, .36);
  cursor: pointer;
  transition: width .2s, background .2s;
}

.hero-dot.active {
  width: 42px;
  background: #f3a63d;
  box-shadow: 0 0 14px rgba(243, 166, 61, .7);
}

.section {
  padding-top: 28px;
  padding-bottom: 24px;
}

.businesses-section {
  max-width: none;
  padding-left: clamp(18px, 4vw, 52px);
  padding-right: clamp(18px, 4vw, 52px);
  margin-top: -154px;
  position: relative;
  z-index: 5;
  border-top: 0;
}

.section-title {
  font-size: clamp(22px, 2.3vw, 28px);
  letter-spacing: 0;
  text-shadow: 0 3px 12px rgba(0, 0, 0, .72);
}

.view-all-link,
.btn-ghost,
.scroll-arrow {
  border-radius: 6px;
  background: rgba(55, 25, 12, .82);
}

.horizontal-scroll-track {
  gap: 14px;
  padding: 2px 4px 14px;
  scroll-snap-type: x proximity;
}

.biz-card,
.review-card,
.edu-card {
  scroll-snap-align: start;
  border-radius: 7px;
  background: rgba(27, 12, 6, .82);
  border-color: rgba(255, 188, 91, .28);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .38), inset 0 1px 0 rgba(255, 214, 153, .06);
}

.biz-card {
  width: clamp(210px, 18vw, 250px);
}

.biz-card-img-wrap { height: 154px; }
.biz-card-overlay {
  opacity: 1;
  background: linear-gradient(180deg, transparent 18%, rgba(13, 5, 2, .32) 52%, rgba(10, 4, 2, .95));
}
.biz-card-footer { display: none; }
.biz-card-name { white-space: normal; }

.map-news-row,
.community-row,
.fin-edu-row {
  max-width: none;
  padding-left: clamp(18px, 4vw, 52px);
  padding-right: clamp(18px, 4vw, 52px);
  border-top: 0;
}

.map-news-row {
  grid-template-columns: minmax(0, 1fr) minmax(330px, 410px);
  align-items: stretch;
}

.conquer-map-panel,
.news-panel,
.hot-topics-panel,
.conversation-panel,
.fin-edu-panel,
.bbbb-panel {
  border-radius: 8px;
  background: rgba(24, 10, 5, .76);
  border-color: rgba(255, 187, 89, .28);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .4), inset 0 1px 0 rgba(255, 220, 162, .07);
  backdrop-filter: blur(8px);
}

.panel-header-bar {
  padding: 12px 18px;
  background: linear-gradient(180deg, rgba(83, 38, 18, .44), rgba(28, 11, 5, .18));
}

.conquer-map-inner {
  min-height: 330px;
  background: radial-gradient(circle at 64% 52%, rgba(33, 191, 184, .16), transparent 27%);
}

.map-img {
  width: 100%;
  max-height: 330px;
  object-fit: cover;
  border-radius: 8px;
}

.news-anchor-wrap { height: 228px; }
.news-ticker-wrap {
  background: rgba(255, 241, 224, .92);
  color: #2e180d;
}
.news-ticker p { color: #4f3528; font-size: 16px; }
.news-ticker p strong { color: #32170c; }

.community-row {
  grid-template-columns: minmax(320px, 430px) minmax(300px, 1fr);
  align-items: start;
}

.conversation-panel {
  min-height: 230px;
  background-image: linear-gradient(rgba(27, 11, 5, .68), rgba(27, 11, 5, .82)), url("../assets/images/panels/conversation_panel_filled.png");
  background-size: cover;
  background-position: center;
}

.reviews-section {
  max-width: none;
  padding-left: clamp(18px, 4vw, 52px);
  padding-right: 0;
  border-top: 0;
}

.review-card { width: clamp(220px, 19vw, 270px); }
.review-card-img { height: 132px; }

.fin-edu-row {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 370px);
  padding-bottom: 48px;
}

.edu-card { width: clamp(230px, 25vw, 330px); }
.edu-card-img-wrap { height: 160px; }

.bbbb-panel {
  background:
    linear-gradient(rgba(255, 245, 230, .88), rgba(255, 238, 214, .9)),
    url("../assets/images/panels/bbbb_panel_filled.png") center / cover;
  color: #34190b;
}
.bbbb-header,
.bbbb-actions { border-color: rgba(80, 34, 12, .16); }
.bbbb-logo strong,
.bbbb-name,
.bbbb-list li { color: #34190b; }

/* ── Two-layer centered glass search (glass-search-v2) ──────────────────── */
.hero-content:has(.glass-search-v2) {
  align-items: center;
  text-align: center;
  padding-top: clamp(40px, 5vw, 64px);
  max-width: 100%;
}

.hero-content:has(.glass-search-v2) .hero-title {
  display: none;
}

.hero-content:has(.glass-search-v2) .hero-category-pills {
  justify-content: center;
}

.glass-search-v2 {
  position: relative;
  width: min(720px, calc(100vw - 36px));
  margin: 0 auto 24px;
  /* leave room above for the brand text floating on top */
  padding-top: clamp(60px, 8vw, 90px);
}

/* BWS 2.0 brand — sits directly above the outer glass, left-aligned to
   outer-left + 14px (matches where the search input text starts) */
.gsv2-brand {
  position: absolute;
  left: 14px;         /* outer-left(0) + 14px requested offset */
  bottom: calc(100% - clamp(60px, 8vw, 90px)); /* flush above outer glass top */
  display: flex;
  align-items: baseline;
  gap: clamp(6px, 1vw, 12px);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.gsv2-brand strong {
  font-family: var(--font-display, 'Rajdhani', sans-serif);
  font-size: clamp(52px, 8.5vw, 100px);
  font-weight: 700;
  line-height: .82;
  letter-spacing: -.01em;
  color: rgba(255, 255, 255, .93);
  text-shadow:
    0 4px 14px rgba(0, 0, 0, .72),
    0 1px 0 rgba(255, 255, 255, .4);
  white-space: nowrap;
}

.gsv2-brand span {
  font-family: var(--font-display, 'Rajdhani', sans-serif);
  font-size: clamp(20px, 2.6vw, 32px);
  font-weight: 900;
  color: rgba(255, 255, 255, .52);
  letter-spacing: .03em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .6);
  white-space: nowrap;
  /* sit at the baseline of "BWS" — roughly cap-height / 3 from bottom */
  margin-bottom: .12em;
}

/* Outer glass — 10px padding all around the inner */
.gsv2-outer {
  padding: 10px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .38);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, .22),
    inset 0 0 0 1px rgba(255, 255, 255, .10);
}

/* Inner glass — 4px padding around the search bar */
.gsv2-inner {
  padding: 4px;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .54);
}

/* Search bar inside glass-search-v2 */
.glass-search-v2 .hero-search-bar {
  position: static;
  width: 100%;
  max-width: none;
  min-height: 54px;
  margin: 0;
  padding: 0 0 0 14px;
  background: rgba(255, 255, 255, .88);
  border: none;
  border-radius: 0;
  backdrop-filter: none;
  box-shadow: none;
}

.glass-search-v2 .hero-search-input {
  color: #1e1208;
  font-size: 15px;
}

.glass-search-v2 .hero-search-input::placeholder {
  color: rgba(40, 28, 12, .55);
}

.glass-search-v2 .search-icon {
  color: #7b4c2a;
  flex-shrink: 0;
}

.glass-search-v2 .hero-search-btn {
  width: 120px;
  height: 40px;
  align-self: center;
  margin-right: 5px;
  flex-shrink: 0;
  border-radius: 0;
  background: linear-gradient(180deg, #e8b849, #c98a1f);
  border: none;
  color: #150900;
  font-size: 0;
  cursor: pointer;
}

.glass-search-v2 .hero-search-btn::before {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  margin: 0 auto;
  border: 3px solid currentColor;
  border-radius: 50%;
  box-shadow: 8px 8px 0 -5px currentColor;
  transform: translate(-2px, -2px);
}

.hero-functional-tagline {
  width: min(1120px, calc(100vw - 56px));
  margin: 10px 0 0;
  color: rgba(255, 235, 201, .7);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .72);
}

@media (max-width: 900px) {
  .hero {
    min-height: 620px;
    height: auto;
  }

  .hero-content { padding-top: 42px; }

  .hero-content:has(.glass-search-v2) {
    padding-left: 18px;
    padding-right: 18px;
  }

  .businesses-section { margin-top: -116px; }

  .map-news-row,
  .community-row,
  .fin-edu-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero { min-height: 590px; }
  .hero-title { font-size: 34px; }

  /* glass-search-v2 mobile */
  .glass-search-v2 {
    padding-top: 56px;
    width: calc(100vw - 28px);
  }
  .gsv2-brand strong {
    font-size: clamp(40px, 13vw, 56px);
  }
  .gsv2-brand span {
    font-size: clamp(16px, 4vw, 22px);
  }
  .glass-search-v2 .hero-search-btn {
    width: 52px;
    height: 40px;
    margin-right: 0;
  }

  .hero-functional-tagline {
    width: min(100% - 18px, 520px);
    font-size: 10px;
    letter-spacing: .08em;
    text-align: center;
  }
  .hero-category-pills {
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 8px;
  }
  .category-pill { padding: 10px 14px; }
  .section-header {
    align-items: flex-end;
    gap: 10px;
  }
  .section-title-wrap { min-width: 0; }
  .section-title { line-height: 1.15; }
  .businesses-section { margin-top: -86px; }
  .conquer-map-inner { flex-direction: column; }
}

/* ==========================================================================
   Page Brief Street Sign
   --------------------------------------------------------------------------
   Shared SEO-readable identity band injected by js/site-shell.js.
   Uses the current page's most relevant street-sign image plus concise,
   structured copy so humans and AI crawlers can quickly understand the route.
   ========================================================================== */

.page-brief-sign {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 22px clamp(18px, 4vw, 64px);
  border-block: 1px solid rgba(216, 152, 45, 0.26);
  background:
    linear-gradient(90deg, rgba(9, 5, 2, 0.96), rgba(35, 15, 4, 0.88) 44%, rgba(5, 3, 1, 0.96)),
    radial-gradient(circle at 14% 50%, rgba(216, 152, 45, 0.18), transparent 36%);
  box-shadow:
    inset 0 1px 0 rgba(255, 221, 157, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.58);
}

.page-brief-sign-inner {
  width: min(100%, 1450px);
  min-height: 316px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, 510px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(22px, 4vw, 58px);
}

.page-brief-sign-scene {
  position: relative;
  min-height: 316px;
  overflow: hidden;
  isolation: isolate;
}

.page-brief-building-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  align-items: end;
  justify-items: center;
}

.page-brief-building-layer img {
  display: block;
  width: min(100%, 500px);
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: saturate(1.04) drop-shadow(0 12px 22px rgba(0, 0, 0, .7));
  opacity: .84;
}

.typed-street-sign {
  position: absolute;
  left: 50%;
  bottom: -252px;
  z-index: 2;
  width: min(100%, 430px);
  opacity: 0;
  transform: translate(-50%, 156px);
  transition:
    opacity .36s ease-out,
    transform 1.02s cubic-bezier(.16, 1, .3, 1);
  filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.55));
}

.page-brief-sign-scene.is-visible .typed-street-sign {
  opacity: 1;
  transform: translate(-50%, 0);
}

.typed-street-sign img {
  display: block;
  width: 100%;
  height: auto;
}

.typed-street-copy {
  position: absolute;
  left: 10.5%;
  right: 10.5%;
  top: 25.5%;
  z-index: 3;
  display: grid;
  place-content: center;
  min-height: 18%;
  color: #fff7e7;
  font-family: var(--font-display);
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 2px 6px rgba(0,0,0,.8);
}

.typed-street-copy span,
.typed-street-copy small {
  color: #dca03c;
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
}

.typed-street-copy strong {
  display: block;
  overflow: hidden;
  font-size: clamp(15px, 1.45vw, 22px);
  line-height: 1.05;
  margin: 3px 0;
  min-height: 1.08em;
}

.typed-street-copy strong::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: .82em;
  margin-left: 3px;
  background: #dca03c;
  animation: bws-sign-cursor .8s steps(1) infinite;
}

.page-brief-sign-scene.is-typed .typed-street-copy strong::after {
  opacity: 0;
  animation: none;
}

@keyframes bws-sign-cursor {
  50% { opacity: 0; }
}

.page-brief-sign-copy {
  max-width: 920px;
}

.page-brief-sign-copy span {
  display: block;
  margin-bottom: 8px;
  color: #d9982d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-brief-sign-copy h2 {
  margin: 0 0 8px;
  color: #fff4df;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.05;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.page-brief-sign-copy p {
  margin: 0;
  color: rgba(255, 244, 223, 0.78);
  font-size: clamp(14px, 1.35vw, 18px);
  line-height: 1.58;
}

@media (max-width: 760px) {
  .page-brief-sign {
    padding: 18px 18px 20px;
  }

  .page-brief-sign-inner {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 18px;
  }

  .page-brief-sign-scene {
    min-height: 286px;
  }

  .page-brief-building-layer img {
    width: min(100%, 420px);
    opacity: .66;
  }

  .typed-street-sign {
    bottom: -208px;
    width: min(96%, 370px);
    transform: translate(-50%, 136px);
  }

  .page-brief-sign-copy {
    text-align: center;
  }
}

/* ── Home community widget (home-community.js) ── */
.topic-item {
  text-decoration: none;
  color: inherit;
}

.topic-avatar-initial {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(200,137,42,.6), rgba(34,10,2,.9));
  color: #fff;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
}

.topic-avatar--placeholder {
  background: rgba(200,137,42,.12);
  animation: topic-pulse 1.4s ease-in-out infinite;
}

@keyframes topic-pulse {
  0%, 100% { opacity: .5; }
  50%       { opacity: 1; }
}

.topic-title--loading { color: var(--text-dim); }

.topic-time {
  font-size: 11px;
  color: rgba(200, 137, 42, .58);
}

.hot-topics-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 18px 6px;
  border-top: 1px solid rgba(200,137,42,.09);
}

.hot-topics-source {
  font-size: 11px;
  color: var(--text-dim);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.hot-topics-source[data-state="live"] { color: #75e2ba; }
.hot-topics-source[data-state="fallback"] { color: var(--amber); }

/* Community widget */
.community-widget-body {
  padding: 14px 18px;
}

.community-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.community-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  border: 1px solid rgba(200,137,42,.18);
  border-radius: 7px;
  background: rgba(0,0,0,.24);
  padding: 10px 6px;
  text-align: center;
}

.community-stat strong {
  color: var(--amber-light);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.community-stat small {
  color: var(--text-dim);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.community-group-list {
  display: grid;
  gap: 8px;
}

.community-group-item {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(200,137,42,.14);
  border-radius: 7px;
  background: rgba(0,0,0,.22);
  padding: 8px 10px;
  text-decoration: none;
  transition: background .15s, border-color .15s;
}

.community-group-item:hover {
  background: rgba(200,137,42,.1);
  border-color: rgba(200,137,42,.4);
}

.community-group-img {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: rgba(30,14,2,.8) center / cover no-repeat;
  flex-shrink: 0;
  border: 1px solid rgba(200,137,42,.22);
}

.community-group-info {
  flex: 1;
  min-width: 0;
}

.community-group-info strong {
  display: block;
  color: var(--text-white);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.community-group-info span {
  color: var(--text-dim);
  font-size: 11px;
}

.community-group-arrow {
  color: var(--amber);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

.community-widget-link {
  display: block;
  text-align: center;
  padding: 10px 18px 14px;
  color: var(--amber);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-decoration: none;
  border-top: 1px solid rgba(200,137,42,.1);
}

.content-timeline-band {
  max-width: 1180px;
  margin: 22px auto;
  padding: 18px;
  border: 1px solid rgba(200,137,42,.2);
  background: rgba(15,18,24,.82);
}
.content-timeline-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.content-timeline-kicker {
  margin: 0 0 4px;
  color: var(--amber-light);
  font: 700 12px var(--font-ui);
  text-transform: uppercase;
}
.content-timeline-head h2 {
  margin: 0;
  color: var(--text-white);
  font-size: 22px;
}
.content-timeline-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}
.content-timeline-card {
  display: grid;
  gap: 5px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.08);
  color: var(--text-light);
  text-decoration: none;
  background: rgba(255,255,255,.03);
}
.content-timeline-card span {
  color: var(--text-muted);
  font-size: 12px;
  text-transform: uppercase;
}
.content-timeline-card small {
  color: var(--text-dim);
  line-height: 1.35;
}
[data-admin-only][hidden] {
  display: none !important;
}

body.bws-modal-open {
  overflow: hidden;
}

.bws-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(0, 0, 0, .72);
  opacity: 0;
  transition: opacity .18s ease;
}

.bws-modal-overlay.is-visible {
  opacity: 1;
}

.bws-public-modal {
  position: relative;
  width: min(920px, 100%);
  max-height: min(720px, calc(100vh - 44px));
  overflow: hidden;
  border: 1px solid rgba(216, 157, 55, .42);
  border-radius: 8px;
  background: rgba(9, 4, 1, .98);
  box-shadow: 0 32px 90px rgba(0, 0, 0, .68), 0 0 44px rgba(216, 144, 42, .18);
}

.bws-beta-modal {
  display: grid;
  grid-template-columns: minmax(240px, .85fr) minmax(0, 1.15fr);
}

.bws-beta-art {
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.48)),
    url("../assets/images/hero/hero_carousel_market_sunrise.png") center / cover no-repeat;
}

.bws-beta-copy,
.bws-coming-soon-body {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 40px);
}

.bws-modal-kicker {
  color: var(--amber-light);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.bws-public-modal h2 {
  color: var(--text-white);
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.bws-public-modal p,
.bws-public-modal span,
.bws-coming-soon-body small {
  color: rgba(248, 234, 210, .82);
}

.bws-beta-grid {
  display: grid;
  gap: 10px;
}

.bws-beta-grid article {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(216, 157, 55, .22);
  border-radius: 7px;
  background: rgba(255, 255, 255, .035);
  padding: 12px 14px;
}

.bws-beta-grid strong {
  color: #f7d698;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.bws-beta-grid span {
  font-size: 13px;
  line-height: 1.45;
}

.bws-beta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bws-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 213, 130, .4);
  border-radius: 999px;
  background: rgba(0, 0, 0, .58);
  color: #f8ead2;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 900;
}

.bws-coming-soon-modal {
  width: min(460px, 100%);
}

.bws-coming-soon-body .btn-primary {
  justify-self: start;
}

@media (max-width: 720px) {
  .bws-beta-modal {
    grid-template-columns: 1fr;
  }

  .bws-beta-art {
    min-height: 180px;
  }
}
