.bh /* ============================================================
   Blank — VC Guides page styles
   Loaded after styles.bh-css; reuses its tokens and base components.
   ============================================================ */

/* ---------- hero ---------- */
.bh-gd-hero { padding: 120px 0 56px; }
.bh .bh-gd-hero .bh-wrap { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }
.bh .bh-gd-eyebrow { font-size: 12.5px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--violet); }
.bh .bh-gd-hero h1 { max-width: 10em; }
.bh .bh-gd-hero .bh-lede { max-width: 640px; }

.bh /* ---------- map card ---------- */
.bh-gd-map-wrap { padding-bottom: 96px; }
.bh .bh-gd-map-wrap .bh-wrap { max-width: 1440px; }
.bh .bh-gd-map {
  position: relative;
  background:
    radial-gradient(ellipse 60% 70% at 70% 30%, rgba(64, 56, 216, 0.14), transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 90%, rgba(72, 0, 192, 0.12), transparent 60%),
    var(--navy);
  border-radius: 32px;
  padding: 40px 36px 32px;
  overflow: hidden;
  box-shadow: 0 40px 80px -48px rgba(20, 18, 58, 0.5);
}
.bh .bh-gd-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3CfeComponentTransfer%3E%3CfeFuncR type='linear' slope='2.2' intercept='-0.55'/%3E%3CfeFuncG type='linear' slope='2.2' intercept='-0.55'/%3E%3CfeFuncB type='linear' slope='2.2' intercept='-0.55'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='280' height='280' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.3;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.bh .bh-gd-map-head { position: relative; z-index: 2; display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 18px; }
.bh .bh-gd-map-head b { display: block; color: #fff; font-weight: 600; font-size: 17px; letter-spacing: -0.01em; }
.bh .bh-gd-map-head span { display: block; color: rgba(214, 212, 247, 0.65); font-size: 13.5px; margin-top: 4px; }
.bh .bh-gd-legend { display: flex; gap: 18px; font-size: 12.5px; color: rgba(214, 212, 247, 0.7); }
.bh .bh-gd-legend i { display: inline-block; width: 9px; height: 9px; border-radius: 50%; margin-right: 7px; vertical-align: 0; }
.bh .bh-gd-legend .bh-l-guide { background: var(--lavender); box-shadow: 0 0 0 3px rgba(176, 176, 240, 0.25); }
.bh .bh-gd-legend .bh-l-covered { background: rgba(176, 176, 240, 0.45); }

.bh .bh-gd-stage { position: relative; z-index: 1; width: 100%; }
.bh .bh-gd-stage svg { width: 100%; height: auto; display: block; }
.bh .bh-wm-land path { fill: rgba(176, 176, 240, 0.16); stroke: rgba(12, 16, 72, 0.9); stroke-width: 0.6; transition: fill 0.5s var(--ease); }
.bh .bh-wm-land path.bh-is-guide { fill: rgba(176, 176, 240, 0.55); }
.bh .bh-wm-land path.bh-is-covered { fill: rgba(176, 176, 240, 0.28); }
.bh .bh-gd-stage.bh-is-hover .bh-wm-land path.bh-is-guide { fill: rgba(176, 176, 240, 0.32); }
.bh .bh-gd-stage.bh-is-hover .bh-wm-land path.bh-is-guide.bh-is-active { fill: #b0b0f0; }

.bh .bh-wm-pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  z-index: 3;
  display: block;
  width: 14px;
  height: 14px;
}
.bh .bh-wm-pin i {
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(176, 176, 240, 0.35);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.bh .bh-wm-pin::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  animation: wm-ring 2.6s ease-out infinite;
  animation-delay: var(--d, 0s);
}
@keyframes wm-ring { 0% { transform: scale(0.5); opacity: 0.9; } 100% { transform: scale(2.4); opacity: 0; } }
.bh .bh-wm-pin span {
  position: absolute;
  white-space: nowrap;
  font-size: 12.5px;
  font-weight: 500;
  color: #fff;
  background: rgba(12, 16, 72, 0.72);
  border: 1px solid rgba(176, 176, 240, 0.3);
  border-radius: 9999px;
  padding: 5px 11px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background-color 0.4s var(--ease), border-color 0.4s var(--ease), color 0.4s var(--ease);
  pointer-events: none;
}
.bh .bh-wm-pin span small { font-weight: 400; color: rgba(214, 212, 247, 0.7); margin-left: 6px; }
.bh .bh-wm-pin.bh-lb-right span { left: 22px; top: 50%; transform: translateY(-50%); }
.bh .bh-wm-pin.bh-lb-left span { right: 22px; top: 50%; transform: translateY(-50%); }
.bh .bh-wm-pin.bh-lb-top span { bottom: 22px; left: 50%; transform: translateX(-50%); }
.bh .bh-wm-pin.bh-lb-bottom span { top: 22px; left: 50%; transform: translateX(-50%); }
.bh .bh-wm-pin.bh-lb-top-left span { bottom: 16px; right: 12px; }
.bh .bh-wm-pin.bh-lb-bottom-left span { top: 16px; right: 12px; }
.bh .bh-wm-pin.bh-lb-bottom-right span { top: 16px; left: 12px; }
.bh .bh-wm-pin:hover, .bh .bh-wm-pin.bh-is-active { z-index: 5; }
.bh .bh-wm-pin:hover i, .bh .bh-wm-pin.bh-is-active i { transform: scale(1.35); box-shadow: 0 0 0 5px rgba(176, 176, 240, 0.45); }
.bh .bh-wm-pin:hover span, .bh .bh-wm-pin.bh-is-active span { background: #fff; color: var(--navy); border-color: #fff; }
.bh .bh-wm-pin:hover span small, .bh .bh-wm-pin.bh-is-active span small { color: var(--muted); }
.bh .bh-wm-pin.bh-is-new i { background: var(--lavender); }

.bh .bh-gd-map-foot { position: relative; z-index: 2; margin-top: 22px; display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; color: rgba(214, 212, 247, 0.65); font-size: 13.5px; }
.bh .bh-gd-map-foot a { color: #fff; border-bottom: 1px solid rgba(176, 176, 240, 0.4); }
.bh .bh-gd-map-foot a:hover { border-color: #fff; }

.bh /* ---------- filters + cards ---------- */
.bh-gd-list { padding: 0 0 130px; }
.bh .bh-gd-list-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 40px; }
.bh .bh-gd-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.bh .bh-gd-filter {
  appearance: none;
  font: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 9999px;
  padding: 8px 14px;
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.bh .bh-gd-filter b { font-weight: 500; font-size: 12px; color: var(--muted); }
.bh .bh-gd-filter:hover { border-color: var(--violet); }
.bh .bh-gd-filter.bh-is-on { background: var(--ink); border-color: var(--ink); color: #fff; }
.bh .bh-gd-filter.bh-is-on b { color: rgba(255, 255, 255, 0.65); }

.bh .bh-gd-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.bh .bh-gd-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 26px;
  padding: 8px;
  color: inherit;
  box-shadow: 0 24px 48px -36px rgba(20, 18, 58, 0.28);
  transition: transform 0.7s var(--ease), box-shadow 0.7s var(--ease), opacity 0.5s var(--ease);
}
.bh .bh-gd-card:hover, .bh .bh-gd-card.bh-is-active { transform: translateY(-6px); box-shadow: 0 36px 68px -36px rgba(64, 56, 216, 0.38); }
.bh .bh-gd-card:hover .bh-arrow-key { transform: translate(3px, -3px); }
.bh .bh-gd-card[hidden] { display: none; }
.bh .bh-gd-art { position: relative; height: 240px; border-radius: 19px; overflow: hidden; background: var(--navy); }
.bh .bh-gd-art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.bh .bh-gd-card:hover .bh-gd-art img { transform: scale(1.04); }
.bh .bh-gd-art::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(8, 8, 32, 0.8) 0%, rgba(8, 8, 32, 0.3) 45%, transparent 75%); }
.bh .bh-gd-art .bh-case-tag { position: absolute; top: 16px; left: 20px; z-index: 2; }
.bh .bh-gd-art .bh-case-tag.bh-is-new { right: 20px; left: auto; background: var(--lavender); color: var(--navy); border-color: transparent; }
.bh .bh-gd-art b { position: absolute; left: 20px; bottom: 16px; z-index: 2; color: #fff; font-weight: 600; font-size: 26px; letter-spacing: -0.015em; line-height: 1.1; }
.bh .bh-gd-body { padding: 22px 20px 18px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.bh .bh-gd-body p { color: var(--muted); font-size: 15px; line-height: 1.6; flex: 1; }
.bh .bh-gd-facts { display: flex; flex-wrap: wrap; gap: 6px; }
.bh .bh-gd-facts span { font-size: 11.5px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); border: 1px solid var(--line); border-radius: 9999px; padding: 5px 10px; }
.bh .bh-gd-foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; border-top: 1px solid var(--line-soft); padding-top: 16px; font-size: 14.5px; font-weight: 500; }

.bh /* ---------- custom guide CTA ---------- */
.bh-gd-cta { padding: 0 0 130px; }
.bh .bh-gd-cta-card {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--bg-tint);
  border: 1px solid var(--line-soft);
  border-radius: 32px;
  padding: 52px 56px;
}
.bh .bh-gd-cta-card h2 { max-width: 12em; }
.bh .bh-gd-cta-card p { color: var(--muted); font-size: 16.5px; line-height: 1.65; margin-top: 16px; max-width: 520px; }
.bh .bh-gd-cta-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; justify-self: end; }
.bh .bh-gd-cta-actions .bh-footer-alt { color: var(--muted); }
.bh .bh-gd-cta-actions .bh-footer-alt a { color: var(--ink); border-color: var(--line); }

