/* =========================================================
   BVTEK VISION — scoped styles for use inside .bvtek wrapper
   Scoped to avoid conflicts with Bootstrap / Nocobase styles.
   ========================================================= */

/* ---------- Variables + base reset scoped to .bvtek ---------- */
.bvtek {
  --ink: #0e1420;
  --paper: #eff2f1;
  --paper-2: #e4e9e8;
  --cobalt: #17408b;
  --laser: #e8442e;
  --pass: #1fa96e;
  --line: #c6cecc;
  --muted: #4a5560;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --sans: "nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;

  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

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

.bvtek a {
  color: inherit;
  text-decoration: none;
}

.bvtek img {
  max-width: 100%;
}

.bvtek ::selection {
  background: var(--cobalt);
  color: #fff;
}

/* ---------- Corners ---------- */
.bvtek .corners {
  position: relative;
}

.bvtek .corners::before,
.bvtek .corners::after,
.bvtek .corners > .c::before,
.bvtek .corners > .c::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid var(--cobalt);
}

.bvtek .corners::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.bvtek .corners::after {
  top: 0;
  right: 0;
  border-left: none;
  border-bottom: none;
}

.bvtek .corners > .c::before {
  bottom: 0;
  left: 0;
  border-right: none;
  border-top: none;
}

.bvtek .corners > .c::after {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

/* ---------- Common utilities ---------- */
.bvtek .wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.bvtek .eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--cobalt);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.bvtek .eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--laser);
}

.bvtek h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.01em;
  margin: 14px 0 12px;
}

.bvtek .sec {
  padding: 96px 0;
}

.bvtek .sec:not(.dark):not(.alt) {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, transparent 60%);
}

.bvtek .sub {
  color: var(--muted);
  max-width: 620px;
}

.bvtek .btn {
  display: inline-block;
  background: var(--cobalt);
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
  padding: 11px 26px;
  border-radius: 3px;
  transition: all 0.25s ease;
}

.bvtek .btn:hover {
  background: #0f2f6b;
}

.bvtek .btn:focus-visible,
.bvtek a:focus-visible,
.bvtek button:focus-visible {
  outline: 3px solid var(--laser);
  outline-offset: 2px;
}

.bvtek .btn.ghost {
  background: transparent;
  color: var(--cobalt);
  border: 1.5px solid var(--cobalt);
}

.bvtek .btn.ghost:hover {
  background: var(--cobalt);
  color: #fff;
}

/* ---------- Dark sections ---------- */
.bvtek .dark {
  background: var(--ink);
  color: #e7ecea;
}

.bvtek .dark .eyebrow {
  color: #7fa6e8;
}

.bvtek .dark .sub {
  color: #96a2ac;
}

/* ---------- Page head ---------- */
.bvtek .page-head {
  padding: 76px 0 56px;
  border-bottom: 1px solid var(--line);
}

.bvtek .page-head h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900;
  line-height: 1.25;
  margin: 14px 0 12px;
}

/* ---------- Reveal animation ---------- */
.bvtek .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.bvtek .reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- Header ---------- */
.bvtek header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(239, 242, 241, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.bvtek header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 18px;
}

.bvtek header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.04em;
  font-family: var(--mono);
}

.bvtek header .logo .mark {
  width: 26px;
  height: 26px;
  position: relative;
  display: inline-block;
}

.bvtek header .logo .mark::before,
.bvtek header .logo .mark::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border: 2px solid var(--cobalt);
}

.bvtek header .logo .mark::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.bvtek header .logo .mark::after {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

.bvtek header .logo .mark i {
  position: absolute;
  inset: 8px;
  background: var(--laser);
  border-radius: 50%;
}

.bvtek header .logo small {
  font-weight: 400;
  font-size: 9px;
  color: #6b7680;
  display: block;
  letter-spacing: 0.22em;
  line-height: 1;
}

.bvtek header ul {
  display: flex;
  gap: 34px;
  list-style: none;
}

.bvtek header ul a {
  font-size: 14.5px;
  font-weight: 500;
  color: #3a4450;
  transition: color 0.2s;
}

.bvtek header ul a:hover {
  color: var(--laser);
}

.bvtek header .right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bvtek header .lang {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--cobalt);
  border: 1px solid var(--line);
  padding: 5px 10px;
}

