/* Slopes — Estilos del archive /slopes/, single /slopes/{slug}/ y formulario suscripción. */

/* ------------------------------------------------------------------------
 * ARCHIVE — /slopes/ (grid de tiles cuadrados)
 * ------------------------------------------------------------------------ */
.hk-slopes-archive {
  --hk-slopes-bg: #0f1a2c;
  --hk-slopes-ink: #f4f6fb;
  background: var(--hk-slopes-bg);
  color: var(--hk-slopes-ink);
  padding: 60px 20px 80px;
  padding-top: calc(var(--hk-site-header-height, 60px) + 60px);
  min-height: 60vh;
}
.hk-slopes-archive__container { max-width: 1100px; margin: 0 auto; }
.hk-slopes-archive__title {
  text-align: center;
  font-family: var(--wp--preset--font-family--montserrat, "Montserrat", sans-serif);
  font-size: clamp(1.8rem, 4.2vw, 2.6rem);
  font-weight: 900;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.hk-slopes-archive__intro {
  text-align: center;
  color: rgba(244,246,251,0.72);
  font-size: 1rem;
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.6;
}
.hk-slopes-archive__empty { text-align: center; opacity: 0.7; }

.hk-slopes-section { margin: 0 0 56px; }
.hk-slopes-section:last-child { margin-bottom: 0; }
.hk-slopes-section__header {
  display: flex;
  justify-content: center;
  margin: 0 0 24px;
}
.hk-slopes-section__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  font-family: var(--wp--preset--font-family--montserrat, "Montserrat", sans-serif);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: rgba(244,246,251,0.88);
  backdrop-filter: blur(6px);
}
.hk-slopes-section__pill--upcoming {
  background: rgba(0, 204, 217, 0.14);
  border-color: rgba(0, 204, 217, 0.5);
  color: #7fe8f1;
}
.hk-slopes-section__pill--ongoing {
  background: rgba(255, 205, 68, 0.16);
  border-color: rgba(255, 205, 68, 0.55);
  color: #ffdd87;
}
.hk-slopes-section__pill--completed {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  color: rgba(244,246,251,0.7);
}

