@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bv-bg-base: #FAFAFC;
  --bv-bg-white: #FFFFFF;
  --bv-bg-dark: #1A0C2E;
  --bv-bg-dark-hover: #261242;
  --bv-bg-subtle: #120722;
  --bv-magenta: #FF1464;
  --bv-magenta-deep: #E60050;
  --bv-magenta-glow: rgba(255, 20, 100, 0.35);
  --bv-magenta-soft: rgba(255, 20, 100, 0.08);
  --bv-magenta-border: rgba(255, 20, 100, 0.25);
  --bv-text-dark: #18191F;
  --bv-text-headings: #111218;
  --bv-text-body: #6C727F;
  --bv-text-muted: #94A3B8;
  --bv-border-light: #ECEEF2;
  --bv-border-hover: #DDE1E8;
  --bv-font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --bv-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --bv-radius-pill: 9999px;
  --bv-radius-card: 24px;
  --bv-radius-sm: 12px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bv-bg-base);
  color: var(--bv-text-body);
  font-family: var(--bv-font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

.bv-ambient-shape-left {
  position: absolute;
  top: -120px;
  left: -160px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(255, 20, 100, 0.12) 0%, rgba(255, 20, 100, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.bv-ambient-shape-right {
  position: absolute;
  top: 300px;
  right: -180px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(255, 20, 100, 0.08) 0%, rgba(255, 20, 100, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

.bv-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.bv-masthead {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--bv-border-light);
  height: 80px;
}

.bv-masthead__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.bv-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--bv-font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--bv-text-headings);
  letter-spacing: -0.02em;
}

.bv-brand__logo-img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.bv-brand__accent {
  color: var(--bv-magenta);
}

.bv-nav-group {
  display: flex;
  align-items: center;
  gap: 32px;
}

.bv-nav-link {
  color: var(--bv-text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
}

.bv-nav-link:hover, .bv-nav-link.bv-active {
  color: var(--bv-magenta);
}

.bv-nav-link.bv-active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: var(--bv-magenta);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--bv-magenta-glow);
}

.bv-btn-primary {
  background: linear-gradient(135deg, var(--bv-magenta), var(--bv-magenta-deep));
  color: #FFFFFF !important;
  font-family: var(--bv-font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 28px;
  border-radius: var(--bv-radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px var(--bv-magenta-glow);
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
}

.bv-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 20, 100, 0.45);
}

.bv-btn-outline {
  background: #FFFFFF;
  color: var(--bv-text-dark);
  font-family: var(--bv-font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 12px 28px;
  border-radius: var(--bv-radius-pill);
  border: 1px solid var(--bv-border-light);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.bv-btn-outline:hover {
  border-color: var(--bv-magenta);
  color: var(--bv-magenta);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.bv-mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--bv-border-light);
  font-size: 1.5rem;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  color: var(--bv-text-dark);
}

.bv-kicker-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--bv-font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bv-text-headings);
  margin-bottom: 16px;
}

.bv-kicker-slash {
  color: var(--bv-magenta);
  font-weight: 900;
  font-size: 1.2rem;
}

.bv-hero-stage {
  padding: 70px 0 60px;
  position: relative;
}

.bv-hero-stage__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.bv-hero-stage__title {
  font-family: var(--bv-font-heading);
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: var(--bv-text-headings);
  margin-bottom: 20px;
}

.bv-hero-stage__title .highlight {
  color: var(--bv-magenta);
}

.bv-hero-stage__lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--bv-text-body);
  margin-bottom: 36px;
  max-width: 520px;
}

.bv-hero-stage__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.bv-hero-graphic-wrap {
  position: relative;
}

.bv-hero-graphic-img {
  width: 100%;
  height: auto;
  border-radius: var(--bv-radius-card);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  display: block;
}

.bv-deck-showcase {
  padding: 20px 0 70px;
}

.bv-deck-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.bv-deck-tile {
  background: var(--bv-bg-white);
  border: 1px solid var(--bv-border-light);
  border-radius: 20px;
  padding: 30px 24px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  position: relative;
}

.bv-deck-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 20, 100, 0.3);
  box-shadow: 0 16px 36px rgba(255, 20, 100, 0.1);
}

