/*
 Theme Name:     Bartosz Politowski
 Theme URI:      https://bartoszpolitowski.pro/
 Description:    Spersonalizowany motyw potomny Divi dla strony bartoszpolitowski.pro
 Author:         Bartosz Politowski
 Author URI:     https://bartoszpolitowski.pro/
 Template:       Divi
 Version:        1.1
*/

/*
  ============================================================
  usuwanie nadmiaru szerkości
  ============================================================
*/

html,
body {
  overflow-x: hidden;
}


/*
  ============================================================
  NAWIGACJA GŁÓWNA + MEGA DROPDOWN
  ============================================================
*/

.bp-nav *,
.bp-nav *::before,
.bp-nav *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.bp-nav [class*="bp-nav__"],
.bp-nav [class*="bp-mega__"] {
  font-family: inherit;
}

.bp-nav {
  --bp-bg: #0e0e0e;
  --bp-accent: #2eea66;
  --bp-accent-glow: rgba(46, 234, 102, .35);
  --bp-accent-dim: rgba(46, 234, 102, .15);
  --bp-accent-ultra: rgba(46, 234, 102, .06);
  --bp-text: #f0f5f2;
  --bp-text-mid: rgba(240, 245, 242, .4);
  --bp-text-lo: rgba(240, 245, 242, .2);
  --bp-text-ultra: rgba(240, 245, 242, .12);
  --bp-border: rgba(255, 255, 255, .04);
}

.bp-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  background: #0e0e0e;
  border-bottom: none;
  transition: all .35s ease;
}
.admin-bar .bp-nav {
  top: 32px;
}
@media (max-width: 782px) {
  .admin-bar .bp-nav {
    top: 46px;
  }
}
.bp-nav--scrolled {
  background: #0e0e0e;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.bp-nav__bar {
  display: flex;
  align-items: center;
  height: 64px;
  padding: 0 48px;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}

.bp-nav__logo {
  display: flex;
  align-items: center;
  margin-right: auto;
  text-decoration: none;
  flex-shrink: 0;
}
.bp-nav__logo img {
  height: 34px;
  width: auto;
  display: block;
}

.bp-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.bp-nav__link {
  font-family: 'Syne', sans-serif !important;
  font-weight: 700;
  font-size: 15px;
  color: rgba(240, 245, 242, .6);
  padding: 8px 16px;
  border-radius: 100px;
  text-decoration: none;
  transition: all .25s ease;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  letter-spacing: -.01em;
}
.bp-nav__link:hover {
  color: var(--bp-text);
}
.bp-nav__link--active {
  color: var(--bp-text) !important;
}
.bp-nav__link--active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--bp-accent);
}

.bp-nav__dd-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}
.bp-nav__dd-wrap .bp-nav__link {
  padding-right: 6px;
}
.bp-nav__dd-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  transition: all .25s ease;
  padding: 0;
  flex-shrink: 0;
}
.bp-nav__dd-toggle:hover {
  background: rgba(255,255,255,.04);
}
.bp-nav__dd-toggle[aria-expanded="true"] {
  background: rgba(255,255,255,.04);
}
.bp-nav__chevron {
  width: 12px;
  height: 12px;
  opacity: .4;
  color: rgba(240, 245, 242, .6);
  transition: all .3s cubic-bezier(.16,1,.3,1);
}
.bp-nav__dd-toggle[aria-expanded="true"] .bp-nav__chevron {
  opacity: .8;
  transform: rotate(180deg);
  color: var(--bp-accent);
}

.bp-nav__burger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.05);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  transition: all .3s ease;
  flex-shrink: 0;
}
.bp-nav__burger span {
  width: 18px;
  height: 1.5px;
  background: rgba(240,245,242,.5);
  border-radius: 1px;
  transition: all .3s cubic-bezier(.16,1,.3,1);
  display: block;
}
.bp-nav__burger--open {
  background: var(--bp-accent-ultra);
  border-color: rgba(46,234,102,.12);
}
.bp-nav__burger--open span:first-child {
  transform: rotate(45deg) translate(2.3px, 2.3px);
  background: var(--bp-accent);
}
.bp-nav__burger--open span:last-child {
  transform: rotate(-45deg) translate(2.3px, -2.3px);
  background: var(--bp-accent);
}

/* ══════ MEGA DROPDOWN ══════ */

.bp-mega {
  position: absolute;
  top: 64px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 64px);
  max-width: 1400px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .5s cubic-bezier(.16,1,.3,1), opacity .35s ease;
  pointer-events: none;
  background: #0e0e0e;
  border-radius: 0 0 16px 16px;
  border: 1px solid rgba(46,234,102,.06);
  border-top: none;
}
.bp-mega--open {
  max-height: 440px;
  opacity: 1;
  pointer-events: auto;
}

.bp-mega__scan {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 5%, rgba(46,234,102,.6) 30%, rgba(46,234,102,.8) 50%, rgba(46,234,102,.6) 70%, transparent 95%);
  z-index: 20;
  pointer-events: none;
  opacity: 0;
  box-shadow: 0 0 20px rgba(46,234,102,.3);
}
.bp-mega--open .bp-mega__scan {
  animation: bpScan .65s ease-out .05s forwards;
}

.bp-mega__flash {
  position: absolute;
  inset: 0;
  background: rgba(46,234,102,.025);
  z-index: 15;
  pointer-events: none;
  opacity: 0;
}
.bp-mega--open .bp-mega__flash {
  animation: bpFlash .35s ease-out .02s forwards;
}

.bp-mega__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46,234,102,.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,234,102,.015) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0;
  transition: opacity .5s ease .1s;
  pointer-events: none;
}
.bp-mega--open .bp-mega__grid-bg {
  opacity: 1;
}

.bp-mega__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transition: all .8s ease .12s;
}
.bp-mega--open .bp-mega__orb { opacity: 1; }
.bp-mega__orb--1 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(46,234,102,.16), transparent 70%);
  filter: blur(70px);
  top: -40px; left: 0;
}
.bp-mega__orb--2 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(46,234,102,.12), transparent 70%);
  filter: blur(60px);
  bottom: -30px; right: 20%;
}
.bp-mega__orb--3 {
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(46,234,102,.08), transparent 70%);
  filter: blur(55px);
  top: 20%; right: 5%;
}

.bp-mega__vline {
  position: absolute;
  top: 0;
  width: 1px;
  height: 0;
  background: linear-gradient(180deg, rgba(46,234,102,.2), rgba(46,234,102,.04));
  z-index: 3;
  pointer-events: none;
}
.bp-mega__vline--1 { left: 33.33%; transition: height .5s ease .18s; }
.bp-mega__vline--2 { left: 66.66%; transition: height .5s ease .25s; }
.bp-mega--open .bp-mega__vline { height: 100%; }

