/* Home launch banner for Pulse for Navisworks. */
.navis-launch {
  width: min(calc(100% - 48px), var(--maxw));
  margin: clamp(96px, 11vw, 128px) auto clamp(12px, 1vw, 16px);
  padding: clamp(28px, 5vw, 56px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 5vw, 60px);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(111, 210, 255, 0.34);
  border-radius: 24px;
  background:
    radial-gradient(circle at 10% 20%, rgba(111, 210, 255, 0.18), transparent 31%),
    radial-gradient(circle at 92% 85%, rgba(112, 174, 255, 0.14), transparent 35%),
    linear-gradient(130deg, rgba(10, 23, 34, 0.94), rgba(4, 7, 12, 0.98));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}
.navis-launch::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
  transform: translateX(-100%);
  animation: navis-banner-sweep 7s ease-in-out infinite;
}
.navis-launch__mark { width: clamp(94px, 15vw, 154px); aspect-ratio: 1; position: relative; flex: 0 0 auto; }
.navis-launch__mark span { position: absolute; border-radius: 50%; left: 50%; top: 50%; transform: translate(-50%, -50%); }
.navis-launch__mark span:first-child { width: 100%; height: 100%; border: 2px solid rgba(111,210,255,.9); box-shadow: 0 0 30px rgba(111,210,255,.35), inset 0 0 30px rgba(111,210,255,.1); }
.navis-launch__mark span:nth-child(2) { width: 66%; height: 66%; border: 1px solid rgba(244,251,255,.72); }
.navis-launch__mark-dot {
  width: 22%;
  height: 22%;
  background: #6fd2ff;
  box-shadow: 0 0 28px 8px rgba(111,210,255,.58);
  animation: navis-new-core-pulse 2.2s cubic-bezier(.4, 0, .2, 1) infinite;
}
.navis-launch__content { position: relative; z-index: 1; }
.navis-launch__eyebrow { color: var(--accent-soft); font: 800 clamp(12px, 1.18vw, 15px)/1.25 var(--font-mono); letter-spacing: .18em; margin-bottom: 16px; text-transform: uppercase; }
.navis-launch__title { color: var(--text-head); font-size: clamp(28px, 4.2vw, 54px); letter-spacing: -.055em; line-height: .98; max-width: 740px; }
.navis-launch__body { max-width: 720px; margin-top: 18px; color: var(--text-strong); font-size: clamp(15px, 1.8vw, 18px); line-height: 1.6; }
.navis-launch__actions { margin-top: 24px; display: flex; flex-wrap: wrap; align-items: center; gap: 14px 18px; }
.navis-launch__cta { white-space: nowrap; }
@keyframes navis-banner-sweep { 0%, 75%, 100% { transform: translateX(-115%); } 88% { transform: translateX(115%); } }
@keyframes navis-new-core-pulse {
  0%, 42%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 28px 8px rgba(111,210,255,.58); }
  12% { transform: translate(-50%, -50%) scale(1.24); box-shadow: 0 0 38px 13px rgba(111,210,255,.78); }
  24% { transform: translate(-50%, -50%) scale(1.07); box-shadow: 0 0 31px 10px rgba(111,210,255,.66); }
}
@media (max-width: 640px) {
  .navis-launch { width: min(calc(100% - 32px), var(--maxw)); margin: clamp(64px, 16vw, 96px) auto clamp(32px, 8vw, 52px); grid-template-columns: 1fr; gap: 22px; border-radius: 18px; }
  .navis-launch__mark { width: 78px; }
  .navis-launch__title { font-size: clamp(29px, 9vw, 42px); }
}
@media (prefers-reduced-motion: reduce) {
  .navis-launch::before { animation: none; }
  .navis-launch__mark-dot { animation: none; }
}