.hk-slopes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.hk-slope-tile {
  --tile-bg: #121e36;
  --tile-accent: #00CCD9;
  --tile-text: #ffffff;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--tile-bg);
  color: var(--tile-text);
  border-radius: 20px;
  padding: 40px 24px 28px;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.25);
  transition: transform .25s ease, box-shadow .25s ease;
  text-decoration: none;
  overflow: hidden;
}
.hk-slope-tile:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35); color: var(--tile-text); }
.hk-slope-tile__accent { position: absolute; top: 0; left: 0; right: 0; height: 5px; background: var(--tile-accent); }
.hk-slope-tile__duration {
  margin-top: auto;
  display: inline-block; padding: 4px 10px; border-radius: 999px;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  background: var(--tile-accent); color: var(--tile-bg);
}
.hk-slope-tile__logo {
  width: 96px; height: 96px;
  border-radius: 22px; object-fit: cover; margin-bottom: 16px;
  background: rgba(255,255,255,0.08);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.hk-slope-tile__logo--ph {
  width: 96px; height: 96px; border-radius: 22px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; font-weight: 900; background: var(--tile-accent);
}
.hk-slope-tile__name {
  font-family: var(--wp--preset--font-family--montserrat, "Montserrat", sans-serif);
  font-size: 1.15rem; font-weight: 800; margin: 0 0 4px; line-height: 1.25;
}
.hk-slope-tile__year {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  opacity: 0.5; margin: 0 0 10px;
}
@media (max-width: 600px) {
  .hk-slopes-section { margin: 0 0 40px; }
  .hk-slopes-section__header { margin: 0 0 18px; }
  .hk-slopes-section__pill { padding: 7px 14px; font-size: 0.7rem; letter-spacing: 0.12em; }
  .hk-slopes-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .hk-slope-tile { padding: 28px 14px 22px; border-radius: 16px; }
  .hk-slope-tile__duration { padding: 3px 8px; font-size: 0.62rem; }
  .hk-slope-tile__logo,
  .hk-slope-tile__logo--ph { width: 64px; height: 64px; border-radius: 16px; margin-bottom: 12px; }
  .hk-slope-tile__logo--ph { font-size: 24px; }
  .hk-slope-tile__name { font-size: 0.95rem; }
  .hk-slope-tile__year { font-size: 0.65rem; }
}

/* ------------------------------------------------------------------------
 * SINGLE — /slopes/{slug}/
 * Hero vertical con imagen póster por slope (ratio 9:16) + info.
 * ------------------------------------------------------------------------ */
.hk-slope-page {
  --slope-bg: #0f1a2c;
  --slope-text: #f5f6fa;
  --slope-accent: #00CCD9;
  background: var(--slope-bg);
  color: var(--slope-text);
  min-height: 100vh;
  padding-bottom: 100px;
  position: relative;
}

/* Botón volver a /slopes/ (arriba izq) */
.hk-slope-page .hk-slope-back,
.hk-slope-page a.hk-slope-back {
  position: absolute;
  top: calc(var(--hk-site-header-height, 60px) + 16px);
  left: 20px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,0.55);
  color: #ffffff !important;
  font-family: var(--wp--preset--font-family--montserrat, "Montserrat", sans-serif);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  transition: background .15s ease, transform .15s ease, border-color .15s ease;
}
.hk-slope-page .hk-slope-back:hover,
.hk-slope-page a.hk-slope-back:hover {
  background: rgba(0,0,0,0.75);
  border-color: rgba(255,255,255,0.5);
  color: #ffffff !important;
  transform: translateX(-2px);
}
.hk-slope-back__arrow { font-size: 1.05rem; line-height: 1; font-weight: 800; }
.hk-slope-back__label { white-space: nowrap; }
@media (max-width: 600px) {
  .hk-slope-page .hk-slope-back,
  .hk-slope-page a.hk-slope-back {
    top: calc(var(--hk-site-header-height, 56px) + 10px);
    left: 12px;
    padding: 9px 16px 9px 12px;
    font-size: 0.82rem;
    gap: 8px;
  }
  .hk-slope-back__arrow { font-size: 1rem; }
}
.hk-slope-page * { box-sizing: border-box; }
.hk-slope-page a { color: var(--slope-accent); }