.bvtek header .lang:hover {
  border-color: var(--cobalt);
}

/* ---------- Footer ---------- */
.bvtek footer {
  background: var(--ink);
  color: #96a2ac;
  padding: 64px 0 34px;
  font-size: 14px;
}

.bvtek footer .foot {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid #26303e;
}

.bvtek footer h4 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 16px;
  font-weight: 700;
}

.bvtek footer ul {
  list-style: none;
}

.bvtek footer li {
  margin-bottom: 10px;
}

.bvtek footer a:hover {
  color: var(--laser);
}

.bvtek footer .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 18px;
  color: #fff;
  margin-bottom: 16px;
  font-family: var(--mono);
  letter-spacing: 0.04em;
}

.bvtek footer .logo .mark {
  width: 26px;
  height: 26px;
  position: relative;
  display: inline-block;
}

.bvtek footer .logo .mark::before,
.bvtek footer .logo .mark::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border: 2px solid #7fa6e8;
}

.bvtek footer .logo .mark::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.bvtek footer .logo .mark::after {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

.bvtek footer .logo .mark i {
  position: absolute;
  inset: 8px;
  background: var(--laser);
  border-radius: 50%;
}

.bvtek footer .logo small {
  font-weight: 400;
  font-size: 9px;
  color: #5b6875;
  display: block;
  letter-spacing: 0.22em;
  line-height: 1;
}

.bvtek footer .slogan {
  max-width: 280px;
  font-size: 13.5px;
}

.bvtek footer .copyright {
  padding-top: 26px;
  font-family: var(--mono);
  font-size: 11.5px;
  color: #5b6875;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- HomePage: Hero ---------- */
.bvtek .hero {
  padding: 88px 0 72px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 75% 15%, rgba(23, 64, 139, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 90%, rgba(232, 68, 46, 0.07) 0%, transparent 50%),
    var(--paper);
}

.bvtek .hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px 56px;
  align-items: center;
}

.bvtek .hero h1 {
  font-size: clamp(36px, 4.6vw, 58px);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: 0.01em;
  margin: 18px 0 20px;
}

.bvtek .hero h1 em {
  font-style: normal;
  color: var(--cobalt);
  position: relative;
  white-space: nowrap;
}

.bvtek .hero h1 em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 8px;
  background: rgba(232, 68, 46, 0.22);
  z-index: -1;
}

.bvtek .lede {
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 34px;
}

.bvtek .hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.bvtek .hero-meta {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bvtek .hero-meta > div {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 16px 20px;
  min-width: 120px;
}

.bvtek .hero-meta b {
  display: block;
  font-size: 24px;
  color: var(--cobalt);
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: 0;
  text-transform: none;
}

@keyframes hero-fade-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.bvtek .hero > .wrap {
  animation: hero-fade-in 0.9s ease-out forwards;
}

/* ---------- HomePage: Ticker ---------- */
.bvtek .ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
  overflow: hidden;
  padding: 14px 0;
}

.bvtek .ticker-inner {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 13px;
  color: #3a4450;
  animation: marquee 34s linear infinite;
  width: max-content;
}

.bvtek .ticker-inner span b {
  color: var(--cobalt);
  font-weight: 500;
}

.bvtek .ticker-inner span::before {
  content: "▸";
  color: var(--laser);
  margin-right: 12px;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ---------- HomePage: Capabilities ---------- */
.bvtek .grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 52px;
}

.bvtek .cap {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--cobalt);
  border-radius: 4px;
  padding: 34px 26px 30px;
  box-shadow: 0 4px 20px -10px rgba(14, 20, 32, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bvtek .cap:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 44px -16px rgba(14, 20, 32, 0.22);
}

.bvtek .cap .tag {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--laser);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bvtek .cap h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 12px 0 10px;
}

.bvtek .cap p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}