.bv-deck-tile--primary {
  background: var(--bv-bg-dark);
  color: #FFFFFF;
  border-color: rgba(255, 20, 100, 0.4);
  box-shadow: 0 16px 40px rgba(26, 12, 46, 0.25);
}

.bv-deck-tile--primary::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bv-magenta);
  box-shadow: 0 0 12px var(--bv-magenta);
}

.bv-deck-tile__icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.bv-deck-tile__title {
  font-family: var(--bv-font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.bv-deck-tile--primary .bv-deck-tile__title {
  color: #FFFFFF;
}

.bv-deck-tile__sub {
  font-size: 0.88rem;
  color: var(--bv-text-body);
}

.bv-deck-tile--primary .bv-deck-tile__sub {
  color: #94A3B8;
}

.bv-manifesto-stage {
  padding: 40px 0 80px;
}

.bv-manifesto-banner {
  background: var(--bv-bg-dark);
  border-radius: 40px;
  padding: 70px 60px;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(26, 12, 46, 0.25);
}

.bv-manifesto-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.bv-manifesto-heading {
  font-family: var(--bv-font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}

.bv-manifesto-desc {
  color: #94A3B8;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.bv-profile-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 28px;
  text-align: center;
}

.bv-profile-avatar {
  width: 140px;
  height: 170px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--bv-magenta), var(--bv-magenta-deep));
  padding: 4px;
  margin: 0 auto 16px;
  overflow: hidden;
}

.bv-profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.bv-profile-name {
  font-family: var(--bv-font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.bv-profile-role {
  color: var(--bv-magenta);
  font-size: 0.85rem;
  font-weight: 600;
}

.bv-stage-section {
  padding: 60px 0 80px;
}

.bv-zigzag-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 90px;
  position: relative;
}

.bv-zigzag-row:last-child {
  margin-bottom: 20px;
}

.bv-zigzag-row.bv-reverse {
  grid-template-columns: 1fr 1fr;
}

.bv-zigzag-row.bv-reverse .bv-zigzag-text {
  order: 1;
}

.bv-zigzag-row.bv-reverse .bv-zigzag-media {
  order: 2;
}

.bv-watermark-seq {
  position: absolute;
  font-family: var(--bv-font-heading);
  font-size: 8rem;
  font-weight: 900;
  color: rgba(255, 20, 100, 0.05);
  -webkit-text-stroke: 1.5px rgba(255, 20, 100, 0.12);
  line-height: 1;
  pointer-events: none;
  top: -40px;
}

.bv-zigzag-row:nth-child(odd) .bv-watermark-seq {
  left: 20px;
}

.bv-zigzag-row:nth-child(even) .bv-watermark-seq {
  right: 20px;
}

.bv-device-stage {
  position: relative;
  z-index: 1;
}

.bv-device-stage__bezel {
  background: #23252B;
  border-radius: 16px 16px 4px 4px;
  padding: 12px 12px 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  position: relative;
}

.bv-device-stage__sensor {
  width: 6px;
  height: 6px;
  background: #3A3D46;
  border-radius: 50%;
  margin: 0 auto 8px;
}

.bv-device-stage__screen {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #000000;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.bv-device-stage__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.bv-device-stage:hover .bv-device-stage__screen img {
  transform: scale(1.03);
}

.bv-device-stage__chassis {
  height: 12px;
  background: linear-gradient(to bottom, #D5D8DF, #B5B9C2);
  border-radius: 0 0 14px 14px;
  margin: 0 -16px;
  position: relative;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.bv-device-stage__chassis::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: #8E939E;
  border-radius: 0 0 4px 4px;
}

.bv-zigzag-text {
  position: relative;
  z-index: 1;
}

.bv-pill-badge {
  display: inline-flex;
  background: var(--bv-magenta-soft);
  color: var(--bv-magenta);
  font-family: var(--bv-font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: var(--bv-radius-pill);
  margin-bottom: 14px;
}

.bv-zigzag-title {
  font-family: var(--bv-font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--bv-text-headings);
  margin-bottom: 16px;
  line-height: 1.2;
}

.bv-zigzag-desc {
  color: var(--bv-text-body);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.bv-zigzag-chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.bv-chip {
  background: #FFFFFF;
  border: 1px solid var(--bv-border-light);
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 0.85rem;
  color: var(--bv-text-body);
}

.bv-chip strong {
  color: var(--bv-text-dark);
}

.bv-catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.bv-card-unit {
  position: relative;
  height: 100%;
  background: #FFFFFF;
  border: 1px solid var(--bv-border-light);
  border-radius: var(--bv-radius-card);
  padding: 22px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.bv-card-unit::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bv-magenta), #FF6584);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bv-card-unit:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 20, 100, 0.35);
  box-shadow: 0 20px 40px rgba(255, 20, 100, 0.12), 0 4px 16px rgba(0, 0, 0, 0.04);
}

.bv-card-unit:hover::after {
  opacity: 1;
}

.bv-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
  background: #F1F5F9;
}

.bv-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.bv-card-unit:hover .bv-card-media img {
  transform: scale(1.04);
}

.bv-badge-genre {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--bv-magenta-border);
  color: var(--bv-magenta);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--bv-radius-pill);
}

.bv-badge-rating {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--bv-bg-dark);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--bv-radius-pill);
}