.bp-mega__inner {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 0;
}

.bp-mega__col {
  padding: 24px 28px 28px;
}

.bp-mega__col-title {
  font-family: 'JetBrains Mono', monospace !important;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(46,234,102,.6);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(-6px);
  transition: all .3s ease;
}
.bp-mega--open .bp-mega__col:nth-child(1) .bp-mega__col-title { transition-delay: .18s; opacity: 1; transform: translateY(0); }
.bp-mega--open .bp-mega__col:nth-child(2) .bp-mega__col-title { transition-delay: .24s; opacity: 1; transform: translateY(0); }
.bp-mega--open .bp-mega__col:nth-child(3) .bp-mega__col-title { transition-delay: .30s; opacity: 1; transform: translateY(0); }

.bp-mega__col-title::before {
  content: '';
  width: 18px;
  height: 2px;
  background: rgba(46,234,102,.5);
  border-radius: 1px;
  flex-shrink: 0;
}
.bp-mega__col-title svg {
  width: 20px;
  height: 20px;
  opacity: .35;
  margin-left: auto;
  flex-shrink: 0;
  color: var(--bp-accent);
}

.bp-mega__svc-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.bp-mega__svc {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid transparent;
  position: relative;
  transition: all .3s cubic-bezier(.16,1,.3,1);
}
.bp-mega__svc:hover {
  background: rgba(46,234,102,.05);
  border-color: rgba(46,234,102,.1);
  transform: translateX(4px);
}

.bp-mega__svc-glow {
  position: absolute;
  left: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--bp-accent);
  border-radius: 2px;
  transition: height .3s cubic-bezier(.16,1,.3,1);
  box-shadow: 0 0 14px rgba(46,234,102,.6);
}
.bp-mega__svc:hover .bp-mega__svc-glow {
  height: 24px;
}

.bp-mega__svc-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(46,234,102,.03);
  border: 1px solid rgba(46,234,102,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .3s ease;
}
.bp-mega__svc:hover .bp-mega__svc-icon {
  background: rgba(46,234,102,.08);
  border-color: rgba(46,234,102,.18);
  box-shadow: 0 0 24px rgba(46,234,102,.12);
}
.bp-mega__svc-icon svg {
  width: 15px;
  height: 15px;
  color: rgba(46,234,102,.4);
  transition: all .3s ease;
}
.bp-mega__svc:hover .bp-mega__svc-icon svg {
  color: var(--bp-accent);
  filter: drop-shadow(0 0 4px rgba(46,234,102,.4));
}

.bp-mega__svc-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
  min-width: 0;
}
.bp-mega__svc-name {
  font-family: 'Syne', sans-serif !important;
  font-weight: 700;
  font-size: 16px;
  color: rgba(240,245,242,.7);
  transition: color .25s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -.01em;
}
.bp-mega__svc:hover .bp-mega__svc-name {
  color: var(--bp-text);
}
.bp-mega__svc-sub {
  font-family: 'JetBrains Mono', monospace !important;
  font-weight: 400;
  font-size: 12px;
  color: rgb(240 245 242 / 38%);
  letter-spacing: .03em;
  transition: color .25s ease;
}
.bp-mega__svc:hover .bp-mega__svc-sub {
  color: rgba(46,234,102,.5);
}

.bp-mega__svc-arrow {
  margin-left: auto;
  opacity: 0;
  transform: translateX(-8px);
  transition: all .3s cubic-bezier(.16,1,.3,1);
  flex-shrink: 0;
}
.bp-mega__svc:hover .bp-mega__svc-arrow {
  opacity: 1;
  transform: translateX(0);
}
.bp-mega__svc-arrow svg {
  width: 11px;
  height: 11px;
  color: var(--bp-accent);
}

.bp-mega__promo {
  border: 1px solid rgba(46,234,102,.06);
  border-radius: 14px;
  padding: 20px;
  background: rgba(46,234,102,.015);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: scale(.96);
  transition: all .45s cubic-bezier(.16,1,.3,1) .38s;
}
.bp-mega--open .bp-mega__promo {
  opacity: 1;
  transform: scale(1);
}
.bp-mega__promo-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(46,234,102,.025) 1px, transparent 0);
  background-size: 16px 16px;
  pointer-events: none;
}
.bp-mega__promo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(46,234,102,.04);
  pointer-events: none;
}
.bp-mega__promo-ring--1 { top: -30px; right: -30px; width: 120px; height: 120px; }
.bp-mega__promo-ring--2 { top: -15px; right: -15px; width: 90px; height: 90px; border-color: rgba(46,234,102,.06); }

.bp-mega__promo-badge {
  font-family: 'JetBrains Mono', monospace !important;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--bp-accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}
.bp-mega__promo-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--bp-accent);
  box-shadow: 0 0 10px rgba(46,234,102,.7);
  animation: bpPulse 2s ease-in-out infinite;
}
.bp-mega__promo-title {
  font-family: 'Syne', sans-serif !important;
  font-weight: 800;
  font-size: 17px;
  color: var(--bp-text);
  letter-spacing: -.02em;
  margin-bottom: 6px;
  position: relative;
  z-index: 2;
  line-height: 1.15;
}
.bp-mega__promo-time {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}
.bp-mega__promo-time-val {
  font-family: 'Syne', sans-serif !important;
  font-weight: 800;
  font-size: 28px;
  color: var(--bp-accent);
  letter-spacing: -.02em;
  line-height: 1;
}
.bp-mega__promo-time-label {
  font-family: 'JetBrains Mono', monospace !important;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgb(240 245 242 / 35%);
  line-height: 1.3;
}
.bp-mega__promo-desc {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-weight: 300;
  font-size: 12px;
  color: rgba(240,245,242,.32);
  line-height: 1.6;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}
.bp-mega__promo-cta {
  font-family: 'Syne', sans-serif !important;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: 10px 20px;
  background: var(--bp-accent);
  color: var(--bp-bg);
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(46,234,102,.3);
  transition: all .3s ease;
  position: relative;
  z-index: 2;
  border: none;
  text-decoration: none;
}
.bp-mega__promo-cta:hover {
  box-shadow: 0 10px 36px rgba(46,234,102,.5);
  transform: translateY(-2px);
}
.bp-mega__promo-cta svg {
  width: 10px;
  height: 10px;
}
.bp-mega__promo-ghost {
  position: absolute;
  bottom: -14px;
  right: 10px;
  font-family: 'Syne', sans-serif !important;
  font-weight: 800;
  font-size: 72px;
  color: rgba(46,234,102,.025);
  line-height: 1;
  letter-spacing: -.04em;
  pointer-events: none;
  user-select: none;
}

