.elementor-8486 .elementor-element.elementor-element-7713697e:not(.elementor-motion-effects-element-type-background), .elementor-8486 .elementor-element.elementor-element-7713697e > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#1E293B;}.elementor-8486 .elementor-element.elementor-element-7713697e > .elementor-background-overlay{opacity:0.69;transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-8486 .elementor-element.elementor-element-7713697e{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;padding:20px 0px 0px 0px;}.elementor-8486 .elementor-element.elementor-element-19f1240a > .elementor-element-populated{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;margin:0px 0px 0px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;padding:0% 0% 0% 0%;}.elementor-8486 .elementor-element.elementor-element-19f1240a > .elementor-element-populated > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}@media(min-width:768px){.elementor-8486 .elementor-element.elementor-element-19f1240a{width:100%;}}@media(max-width:1200px){.elementor-8486 .elementor-element.elementor-element-7713697e{margin-top:0px;margin-bottom:0px;}}@media(max-width:1024px){.elementor-8486 .elementor-element.elementor-element-7713697e{margin-top:0px;margin-bottom:0px;padding:0em 0em 0em 0em;}}@media(max-width:880px){.elementor-8486 .elementor-element.elementor-element-7713697e{margin-top:0px;margin-bottom:0px;}}@media(max-width:767px){.elementor-8486 .elementor-element.elementor-element-7713697e{margin-top:0px;margin-bottom:0px;}.elementor-8486 .elementor-element.elementor-element-3d5a6eef{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0em 1em 0em 1em;}}/* Start custom CSS for html, class: .elementor-element-3d5a6eef *//* -------------------------------- */
/* HERO CONTAINER                   */
/* -------------------------------- */

.bf-hero-container {
  width: 1240px;
  margin: 0 auto;
  padding-top: 30px;
  position: relative;
  z-index: 2;
  text-align: left;
  box-sizing: border-box;
}

.bf-hero {
  font-family: "Greycliff CF", system-ui, sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 500;
  color: #fff;
  margin: 0;
}


/* -------------------------------- */
/* TYPEWRITER (SOLID ORANGE)        */
/* -------------------------------- */

/* use CSS vars so we can scale width/steps per breakpoint */
.typewriter-glow {
  --tw-chars: 22;           /* how many characters to type */
  --tw-duration: 4s;        /* typing+pause+erase duration */

  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  line-height: 1.3em;

  /* cursor */
  border-right: 3px solid rgba(237,95,35,0.95);

  /* SOLID orange text + glow */
  color: #ED5F23;
  text-shadow:
    0 0 3px rgba(237,95,35,1),
    0 0 px rgba(237,95,35,0.85),
    0 0 2px rgba(255,140,0,0.6);

  /* typing animation */
  width: 0;
  animation:
    typing var(--tw-duration) steps(var(--tw-chars), end) infinite,
    blinkCursor .75s step-end infinite;
}

/* typing loop: type -> hold -> erase */
@keyframes typing {
  0%   { width: 0; }
  40%  { width: calc(var(--tw-chars) * 1ch); }   /* fully typed */
  60%  { width: calc(var(--tw-chars) * 1ch); }   /* hold */
  100% { width: 0; }                              /* erase */
}

/* cursor blink */
@keyframes blinkCursor {
  50% { border-color: transparent; }
}


/* -------------------------------- */
/* MOBILE / TABLET FIXES            */
/* -------------------------------- */

@media (max-width: 900px) {
  .bf-hero-container{
    width: 100% !important;
    max-width: 100% !important;

  }

  .bf-hero{
    font-size: clamp(30px, 6vw, 52px);
  }

  .typewriter-glow{
    --tw-chars: 20;
    font-size: clamp(28px, 6vw, 44px);
    border-right-width: 2px;
  }
}

@media (max-width: 600px) {
  .bf-hero{
    font-size: clamp(24px, 7vw, 38px);
  }

  .typewriter-glow{
    --tw-chars: 18; /* shorter so it never clips */
    font-size: clamp(22px, 7vw, 34px);
    border-right-width: 2px;

    /* slightly softer glow on mobile */
    text-shadow:
      0 0 0px rgba(237,95,35,1),
      0 0 4px rgba(237,95,35,0.85),
      0 0 0px rgba(255,140,0,0.6);
  }
}

@media (max-width: 400px) {
  .typewriter-glow {
    --tw-chars: 16;
    font-size: 33px;
  }
}


/* -------------------------------- */
/* JUMP WRAPPER                     */
/* -------------------------------- */

.bf-jump {
  padding: 40px 0 20px;
}

.bf-jump__inner {
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 30px;
  box-sizing: border-box;
}

.bf-jump__sub {
  margin-top: -40px;
  color: #fff;
  font-size: 25px;
  margin-bottom: 24px;
  text-align: left;
  line-height: 1.1em;
}

/* GRID */
.bf-jump__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 1000px){
  .bf-jump__grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .bf-jump__grid{ grid-template-columns: 1fr; }
}


/* -------------------------------- */
/* CATEGORY CARDS (BLUE THEME)      */
/* -------------------------------- */

.bf-jump__card {
  display: block;
  text-align: left;
  padding: 30px;
  border-radius: 14px;
  text-decoration: none;

  /* all darks -> #1E293B family */
  background: linear-gradient(
    180deg,
    #1E293B 0%,
    rgba(237,95,35,0.12) 18%,
    #243447 60%,
    #1B2533 100%
  );

  border: 1px solid rgba(237,95,35,0.25);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* top glow bar */
.bf-jump__card::before {
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:3px;
  background: linear-gradient(90deg, transparent, #ED5F23, transparent);
}

/* text */
.bf-jump__eyebrow {
  padding-bottom: 10px;
  color:#fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform:uppercase;
  margin-bottom:6px;
}

.bf-jump__name {
  font-size:20px;
  font-weight:600;
  color:#ED5F23;
  line-height: 1.1em;
  margin-bottom:6px;
}

.bf-jump__meta {
  font-size:15px;
  color:#C7CFD9;
}

/* hover glow */
.bf-jump__card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 22px rgba(237,95,35,0.55),
    0 0 52px rgba(237,95,35,0.25);
}/* End custom CSS */