.bv-card-title {
  font-family: var(--bv-font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bv-text-headings);
  margin-bottom: 8px;
  line-height: 1.3;
}

.bv-card-desc {
  color: var(--bv-text-body);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.bv-card-telemetry {
  display: flex;
  justify-content: space-between;
  background: #F8FAFC;
  border: 1px solid var(--bv-border-light);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.75rem;
  color: var(--bv-text-muted);
  margin-bottom: 14px;
}

.bv-card-telemetry strong {
  color: var(--bv-text-dark);
}

.bv-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--bv-border-light);
  padding-top: 14px;
}

.bv-btn-unit {
  background: var(--bv-magenta-soft);
  color: var(--bv-magenta);
  border: 1px solid var(--bv-magenta-border);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: var(--bv-radius-pill);
  transition: all 0.25s ease;
}

.bv-btn-unit:hover {
  background: linear-gradient(135deg, var(--bv-magenta), var(--bv-magenta-deep));
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 4px 14px var(--bv-magenta-glow);
}

.bv-dossier-masthead {
  padding: 40px 0 50px;
  background: #FFFFFF;
  border-bottom: 1px solid var(--bv-border-light);
  position: relative;
}

.bv-crumbs-nav {
  margin-bottom: 24px;
}

.bv-crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  font-size: 0.85rem;
  color: var(--bv-text-muted);
}

.bv-crumbs__item a {
  color: var(--bv-text-muted);
}

.bv-crumbs__item a:hover {
  color: var(--bv-magenta);
}

.bv-crumbs__item::after {
  content: '>';
  margin-left: 8px;
}

.bv-crumbs__item:last-child::after {
  content: '';
}

.bv-crumbs__item--active {
  color: var(--bv-text-dark);
  font-weight: 600;
}

.bv-dossier-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.bv-dossier-title {
  font-family: var(--bv-font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--bv-text-headings);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 12px 0 16px;
}

.bv-tag-pills {
  display: flex;
  gap: 10px;
  list-style: none;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.bv-tag-item {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--bv-radius-pill);
  font-family: var(--bv-font-heading);
  font-size: 0.82rem;
  font-weight: 700;
}

.bv-tag-item--genre {
  background: var(--bv-magenta-soft);
  color: var(--bv-magenta);
  border: 1px solid var(--bv-magenta-border);
}

.bv-tag-item--rating {
  background: var(--bv-bg-dark);
  color: #FFFFFF;
}

.bv-tag-item--fps {
  background: #EEF2FF;
  color: #4F46E5;
  border: 1px solid #C7D2FE;
}

.bv-tag-item--cloud {
  background: #ECFDF5;
  color: #059669;
  border: 1px solid #A7F3D0;
}

.bv-executive-summary {
  background: #FAFAFC;
  border: 1px solid var(--bv-border-light);
  border-left: 4px solid var(--bv-magenta);
  border-radius: 16px;
  padding: 22px 24px;
  margin-bottom: 22px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}

.bv-executive-summary__title {
  font-family: var(--bv-font-heading);
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--bv-text-headings);
  margin-bottom: 8px;
}

.bv-executive-summary__text {
  color: var(--bv-text-body);
  font-size: 0.98rem;
  line-height: 1.65;
}

.bv-metadata-strip {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--bv-border-light);
}