.bp-nav__mobile {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  width: 100%;
  background: var(--bp-bg);
  border-top: 1px solid var(--bp-border);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.16,1,.3,1), opacity .3s ease;
}
.bp-nav__mobile--open {
  max-height: calc(100vh - 64px);
  max-height: calc(100dvh - 64px);
  opacity: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.admin-bar .bp-nav__mobile--open {
  max-height: calc(100vh - 96px);
  max-height: calc(100dvh - 96px);
}
.bp-nav__mobile-inner {
  padding: 16px 24px 24px;
}
.bp-nav__mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.03);
  font-family: 'Syne', sans-serif !important;
  font-weight: 700;
  font-size: 15px;
  color: rgba(240,245,242,.65);
  text-decoration: none;
  transition: color .2s ease;
}
.bp-nav__mobile-link:hover {
  color: var(--bp-text);
}
.bp-nav__mobile-link--active {
  color: var(--bp-accent) !important;
}
.bp-nav__mobile-link svg {
  width: 12px;
  height: 12px;
  opacity: .2;
}

.bp-nav__mobile-section {
  padding: 12px 0 4px;
}
.bp-nav__mobile-section-title {
  font-family: 'JetBrains Mono', monospace !important;
  font-weight: 600;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(46,234,102,.35);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.bp-nav__mobile-section-title::before {
  content: '';
  width: 10px;
  height: 1.5px;
  background: rgba(46,234,102,.3);
  border-radius: 1px;
}
.bp-nav__mobile-svc {
  display: block;
  padding: 10px 0 10px 20px;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-weight: 400;
  font-size: 14px;
  color: rgba(240,245,242,.5);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.02);
  transition: color .2s ease;
}
.bp-nav__mobile-svc:hover {
  color: var(--bp-text);
}

.bp-nav__mobile-bottom {
  padding-top: 16px;
  margin-top: 8px;
  border-top: 1px solid var(--bp-border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bp-nav__mobile-cta {
  font-family: 'Syne', sans-serif !important;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: 14px;
  background: var(--bp-accent);
  color: var(--bp-bg);
  border-radius: 100px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(46,234,102,.3);
  border: none;
  cursor: pointer;
}
.bp-nav__mobile-tel {
  font-family: 'JetBrains Mono', monospace !important;
  font-weight: 500;
  font-size: 12px;
  color: rgba(240,245,242,.3);
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 0;
}
.bp-nav__mobile-tel svg {
  width: 12px;
  height: 12px;
  opacity: .3;
}

.bp-nav-spacer {
  height: 64px;
  background: #0e0e0e;
}
.admin-bar .bp-nav-spacer {
  height: 96px;
}
@media (max-width: 782px) {
  .admin-bar .bp-nav-spacer {
    height: 110px;
  }
}

@keyframes bpScan {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(400px); }
}
@keyframes bpFlash {
  0% { opacity: 1; }
  100% { opacity: 0; }
}
@keyframes bpPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 10px rgba(46,234,102,.7); }
  50% { opacity: .4; box-shadow: 0 0 4px rgba(46,234,102,.3); }
}

.bp-mega__svc {
  opacity: 0;
  transform: translateX(-14px);
}
.bp-mega--open .bp-mega__svc {
  opacity: 1;
  transform: translateX(0);
}
.bp-mega--open .bp-mega__col:nth-child(1) .bp-mega__svc:nth-child(1) { transition-delay: .18s; }
.bp-mega--open .bp-mega__col:nth-child(1) .bp-mega__svc:nth-child(2) { transition-delay: .22s; }
.bp-mega--open .bp-mega__col:nth-child(1) .bp-mega__svc:nth-child(3) { transition-delay: .26s; }
.bp-mega--open .bp-mega__col:nth-child(2) .bp-mega__svc:nth-child(1) { transition-delay: .24s; }
.bp-mega--open .bp-mega__col:nth-child(2) .bp-mega__svc:nth-child(2) { transition-delay: .28s; }
.bp-mega--open .bp-mega__col:nth-child(2) .bp-mega__svc:nth-child(3) { transition-delay: .32s; }
.bp-mega--open .bp-mega__col:nth-child(2) .bp-mega__svc:nth-child(4) { transition-delay: .36s; }

@media (max-width: 1100px) {
  .bp-nav__bar { padding: 0 32px; }
  .bp-mega__col { padding: 20px 20px 24px; }
}

@media (max-width: 900px) {
  .bp-nav__links { display: none; }
  .bp-nav__burger { display: flex; }
  .bp-nav__mobile { display: block; }
  .bp-mega { display: none; }
  .bp-nav__bar { padding: 0 20px; }
}