/* ---------- HomePage: Industries ---------- */
.bvtek h2.w {
  color: #fff;
}

.bvtek .ind-list {
  margin-top: 48px;
  border-top: 1px solid #26303e;
}

.bvtek .ind {
  display: grid;
  grid-template-columns: 120px 1.1fr 1.6fr auto;
  gap: 28px;
  align-items: center;
  padding: 30px 6px;
  border-bottom: 1px solid #26303e;
  transition: background 0.2s;
}

.bvtek .ind:hover {
  background: #141b28;
}

.bvtek .ind .no {
  font-family: var(--mono);
  font-size: 13px;
  color: #5b6875;
}

.bvtek .ind h3 {
  font-size: 21px;
  font-weight: 700;
  color: #fff;
}

.bvtek .ind p {
  font-size: 14.5px;
  color: #96a2ac;
}

.bvtek .ind .go {
  font-family: var(--mono);
  font-size: 12px;
  color: #7fa6e8;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.bvtek .ind:hover .go {
  color: var(--laser);
}

/* ---------- HomePage: Steps ---------- */
.bvtek .steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 52px;
  counter-reset: step;
}

.bvtek .step {
  padding: 30px 26px 6px;
  border-left: 1px solid var(--line);
  counter-increment: step;
}

.bvtek .step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--mono);
  font-size: 13px;
  color: var(--laser);
  letter-spacing: 0.1em;
}

.bvtek .step h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 14px 0 10px;
}

.bvtek .step p {
  font-size: 14px;
  color: var(--muted);
}

.bvtek .step .dur {
  font-family: var(--mono);
  font-size: 11px;
  color: #6b7680;
  display: block;
  margin-top: 14px;
}

/* ---------- HomePage: Case study ---------- */
.bvtek .alt {
  background: var(--paper-2);
}

.bvtek .case {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.bvtek .stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.bvtek .stat {
  background: #fff;
  padding: 34px 30px;
}

.bvtek .stat b {
  font-family: var(--mono);
  font-size: 34px;
  font-weight: 500;
  color: var(--cobalt);
  display: block;
  line-height: 1.1;
}

.bvtek .stat b i {
  font-style: normal;
  font-size: 16px;
  color: var(--laser);
}

.bvtek .stat span {
  font-size: 13.5px;
  color: var(--muted);
}

.bvtek blockquote {
  font-size: 19px;
  line-height: 1.9;
  font-weight: 500;
  margin: 26px 0 18px;
}

.bvtek cite {
  font-family: var(--mono);
  font-size: 12.5px;
  font-style: normal;
  color: #6b7680;
  letter-spacing: 0.05em;
}

/* ---------- HomePage: CTA ---------- */
.bvtek .cta-box {
  background: var(--cobalt);
  color: #fff;
  padding: 74px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bvtek .cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
}

.bvtek .cta-box > * {
  position: relative;
}

.bvtek .eyebrow.center {
  justify-content: center;
  color: #b9c8e6;
}

.bvtek .cta-desc {
  color: #b9c8e6;
  max-width: 520px;
  margin: 0 auto 34px;
}

.bvtek .cta-box .btn {
  background: #fff;
  color: var(--cobalt);
}

.bvtek .cta-box .btn:hover {
  background: var(--laser);
  color: #fff;
}

/* ---------- SubPage ---------- */
.bvtek .cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.bvtek .card {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--cobalt);
  border-radius: 4px;
  padding: 38px 32px;
  box-shadow: 0 4px 20px -10px rgba(14, 20, 32, 0.12);
  transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.bvtek .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 44px -16px rgba(14, 20, 32, 0.22);
}

.bvtek .card.hidden {
  display: none;
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
}

.bvtek .card .tag {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--laser);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bvtek .card h3 {
  font-size: 21px;
  font-weight: 700;
  margin: 12px 0 10px;
}

.bvtek .card p {
  font-size: 14.5px;
  color: var(--muted);
}

.bvtek .filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 42px;
  justify-content: center;
}

