/* ── HERO ── */
.bk-hero {
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 0 40px;
  padding-top: 64px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.bk-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 65% 40%, rgba(0,0,0,0.015) 0%, transparent 70%);
  pointer-events: none;
}
.bk-hero-inner {
  display: flex; flex-direction: column;
  justify-content: center;
  max-width: 760px;
  padding: 80px 0 60px;
}
.bk-hero-inner .bk-eyebrow {
  display: flex; align-items: center; gap: 14px;
  animation: bk-up 0.8s 0.1s both;
}
.bk-hero-inner .bk-eyebrow::before {
  content: ''; width: 28px; height: 1px; background: var(--mid); display: block;
}
.bk-hero-inner h1 {
  font-size: clamp(44px, 6vw, 82px);
  letter-spacing: -0.02em;
  animation: bk-up 0.8s 0.22s both;
}
.bk-hero-inner h1 em { font-style: italic; color: var(--text60); }
.bk-hero-sub {
  margin-top: 32px; font-size: 15px; font-weight: 300;
  line-height: 1.8; color: var(--text60); max-width: 420px;
  animation: bk-up 0.8s 0.35s both;
}
.bk-hero-cta {
  margin-top: 48px; display: flex; align-items: center; gap: 28px;
  animation: bk-up 0.8s 0.46s both;
}
.bk-hero-text-btn {
  font-size: 13px; font-weight: 400; color: var(--text60);
  text-decoration: none; display: flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}
.bk-hero-text-btn:hover { color: var(--text); }

@keyframes bk-up { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:translateY(0)} }

.bk-stats-bar { animation: bk-up 0.8s 0.58s both; }

@media(max-width:768px) {
  .bk-hero { padding: 100px 24px 0; }
  .bk-stats-bar { grid-template-columns: 1fr 1fr !important; }
  .bk-stat:nth-child(2) { border-right: none; }
}