@media (max-width: 540px) {
  .bp-nav__bar { padding: 0 16px; height: 56px; }
  .bp-nav__mobile { top: 56px; }
  .bp-nav-spacer { height: 56px; }
  .bp-nav__logo img { height: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  .bp-nav *,
  .bp-nav *::before,
  .bp-nav *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ════════ GLOBALNA SEKCJA CTA ════════ */

.bku{
  --a:#2eea66;--c1:#0d1014;--c2:#060809;--ln:#171d24;--tx:#d7dfeb;--mt:#95a1b3;
  color:var(--tx);font:16px/1.65 Inter,system-ui,sans-serif;
  max-width:1300px;margin:84px auto;padding:0 24px;
}
.bku*{box-sizing:border-box;}

.bku__eyebrow{display:inline-flex;align-items:center;gap:10px;padding:8px 14px;border-radius:999px;background:linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.03));box-shadow:inset 0 0 0 1px #232a36;font-family:'JetBrains Mono',monospace;font-size:11px;font-weight:500;letter-spacing:.06em;}
.bku__dot{width:10px;height:10px;border-radius:999px;background:var(--a);box-shadow:0 0 0 6px rgba(46,234,102,.15);}
.bku h2{font-family:'Syne',sans-serif;font-weight:800;font-size:clamp(28px,3.4vw,42px);line-height:1.1;margin:18px 0 8px;text-align:center;color: #dce8de;}
.bku__lead{font-family:Inter,system-ui,sans-serif;font-size:18px;color:var(--mt);max-width:90ch;margin:0 auto;text-align:center;}
.bku .hl{color:#e8fbea;background:linear-gradient(90deg,rgba(46,234,102,.18),rgba(46,234,102,.08));padding:1px 6px;border-radius:8px;}

.bku__box{
  border:1px solid var(--ln);
  border-radius:20px;
  overflow:hidden;
  background:var(--c2);
  opacity:1;
  transform:none;
}
.js .bku__box{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .65s cubic-bezier(.22,1,.36,1),transform .65s cubic-bezier(.22,1,.36,1);
}
.js .bku__box.vis{
  opacity:1;
  transform:none;
}

.bku__head{position:relative;padding:52px 40px 44px;text-align:center;overflow:hidden;border-bottom:1px solid var(--ln);}
.bku__head::before{content:'';position:absolute;top:0;left:0;right:0;height:2px;background:linear-gradient(90deg,transparent,var(--a) 35%,rgba(46,234,102,.4) 65%,transparent);}
.bku__head::after{content:'';position:absolute;top:0;left:50%;transform:translateX(-50%);width:700px;height:180px;background:radial-gradient(ellipse at 50% 0%,rgba(46,234,102,.09),transparent 70%);pointer-events:none;}
.bku__head .bku__lead{margin-bottom:0;}

.bku__hero{
  display:grid;grid-template-columns:1fr 420px;
  min-height:580px;
}
@media(max-width:860px){.bku__hero{grid-template-columns:1fr;}}

.bku__left{
  background:var(--c1);
  display:flex;flex-direction:column;
  border-right:1px solid var(--ln);
  position:relative;overflow:hidden;
}

.bku__left::before{
  content:'30 MIN';
  position:absolute;right:-20px;bottom:-30px;
  font-family:'Syne',sans-serif;font-weight:800;
  font-size:clamp(80px,14vw,160px);line-height:1;letter-spacing:-.06em;
  color:transparent;-webkit-text-stroke:1px rgba(46,234,102,.04);
  pointer-events:none;user-select:none;white-space:nowrap;
}

.bku__topbar{
  display:flex;align-items:center;justify-content:space-between;
  padding:11px 28px;border-bottom:1px solid var(--ln);
  background:var(--c2);
}
.bku__tb-left{display:flex;align-items:center;gap:10px;}
.bku__tb-tag{font-family:'JetBrains Mono',monospace;font-size:12px;font-weight:600;letter-spacing:.16em;text-transform:uppercase;color:rgb(46 234 102 / 60%);}
.bku__tb-div{width:1px;height:9px;background:var(--ln);}
.bku__tb-time{font-family:'JetBrains Mono',monospace;font-size:11px;font-weight:500;letter-spacing:.1em;color:rgb(46 234 102 / 60%);}
.bku__tb-live{display:flex;align-items:center;gap:6px;font-family:'JetBrains Mono',monospace;font-size:13px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:rgb(46 234 102 / 47%);}
.bku__live-pulse{width:6px;height:6px;border-radius:999px;background:var(--a);box-shadow:0 0 0 0 rgba(46,234,102,.4);animation:bku-ping 2.4s ease infinite;}
@keyframes bku-ping{0%{box-shadow:0 0 0 0 rgba(46,234,102,.4);}70%{box-shadow:0 0 0 6px rgba(46,234,102,0);}100%{box-shadow:0 0 0 0 rgba(46,234,102,0);}}

.bku__claim{
  padding:32px 28px 20px;
  border-bottom:1px solid var(--ln);
}
.bku__claim-kicker{font-family:'JetBrains Mono',monospace;font-size:10px;font-weight:600;letter-spacing:.2em;text-transform:uppercase;color:rgb(46 234 102 / 62%);display:block;margin-bottom:10px;}
.bku__claim-title{
  font-family:'Syne',sans-serif;font-weight:800;
  font-size:clamp(22px,3vw,34px);line-height:1.05;letter-spacing:-.04em;
  color:#d0e8da;margin:0 0 10px;
}
.bku__claim-body{font-family:Inter,system-ui,sans-serif;font-size:13px;line-height:1.78;color:#598371;}
.bku__claim-body strong{color:#7aaa8a;}

.bku__agenda{flex:1;display:flex;flex-direction:column;}
.bku__agenda-item{
  display:grid;
  grid-template-columns:72px 1fr;
  align-items:stretch;
  border-bottom:1px solid var(--ln);
  position:relative;
  overflow:hidden;
  opacity:1;
  transform:none;
  transition:background .18s;
}

.js .bku__agenda-item{
  opacity:0;
  transform:translateX(-12px);
  transition:opacity .45s cubic-bezier(.22,1,.36,1),transform .45s cubic-bezier(.22,1,.36,1),background .18s;
}
.js .bku__agenda-item.is-in{
  opacity:1;
  transform:none;
}

.bku__agenda-item:last-child{border-bottom:none;}
.bku__agenda-item:hover{background:rgba(46,234,102,.02);}
.bku__agenda-item::before{content:'';position:absolute;top:0;left:0;right:0;height:1px;background:linear-gradient(90deg,transparent,var(--a) 30%,rgba(46,234,102,.3) 70%,transparent);transform:scaleX(0);transform-origin:left;transition:transform .35s cubic-bezier(.4,0,.2,1);}
.bku__agenda-item:hover::before{transform:scaleX(1);}

.bku__agenda-num-cell{
  display:flex;align-items:center;justify-content:center;
  border-right:1px solid var(--ln);
  background:var(--c2);
}
.bku__agenda-num{
  font-family:'Syne',sans-serif;font-weight:800;
  font-size:clamp(22px,2.5vw,32px);line-height:1;letter-spacing:-.05em;
  color:transparent;-webkit-text-stroke:1px rgba(46,234,102,.18);
  transition:-webkit-text-stroke-color .2s;
}
.bku__agenda-item:hover .bku__agenda-num{-webkit-text-stroke-color:rgba(46,234,102,.5);}

.bku__agenda-content{padding:18px 20px;display:flex;flex-direction:column;gap:5px;justify-content:center;}
.bku__agenda-label{font-family:'JetBrains Mono',monospace;font-size:11px;font-weight:600;letter-spacing:.14em;text-transform:uppercase;color:rgb(46 234 102 / 58%);}
.bku__agenda-text{font-family:Inter,system-ui,sans-serif;font-size:13px;line-height:1.6;color:#598371;transition:color .18s;}
.bku__agenda-item:hover .bku__agenda-text{color:#4e6a5c;}
.bku__agenda-text strong{color:#7aaa8a;}

.bku__bottom{border-top:1px solid var(--ln);padding:20px 28px;display:flex;flex-direction:column;gap:14px;background:var(--c2);}
.bku__slots-row{display:flex;flex-wrap:wrap;gap:6px;}
.bku__slot{
  font-family:'JetBrains Mono',monospace;font-size:13px;font-weight:600;letter-spacing:.08em;
  padding:6px 12px;border-radius:7px;cursor:pointer;
  color:rgb(46 234 102);background:rgba(46,234,102,.04);border:1px solid rgba(46,234,102,.1);
  transition:all .2s;
}
.bku__slot:hover{color:rgba(46,234,102,.65);border-color:rgba(46,234,102,.25);}
.bku__slot[aria-current="true"]{color:rgba(46,234,102,.85);border-color:rgba(46,234,102,.38);background:rgba(46,234,102,.09);box-shadow:0 0 0 1px rgba(46,234,102,.15);}
.bku__slot[aria-disabled="true"]{opacity:.25;text-decoration:line-through;pointer-events:none;}
.bku__slots-note{font-family:Inter,system-ui,sans-serif;font-size:13px;color:#8bb79b;}

.bku__cta-row{display:flex;align-items:center;gap:12px;flex-wrap:wrap;}
.bku__cta-note{font-family:Inter,system-ui,sans-serif;font-size:12px;color:#627e6c;flex:1;min-width:140px;}
.bku__btns{display:flex;gap:9px;flex-wrap:wrap;}
.bku__btn{display:inline-flex;align-items:center;gap:7px;padding:11px 20px;border-radius:11px;font-family:'Syne',sans-serif;font-size:12.5px;font-weight:800;text-decoration:none;cursor:pointer;border:none;transition:all .2s;will-change:transform;position:relative;}
.bku__btn--solid{color:#000;background:var(--a);box-shadow:0 6px 24px rgba(46,234,102,.32);}
.bku__btn--solid:hover{transform:translateY(-2px);box-shadow:0 12px 36px rgba(46,234,102,.52);}
.bku__btn--ghost{color:#4e6858;background:transparent;border:1px solid var(--ln);}
.bku__btn--ghost:hover{border-color:rgba(46,234,102,.28);color:#7aaa8a;}
.bku__btn svg{width:11px;height:11px;stroke:currentColor;fill:none;stroke-width:2.5;}

.bku__tooltip{position:absolute;bottom:calc(100%+8px);left:50%;transform:translateX(-50%) translateY(6px);font-family:'JetBrains Mono',monospace;font-size:9px;font-weight:600;letter-spacing:.08em;background:#060809;color:rgba(46,234,102,.7);border:1px solid rgba(46,234,102,.2);padding:5px 10px;border-radius:7px;white-space:nowrap;opacity:0;pointer-events:none;transition:opacity .2s,transform .2s;}
.bku__btn--ghost.is-copied .bku__tooltip{opacity:1;transform:translateX(-50%) translateY(0);}

.bku__photo{position:relative;overflow:hidden;background:#040506;}
.bku__photo img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .7s cubic-bezier(.2,.65,.2,1);filter:brightness(.85) contrast(1.05);}
.bku__photo:hover img{transform:scale(1.04);}

.bku__photo::before{
  content:'';position:absolute;left:0;top:0;bottom:0;width:3px;
  background:linear-gradient(180deg,var(--a),rgba(46,234,102,.1));
  z-index:3;
}

.bku__photo::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(180deg,transparent 45%,rgba(4,5,6,.95) 100%);
  z-index:1;pointer-events:none;
}

.bku__scanlines{position:absolute;inset:0;z-index:2;pointer-events:none;background:repeating-linear-gradient(0deg,transparent,transparent 2px,rgba(0,0,0,.04) 2px,rgba(0,0,0,.04) 4px);opacity:.5;}

.bku__photo-card{
  position:absolute;bottom:24px;left:20px;right:20px;z-index:4;
  background:rgba(6,8,9,.85);
  border:1px solid rgba(46,234,102,.15);
  border-radius:12px;
  padding:16px 18px;
  backdrop-filter:blur(12px);
  display:flex;flex-direction:column;gap:8px;
}
.bku__photo-name{font-family:'Syne',sans-serif;font-weight:800;font-size:clamp(15px,1.8vw,19px);line-height:1.2;letter-spacing:-.02em;color:#cce8dc;}
.bku__photo-role{font-family:'JetBrains Mono',monospace;font-size:12px;font-weight:600;letter-spacing:.14em;text-transform:uppercase;color:rgb(46 234 102);}
.bku__photo-tags{display:flex;flex-wrap:wrap;gap:5px;}
.bku__photo-tag{font-family:'JetBrains Mono',monospace;font-size:10px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;padding:4px 9px;border-radius:6px;color:rgb(46 234 102 / 54%);background:rgba(46,234,102,.04);border:1px solid rgba(46,234,102,.1);}

@media (max-width: 860px) {
  .bku {
    margin: 56px auto;
    padding: 0 14px;
  }

  .bku__hero {
    grid-template-columns: 1fr;
  }

  .bku__left {
    border-right: none;
    border-bottom: 1px solid var(--ln);
  }

  .bku__photo {
    min-height: 360px;
  }
}

@media (max-width: 520px) {
  .bku__head {
    padding: 28px 16px 24px;
    overflow: visible;
  }

  .bku h2 {
    font-size: clamp(22px, 8vw, 28px);
    line-height: 1.16;
    margin: 14px 0 10px;
    text-wrap: balance;
  }

  .bku__lead {
    font-size: 15px;
    line-height: 1.72;
    max-width: 100%;
  }

  .bku__topbar {
    padding: 10px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .bku__tb-left {
    flex-wrap: wrap;
  }

  .bku__claim {
    padding: 22px 16px 18px;
  }

  .bku__claim-title {
    font-size: clamp(20px, 8vw, 28px);
    line-height: 1.08;
  }

  .bku__claim-title br {
    display: none;
  }

  .bku__claim-body {
    font-size: 13px;
    line-height: 1.72;
  }

  .bku__agenda-num-cell {
    display: none;
  }

  .bku__agenda-item {
    grid-template-columns: 1fr;
  }

  .bku__agenda-content {
    padding: 16px;
  }

  .bku__bottom {
    padding: 16px;
  }

  .bku__cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .bku__cta-note {
    min-width: 0;
  }

  .bku__btns {
    width: 100%;
    flex-direction: column;
  }

  .bku__btn {
    width: 100%;
    justify-content: center;
  }

  .bku__photo-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px;
  }

  .bku__photo-role {
    font-size: 11px;
  }

  .bku__photo-tag {
    font-size: 9px;
    padding: 4px 8px;
  }

  .bku__left::before {
    font-size: 72px;
    right: -10px;
    bottom: -8px;
  }
}

@media (max-width: 380px) {
  .bku {
    padding: 0 10px;
  }

  .bku h2 {
    font-size: 20px;
    line-height: 1.18;
  }

  .bku__photo {
    min-height: 320px;
  }
}

/* ═══════ FOOTER ═══════ */

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

.et_pb_section .et_pb_row .et_pb_code_inner .bp-footer,
.et_pb_section .bp-footer{
  padding:0 !important;
  margin:0 !important;
}

.et_pb_section:has(.bp-footer),
.et_pb_section:has(.bp-footer) .et_pb_row,
.et_pb_section:has(.bp-footer) .et_pb_column,
.et_pb_section:has(.bp-footer) .et_pb_module,
.et_pb_section:has(.bp-footer) .et_pb_code,
.et_pb_section:has(.bp-footer) .et_pb_code_inner{
  margin-top:0 !important;
  margin-bottom:0 !important;
  padding-top:0 !important;
  padding-bottom:0 !important;
  min-height:auto !important;
}

.et_pb_row:has(.bp-footer){
  width:100% !important;
  max-width:100% !important;
}

.bp-footer{
  --ft-bg:#0c0c0c;
  --ft-page-bg:#0e0e0e;
  --ft-accent:#2eea66;
  --ft-text:#f0f5f2;
  --ft-lift:clamp(42px,5vw,84px);

  width:100%;
  max-width:100%;
  margin:calc(var(--ft-lift) * -1) 0 0;
  background:var(--ft-page-bg);
  padding:0;
  position:relative;
  overflow:hidden;
  z-index:3;
  isolation:isolate;
}

.bp-footer__term{
  width:100%;
  max-width:100%;
  margin:0;
  background:var(--ft-bg);
  border-radius:0;
  border:none;
  border-top:1px solid rgba(46,234,102,.08);
  overflow:hidden;
  position:relative;
}

.bp-footer__glow{
  position:absolute;
  top:-1px;
  left:10%;
  right:10%;
  height:1px;
  z-index:10;
  pointer-events:none;
  background:linear-gradient(
    90deg,
    transparent,
    rgba(46,234,102,.4) 30%,
    rgba(46,234,102,.5) 50%,
    rgba(46,234,102,.4) 70%,
    transparent
  );
  box-shadow:
    0 0 30px rgba(46,234,102,.15),
    0 0 80px rgba(46,234,102,.06);
}

.bp-footer__glow-orb{
  position:absolute;
  border-radius:50%;
  pointer-events:none;
  z-index:1;
}
.bp-footer__glow-orb--1{
  width:500px;
  height:500px;
  background:radial-gradient(circle,rgba(46,234,102,.05),transparent 70%);
  filter:blur(90px);
  top:-100px;
  left:15%;
}
.bp-footer__glow-orb--2{
  width:350px;
  height:350px;
  background:radial-gradient(circle,rgba(46,234,102,.035),transparent 70%);
  filter:blur(80px);
  bottom:-60px;
  right:10%;
}

.bp-footer__noise{
  position:absolute;
  inset:0;
  opacity:.012;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 128 128' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.8'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events:none;
  z-index:1;
}

.bp-footer__orb{
  position:absolute;
  width:500px;
  height:500px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(46,234,102,.06),transparent 70%);
  filter:blur(100px);
  top:20%;
  left:50%;
  transform:translateX(-50%);
  pointer-events:none;
  z-index:1;
}

.bp-footer__bar{
  display:flex;
  align-items:center;
  padding:14px 48px;
  border-bottom:1px solid rgba(255,255,255,.03);
  position:relative;
  z-index:5;
}

.bp-footer__dots{
  display:flex;
  gap:7px;
  flex-shrink:0;
}

.bp-footer__dot{
  width:11px;
  height:11px;
  border-radius:50%;
}

.bp-footer__dot--r{background:#ff5f57;}
.bp-footer__dot--y{background:#febc2e;}
.bp-footer__dot--g{background:#2eea66;}

.bp-footer__bar-logo{
  margin:0 auto;
  display:flex;
  align-items:center;
}

.bp-footer__bar-logo img{
  height:32px;
  width:auto;
  display:block;
}

.bp-footer__live{
  display:flex;
  align-items:center;
  gap:8px;
  flex-shrink:0;
}

.bp-footer__live-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--ft-accent);
  box-shadow:0 0 12px rgba(46,234,102,.6);
  animation:bpftPulse 2.5s ease-in-out infinite;
}

.bp-footer__live-text{
  font-family:'JetBrains Mono',monospace !important;
  font-weight:600;
  font-size:13px;
  color:rgba(46,234,102,.72);
  letter-spacing:.04em;
}

.bp-footer__body{
  display:grid;
  grid-template-columns:1fr 1px 1.3fr 1px 1fr;
  position:relative;
  z-index:5;
  min-height:420px;
}

.bp-footer__sep{
  background:linear-gradient(
    180deg,
    transparent,
    rgba(46,234,102,.07) 20%,
    rgba(46,234,102,.07) 80%,
    transparent
  );
}

.bp-footer__col{
  padding:36px 40px;
  display:flex;
  flex-direction:column;
}

.bp-footer__col-title{
  font-family:'JetBrains Mono',monospace !important;
  font-weight:600;
  font-size:16px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(46,234,102,.45);
  margin-bottom:20px;
  display:flex;
  align-items:center;
  gap:8px;
}

.bp-footer__col-title::after{
  content:'';
  flex:1;
  height:1px;
  background:rgba(46,234,102,.08);
}

.bp-footer__svc-group{margin-bottom:20px;}
.bp-footer__svc-group:last-child{margin-bottom:0;}

.bp-footer__svc-label{
  font-family:'JetBrains Mono',monospace !important;
  font-weight:600;
  font-size:14px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgb(46 234 102 / 50%);
  margin-bottom:10px;
  padding-left:14px;
}

.bp-footer__svc{
  display:flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:8px;
  text-decoration:none;
  border:1px solid transparent;
  position:relative;
  transition:all .25s cubic-bezier(.16,1,.3,1);
}

.bp-footer__svc:hover{
  background:rgba(46,234,102,.03);
  border-color:rgba(46,234,102,.06);
  transform:translateX(4px);
}

.bp-footer__svc-glow{
  position:absolute;
  left:-1px;
  top:50%;
  transform:translateY(-50%);
  width:2px;
  height:0;
  background:var(--ft-accent);
  border-radius:2px;
  transition:height .25s cubic-bezier(.16,1,.3,1);
  box-shadow:0 0 10px rgba(46,234,102,.5);
}

.bp-footer__svc:hover .bp-footer__svc-glow{height:20px;}

.bp-footer__svc-bullet{
  width:5px;
  height:5px;
  border-radius:1px;
  background:rgba(46,234,102,.12);
  flex-shrink:0;
  transition:all .25s ease;
}

.bp-footer__svc:hover .bp-footer__svc-bullet{
  background:var(--ft-accent);
  border-radius:50%;
  box-shadow:0 0 8px rgba(46,234,102,.4);
}

.bp-footer__svc-name{
  font-family:'Syne',sans-serif !important;
  font-weight:700;
  font-size:14px;
  color:rgb(240 245 242 / 58%);
  transition:color .25s ease;
  letter-spacing:-.01em;
}

.bp-footer__svc:hover .bp-footer__svc-name{color:var(--ft-text);}

.bp-footer__svc-tag{
  font-family:'JetBrains Mono',monospace !important;
  font-weight:600;
  font-size:10px;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--ft-accent);
  background:rgba(46,234,102,.08);
  border:1px solid rgba(46,234,102,.1);
  padding:2px 6px;
  border-radius:100px;
  margin-left:4px;
  flex-shrink:0;
  line-height:1;
}

.bp-footer__svc-arrow{
  opacity:0;
  transform:translateX(-6px);
  transition:all .25s ease;
  margin-left:auto;
  flex-shrink:0;
}

.bp-footer__svc:hover .bp-footer__svc-arrow{
  opacity:1;
  transform:translateX(0);
}

.bp-footer__svc-arrow svg{
  width:10px;
  height:10px;
  color:var(--ft-accent);
}

.bp-footer__cta{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:40px 28px;
  gap:0;
}

.bp-footer__cta-ghost{
  font-family:'Syne',sans-serif !important;
  font-weight:800;
  font-size:180px;
  color:rgba(255,255,255,.015);
  line-height:.8;
  letter-spacing:-.06em;
  user-select:none;
  margin-bottom:-12px;
  pointer-events:none;
}

.bp-footer__cta-h{
  font-family:'Syne',sans-serif !important;
  font-weight:800;
  font-size:50px;
  color:var(--ft-text);
  letter-spacing:-.03em;
  line-height:.95;
  margin-bottom:14px;
  position:relative;
  z-index:2;
}

.bp-ft-gr{color:#2eea66 !important;}
.bp-ft-lo{color:rgb(240 245 242 / 14%) !important;}

.bp-footer__cta-p{
  font-family:'Inter',system-ui,sans-serif !important;
  font-weight:300;
  font-size:15px;
  color:rgb(240 245 242 / 38%);
  line-height:1.6;
  max-width:260px;
  margin-bottom:24px;
}

.bp-footer__cta-btn{
  font-family:'Syne',sans-serif !important;
  font-weight:800;
  font-size:12px;
  letter-spacing:.03em;
  text-transform:uppercase;
  padding:14px 32px;
  background:var(--ft-accent);
  color:var(--ft-bg);
  border-radius:100px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  box-shadow:
    0 8px 32px rgba(46,234,102,.3),
    0 0 0 1px rgba(46,234,102,.12);
  cursor:pointer;
  transition:all .3s ease;
  border:none;
  text-decoration:none;
}

.bp-footer__cta-btn:hover{
  box-shadow:
    0 12px 44px rgba(46,234,102,.45),
    0 0 0 1px rgba(46,234,102,.25);
  transform:translateY(-2px);
}

.bp-footer__cta-btn svg{
  width:12px;
  height:12px;
}

.bp-footer__cta-or{
  font-family:'JetBrains Mono',monospace !important;
  font-weight:400;
  font-size:15px;
  color:rgb(255 255 255 / 45%);
  margin:14px 0;
}

.bp-footer__cta-tel{
  font-family:'JetBrains Mono',monospace !important;
  font-weight:600;
  font-size:15px;
  color:#2eea66;
  display:flex;
  align-items:center;
  gap:8px;
  cursor:pointer;
  transition:color .25s ease;
  text-decoration:none;
}

.bp-footer__cta-tel:hover{color:var(--ft-accent);}

.bp-footer__cta-tel svg{
  width:22px;
  height:22px;
  opacity:.55;
}

.bp-footer__contact-list{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.bp-footer__contact{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:8px;
  border:1px solid transparent;
  transition:all .25s ease;
  text-decoration:none;
  color:inherit;
}

.bp-footer__contact:hover{
  background:rgba(46,234,102,.02);
  border-color:rgba(46,234,102,.06);
}

.bp-footer__contact-ico{
  width:32px;
  height:32px;
  border-radius:8px;
  background:rgba(46,234,102,.03);
  border:1px solid rgba(46,234,102,.07);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  transition:all .25s ease;
}

.bp-footer__contact:hover .bp-footer__contact-ico{
  background:rgba(46,234,102,.06);
  border-color:rgba(46,234,102,.12);
  box-shadow:0 0 16px rgba(46,234,102,.06);
}

.bp-footer__contact-ico svg{
  width:13px;
  height:13px;
  color:rgba(46,234,102,.58);
  transition:color .25s ease;
}

.bp-footer__contact:hover .bp-footer__contact-ico svg{
  color:var(--ft-accent);
}

.bp-footer__contact-label{
  font-family:'JetBrains Mono',monospace !important;
  font-weight:500;
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(46,234,102,.58);
}

.bp-footer__contact-val{
  font-family:'JetBrains Mono',monospace !important;
  font-weight:600;
  font-size:13px;
  color:rgba(240,245,242,.62);
  transition:color .25s ease;
  letter-spacing:.01em;
}

.bp-footer__contact:hover .bp-footer__contact-val{color:var(--ft-text);}
.bp-footer__contact-val--green{color:rgba(46,234,102,.72) !important;}

.bp-footer__trust{
  margin-top:18px;
  padding:18px 12px 0;
  border-top:1px solid rgba(46,234,102,.06);
}

.bp-footer__trust-label{
  font-family:'JetBrains Mono',monospace !important;
  font-weight:600;
  font-size:11px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(46,234,102,.5);
  margin-bottom:12px;
}

.bp-footer__trust-list{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.bp-footer__trust-item{
  display:flex;
  align-items:flex-start;
  gap:10px;
}

.bp-footer__trust-dot{
  width:6px;
  height:6px;
  margin-top:6px;
  border-radius:50%;
  background:rgba(46,234,102,.45);
  box-shadow:0 0 10px rgba(46,234,102,.16);
  flex-shrink:0;
}

.bp-footer__trust-text{
  font-family:'JetBrains Mono',monospace !important;
  font-weight:500;
  font-size:12px;
  line-height:1.6;
  color:rgba(240,245,242,.56);
}

.bp-footer__socials{
  display:flex;
  gap:10px;
  margin-top:auto;
  padding-top:18px;
}

.bp-footer__social{
  width:38px;
  height:38px;
  border-radius:10px;
  background:
    linear-gradient(180deg, rgba(46,234,102,.08), rgba(255,255,255,.02));
  border:1px solid rgba(46,234,102,.16);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:
    transform .25s ease,
    border-color .25s ease,
    background .25s ease,
    box-shadow .25s ease;
  text-decoration:none;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    0 0 0 1px rgba(0,0,0,.08);
}

.bp-footer__social svg{
  width:16px;
  height:16px;
  color:rgba(240,245,242,.82);
  transition:color .25s ease, transform .25s ease;
}

.bp-footer__social:hover,
.bp-footer__social:focus-visible{
  transform:translateY(-2px);
  border-color:rgba(46,234,102,.34);
  background:
    linear-gradient(180deg, rgba(46,234,102,.14), rgba(46,234,102,.05));
  box-shadow:
    0 8px 22px rgba(46,234,102,.14),
    inset 0 0 0 1px rgba(46,234,102,.12);
}

.bp-footer__social:hover svg,
.bp-footer__social:focus-visible svg{
  color:var(--ft-accent);
  transform:scale(1.06);
}

.bp-footer a:focus-visible,
.bp-footer button:focus-visible{
  outline:none;
  box-shadow:
    0 0 0 2px rgba(12,12,12,1),
    0 0 0 4px rgba(46,234,102,.35);
}

.bp-footer__status{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:13px 48px;
  border-top:1px solid rgba(255,255,255,.03);
  position:relative;
  z-index:5;
}

.bp-footer__status-left{
  font-family:'JetBrains Mono',monospace !important;
  font-weight:400;
  font-size:11px;
  color:rgb(0 255 102 / 50%);
  display:flex;
  align-items:center;
  gap:6px;
}

.bp-footer__status-dot{
  width:6px;
  height:6px;
  border-radius:50%;
  background:rgb(0 255 76 / 48%);
  flex-shrink:0;
}

.bp-footer__status-center{
  font-family:'JetBrains Mono',monospace !important;
  font-weight:400;
  font-size:11px;
  color:rgb(0 255 102 / 50%);
  display:flex;
  gap:20px;
}

.bp-footer__status-right{
  display:flex;
  align-items:center;
  gap:16px;
}

.bp-footer__status-link{
  font-family:'JetBrains Mono',monospace !important;
  font-weight:400;
  font-size:11px;
  color:rgba(240,245,242,.28);
  cursor:pointer;
  transition:color .2s ease;
  text-decoration:none;
}

.bp-footer__status-link:hover{color:rgb(0 255 102 / 60%);}

.bp-footer__totop{
  width:30px;
  height:30px;
  border-radius:6px;
  background:rgba(46,234,102,.04);
  border:1px solid rgba(46,234,102,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:all .25s ease;
  margin-left:8px;
  appearance:none;
  -webkit-appearance:none;
  padding:0;
}

.bp-footer__totop:hover{
  background:rgba(46,234,102,.08);
  border-color:rgba(46,234,102,.14);
}

.bp-footer__totop svg{
  width:12px;
  height:12px;
  color:rgba(46,234,102,.45);
}

@keyframes bpftPulse{
  0%,100%{opacity:1}
  50%{opacity:.3}
}

@media(max-width:1100px){
  .bp-footer{--ft-lift:34px;}
  .bp-footer__col{padding:28px 20px;}
  .bp-footer__cta{padding:32px 20px;}
}

@media(max-width:900px){
  .bp-footer{
    --ft-lift:22px;
    padding:0;
  }
  .bp-footer__bar{padding:14px 20px;}
  .bp-footer__body{
    grid-template-columns:1fr;
    min-height:auto;
  }
  .bp-footer__sep{display:none;}
  .bp-footer__col{
    padding:24px 20px;
    border-bottom:1px solid rgba(255,255,255,.03);
  }
  .bp-footer__col:last-child{border-bottom:none;}
  .bp-footer__cta{padding:32px 20px;}
  .bp-footer__cta-ghost{font-size:64px;}
  .bp-footer__cta-h{font-size:26px;}
  .bp-footer__trust{
    margin-top:16px;
    padding-top:16px;
  }
  .bp-footer__status{
    flex-direction:column;
    gap:10px;
    text-align:center;
    padding:16px 20px;
  }
  .bp-footer__status-center{display:none;}
  .bp-footer__status-right{gap:12px;}
}

@media(max-width:540px){
  .bp-footer{--ft-lift:14px;}
  .bp-footer__bar{padding:12px 16px;}
  .bp-footer__bar-logo img{height:20px;}
  .bp-footer__live-text{font-size:12px;}
  .bp-footer__live-dot{width:7px;height:7px;}
  .bp-footer__cta-ghost{font-size:48px;}
  .bp-footer__cta-h{font-size:22px;}
  .bp-footer__cta-btn{
    font-size:10px;
    padding:12px 24px;
  }
  .bp-footer__trust-text{
    font-size:11px;
  }
  .bp-footer__social{
    width:36px;
    height:36px;
  }
}

@media(prefers-reduced-motion:reduce){
  .bp-footer *,
  .bp-footer *::before,
  .bp-footer *::after{
    animation-duration:.01ms !important;
    animation-delay:0ms !important;
    transition-duration:.01ms !important;
  }
}

/* ========= SELF-HOSTED FONTS – @font-face ========== */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/inter-v20-latin_latin-ext-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/inter-v20-latin_latin-ext-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/inter-v20-latin_latin-ext-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/inter-v20-latin_latin-ext-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/inter-v20-latin_latin-ext-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/syne-v24-latin_latin-ext-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('fonts/syne-v24-latin_latin-ext-800.woff2') format('woff2');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/jetbrains-mono-v24-latin_latin-ext-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/jetbrains-mono-v24-latin_latin-ext-500.woff2') format('woff2');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/jetbrains-mono-v24-latin_latin-ext-600.woff2') format('woff2');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/jetbrains-mono-v24-latin_latin-ext-700.woff2') format('woff2');
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('fonts/jetbrains-mono-v24-latin_latin-ext-800.woff2') format('woff2');
}