/* Páginas públicas de contenido (status, precios, contacto, términos,
   privacidad): mismas variables y look de la landing (public/index.html),
   pero pensadas para prosa en vez de para una única pantalla. */
:root {
  --bg: #eef1f5;
  --dot: rgba(16, 33, 61, 0.07);
  --fg: #10213d;
  --muted: #55637c;
  --card: #ffffff;
  --border: #d7dee7;
  --accent: #9c2b2b;
  --accent-fg: #ffffff;
  --ok: #26742f;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0e1420;
    --dot: rgba(255, 255, 255, 0.05);
    --fg: #eef1f6;
    --muted: #9aa6bb;
    --card: #161d2c;
    --border: #2a3448;
    --accent: #c1443b;
    --accent-fg: #ffffff;
    --ok: #9ece6a;
  }
}
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  min-height: 100%;
  padding: 24px;
  background-color: var(--bg);
  background-image: radial-gradient(var(--dot) 1px, transparent 1px);
  background-size: 18px 18px;
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
main {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(16, 33, 61, 0.06);
  padding: 44px 40px 36px;
  text-align: center;
}
.seal {
  width: 60px;
  height: 60px;
  margin: 0 auto 22px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.seal::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px dashed var(--accent);
  border-radius: 50%;
  opacity: 0.55;
}
.seal .pin {
  width: 15px;
  height: 15px;
  background: var(--accent);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 10px;
}
h1 {
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -0.01em;
  text-wrap: balance;
  margin: 0 0 28px;
}
h2 {
  font-size: 16px;
  font-weight: 650;
  margin: 28px 0 10px;
}
main > h1:last-child,
.prose > *:last-child,
.pricing-note:last-child {
  margin-bottom: 0;
}
p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 14px;
}
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 1px 5px;
  font-size: 0.92em;
  color: var(--accent);
}
a { color: var(--accent); }

/* Bloques de contenido: alineados a la izquierda dentro del card centrado,
   igual que .example/.params en la landing. */
.prose, .status-panel, .pricing-grid, .pricing-note, .contact-options {
  text-align: left;
}

.prose h2:first-child { margin-top: 0; }
.prose ul { margin: 0 0 14px; padding-left: 20px; color: var(--muted); font-size: 14.5px; line-height: 1.65; }
.prose li { margin-bottom: 4px; }
.prose strong { color: var(--fg); }
.prose .effective-date { font-size: 13px; color: var(--muted); margin-bottom: 24px; }

.cta {
  display: inline-block;
  background: var(--accent);
  color: var(--accent-fg);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 12px 24px;
  border-radius: 3px;
  transition: filter 0.15s ease;
}
.cta:hover { filter: brightness(1.1); }
.cta--ghost {
  background: none;
  color: var(--accent);
  border: 1px solid var(--border);
}
@media (prefers-reduced-motion: reduce) {
  .cta { transition: none; }
}

.back-link {
  display: inline-block;
  margin-top: 32px;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
}
.back-link:hover { color: var(--fg); text-decoration: underline; }

/* Estado del servicio */
.status-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.status-row:last-of-type { border-bottom: none; }
.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-ok { background: var(--ok); }
.status-down { background: var(--accent); }
.status-ok-text { color: var(--ok); font-weight: 600; }
.status-down-text { color: var(--accent); font-weight: 600; }
.status-row strong { display: block; font-size: 14.5px; }
.status-row .status-label { font-size: 13px; }
.status-note { font-size: 13px; margin-top: 20px; }

/* Precios */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 0 0 16px;
}
@media (max-width: 560px) {
  .pricing-grid { grid-template-columns: 1fr; }
}
.pricing-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 20px;
}
.pricing-card h2 { margin-top: 0; }
.pricing-card .price {
  font-size: 26px;
  font-weight: 650;
  color: var(--fg);
  margin: 0 0 16px;
}
.pricing-card .price span {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
}
.pricing-card ul {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  font-size: 13.5px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}
.pricing-card li::before { content: "✔ "; color: var(--accent); font-weight: 600; }
.pricing-card--soon { opacity: 0.85; }
.pricing-note { font-size: 12.5px; }

/* Contacto */
.contact-options {
  display: grid;
  gap: 12px;
  margin-bottom: 8px;
}
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 16px 18px;
  text-decoration: none;
  transition: border-color 0.15s ease;
}
.contact-card:hover { border-color: var(--accent); }
.contact-card__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-card__value {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
}
