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

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #0a1628;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

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

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ── LAYOUT ── */
.bn-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
}

.bn-grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

/* ── HEADER / NAV ── */
.bn-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #e8eaf0;
}

.bn-header .bn-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.bn-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #0a1628;
  letter-spacing: -0.02em;
}

.bn-logo-icon {
  width: 32px;
  height: 32px;
}

.bn-logo span.bn-logo-accent {
  color: #7b3fe4;
}

.bn-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.bn-nav-link {
  padding: 0.45rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #5a6478;
  border-radius: 6px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.bn-nav-link:hover {
  color: #0a1628;
  background: #f0f1f5;
}

.bn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 0.75rem;
  padding: 0.5rem 1.2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  background: #7b3fe4;
  border-radius: 8px;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.bn-nav-cta:hover {
  background: #6a2fd4;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(123, 63, 228, 0.35);
}

.bn-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.bn-hamburger-line {
  width: 22px;
  height: 2px;
  background: #0a1628;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ── HERO ── */
.bn-hero {
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}

.bn-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(123, 63, 228, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.bn-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.bn-hero .bn-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.bn-hero-content {
  max-width: 560px;
}

.bn-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7b3fe4;
  margin-bottom: 1.25rem;
  padding: 0.35rem 0.85rem;
  background: rgba(123, 63, 228, 0.08);
  border-radius: 100px;
}

.bn-hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: #00e5ff;
  border-radius: 50%;
  animation: bn-pulse 2s ease-in-out infinite;
}

@keyframes bn-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.bn-hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #0a1628;
  margin-bottom: 1.25rem;
}

.bn-hero-title .bn-highlight {
  background: linear-gradient(135deg, #7b3fe4 0%, #00e5ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bn-hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.65;
  color: #5a6478;
  margin-bottom: 2rem;
  max-width: 480px;
}

.bn-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.bn-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.bn-hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 3;
}

.bn-hero-mockup {
  width: 100%;
  height: 100%;
  background: #f5f6fa;
  border: 1px solid #e8eaf0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10, 22, 40, 0.08), 0 1px 3px rgba(10, 22, 40, 0.04);
}

.bn-mockup-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: #ffffff;
  border-bottom: 1px solid #e8eaf0;
}

.bn-mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.bn-mockup-dot--red { background: #ff5f57; }
.bn-mockup-dot--yellow { background: #febc2e; }
.bn-mockup-dot--green { background: #28c840; }

.bn-mockup-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bn-mockup-line {
  height: 10px;
  border-radius: 5px;
  background: #e8eaf0;
}

.bn-mockup-line--short { width: 40%; }
.bn-mockup-line--medium { width: 65%; }
.bn-mockup-line--long { width: 85%; }
.bn-mockup-line--purple { background: rgba(123, 63, 228, 0.15); width: 55%; }
.bn-mockup-line--cyan { background: rgba(0, 229, 255, 0.12); width: 45%; }

.bn-mockup-block {
  margin-top: 0.5rem;
  padding: 1rem;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e8eaf0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bn-mockup-block-title {
  height: 8px;
  width: 50%;
  border-radius: 4px;
  background: #0a1628;
  opacity: 0.15;
}

.bn-mockup-block-line {
  height: 6px;
  border-radius: 3px;
  background: #e8eaf0;
}

/* ── BUTTONS ── */
.bn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.65rem;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  border-radius: 10px;
  transition: all 0.25s ease;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

.bn-btn--primary {
  color: #ffffff;
  background: #7b3fe4;
  box-shadow: 0 2px 8px rgba(123, 63, 228, 0.25);
}

.bn-btn--primary:hover {
  background: #6a2fd4;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 63, 228, 0.35);
}

.bn-btn--secondary {
  color: #0a1628;
  background: #f0f1f5;
  border: 1px solid #e0e2ea;
}

.bn-btn--secondary:hover {
  background: #e8eaf0;
  border-color: #d0d3de;
  transform: translateY(-1px);
}

.bn-btn--outline {
  color: #7b3fe4;
  background: transparent;
  border: 1.5px solid #7b3fe4;
}

.bn-btn--outline:hover {
  background: rgba(123, 63, 228, 0.06);
  transform: translateY(-1px);
}

.bn-btn--ghost {
  color: #5a6478;
  background: transparent;
  padding: 0.5rem 0;
}

.bn-btn--ghost:hover {
  color: #7b3fe4;
}

.bn-btn--ghost::after {
  content: '→';
  margin-left: 0.3rem;
  transition: transform 0.2s ease;
}

.bn-btn--ghost:hover::after {
  transform: translateX(3px);
}

/* ── SECTIONS ── */
.bn-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.bn-section--alt {
  background: #f8f9fc;
}

.bn-section--dark {
  background: #0a1628;
  color: #ffffff;
}

.bn-section-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
}

.bn-section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7b3fe4;
  margin-bottom: 0.75rem;
}

.bn-section-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #5a6478;
  max-width: 560px;
  line-height: 1.6;
}

.bn-section--dark .bn-section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.bn-section--dark .bn-section-heading {
  color: #ffffff;
}

.bn-section--alt .bn-section-heading {
  color: #0a1628;
}

.bn-section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.bn-section-header--center {
  text-align: center;
}

.bn-section-header--center .bn-section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ── CARDS ── */
.bn-card-grid {
  display: grid;
  gap: 1.5rem;
}

.bn-card-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.bn-card-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.bn-card-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.bn-card {
  background: #ffffff;
  border: 1px solid #e8eaf0;
  border-radius: 14px;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.bn-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #7b3fe4, #00e5ff);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bn-card:hover {
  border-color: #d0d3de;
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.08);
}

