/* =========================================================================
   /readiness — B2B Colombia Market-Entry Assessment
   Extends /vitalidad.css tokens; only adds the hero-specific composition.
   ========================================================================= */

.rd-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 120px 6vw 80px;
  overflow: hidden;
}

.rd-hero-stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.rd-hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(242, 238, 230, 0.08);
  aspect-ratio: 1;
}
.rd-hero-ring--1 { width: 28vmin; animation: rdPulse 6s ease-in-out infinite; }
.rd-hero-ring--2 { width: 46vmin; animation: rdPulse 8s ease-in-out infinite reverse; opacity: 0.7; }
.rd-hero-ring--3 { width: 68vmin; animation: rdPulse 11s ease-in-out infinite; opacity: 0.5; }

@keyframes rdPulse {
  0%, 100% { transform: scale(1); border-color: rgba(242, 238, 230, 0.08); }
  50% { transform: scale(1.05); border-color: rgba(200, 54, 42, 0.22); }
}

.rd-hero-core {
  position: absolute;
  display: grid;
  place-items: center;
  gap: 8px;
  z-index: 2;
}
.rd-hero-core-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  box-shadow:
    0 0 0 8px rgba(200, 54, 42, 0.12),
    0 0 40px rgba(200, 54, 42, 0.6);
  animation: rdHeart 2.4s ease-in-out infinite;
}
@keyframes rdHeart {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.25); }
}
.rd-hero-core-label {
  font: 500 10px/1 "Inter", sans-serif;
  letter-spacing: 0.22em;
  color: rgba(242, 238, 230, 0.55);
  text-transform: uppercase;
}

.rd-hero-sat {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(var(--a)) translateY(calc(-1 * var(--r))) rotate(calc(-1 * var(--a)));
  display: flex;
  align-items: center;
  gap: 8px;
  animation: rdFloat 6s ease-in-out infinite;
  animation-delay: calc(var(--i) * -0.7s);
}
@keyframes rdFloat {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.rd-hero-sat-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(242, 238, 230, 0.8);
  box-shadow: 0 0 12px rgba(242, 238, 230, 0.35);
  flex: 0 0 auto;
}
.rd-hero-sat-label {
  font: 500 10px/1 "Inter", sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242, 238, 230, 0.72);
  white-space: nowrap;
}

.rd-hero-center {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 720px;
  background: radial-gradient(ellipse at center, rgba(11, 14, 20, 0.85) 0%, rgba(11, 14, 20, 0) 70%);
  padding: 40px 20px;
}

.rd-hero-title {
  font: 300 clamp(48px, 8vw, 104px)/1.02 "Inter", sans-serif;
  letter-spacing: -0.03em;
  color: #F2EEE6;
  margin: 24px 0 24px;
}
.rd-hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--red);
}
.rd-hero-sub {
  font: 400 17px/1.7 "Inter", sans-serif;
  color: rgba(242, 238, 230, 0.72);
  max-width: 560px;
  margin: 0 auto;
}

/* Section chrome — reuse vitalidad language but for B2B copy */
.rd-page .vt-hero-h em { color: var(--red); }

@media (max-width: 820px) {
  .rd-hero { padding: 100px 5vw 60px; }
  .rd-hero-sat-label { display: none; }
  .rd-hero-ring--3 { width: 90vmin; }
}