.bvtek .filter-btn {
  border: 1.5px solid var(--line);
  background: transparent;
  color: var(--muted);
  padding: 8px 18px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.bvtek .filter-btn:hover {
  border-color: var(--cobalt);
  color: var(--cobalt);
}

.bvtek .filter-btn.active {
  background: var(--cobalt);
  color: #fff;
  border-color: var(--cobalt);
}

.bvtek .sols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.bvtek .sol {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--laser);
  border-radius: 4px;
  padding: 38px 32px;
  box-shadow: 0 4px 20px -10px rgba(14, 20, 32, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bvtek .sol:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 44px -16px rgba(14, 20, 32, 0.22);
}

.bvtek .sol .no {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--laser);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bvtek .sol h3 {
  font-size: 21px;
  font-weight: 700;
  margin: 12px 0 10px;
}

.bvtek .sol p {
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 22px;
}

.bvtek .about .body {
  max-width: 720px;
  font-size: 17px;
  margin-bottom: 44px;
}

.bvtek .vals {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.bvtek .val {
  background: #fff;
  padding: 30px 26px;
}

.bvtek .val b {
  font-family: var(--mono);
  font-size: 30px;
  font-weight: 500;
  color: var(--cobalt);
  display: block;
}

.bvtek .val span {
  font-size: 13.5px;
  color: var(--muted);
}

.bvtek .contact ul {
  list-style: none;
  margin-bottom: 30px;
}

.bvtek .contact li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
}

/* ---------- Finder ---------- */
.bvtek .finder {
  aspect-ratio: 4 / 3.1;
  background: #0b1118;
  position: relative;
  box-shadow: 0 24px 60px -20px rgba(14, 20, 32, 0.45);
}

.bvtek .finder svg {
  width: 100%;
  height: 100%;
  display: block;
}

.bvtek .finder-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  padding: 8px 14px;
  font-family: var(--mono);
  font-size: 10.5px;
  color: #8fe3c0;
  background: rgba(11, 17, 24, 0.7);
  letter-spacing: 0.08em;
}

.bvtek .rec {
  color: #ff6b57;
}

.bvtek .rec::before {
  content: "●";
  margin-right: 6px;
  animation: blink 1.4s steps(1) infinite;
}

@keyframes blink {
  50% {
    opacity: 0.15;
  }
}

.bvtek .scanline {
  animation: scan 5.5s ease-in-out infinite;
}

@keyframes scan {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(300px);
  }
}

.bvtek .roi {
  opacity: 0;
  animation: pop 9s infinite;
}

.bvtek .roi.r2 {
  animation-delay: 3s;
}

.bvtek .roi.r3 {
  animation-delay: 6s;
}