.bn-card:hover::before {
  opacity: 1;
}

.bn-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.15rem;
  font-size: 1.25rem;
}

.bn-card-icon--purple {
  background: rgba(123, 63, 228, 0.1);
  color: #7b3fe4;
}

.bn-card-icon--cyan {
  background: rgba(0, 229, 255, 0.1);
  color: #00b8d4;
}

.bn-card-icon--navy {
  background: rgba(10, 22, 40, 0.06);
  color: #0a1628;
}

.bn-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0a1628;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.bn-card-text {
  font-size: 0.9rem;
  color: #5a6478;
  line-height: 1.6;
}

/* ── DARK SECTION CARDS ── */
.bn-section--dark .bn-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.bn-section--dark .bn-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.bn-section--dark .bn-card-title {
  color: #ffffff;
}

.bn-section--dark .bn-card-text {
  color: rgba(255, 255, 255, 0.55);
}

/* ── STAT BAR ── */
.bn-stats {
  display: flex;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-top: 1px solid #e8eaf0;
  border-bottom: 1px solid #e8eaf0;
  flex-wrap: wrap;
}

.bn-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.bn-stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #0a1628;
  letter-spacing: -0.03em;
  line-height: 1;
}

.bn-stat-number--purple {
  color: #7b3fe4;
}

.bn-stat-label {
  font-size: 0.85rem;
  color: #5a6478;
  font-weight: 500;
}

/* ── TEXT UTILITIES ── */
.bn-lead {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: #5a6478;
  line-height: 1.7;
  max-width: 640px;
}

.bn-text {
  font-size: 0.9375rem;
  color: #5a6478;
  line-height: 1.65;
}

.bn-text--muted {
  color: #8b95a5;
}

/* ── RULES ── */
.bn-rule {
  height: 1px;
  background: #e8eaf0;
  border: none;
  margin: 0;
}

/* ── FOOTER ── */
.bn-footer {
  background: #0a1628;
  color: rgba(255, 255, 255, 0.6);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}

.bn-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.bn-footer-brand {
  max-width: 280px;
}

.bn-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.bn-footer-logo span {
  color: #7b3fe4;
}

.bn-footer-desc {
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.45);
}

.bn-footer-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.15rem;
}

.bn-footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.bn-footer-link {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s ease;
}

.bn-footer-link:hover {
  color: #00e5ff;
}

.bn-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

.bn-footer-social {
  display: flex;
  gap: 0.75rem;
}

.bn-footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.2s ease;
  font-size: 0.85rem;
}

.bn-footer-social a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #00e5ff;
}

/* ── TAG / BADGE ── */
.bn-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bn-tag--purple {
  background: rgba(123, 63, 228, 0.1);
  color: #7b3fe4;
}

.bn-tag--cyan {
  background: rgba(0, 229, 255, 0.1);
  color: #00b8d4;
}

.bn-tag--green {
  background: rgba(40, 200, 64, 0.1);
  color: #1a9e2e;
}

/* ── MOBILE MENU ── */
.bn-mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  z-index: 99;
  padding: 1.5rem;
  flex-direction: column;
  gap: 0.25rem;
  overflow-y: auto;
}

.bn-mobile-menu.is-open {
  display: flex;
}