.hk-slope-hero {
  position: relative;
  padding: calc(var(--hk-site-header-height, 60px) + 24px) 16px 32px;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.hk-slope-hero__poster {
  position: relative;
  width: min(96vw, 1200px);
  aspect-ratio: 16/9;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(0,0,0,0.45);
  isolation: isolate;
}
@media (max-width: 600px) {
  .hk-slope-hero { padding-top: calc(var(--hk-site-header-height, 56px) + 16px); }
  .hk-slope-hero__poster { aspect-ratio: 4/3; border-radius: 22px; }
}
.hk-slope-hero__bg {
  position: absolute; inset: 0;
  background-image: var(--slope-hero);
  background-size: cover;
  background-position: center;
  background-color: var(--slope-bg);
  z-index: 0;
}
.hk-slope-hero__overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.25) 45%, rgba(0,0,0,0.82) 100%);
}
.hk-slope-hero__inner {
  position: absolute; inset: 0;
  z-index: 2;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 28px 26px 30px;
  text-align: center;
}
.hk-slope-hero__logo {
  width: 86px; height: 86px;
  border-radius: 18px;
  object-fit: cover;
  margin: 0 0 14px;
  background: rgba(255,255,255,0.1);
  box-shadow: 0 6px 18px rgba(0,0,0,0.45);
}
.hk-slope-hero__year {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.68);
  margin: 0 0 6px;
}
.hk-slope-hero__title {
  font-family: var(--wp--preset--font-family--montserrat, "Montserrat", sans-serif);
  font-size: clamp(1.6rem, 4.2vw, 2.4rem);
  font-weight: 900;
  line-height: 1.08;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 4px 18px rgba(0,0,0,0.5);
}
.hk-slope-hero__meta {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
}
.hk-slope-hero__meta-date {
  display: inline-flex; align-items: center;
  padding: 5px 11px; border-radius: 999px;
  background: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.92);
  font-size: 0.74rem; font-weight: 600;
  backdrop-filter: blur(3px);
}
.hk-slope-hero__meta-pill {
  display: inline-flex; align-items: center;
  padding: 5px 11px; border-radius: 999px;
  background: var(--slope-accent); color: #0b1324;
  font-size: 0.72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.hk-slope-hero__meta-state {
  display: inline-flex; align-items: center;
  padding: 5px 11px; border-radius: 999px;
  background: rgba(255,255,255,0.22); color: #fff;
  font-size: 0.72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.hk-slope-hero__meta-state--closed { background: rgba(255,255,255,0.14); color: rgba(255,255,255,0.75); }

/* Intro / descripción */
.hk-slope-intro {
  max-width: 720px;
  margin: 6px auto 0;
  padding: 24px 24px 0;
}
.hk-slope-intro__inner {
  font-size: 1.05rem; line-height: 1.65;
  color: color-mix(in srgb, var(--slope-text, #f5f6fa) 88%, transparent);
  text-align: center;
}
.hk-slope-intro__inner p { margin: 0 0 1em; }
.hk-slope-intro__inner p:last-child { margin-bottom: 0; }

/* Form suscripción */
.hk-slope-subscribe-wrap { max-width: 560px; margin: 36px auto 0; padding: 0 24px; }
.hk-slope-subscribe {
  background: color-mix(in srgb, var(--slope-text, #f5f6fa) 6%, transparent);
  border: 1px solid color-mix(in srgb, var(--slope-text, #f5f6fa) 14%, transparent);
  border-radius: 18px;
  padding: 22px 22px 18px;
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.28);
}
.hk-slope-subscribe__title { margin: 0 0 6px; font-size: 1.15rem; font-weight: 800; color: var(--slope-text, #fff); }
.hk-slope-subscribe__lead { margin: 0 0 14px; font-size: 0.92rem; color: color-mix(in srgb, var(--slope-text, #fff) 72%, transparent); }
.hk-slope-subscribe__row { display: flex; gap: 8px; flex-wrap: wrap; }
.hk-slope-subscribe__email {
  flex: 1 1 220px; min-width: 0;
  padding: 12px 14px;
  border: 1px solid color-mix(in srgb, var(--slope-text, #fff) 20%, transparent);
  border-radius: 10px;
  font-size: 1rem;
  background: color-mix(in srgb, var(--slope-text, #fff) 8%, transparent);
  color: var(--slope-text, #fff);
}
.hk-slope-subscribe__email::placeholder { color: color-mix(in srgb, var(--slope-text, #fff) 48%, transparent); }
.hk-slope-subscribe__email:focus { outline: 2px solid var(--slope-accent); outline-offset: 1px; }
.hk-slope-subscribe__submit {
  padding: 12px 20px; border: 0; border-radius: 10px;
  background: var(--slope-accent); color: #0b1324;
  font-weight: 800; font-size: 0.98rem;
  cursor: pointer;
  transition: filter 0.15s ease, transform .12s ease;
}
.hk-slope-subscribe__submit:hover { filter: brightness(1.08); transform: translateY(-1px); }
.hk-slope-subscribe__submit[disabled] { opacity: 0.6; cursor: not-allowed; }
.hk-slope-subscribe__hp { position: absolute; left: -9999px; top: -9999px; opacity: 0; pointer-events: none; }
.hk-slope-subscribe__msg { margin: 10px 0 0; min-height: 1.25em; font-size: 0.92rem; color: color-mix(in srgb, var(--slope-text, #fff) 85%, transparent); }
.hk-slope-subscribe__msg--ok { color: var(--slope-accent); font-weight: 700; }
.hk-slope-subscribe__msg--err { color: #d14444; }
.hk-slope-subscribe__legal { margin: 10px 0 0; font-size: 0.78rem; color: color-mix(in srgb, var(--slope-text, #fff) 58%, transparent); line-height: 1.45; }

/* Tracks grid */
.hk-slope-tracks { max-width: 1040px; margin: 56px auto 0; padding: 0 24px; }
.hk-slope-tracks__title {
  margin: 0 0 24px;
  font-family: var(--wp--preset--font-family--montserrat, "Montserrat", sans-serif);
  font-size: 1.6rem; font-weight: 900;
  text-align: center;
  letter-spacing: -0.01em;
  color: var(--slope-text, #fff);
}
.hk-slope-tracks__list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
  align-items: start;
}

.hk-slope-track {
  position: relative;
  background: color-mix(in srgb, var(--slope-text, #fff) 7%, transparent);
  border: 1px solid color-mix(in srgb, var(--slope-text, #fff) 16%, transparent);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.hk-slope-track:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--slope-text, #fff) 32%, transparent);
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
}
.hk-slope-track--future { opacity: 0.6; }
.hk-slope-track--openable { cursor: pointer; }
.hk-slope-track--openable:focus-visible { outline: 2px solid var(--slope-accent); outline-offset: 3px; }
.hk-slope-track__open-hint {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--slope-accent, #00CCD9);
}

/* Pill grande DÍA N que flota sobre la imagen — colores fijos para garantizar
   contraste sea cual sea el accent/bg del slope. */
.hk-slope-track__day-pill {
  position: absolute; top: 12px; left: 12px;
  z-index: 3;
  display: inline-flex; align-items: baseline; gap: 4px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #ffffff;
  color: #0b1324;
  font-family: var(--wp--preset--font-family--montserrat, "Montserrat", sans-serif);
  font-weight: 900;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4), 0 0 0 2px rgba(11,19,36,0.06);
}
.hk-slope-track__day-pill-label {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em;
}
.hk-slope-track__day-pill-num { font-size: 1.1rem; }

.hk-slope-track__media {
  overflow: hidden;
  background: color-mix(in srgb, var(--slope-text, #fff) 5%, transparent);
  position: relative;
}
.hk-slope-track__media img {
  width: 100%; height: auto; display: block;
  transition: transform .5s ease;
}
.hk-slope-track:hover .hk-slope-track__media img { transform: scale(1.02); }
.hk-slope-track__media--ph {
  aspect-ratio: 16/10;
  display: flex; align-items: center; justify-content: center;
  color: color-mix(in srgb, var(--slope-text, #fff) 45%, transparent);
  font-size: 2.4rem; font-weight: 900;
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--slope-text, #fff) 6%, transparent),
    color-mix(in srgb, var(--slope-text, #fff) 2%, transparent));
}

.hk-slope-track__body { padding: 18px 18px 20px; }
.hk-slope-track__date {
  display: block;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: color-mix(in srgb, var(--slope-text, #fff) 62%, transparent);
  margin: 0 0 6px;
}
.hk-slope-track__title {
  margin: 0 0 8px;
  font-size: 1.05rem; font-weight: 800;
  color: var(--slope-text, #fff); line-height: 1.3;
}
.hk-slope-track__excerpt {
  font-size: 0.92rem; line-height: 1.5;
  color: color-mix(in srgb, var(--slope-text, #fff) 78%, transparent);
}
.hk-slope-track__pending {
  font-size: 0.84rem;
  color: color-mix(in srgb, var(--slope-text, #fff) 58%, transparent);
  font-style: italic;
}

.hk-slope-closed-note {
  max-width: 560px;
  margin: 48px auto 0;
  padding: 0 24px;
  text-align: center;
  color: color-mix(in srgb, var(--slope-text, #fff) 72%, transparent);
}

/* Modal / popup de track */
.hk-slope-modal {
  position: fixed; inset: 0;
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}
.hk-slope-modal.is-open { display: flex; }
.hk-slope-modal__backdrop {
  position: fixed; inset: 0;
  background: rgba(5, 10, 22, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hk-slope-modal__panel {
  position: relative;
  width: 100%;
  max-width: 720px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  overscroll-behavior: contain;
  background: #111e34;
  color: #f5f6fa;
  border-radius: 22px;
  padding: 36px 32px 40px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  animation: hkSlopeModalIn .22s ease-out;
}
@keyframes hkSlopeModalIn {
  from { transform: translateY(20px) scale(0.98); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.hk-slope-modal__close {
  position: sticky;
  top: 0;
  margin-left: auto;
  margin-right: -12px;
  margin-top: -20px;
  margin-bottom: -8px;
  display: block;
  width: 44px; height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 1.6rem; line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,0.5);
  z-index: 5;
  transition: background .15s ease, transform .15s ease;
}
.hk-slope-modal__close:hover { background: rgba(0,0,0,0.9); transform: scale(1.05); }
.hk-slope-modal__media {
  margin: -6px 0 20px;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  aspect-ratio: 16/9;
  display: none;
}
.hk-slope-modal__media.has-img { display: block; }
.hk-slope-modal__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Modo imagen-protagonista: el día es sólo una imagen sin texto. */
.hk-slope-modal.is-image-only .hk-slope-modal__panel {
  max-width: 960px;
  padding: 24px 24px 28px;
  background: #0a1424;
}
.hk-slope-modal.is-image-only .hk-slope-modal__media {
  aspect-ratio: auto;
  background: transparent;
  margin: 8px 0 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: min(78vh, 900px);
}
.hk-slope-modal.is-image-only .hk-slope-modal__media img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(78vh, 900px);
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.hk-slope-modal.is-image-only .hk-slope-modal__content { display: none; }

/* Galería: múltiples imágenes apiladas, ancho completo, tamaño natural. */
.hk-slope-modal.is-gallery .hk-slope-modal__panel {
  max-width: 960px;
}
.hk-slope-modal.is-gallery .hk-slope-modal__media {
  aspect-ratio: auto;
  background: transparent;
  margin: 8px 0 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: none;
}
.hk-slope-modal.is-gallery .hk-slope-modal__media img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: none;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
}
.hk-slope-modal__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; flex-wrap: wrap; }
.hk-slope-modal__day-pill {
  display: inline-flex; align-items: baseline; gap: 4px;
  padding: 6px 12px; border-radius: 999px;
  background: var(--slope-accent, #00CCD9); color: #0b1324;
  font-family: var(--wp--preset--font-family--montserrat, "Montserrat", sans-serif);
  font-weight: 900;
}
.hk-slope-modal__day-pill-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; }
.hk-slope-modal__day-pill-num { font-size: 1.05rem; }
.hk-slope-modal__date { font-size: 0.85rem; color: rgba(255,255,255,0.68); font-weight: 600; }
.hk-slope-modal__title {
  font-family: var(--wp--preset--font-family--montserrat, "Montserrat", sans-serif);
  margin: 0 0 18px;
  font-size: clamp(1.4rem, 3.2vw, 1.8rem);
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
}
.hk-slope-modal__content { font-size: 1.02rem; line-height: 1.65; color: rgba(245,246,250,0.9); }
.hk-slope-modal__content p { margin: 0 0 1em; }
.hk-slope-modal__content p:last-child { margin-bottom: 0; }
.hk-slope-modal__content img { max-width: 100%; height: auto; border-radius: 12px; margin: 1em 0; }
.hk-slope-modal__content h1,
.hk-slope-modal__content h2,
.hk-slope-modal__content h3 { color: #fff; margin: 1.2em 0 .5em; font-weight: 800; }
.hk-slope-modal__content blockquote {
  margin: 1em 0; padding: 12px 18px;
  border-left: 3px solid var(--slope-accent, #00CCD9);
  background: rgba(255,255,255,0.04);
  border-radius: 0 8px 8px 0;
  color: rgba(255,255,255,0.85);
}
body.hk-slope-modal-open { overflow: hidden; }

/* Status page (confirmación / baja) */
.hk-slope-status {
  max-width: 560px;
  margin: 80px auto;
  padding: 32px 28px;
  text-align: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  color: var(--slope-text, #f5f6fa);
}
.hk-slope-status__title { margin: 0 0 12px; font-size: 1.6rem; font-weight: 900; }
.hk-slope-status__text { margin: 0 0 14px; font-size: 1rem; line-height: 1.55; color: rgba(255,255,255,0.82); }
.hk-slope-status__link { color: var(--slope-accent, #00CCD9); text-decoration: underline; }

@media (max-width: 600px) {
  .hk-slope-hero__logo { width: 72px; height: 72px; border-radius: 16px; }
  .hk-slope-tracks { padding: 0 16px; margin-top: 40px; }
  .hk-slope-tracks__list { grid-template-columns: 1fr; }
}