.bv-metadata-cell {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.bv-metadata-cell__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--bv-text-muted);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.bv-metadata-cell__value {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--bv-text-dark);
}

.bv-metric-deck {
  padding: 36px 0 10px;
  position: relative;
}

.bv-metric-deck__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.bv-metric-tile {
  background: #FFFFFF;
  border: 1px solid var(--bv-border-light);
  border-radius: 20px;
  padding: 24px 22px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bv-metric-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bv-magenta), #FF6584);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.bv-metric-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 20, 100, 0.25);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}

.bv-metric-tile:hover::before {
  opacity: 1;
}

.bv-metric-tile--primary {
  background: var(--bv-bg-dark);
  color: #FFFFFF;
  border-color: rgba(255, 20, 100, 0.35);
  box-shadow: 0 12px 32px rgba(26, 12, 46, 0.18);
}

.bv-metric-tile--primary::before {
  opacity: 1;
}

.bv-metric-tile--primary .bv-metric-tile__tag {
  color: var(--bv-magenta);
}

.bv-metric-tile--primary .bv-metric-tile__num {
  color: #FFFFFF;
}

.bv-metric-tile--primary .bv-metric-tile__caption {
  color: #94A3B8;
}

.bv-metric-tile__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.bv-metric-tile__tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--bv-text-muted);
  letter-spacing: 0.05em;
}

.bv-metric-tile__num {
  font-family: var(--bv-font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--bv-text-headings);
  line-height: 1.1;
  margin-bottom: 6px;
}

.bv-metric-tile__num small {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--bv-text-muted);
}

.bv-metric-tile__caption {
  font-size: 0.8rem;
  color: var(--bv-text-body);
  line-height: 1.4;
}

.bv-dossier-stage {
  padding: 30px 0 70px;
}

.bv-dossier-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 36px;
  align-items: start;
}

.bv-editorial-card {
  background: #FFFFFF;
  border: 1px solid var(--bv-border-light);
  border-radius: var(--bv-radius-card);
  padding: 36px 32px;
  margin-bottom: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: border-color 0.25s ease;
}

.bv-editorial-card:hover {
  border-color: rgba(255, 20, 100, 0.25);
}

.bv-editorial-card__head {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.bv-editorial-card__index {
  font-family: var(--bv-font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(255, 20, 100, 0.15);
  line-height: 1;
  -webkit-text-stroke: 1.5px var(--bv-magenta);
}

.bv-editorial-card__kicker {
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--bv-magenta);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 4px;
}

.bv-editorial-card__title {
  font-family: var(--bv-font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--bv-text-headings);
  margin: 0;
  line-height: 1.3;
}

.bv-editorial-card__body {
  color: var(--bv-text-body);
  font-size: 1.05rem;
  line-height: 1.75;
}

.bv-feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid #F1F5F9;
}

.bv-feature-pill {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: var(--bv-radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--bv-text-dark);
  padding: 5px 14px;
}

.bv-compat-row {
  background: #F8FAFC;
  border: 1px solid var(--bv-border-light);
  border-radius: 14px;
  padding: 16px 20px;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.bv-compat-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--bv-text-headings);
}

.bv-browser-tokens {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.bv-browser-token {
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--bv-text-dark);
  padding: 4px 10px;
}

.bv-compliance-card {
  background: linear-gradient(135deg, #FFF5F7 0%, #FFFFFF 100%);
  border: 1.5px solid rgba(255, 20, 100, 0.3);
  border-radius: 20px;
  padding: 26px;
  margin-top: 24px;
  box-shadow: 0 8px 24px rgba(255, 20, 100, 0.05);
}

.bv-compliance-card__head {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.bv-compliance-card__title {
  font-family: var(--bv-font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--bv-text-headings);
  margin-bottom: 4px;
}

.bv-compliance-card__sub {
  font-size: 0.85rem;
  color: var(--bv-text-body);
}

.bv-compliance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.bv-compliance-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.86rem;
  color: var(--bv-text-body);
  line-height: 1.45;
}

.bv-compliance-icon {
  color: #059669;
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1.2;
}

.bv-specs-card {
  background: #FFFFFF;
  border: 1px solid var(--bv-border-light);
  border-radius: var(--bv-radius-card);
  padding: 28px;
  position: sticky;
  top: 100px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.bv-specs-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--bv-magenta), #FF6584);
}