.bh /* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .gd-grid { grid-template-columns: repeat(2, 1fr); }
  .gd-cta-card { grid-template-columns: 1fr; padding: 40px; }
  .gd-cta-actions { justify-self: start; }
}
@media (max-width: 960px) {
  .bh .bh-gd-hero { padding: 100px 0 40px; }
  .bh .bh-gd-map { padding: 28px 22px 24px; border-radius: 24px; }
  .bh .bh-wm-pin span { font-size: 11.5px; padding: 4px 9px; }
  .bh .bh-wm-pin span small { display: none; }
}

@media (max-width: 640px) {
  .bh .bh-gd-hero { padding: 84px 0 32px; }
  .bh .bh-gd-map { padding: 22px 16px 20px; }
  .bh .bh-gd-map-wrap { padding-bottom: 64px; }
  .bh .bh-wm-pin { width: 32px; height: 32px; }
  .bh .bh-wm-pin i { inset: 12px; }
  .bh .bh-wm-pin::before { inset: 6px; }
  .bh .bh-wm-pin span { display: none; }
  .bh .bh-gd-grid { grid-template-columns: 1fr; gap: 14px; }
  .bh .bh-gd-art { height: 200px; }
  .bh .bh-gd-list { padding-bottom: 88px; }
  .bh .bh-gd-cta { padding-bottom: 88px; }
  .bh .bh-gd-cta-card { padding: 30px 22px; border-radius: 24px; }
}

