<!DOCTYPE html>
<html lang=es>
<head>
  <meta charset=UTF-8>
  <meta name=viewport content=width=device-width, initial-scale=1.0>
  <meta name=description content=plinplan — Próximamente>
  <title>plinplan · Próximamente</title>
  <style>
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      background: #0f172a;
      color: #e2e8f0;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 2rem 2rem 5rem;
    }

    .container {
      text-align: center;
      max-width: 700px;
      width: 100%;
    }

    .logo {
      font-size: clamp(3rem, 10vw, 6rem);
      font-weight: 800;
      letter-spacing: -0.04em;
      line-height: 1;
      margin-bottom: 1.5rem;
    }

    .logo span {
      color: #3b82f6;
    }

    .tagline {
      font-size: clamp(1.1rem, 3vw, 1.4rem);
      color: #94a3b8;
      font-weight: 400;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: 2.5rem;
    }

    .separator {
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, #3b82f6, #6366f1);
      border-radius: 2px;
      margin: 0 auto 2.5rem;
    }

    .description {
      font-size: 1rem;
      color: #64748b;
      line-height: 1.7;
      margin-bottom: 3rem;
    }

    .live-section {
      margin-top: 1rem;
      width: 100%;
    }

    .live-label {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #94a3b8;
      margin-bottom: 1rem;
    }

    .live-dot {
      width: 8px;
      height: 8px;
      background: #ef4444;
      border-radius: 50%;
      animation: pulse 1.5s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.8); }
    }

    .video-wrapper {
      position: relative;
      width: 100%;
      padding-bottom: 56.25%;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 0 0 1px #1e293b, 0 20px 60px rgba(0,0,0,0.5);
    }

    .video-wrapper iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: none;
    }

    footer {
      position: fixed;
      bottom: 1.5rem;
      font-size: 0.8rem;
      color: #334155;
    }
  </style>
</head>
<body>
  <div class=container>
    <div class=logo>plin<span>plan</span></div>
    <p class=tagline>Próximamente &middot; Coming soon</p>
    <div class=separator></div>
    <p class=description>Estamos trabajando en algo nuevo.<br>Vuelve pronto.</p>

    <div class=live-section>
      <div class=live-label>
        <span class=live-dot></span>
        Directo en YouTube
      </div>
      <div class=video-wrapper>
        <iframe
          src="https://www.youtube.com/embed/cH61x-vZhgw?autoplay=0&rel=0"
          title="Directo de esteteo en YouTube"
          allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
          allowfullscreen>
        </iframe>
      </div>
    </div>
  </div>
  <footer>plinplan.com</footer>
</body>
</html>