.bv-specs-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--bv-border-light);
}

.bv-specs-card__title {
  font-family: var(--bv-font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--bv-text-headings);
}

.bv-specs-card__status {
  background: rgba(5, 150, 105, 0.1);
  color: #059669;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--bv-radius-pill);
  border: 1px solid rgba(5, 150, 105, 0.25);
  text-transform: uppercase;
}

.bv-specs-table {
  width: 100%;
  border-collapse: collapse;
}

.bv-specs-table th {
  text-align: left;
  padding: 10px 0;
  border-bottom: 1px solid #F1F5F9;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--bv-text-muted);
}

.bv-specs-table td {
  text-align: right;
  padding: 10px 0;
  border-bottom: 1px solid #F1F5F9;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--bv-text-dark);
}

.bv-specs-table td.highlight {
  color: var(--bv-magenta);
}

.bv-sidebar-query-box {
  margin-top: 24px;
  padding: 18px;
  background: #FAFAFC;
  border: 1px solid var(--bv-border-light);
  border-radius: 14px;
}

.bv-cta-banner {
  background: #FFFFFF;
  border: 1px solid var(--bv-border-light);
  border-radius: var(--bv-radius-card);
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  margin-top: 36px;
}

.bv-cta-banner__title {
  font-family: var(--bv-font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--bv-text-headings);
  margin-bottom: 4px;
}

.bv-colophon {
  background: var(--bv-bg-subtle);
  color: #CBD5E1;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 20, 100, 0.2);
}

.bv-colophon__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.bv-colophon__column h4 {
  font-family: var(--bv-font-heading);
  font-size: 1.1rem;
  margin-bottom: 18px;
  color: #FFFFFF;
}

.bv-colophon__nav {
  list-style: none;
}

.bv-colophon__nav li {
  margin-bottom: 10px;
}

.bv-colophon__nav a {
  color: #94A3B8;
  font-size: 0.92rem;
}

.bv-colophon__nav a:hover {
  color: var(--bv-magenta);
}

.bv-colophon__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  color: #64748B;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 12px;
}

.bv-form-input {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid var(--bv-border-light);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: var(--bv-font-body);
  font-size: 0.95rem;
  color: var(--bv-text-dark);
  outline: none;
  transition: all 0.2s ease;
}

.bv-form-input:focus {
  border-color: var(--bv-magenta);
  box-shadow: 0 0 12px rgba(255, 20, 100, 0.2);
}

.bv-filter-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.bv-filter-pill {
  background: #FFFFFF;
  border: 1px solid var(--bv-border-light);
  color: var(--bv-text-body);
  font-family: var(--bv-font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: var(--bv-radius-pill);
  cursor: pointer;
  transition: all 0.2s ease;
}

.bv-filter-pill:hover, .bv-filter-pill.bv-active {
  background: var(--bv-magenta);
  border-color: var(--bv-magenta);
  color: #FFFFFF;
  box-shadow: 0 4px 12px var(--bv-magenta-glow);
}

@media (max-width: 992px) {
  .bv-hero-stage__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .bv-dossier-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .bv-dossier-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .bv-metric-deck__grid {
    grid-template-columns: 1fr 1fr;
  }
  .bv-manifesto-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .bv-container, main, .bv-masthead .bv-container, .bv-colophon .bv-container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .bv-nav-group {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    border-bottom: 1px solid var(--bv-border-light);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  .bv-nav-group.bv-active {
    display: flex;
  }

  .bv-mobile-toggle {
    display: block;
  }

  .bv-hero-stage__title {
    font-size: 2.3rem;
  }

  .bv-dossier-title {
    font-size: 2rem;
  }

  .bv-deck-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bv-zigzag-row, .bv-zigzag-row.bv-reverse {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .bv-zigzag-row.bv-reverse .bv-zigzag-text {
    order: 2;
  }

  .bv-zigzag-row.bv-reverse .bv-zigzag-media {
    order: 1;
  }

  .bv-compliance-grid {
    grid-template-columns: 1fr;
  }

  .bv-colophon__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .bv-metric-deck__grid {
    grid-template-columns: 1fr;
  }
  .bv-deck-grid {
    grid-template-columns: 1fr;
  }
  .bv-metadata-strip {
    flex-direction: column;
    gap: 12px;
  }
}