@keyframes pop {
  0%,
  4% {
    opacity: 0;
  }

  8%,
  60% {
    opacity: 1;
  }

  66%,
  100% {
    opacity: 0;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .bvtek footer .foot {
    grid-template-columns: 1fr 1fr;
  }

  .bvtek .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .bvtek .grid4,
  .bvtek .steps {
    grid-template-columns: 1fr 1fr;
  }

  .bvtek .step {
    margin-bottom: 24px;
  }

  .bvtek .case {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .bvtek .ind {
    grid-template-columns: 60px 1fr auto;
    gap: 16px;
  }

  .bvtek .ind p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .bvtek .cards,
  .bvtek .sols {
    grid-template-columns: 1fr;
  }

  .bvtek .vals {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .bvtek header ul {
    display: none;
  }
}

@media (max-width: 640px) {
  .bvtek .sec {
    padding: 64px 0;
  }

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

  .bvtek .hero {
    padding: 56px 0 48px;
  }

  .bvtek .grid4,
  .bvtek .steps,
  .bvtek .stat-grid {
    grid-template-columns: 1fr;
  }

  .bvtek .cta-box {
    padding: 54px 26px;
  }

  .bvtek .hero-meta {
    gap: 12px;
  }

  .bvtek .hero-meta > div {
    padding: 12px 16px;
    min-width: auto;
    flex: 1 1 120px;
  }

  .bvtek .filter-bar {
    gap: 8px;
    margin-bottom: 32px;
  }

  .bvtek .filter-btn {
    padding: 7px 14px;
    font-size: 11px;
  }
}

@media (max-width: 560px) {
  .bvtek .vals {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bvtek *,
  .bvtek *::before,
  .bvtek *::after {
    animation: none !important;
    transition: none !important;
  }

  .bvtek .reveal {
    opacity: 1;
    transform: none;
  }

  .bvtek {
    scroll-behavior: auto;
  }
}

/* ---------- Content list / detail (news / cases / blog) ---------- */
.bvtek .page-head.slim {
  padding: 56px 0 38px;
}

.bvtek .page-head.slim .eyebrow a {
  color: var(--cobalt);
}

.bvtek .page-head.slim .eyebrow a:hover {
  color: var(--laser);
}

.bvtek .content-list {
  padding-top: 64px;
  padding-bottom: 96px;
}

.bvtek .content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.bvtek .content-card {
  background: #fff;
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.bvtek .content-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px -16px rgba(14, 20, 32, 0.18);
}

.bvtek .content-card .card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.bvtek .content-card .card-image {
  height: 190px;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--line);
}

.bvtek .content-card .card-body {
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.bvtek .content-card .card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 12px;
  color: var(--muted);
}

.bvtek .content-card .card-meta time {
  font-family: var(--mono);
  white-space: nowrap;
}

.bvtek .content-card h3 {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 10px;
  color: var(--ink);
}

.bvtek .content-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px;
  flex: 1 1 auto;
}

.bvtek .content-card .read-more {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--cobalt);
}

.bvtek .content-card:hover .read-more {
  color: var(--laser);
}

.bvtek .content-detail {
  padding-top: 56px;
  padding-bottom: 96px;
}

.bvtek .content-detail .wrap.narrow {
  max-width: 840px;
}

.bvtek .detail-hero-image {
  margin-bottom: 42px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 36px -16px rgba(14, 20, 32, 0.2);
}

.bvtek .detail-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.bvtek .detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 22px;
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--muted);
}

.bvtek .detail-meta .author {
  font-weight: 700;
  color: var(--ink);
}

.bvtek .detail-meta time {
  font-family: var(--mono);
}

.bvtek .detail-meta .tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.bvtek .detail-meta .tag {
  display: inline-block;
  background: var(--paper-2);
  color: var(--cobalt);
  padding: 3px 10px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
}

.bvtek .markdown-body {
  font-size: 16.5px;
  line-height: 1.85;
  color: #1f2933;
}

.bvtek .markdown-body h2,
.bvtek .markdown-body h3,
.bvtek .markdown-body h4 {
  color: var(--ink);
  margin-top: 42px;
  margin-bottom: 16px;
  font-weight: 800;
  line-height: 1.35;
}

.bvtek .markdown-body h2 {
  font-size: 28px;
}

.bvtek .markdown-body h3 {
  font-size: 22px;
}

.bvtek .markdown-body p {
  margin-bottom: 20px;
}

.bvtek .markdown-body ul,
.bvtek .markdown-body ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

.bvtek .markdown-body li {
  margin-bottom: 8px;
}

.bvtek .markdown-body img {
  border-radius: 4px;
  margin: 24px 0;
}

.bvtek .markdown-body blockquote {
  border-left: 3px solid var(--laser);
  padding-left: 20px;
  margin: 24px 0;
  color: var(--muted);
  font-style: italic;
}

.bvtek .markdown-body code {
  font-family: var(--mono);
  background: var(--paper-2);
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 14px;
}

.bvtek .markdown-body pre {
  background: #0e1420;
  color: #e7ecea;
  padding: 20px;
  border-radius: 4px;
  overflow-x: auto;
  margin-bottom: 20px;
}

.bvtek .markdown-body pre code {
  background: transparent;
  padding: 0;
}

.bvtek .detail-footer {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.bvtek .empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--muted);
}

/* ---------- Reveal animation wiring ---------- */
.bvtek .reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .bvtek .content-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .bvtek .content-grid {
    grid-template-columns: 1fr;
  }

  .bvtek .detail-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
