/* RSH AI landing — hero launch: primary CTA, quiet countdown, demoted FAQ. */

/* ---------- primary hero CTA — the money action, right under the headline ---------- */
.hero-cta-wrap {
  margin-top: clamp(20px, 3.2vh, 34px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 13px;
  background: var(--blue);
  color: #fff;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  box-shadow: 0 10px 26px -12px color-mix(in srgb, var(--blue) 70%, transparent),
              inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.hero-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 16px 34px -12px color-mix(in srgb, var(--blue) 78%, transparent),
              inset 0 1px 0 rgba(255, 255, 255, 0.24);
}
.hero-cta:active { transform: translateY(0); }
.hero-cta .hc-arrow { transition: transform 0.18s ease; }
.hero-cta:hover .hc-arrow { transform: translateX(3px); }
.hero-cta-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--ink-60);
}
.hero-cta-note .hc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #18c782;
  box-shadow: 0 0 0 4px color-mix(in srgb, #18c782 12%, transparent);
}

/* ---------- countdown demoted to a quiet grey line (no competing glass box) ---------- */
.door .uptime { top: 12px; right: 15px; gap: 6px; }
.door .ut-cap { font-size: 8px; color: var(--ink-40); }
.door .ut-clock {
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  gap: 5px;
}
.door .ut-cell b { font-size: 11px; font-weight: 500; color: var(--ink-40); }
.door .ut-cell i { font-size: 8px; font-weight: 500; color: var(--ink-40); }
.door .ut-cell:last-child b { color: var(--ink-40); }

/* ---------- FAQ demoted below the hero fold, centered under the row ---------- */
.faq-below {
  margin: clamp(6px, 1.2vh, 16px) auto 0;
}
