.rvc-founder-banner {
  --founder-cyan: #32e5f5;
  --founder-panel: rgba(5, 21, 28, .97);
  --founder-line: rgba(50, 229, 245, .34);
  position: relative;
  z-index: 12;
  border-bottom: 1px solid var(--founder-line);
  background:
    radial-gradient(circle at 18% 0, rgba(50, 229, 245, .14), transparent 34rem),
    linear-gradient(90deg, #07161d, #041015 55%, #07161d);
  color: #f5fcfe;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .18);
}

.rvc-founder-banner__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(250px, .8fr) auto;
  gap: 24px;
  align-items: center;
  min-height: 112px;
  padding-block: 18px;
}

.rvc-founder-banner__copy {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.rvc-founder-banner__signal {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 151, 59, .42);
  border-radius: 13px;
  background: rgba(255, 117, 30, .09);
  font-size: 22px;
}

.rvc-founder-banner h2 {
  margin: 0 0 5px;
  color: #fff;
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.15;
  letter-spacing: -.025em;
}

.rvc-founder-banner p {
  margin: 0;
  color: #a9c1c9;
  font-size: 13px;
  line-height: 1.5;
}

.rvc-founder-banner__count {
  margin-bottom: 9px;
  color: #dffbff;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.rvc-founder-banner__progress {
  height: 9px;
  overflow: hidden;
  border: 1px solid rgba(50, 229, 245, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
}

.rvc-founder-banner__progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #13b8d5, var(--founder-cyan));
  box-shadow: 0 0 20px rgba(50, 229, 245, .55);
  transition: width .45s ease;
}

.rvc-founder-banner__cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 11px 17px;
  border: 1px solid rgba(50, 229, 245, .58);
  border-radius: 11px;
  background: rgba(50, 229, 245, .11);
  color: #eaffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .025em;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .18s ease, background .18s ease;
}

.rvc-founder-banner__cta:hover {
  transform: translateY(-2px);
  background: rgba(50, 229, 245, .18);
}

@media (max-width: 940px) {
  .rvc-founder-banner__inner {
    grid-template-columns: 1fr auto;
  }

  .rvc-founder-banner__status {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 640px) {
  .rvc-founder-banner__inner {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .rvc-founder-banner__cta,
  .rvc-founder-banner__status {
    grid-column: auto;
  }

  .rvc-founder-banner__cta {
    width: 100%;
  }
}

/* RVC Founder Preview moving banner */
.rvc-founder-banner__ticker {
  overflow: hidden;
  border-bottom: 1px solid rgba(50, 229, 245, .18);
  background: rgba(0, 0, 0, .30);
}

.rvc-founder-banner__ticker-track {
  display: flex;
  width: max-content;
  min-width: 200%;
  align-items: center;
  gap: 42px;
  padding: 9px 0;
  color: #dffbff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
  animation: rvc-founder-marquee 34s linear infinite;
}

.rvc-founder-banner__ticker-track span {
  white-space: nowrap;
}

.rvc-founder-banner__ticker:hover
.rvc-founder-banner__ticker-track,
.rvc-founder-banner__ticker:focus-within
.rvc-founder-banner__ticker-track {
  animation-play-state: paused;
}

@keyframes rvc-founder-marquee {
  from {
    transform: translateX(0);
  }

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

@media (prefers-reduced-motion: reduce) {
  .rvc-founder-banner__ticker-track {
    width: auto;
    min-width: 0;
    flex-wrap: wrap;
    justify-content: center;
    animation: none;
    transform: none;
  }

  .rvc-founder-banner__ticker-track
  [aria-hidden="true"] {
    display: none;
  }
}