.bn-mobile-menu .bn-nav-link {
  padding: 0.85rem 1rem;
  font-size: 1rem;
  border-radius: 10px;
}

.bn-mobile-menu .bn-nav-cta {
  margin-left: 0;
  margin-top: 0.75rem;
  justify-content: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .bn-card-grid--3,
  .bn-card-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .bn-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .bn-nav,
  .bn-header .bn-nav-cta {
    display: none;
  }

  .bn-hamburger {
    display: flex;
  }

  .bn-hero .bn-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .bn-hero-content {
    max-width: 100%;
  }

  .bn-hero-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .bn-hero-actions {
    justify-content: center;
  }

  .bn-hero-visual {
    order: -1;
  }

  .bn-hero-card-stack {
    max-width: 360px;
  }

  .bn-card-grid--3,
  .bn-card-grid--4 {
    grid-template-columns: 1fr;
  }

  .bn-stats {
    justify-content: center;
    text-align: center;
  }

  .bn-footer-grid {
    grid-template-columns: 1fr;
  }

  .bn-footer-brand {
    max-width: 100%;
  }

  .bn-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .bn-card-grid--2 {
    grid-template-columns: 1fr;
  }

  .bn-hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .bn-hero-actions .bn-btn {
    width: 100%;
  }
}

/* ── MISC / UTILITY ── */
.bn-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bn-mb-1 { margin-bottom: 0.5rem; }
.bn-mb-2 { margin-bottom: 1rem; }
.bn-mb-3 { margin-bottom: 1.5rem; }
.bn-mb-4 { margin-bottom: 2rem; }

.bn-text-center { text-align: center; }
.bn-text-left { text-align: left; }

.bn-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
}

.bn-glow--purple { background: #7b3fe4; }
.bn-glow--cyan { background: #00e5ff; }

/* ── ANIMATIONS ── */
@keyframes bn-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.bn-animate-in {
  animation: bn-fade-up 0.6s ease forwards;
}

.bn-animate-delay-1 { animation-delay: 0.1s; }
.bn-animate-delay-2 { animation-delay: 0.2s; }
.bn-animate-delay-3 { animation-delay: 0.3s; }

/* ── PRICING CARD ── */
.bn-card--pricing {
  text-align: center;
}

.bn-card--pricing.bn-card--featured {
  border-color: #7b3fe4;
  background: linear-gradient(180deg, rgba(123, 63, 228, 0.03) 0%, #ffffff 100%);
}

.bn-card--pricing .bn-card-title {
  font-size: 1rem;
}

.bn-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0a1628;
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
}

.bn-price-period {
  font-size: 0.85rem;
  color: #8b95a5;
  font-weight: 500;
}

.bn-price-features {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-align: left;
}

.bn-price-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: #5a6478;
}

.bn-price-feature::before {
  content: '✓';
  color: #7b3fe4;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ── INTEGRATION PILLS ── */
.bn-integration-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.bn-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: #f5f6fa;
  border: 1px solid #e8eaf0;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #0a1628;
  transition: all 0.2s ease;
}

.bn-pill:hover {
  border-color: #7b3fe4;
  background: rgba(123, 63, 228, 0.04);
}

/* ── CODE SNIPPET ── */
.bn-code-block {
  background: #0a1628;
  border-radius: 12px;
  padding: 1.5rem;
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.85rem;
  line-height: 1.7;
  color: #a8b2c1;
  overflow-x: auto;
  white-space: pre;
}

.bn-code-keyword { color: #c792ea; }
.bn-code-string { color: #c3e88d; }
.bn-code-func { color: #82aaff; }
.bn-code-comment { color: #546e7a; }
.bn-code-number { color: #f78c6c; }

/* ── TABLE ── */
.bn-table-wrapper {
  overflow-x: auto;
  border: 1px solid #e8eaf0;
  border-radius: 12px;
}

.bn-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.bn-table th {
  text-align: left;
  padding: 0.85rem 1rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #5a6478;
  background: #f8f9fc;
  border-bottom: 1px solid #e8eaf0;
}

.bn-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid #f0f1f5;
  color: #0a1628;
}

.bn-table tr:last-child td {
  border-bottom: none;
}

.bn-table tr:hover td {
  background: #fafbfe;
}
/* universal guards (not a template) */
*{box-sizing:border-box}img,svg,video{max-width:100%;height:auto}h1,h2,h3,h4,p,li,a,span,blockquote{overflow-wrap:break-word;word-break:normal}html{-webkit-text-size-adjust:100%}body{margin:0}
