/* === Variant 2 — Radar / Pulse (slim) === */
.v-radar {
  min-height: 100vh;
  background: radial-gradient(ellipse at 50% 0%, #E8F4FD 0%, var(--ce-paper) 55%);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.rd-page {
  flex: 1;
  position: relative;
  padding: 80px 0 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rd-radar {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 720px; height: 720px;
  pointer-events: none;
  z-index: 1;
}
.rd-ring {
  position: absolute;
  top: 50%; left: 50%;
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 1.5px solid var(--ce-blue);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.2);
  animation: rdPulse 5s linear infinite;
}
.rd-ring-1 { animation-delay: 0s; }
.rd-ring-2 { animation-delay: 1.25s; }
.rd-ring-3 { animation-delay: 2.5s; }
.rd-ring-4 { animation-delay: 3.75s; }
@keyframes rdPulse {
  0%   { opacity: 0;    transform: translate(-50%, -50%) scale(0.2); border-width: 2px; }
  20%  { opacity: 0.55; }
  100% { opacity: 0;    transform: translate(-50%, -50%) scale(3.6); border-width: 0.5px; }
}
.rd-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 200px; height: 200px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 24px 60px -20px rgba(31, 169, 240, 0.35), 0 0 0 1px rgba(31, 169, 240, 0.10);
}

.rd-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-top: 240px;
}
.rd-content .ce-eyebrow { justify-content: center; }

.rd-h1 {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin: 22px 0 22px;
  color: var(--ce-ink);
  text-wrap: balance;
}
.rd-lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ce-muted);
  max-width: 600px;
  margin: 0 auto;
  text-wrap: pretty;
}

@media (max-width: 720px) {
  .rd-radar { width: 520px; height: 520px; }
  .rd-content { padding-top: 200px; }
}
