/* ══════════════════════════════════════════════════
   comingsoon.css — NeuroThrottle
   Estilos exclusivos de la página Coming Soon.
   Requiere: <link rel="stylesheet" href="base.css">
             <link rel="stylesheet" href="comingsoon.css">
══════════════════════════════════════════════════ */

/* ── Fondo especial de la página ─────────────────── */
.nt-coming-soon {
  background-image:
    linear-gradient(to bottom, rgba(4, 6, 13, 0.70), rgba(4, 6, 13, 0.82)),
    url("images/background.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Oculta el starfield global en esta página */
.nt-coming-soon::before {
  display: none;
}

/* ── Layout centrado ─────────────────────────────── */
.coming-wrap {
  min-height: calc(100vh - 110px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0 20px;
}

/* ── Boton acceso POSM Control System ─────────────────────────────── */
.nt-entry {
  max-width: 980px;
  margin: 60px auto;
  padding: 28px;
  border: 1px solid rgba(255, 179, 0, 0.16);
  background: rgba(18, 24, 32, 0.72);
}

.nt-kicker {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #b37d00;
  margin-bottom: 10px;
}

.nt-entry h2 {
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.nt-entry p {
  font-size: 15px;
  line-height: 1.6;
  color: #b8aa7a;
  max-width: 760px;
}

.nt-entry-actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.nt-btn {
  display: inline-block;
  padding: 12px 18px;
  text-decoration: none;
  border: 1px solid rgba(255, 179, 0, 0.22);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.nt-btn-primary {
  background: rgba(255, 179, 0, 0.14);
  color: #ffb300;
}

.nt-btn-secondary {
  background: transparent;
  color: #e8d5a0;
}

/* ── Ajuste estructura EXPERIENCE ───────────────── */

.nt-entry-top-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

/* ── Gateway login box ───────────────── */

.nt-gateway-box {
  border-top: 1px solid rgba(255, 179, 0, 0.18);
  padding-top: 18px;
}

.nt-gateway-head {
  margin-bottom: 14px;
}

.nt-gateway-title {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #ffb300;
  margin-bottom: 6px;
}

.nt-gateway-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.45;
}

.nt-gateway-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.nt-gateway-actions {
  margin-top: 14px;
}

.nt-gateway-note {
  margin-top: 10px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.45;
  font-family: var(--mono);
}

/* Responsive */
@media (max-width: 720px) {
  .nt-gateway-form {
    grid-template-columns: 1fr;
  }
}



/* ── Card principal ──────────────────────────────── */
.coming-card {
  width: min(760px, 100%);
  padding: 42px 40px;
  background: rgba(8, 12, 24, 0.78);
  border: 1px solid rgba(100, 180, 255, 0.18);
  backdrop-filter: blur(14px);
}

/* ── Tipografía ──────────────────────────────────── */
.coming-title {
  font-size: clamp(38px, 7vw, 78px);
  line-height: 0.98;
  margin-bottom: 14px;
}

.coming-subtitle {
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--white);
  line-height: 1.45;
  max-width: 28ch;
  margin-bottom: 12px;
}

.coming-subtitle.secondary {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 40ch;
  margin-top: 6px;
}

.coming-subtitle.micro {
  font-size: 13px;
  font-family: var(--mono);
  color: rgba(255, 255, 255, 0.45);
  max-width: 44ch;
  margin-top: 10px;
  letter-spacing: 0.02em;
}

.coming-note {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--cyan2);
  margin-bottom: 28px;
}

/* ── Formulario ──────────────────────────────────── */
.coming-form {
  display: grid;
  gap: 6px;
}

.coming-row .btn {
  flex: 0 1 220px;
}

.coming-small {
  margin-top: 18px;
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 720px) {
  .coming-card {
    padding: 30px 22px;
  }

  .coming-row .btn {
    flex: 1 1 100%;
  }
}