/*
  ZenStyle Teaser
  -----------------------------------------------------------------------------
  Página estática temporal para campaña "Próximamente".

  Comportamiento visual:
  - Antes del lanzamiento: solo texto sobre fondo oscuro premium.
  - Desde el lanzamiento: imagen teaser + overlay + texto.
*/

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #09090b;
}

body {
  min-height: 100%;
  margin: 0;
  background: #09090b;
  color: #ffffff;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

.teaser-page {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #09090b;
}

/* Imagen principal */

.teaser-media {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 1;
}

.teaser-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

/* Overlay general */

.teaser-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;

  background:
    radial-gradient(
      circle at center,
      rgb(0 0 0 / 0.06) 0%,
      rgb(0 0 0 / 0.28) 70%
    ),
    linear-gradient(
      to bottom,
      rgb(0 0 0 / 0.18) 0%,
      rgb(0 0 0 / 0.42) 100%
    );
}

/* Contenido textual */

.teaser-content {
  position: relative;
  z-index: 3;

  min-height: 100svh;
  width: min(100%, 920px);
  margin-inline: auto;
  padding-inline: 24px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.teaser-brand {
  margin: 0 0 20px;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 0.82);
}

.teaser-title {
  margin: 0;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #ffffff;
}

.teaser-subtitle {
  max-width: 680px;
  margin: 28px auto 0;
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.55;
  font-weight: 300;
  color: rgb(255 255 255 / 0.82);
}

/*
  Estado previo al lanzamiento
  -----------------------------------------------------------------------------
  Antes del lunes 8 de junio de 2026 a las 14:00 hrs CDMX:
  - No se muestra imagen.
  - Se conserva solo el texto.
*/

body.is-before-launch .teaser-page {
  background:
    radial-gradient(circle at center, rgb(39 39 42 / 0.72), #09090b 72%),
    #09090b;
}

body.is-before-launch .teaser-media {
  display: none;
}

body.is-before-launch .teaser-overlay {
  background:
    radial-gradient(
      circle at center,
      rgb(255 255 255 / 0.04) 0%,
      rgb(0 0 0 / 0.24) 52%,
      rgb(0 0 0 / 0.68) 100%
    );
}

/* Mobile */

@media (max-width: 767px) {
  .teaser-content {
    padding-inline: 22px;
  }

  .teaser-brand {
    margin-bottom: 18px;
    font-size: 12px;
    letter-spacing: 0.34em;
  }

  .teaser-title {
    font-size: clamp(38px, 12vw, 56px);
  }

  .teaser-subtitle {
    max-width: 340px;
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.5;
  }

  .teaser-overlay {
    background:
      radial-gradient(
        circle at center,
        rgb(0 0 0 / 0.04) 0%,
        rgb(0 0 0 / 0.32) 68%
      ),
      linear-gradient(
        to bottom,
        rgb(0 0 0 / 0.2) 0%,
        rgb(0 0 0 / 0.48) 100%
      );
  }
}