/* ============ Medupport — Coming soon (una sola página, sin JS) ============ */

:root {
  --azul: #1f4e79;
  --azul-claro: #79aede;
  --bg: #0a1a2b;
  --panel: rgba(255, 255, 255, 0.045);
  --panel-borde: rgba(255, 255, 255, 0.09);
  --texto: #e9eef4;
  --texto-suave: #9db0c2;
  --titulo: #f8f4ec;
  --acento: #e9a24d;
  --radio: 16px;
  --font-titulo: "Bricolage Grotesque", "Inter", -apple-system, "Segoe UI", sans-serif;
  --font-texto: "Inter", -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-texto);
  color: var(--texto);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16.5px;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

/* ---- Glows de fondo ---- */
.glow {
  position: fixed; border-radius: 50%; pointer-events: none; z-index: 0;
  filter: blur(90px); opacity: 0.55;
}
.glow-a {
  width: 640px; height: 640px; top: -240px; right: -180px;
  background: radial-gradient(circle, rgba(63, 124, 182, 0.35), transparent 65%);
}
.glow-b {
  width: 520px; height: 520px; bottom: -220px; left: -200px;
  background: radial-gradient(circle, rgba(233, 162, 77, 0.16), transparent 65%);
}

.shell, .site-footer { position: relative; z-index: 1; }
.shell { flex: 1; padding: clamp(56px, 11vh, 104px) 0 72px; }

/* ---- Marca ---- */
.brand {
  font-family: var(--font-titulo);
  font-size: 1.5rem; font-weight: 700; letter-spacing: -0.01em;
  color: var(--titulo);
  display: flex; width: fit-content; align-items: center; gap: 9px;
  margin-bottom: 40px;
}
.brand span { color: var(--acento); margin-left: -9px; }
.brand-mark { width: 1.15em; height: 1.15em; flex: none; color: var(--acento); }

/* ---- Eyebrow "en preparación" ---- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.74rem; font-weight: 600; color: var(--acento);
  background: rgba(233, 162, 77, 0.1);
  border: 1px solid rgba(233, 162, 77, 0.28);
  padding: 7px 15px; border-radius: 999px;
  margin-bottom: 22px;
}
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--acento); flex: none;
  animation: pulso 2.4s ease-in-out infinite;
}
@keyframes pulso {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.35; transform: scale(0.8); }
}

/* ---- Titular y bajada ---- */
h1 {
  font-family: var(--font-titulo); font-weight: 700;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  line-height: 1.06; letter-spacing: -0.025em;
  color: var(--titulo);
  max-width: 15ch;
}
h1 em { font-style: normal; color: var(--acento); }

.lead {
  margin-top: 22px;
  font-size: clamp(1.02rem, 1.9vw, 1.16rem);
  color: var(--texto-suave);
  max-width: 62ch;
}
.lead strong { color: var(--texto); font-weight: 600; }

/* ---- Qué cubrimos ---- */
.scope {
  list-style: none;
  margin: 48px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.scope li {
  background: var(--panel);
  border: 1px solid var(--panel-borde);
  border-radius: var(--radio);
  padding: 22px 22px 24px;
}
.scope-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 11px;
  background: rgba(63, 124, 182, 0.18);
  color: var(--azul-claro);
  margin-bottom: 14px;
}
.scope-icon svg { width: 20px; height: 20px; }
.scope h2 {
  font-family: var(--font-titulo); font-weight: 600;
  font-size: 1.05rem; color: var(--titulo);
  margin-bottom: 4px; line-height: 1.2;
}
.scope p { color: var(--texto-suave); font-size: 0.94rem; }

/* ---- Banda conceptual ---- */
.quote {
  margin-top: 48px;
  padding-left: 22px;
  border-left: 3px solid var(--acento);
  font-family: var(--font-titulo);
  font-size: clamp(1.15rem, 2.6vw, 1.5rem);
  line-height: 1.35; letter-spacing: -0.015em;
  color: var(--titulo);
  max-width: 34ch;
}

/* ---- Cierre ---- */
.soon {
  margin-top: 46px;
  font-size: 1rem;
  color: var(--texto-suave);
}
.soon span { color: var(--acento); font-weight: 600; }

/* ---- Footer ---- */
.site-footer {
  border-top: 1px solid var(--panel-borde);
  padding: 26px 0 34px;
  color: var(--texto-suave);
  font-size: 0.86rem;
}
.site-footer .fine { margin-top: 6px; font-size: 0.78rem; opacity: 0.7; }

/* ---- Responsive ---- */
@media (max-width: 640px) {
  .scope { grid-template-columns: 1fr; }
  .brand { margin-bottom: 30px; }
  .quote { margin-top: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  .dot { animation: none; }
}
