/* [project]/app/components/HeroBanner.css [app-client] (css) */
.hero, .hero *, .hero :before, .hero :after {
  box-sizing: border-box;
}

.hero {
  isolation: isolate;
  color: #f5f5f7;
  background: #05060a;
  place-items: center;
  width: 100%;
  max-width: 100%;
  min-height: 100dvh;
  padding: 5rem 1.25rem 4rem;
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  display: grid;
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: "";
  z-index: -3;
  filter: blur(40px) saturate(140%);
  background: radial-gradient(40% 40% at 20% 30%, #7c3aed8c, #0000 60%), radial-gradient(45% 45% at 80% 20%, #0ea5e973, #0000 60%), radial-gradient(50% 50% at 60% 80%, #ec489966, #0000 60%), radial-gradient(60% 60% at 10% 90%, #22c55e47, #0000 65%);
  animation: 22s ease-in-out infinite alternate drift;
  position: absolute;
  inset: -20%;
}

.hero:after {
  content: "";
  z-index: -2;
  background-image: linear-gradient(#ffffff0d 1px, #0000 1px), linear-gradient(90deg, #ffffff0d 1px, #0000 1px);
  background-size: 48px 48px;
  position: absolute;
  inset: 0;
  -webkit-mask-image: radial-gradient(#000 35%, #0000 75%);
  mask-image: radial-gradient(#000 35%, #0000 75%);
}

@keyframes drift {
  0% {
    transform: translate3d(0, 0, 0)scale(1);
  }

  50% {
    transform: translate3d(3%, -2%, 0)scale(1.08);
  }

  100% {
    transform: translate3d(-2%, 3%, 0)scale(1.04);
  }
}

.orb {
  z-index: -1;
  filter: blur(50px);
  opacity: .6;
  pointer-events: none;
  will-change: transform;
  border-radius: 50%;
  transition: transform .4s cubic-bezier(.2, .9, .2, 1);
  position: absolute;
}

.orb-1 {
  width: 60vmin;
  max-width: 520px;
  height: 60vmin;
  max-height: 520px;
  transform: translate3d(calc(var(--mx, 0) * 40px), calc(var(--my, 0) * 40px), 0);
  background: radial-gradient(circle, #7c3aed, #0000 70%);
  top: -15vmin;
  left: -15vmin;
}

.orb-2 {
  width: 55vmin;
  max-width: 420px;
  height: 55vmin;
  max-height: 420px;
  transform: translate3d(calc(var(--mx, 0) * -50px), calc(var(--my, 0) * -35px), 0);
  background: radial-gradient(circle, #06b6d4, #0000 70%);
  bottom: -18vmin;
  right: -12vmin;
}

.orb-3 {
  width: 45vmin;
  max-width: 360px;
  height: 45vmin;
  max-height: 360px;
  transform: translate3d(calc(var(--mx, 0) * 25px), calc(var(--my, 0) * -25px), 0);
  background: radial-gradient(circle, #ec4899, #0000 70%);
  top: 45%;
  left: 55%;
}

.hero-inner {
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  max-width: min(1100px, 100%);
  display: flex;
  position: relative;
}

.badge {
  -webkit-backdrop-filter: blur(12px);
  letter-spacing: .02em;
  color: #f5f5f7d9;
  opacity: 0;
  background: #ffffff0f;
  border: 1px solid #ffffff1f;
  border-radius: 999px;
  align-items: center;
  gap: .55rem;
  max-width: 100%;
  padding: .45rem .9rem;
  font-size: .8rem;
  animation: .9s cubic-bezier(.22, 1, .36, 1) 50ms forwards rise;
  display: inline-flex;
  transform: translateY(14px);
}

.badge-dot {
  background: #22c55e;
  border-radius: 50%;
  flex: none;
  width: 8px;
  height: 8px;
  animation: 2.2s ease-out infinite pulse;
  box-shadow: 0 0 #22c55ecc;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 #22c55eb3;
  }

  70% {
    box-shadow: 0 0 0 14px #22c55e00;
  }

  100% {
    box-shadow: 0 0 #22c55e00;
  }
}

.headline {
  letter-spacing: -.03em;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
  opacity: 0;
  max-width: 100%;
  margin: 0;
  font-size: clamp(2rem, 9vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  animation: 1s cubic-bezier(.22, 1, .36, 1) .15s forwards rise;
  transform: translateY(24px);
}

.headline .shine {
  background: linear-gradient(110deg, #fff 0%, #a78bfa 25%, #22d3ee 50%, #f472b6 75%, #fff 100%) 0 0 / 220% 100%;
  color: #0000;
  -webkit-background-clip: text;
  background-clip: text;
  animation: 6s linear infinite shimmer;
  display: inline-block;
}

@keyframes shimmer {
  0% {
    background-position: 0%;
  }

  100% {
    background-position: 220%;
  }
}

.subline {
  color: #e6e6f0bf;
  opacity: 0;
  max-width: 640px;
  margin: 0;
  font-size: clamp(.95rem, 2.2vw, 1.2rem);
  line-height: 1.6;
  animation: 1s cubic-bezier(.22, 1, .36, 1) .3s forwards rise;
  transform: translateY(20px);
}

.cta-row {
  opacity: 0;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  width: 100%;
  max-width: 420px;
  margin-top: .25rem;
  animation: 1s cubic-bezier(.22, 1, .36, 1) .45s forwards rise;
  display: flex;
  transform: translateY(18px);
}

.btn {
  letter-spacing: .01em;
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid #0000;
  border-radius: 999px;
  flex: 160px;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  min-width: 0;
  padding: .85rem 1.4rem;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform .24s, box-shadow .24s, background .24s;
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  color: #0b0b14;
  background: linear-gradient(135deg, #fff 0%, #e0e7ff 100%);
  box-shadow: 0 10px 30px -10px #a78bfa80, inset 0 1px #fff9;
}

.btn-primary:after {
  content: "";
  background: linear-gradient(120deg, #0000 30%, #fffc 50%, #0000 70%);
  transition: transform .7s;
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -12px #a78bfab3, inset 0 1px #fff9;
}

.btn-primary:hover:after {
  transform: translateX(120%);
}

.btn-arrow {
  transition: transform .24s;
  display: inline-block;
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-ghost {
  color: #f5f5f7;
  -webkit-backdrop-filter: blur(10px);
  background: #ffffff0a;
  border-color: #ffffff26;
}

.btn-ghost:hover {
  background: #ffffff1a;
  border-color: #ffffff47;
  transform: translateY(-2px);
}

.trust {
  opacity: 0;
  border-top: 1px solid #ffffff14;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1rem;
  width: 100%;
  max-width: 760px;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  animation: 1s cubic-bezier(.22, 1, .36, 1) .7s forwards rise;
  display: grid;
  transform: translateY(20px);
}

.trust-item {
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  min-width: 0;
  display: flex;
}

.trust-value {
  letter-spacing: -.02em;
  background: linear-gradient(135deg, #fff, #a5b4fc);
  color: #0000;
  white-space: nowrap;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(1.2rem, 3.5vw, 1.6rem);
  font-weight: 700;
}

.trust-label {
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #e6e6f08c;
  text-align: center;
  font-size: .7rem;
}

.scroll-cue {
  opacity: 0;
  border: 1.5px solid #ffffff4d;
  border-radius: 14px;
  place-items: start center;
  width: 24px;
  height: 38px;
  padding-top: 6px;
  animation: 1s 1.1s forwards fade;
  display: grid;
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-cue:before {
  content: "";
  background: #ffffffb3;
  border-radius: 2px;
  width: 3px;
  height: 8px;
  animation: 1.8s ease-in-out infinite scroll;
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  70% {
    opacity: 0;
    transform: translateY(12px);
  }

  100% {
    opacity: 0;
    transform: translateY(0);
  }
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade {
  to {
    opacity: 1;
  }
}

@media (max-height: 640px) {
  .scroll-cue {
    display: none;
  }
}

@media (min-width: 480px) {
  .btn {
    flex: none;
  }

  .cta-row {
    gap: .9rem;
    max-width: none;
  }
}

@media (min-width: 640px) {
  .hero {
    padding: 6rem 2rem 5rem;
  }

  .hero-inner {
    gap: 1.5rem;
  }

  .badge {
    padding: .5rem 1rem;
    font-size: .85rem;
  }

  .trust {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem clamp(1.5rem, 4vw, 3rem);
    margin-top: 2.5rem;
    padding-top: 2rem;
  }

  .trust-label {
    font-size: .75rem;
  }

  .btn {
    padding: .95rem 1.6rem;
    font-size: .98rem;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: 8rem 3rem 6rem;
  }

  .hero:after {
    background-size: 64px 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero:before, .badge-dot, .headline .shine, .scroll-cue:before {
    animation: none;
  }

  .badge, .headline, .subline, .cta-row, .trust, .scroll-cue {
    opacity: 1;
    animation: none;
    transform: none;
  }

  .orb {
    transition: none;
  }
}

/*# sourceMappingURL=app_components_HeroBanner_0vp54h3.css.map*/